From f9a385b0f5dc363141bb99878ef0c990ee8ee210 Mon Sep 17 00:00:00 2001 From: mjgaughan Date: Fri, 19 Apr 2024 14:30:41 -0500 Subject: [PATCH] updating with clean data, no dupes --- R/didAnalysis.R | 15 +- R/didCleaning.R | 23 +- final_data/.~lock.deb_full_data.csv# | 1 + final_data/deb_contrib_did.csv | 904 +- final_data/deb_full_data.csv | 10196 +++++++++++------------ final_data/deb_readme_did.csv | 4560 +++++----- verbose_data/deb_contrib_did_stale.csv | 452 + verbose_data/deb_readme_did_stale.csv | 2280 +++++ 8 files changed, 10589 insertions(+), 7842 deletions(-) create mode 100644 final_data/.~lock.deb_full_data.csv# create mode 100644 verbose_data/deb_contrib_did_stale.csv create mode 100644 verbose_data/deb_readme_did_stale.csv diff --git a/R/didAnalysis.R b/R/didAnalysis.R index 10a59b2..8d27f62 100644 --- a/R/didAnalysis.R +++ b/R/didAnalysis.R @@ -1,6 +1,6 @@ # this is the file with the lmer multi-level rddAnalysis library(tidyverse) -library(plyr) +library(plyr) # 0 loading the readme data in try(setwd(dirname(rstudioapi::getActiveDocumentContext()$path))) readme_df <- read_csv("../final_data/deb_readme_did.csv") @@ -36,12 +36,19 @@ window_num <- 8 expanded_data <- expanded_data |> filter(week >= (26 - window_num) & week <= (26 + window_num)) |> mutate(D = ifelse(week > 26, 1, 0)) +#separate out the cleaning +all_actions_data <- expanded_data[which(expanded_data$observation_type == "all"),] +mrg_actions_data <- expanded_data[which(expanded_data$observation_type == "mrg"),] # 3 rdd in lmer analysis # rdd: https://rpubs.com/phle/r_tutorial_regression_discontinuity_design # lmer: https://www.youtube.com/watch?v=LzAwEKrn2Mc library(lme4) -draft_all_model <- lmer(count ~ D * I(week - 26) + (1|upstream_vcs_link), REML=FALSE, data=expanded_data[which(expanded_data$observation_type == "all"),]) +draft_all_model <- lmer(count ~ D * I(week - 26) + (1|upstream_vcs_link), REML=FALSE, data=all_actions_data) summary(draft_all_model) -draft_mrg_model <- lmer(count ~ D * I(week - 26) + (1|upstream_vcs_link), REML=FALSE, data=expanded_data[which(expanded_data$observation_type == "mrg"),]) +draft_mrg_model <- lmer(count ~ D * I(week - 26) + (1|upstream_vcs_link), REML=FALSE, data=mrg_actions_data) summary(draft_mrg_model) -# need to calculate inter-class correlation coefficient? \ No newline at end of file +# need to calculate inter-class correlation coefficient? +library(merTools) +ICC(outcome="count", group="upstream_vcs_link", data=all_actions_data) +#testing for different types of models +# anova \ No newline at end of file diff --git a/R/didCleaning.R b/R/didCleaning.R index aac1c99..00a47f8 100644 --- a/R/didCleaning.R +++ b/R/didCleaning.R @@ -7,10 +7,31 @@ library(rdd) try(setwd(dirname(rstudioapi::getActiveDocumentContext()$path))) readme_df <- read_csv("../final_data/deb_readme_did.csv") contributing_df <- read_csv("../final_data/deb_contrib_did.csv") +full_df <- read_csv("../final_data/deb_full_data.csv") + + + #preprocessing for readme_df -colnames(readme_df) <- c("upstream_vcs_link", "event_date", "event_hash", "before_all_ct", "before_mrg_ct", "after_all_ct", "after_mrg_ct", "before_auth_new", "after_commit_new", "after_auth_new", "before_commit_new") +colnames(contributing_df) <- c("upstream_vcs_link", "event_date", "event_hash", "before_all_ct", "before_mrg_ct", "after_all_ct", "after_mrg_ct", "before_auth_new", "after_commit_new", "after_auth_new", "before_commit_new") col_order <- c("upstream_vcs_link", "event_date", "event_hash", "before_all_ct", "after_all_ct", "before_mrg_ct", "after_mrg_ct", "before_auth_new", "after_auth_new", "before_commit_new", "after_commit_new") + +ages <- c() +projects <- c() +for (i in 1:nrow(contributing_df)){ + link <- contributing_df[i,]$upstream_vcs_link + age <- full_df$age_of_project[full_df$upstream_vcs_link == link] + project <- full_df$project_name[full_df$upstream_vcs_link == link] + ages <- c(ages, age) + if (length(project) != 1){ + project + break + } else { + projects <- c(projects, project) + } +} +contributing_df$age_of_project = ages +write.csv(contributing_df, "deb_contributing_data_4_19.csv", row.names=FALSE) readme_df <- readme_df[,col_order] readme_df$ct_before_all <- str_split(gsub("[][]","", readme_df$before_all_ct), ", ") readme_df$ct_after_all <- str_split(gsub("[][]","", readme_df$after_all_ct), ", ") diff --git a/final_data/.~lock.deb_full_data.csv# b/final_data/.~lock.deb_full_data.csv# new file mode 100644 index 0000000..1b95756 --- /dev/null +++ b/final_data/.~lock.deb_full_data.csv# @@ -0,0 +1 @@ +Matt Gaughan,mgone,dhcp-10-105-58-199.wireless.northwestern.private,19.04.2024 14:27,file:///Users/mgone/Library/Application%20Support/OpenOffice/4; \ No newline at end of file diff --git a/final_data/deb_contrib_did.csv b/final_data/deb_contrib_did.csv index 68747c3..073cfe6 100644 --- a/final_data/deb_contrib_did.csv +++ b/final_data/deb_contrib_did.csv @@ -1,452 +1,452 @@ -https://github.com/kornelski/pngquant.git,2016-11-18 01:21:15+00:00,5448e7ee9a18599042e3adf6e9cb34d812a82323,"[13, 12, 2, 1, 2, 0, 1, 0, 0, 0, 2, 4, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2]","[4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 7, 1, 0, 0, 1, 2, 0, 0, 0, 6, 0, 0, 2, 1, 12, 0, 1, 0, 1, 0, 4, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",4,0,2,1 -https://github.com/Exa-Networks/exabgp,2020-05-12 09:59:33+01:00,0517dc80b8479ba65cfe1e2eb3e09832b895b999,"[0, 0, 0, 12, 3, 0, 3, 0, 40, 23, 0, 4, 7, 3, 0, 4, 5, 1, 0, 1, 0, 0, 0, 0, 2, 9, 2]","[0, 0, 0, 2, 2, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]",5,0,4,0 -https://github.com/thoughtbot/factory_girl.git,2015-04-15 23:32:05-04:00,5a8804871c6bf18f16e830948ce4a04f97c77c4f,"[2, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 1, 2, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,7,0 -https://github.com/rsyslog/rsyslog-doc,2018-02-13 08:40:47+01:00,265f04c4c9354f3a7fb49fa8054a0b14f679ce43,"[4, 1, 9, 15, 5, 0, 0, 2, 0, 4, 0, 0, 2, 0, 17, 13, 15, 7, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[3, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 9, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 1, 3, 2, 2, 5, 2, 0, 0, 2, 1, 3, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 2, 0, 0, 1]",7,0,10,0 -https://github.com/mqttjs/mqtt-packet,2015-01-06 20:58:23+01:00,87aef8413f8ebfa0bb9c30332b6829884ee56d0a,"[0, 0, 1, 0, 0, 0, 2, 4, 0, 6, 0, 0, 0, 2, 0, 13, 12, 3, 1, 0, 0, 0, 0, 8, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/iem-projects/ambix.git,2016-04-27 12:19:17+02:00,c6a44bd1bb01d7f2b9dd73ac7d0f5389d786d6fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 10, 1, 3, 2, 0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,4,0 -https://invent.kde.org/plasma/kscreen.git,2019-11-11 21:52:25+01:00,50cf930ec8240be069a18765c10f681f1c4d7599,"[3, 0, 3, 1, 11, 2, 1, 2, 1, 0, 0, 2, 2, 0, 0, 0, 11, 2, 10, 2, 0, 1, 8, 1, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 1, 5, 0, 0, 8, 1, 6, 8, 1, 0, 2, 2, 1, 4, 1, 1, 5, 2, 2, 0, 3, 2, 2, 0, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",6,1,4,0 -https://github.com/ocaml/dune.git,2018-05-02 13:57:10+01:00,a9462d135f4ab57a7a566183c7e0a306ea63ff3d,"[18, 4, 7, 10, 6, 12, 20, 16, 17, 19, 30, 36, 37, 30, 38, 42, 41, 70, 59, 101, 25, 19, 39, 38, 39, 22, 1]","[4, 0, 0, 1, 4, 2, 4, 5, 3, 1, 3, 6, 8, 7, 3, 7, 7, 9, 8, 12, 2, 2, 7, 10, 5, 4, 0]","[44, 33, 28, 60, 47, 75, 49, 27, 102, 145, 74, 18, 54, 73, 45, 25, 51, 71, 28, 103, 67, 73, 61, 76, 30, 12, 1]","[9, 3, 6, 19, 13, 17, 11, 6, 17, 16, 11, 6, 15, 16, 13, 9, 5, 16, 9, 14, 12, 9, 15, 16, 5, 1, 0]",12,1,34,0 -https://github.com/ceres-solver/ceres-solver.git,2018-07-10 06:16:27+00:00,2c1e595b775f6c23ec985ac20976f81dbed327e5,"[9, 2, 1, 5, 1, 3, 18, 14, 2, 4, 4, 5, 19, 6, 7, 5, 1, 2, 0, 1, 0, 0, 4, 3, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 4, 0, 2, 1, 1, 4, 9, 5, 3, 4, 0, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,6,0 -https://github.com/google/yapf.git,2015-03-18 13:36:07-07:00,7d623455f45435ad351514dfd4abd064cac61aab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 50, 51, 21, 32, 18, 16, 0, 3, 5, 3, 0, 6, 2, 5, 10, 9, 3, 6, 1, 1, 0, 4, 0, 11, 12, 1]","[4, 2, 8, 5, 12, 5, 1, 0, 0, 1, 1, 0, 3, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,3,19,0 -https://github.com/flot/flot,2012-11-27 10:25:25-05:00,b362df896c80adca1fcf48fb2a78b3f93e32928d,"[0, 4, 7, 0, 2, 4, 28, 7, 5, 1, 0, 0, 0, 0, 1, 3, 8, 3, 0, 0, 0, 0, 6, 6, 1, 35, 2]","[0, 1, 2, 0, 0, 1, 6, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 1, 2, 0, 7, 0]","[23, 2, 11, 16, 0, 3, 19, 12, 19, 21, 15, 12, 11, 15, 18, 1, 1, 6, 11, 5, 0, 0, 0, 0, 0, 1, 1]","[4, 0, 3, 2, 0, 1, 6, 1, 2, 0, 2, 2, 1, 2, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",18,0,14,1 -https://github.com/Backblaze/B2_Command_Line_Tool,2020-07-29 12:07:07+02:00,b4578f915dd49cdb1435accd260c59a34ea66e75,"[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 9, 1, 0, 11, 0, 22, 14, 1, 15, 3, 3, 3, 4, 10, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 4, 3, 1, 5, 0, 1, 1, 0, 1, 0]","[1, 22, 0, 1, 0, 3, 0, 0, 4, 5, 3, 0, 2, 10, 9, 2, 0, 0, 0, 0, 0, 0, 0, 9, 6, 3, 1]","[0, 5, 0, 0, 0, 2, 0, 0, 1, 3, 1, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",5,0,1,1 -https://github.com/ycm-core/YouCompleteMe,2013-04-03 18:50:01-07:00,bbc437c6a18447c03d7ab1d85f65d823df4a2bb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 29, 49, 42, 50, 28, 22, 7, 13, 24, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 10, 3, 3, 0, 1, 2, 1, 1]","[13, 15, 20, 19, 10, 16, 16, 25, 7, 9, 4, 7, 8, 21, 16, 13, 5, 9, 19, 19, 6, 4, 6, 0, 0, 0, 1]","[2, 3, 1, 2, 1, 6, 2, 3, 0, 0, 1, 0, 0, 3, 5, 5, 1, 1, 5, 5, 0, 0, 2, 0, 0, 0, 0]",24,2,26,2 -https://github.com/npm/nopt,2023-05-31 11:54:58-07:00,9122d7c511c81421992c86faf30da2f35ce6f4e4,"[0, 2, 0, 0, 1, 1, 0, 0, 2, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/pdfminer/pdfminer.six.git,2019-07-08 23:03:47+02:00,a03566da21530159175f9856a1fcce3438a09b29,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 6, 1, 5, 3, 4, 0, 1, 0, 0, 0, 0, 9, 13, 13, 2, 10, 0, 0, 0, 0, 1, 0, 1, 3, 1]","[3, 0, 3, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 7, 2, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,11,0 -https://github.com/tqdm/tqdm.git,2017-01-05 23:39:17+01:00,2cd875ffa648c41ffdb539ea28726b00f8751bcb,"[0, 9, 21, 2, 0, 8, 0, 3, 14, 23, 3, 0, 0, 1, 9, 3, 17, 0, 18, 0, 0, 3, 2, 3, 0, 4, 2]","[0, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 4, 0, 0, 0, 0, 1, 0, 0, 1]","[10, 1, 16, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 17, 1, 0, 1, 0, 0, 0]","[2, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]",8,0,3,1 -https://github.com/clojure/core.cache,2014-05-20 19:24:35-07:00,fe96879f158428d949f45fc4902333b02a20110a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/resurrecting-open-source-projects/stress,2021-10-01 18:05:17-03:00,c16f6ee03496b5031ca786e04c629529fe9ee893,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Leaflet/Leaflet.markercluster,2015-10-01 16:25:53+13:00,10d440ba403d43a95453c660d16c2846fc624b54,"[0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 2, 3, 1, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0]","[11, 16, 28, 14, 0, 0, 9, 12, 8, 4, 0, 16, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 9, 4, 0, 0, 4, 0, 2, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,5,0 -https://github.com/stephane/libmodbus.git,2016-05-17 23:28:41+02:00,7612ce2029de1eac698ebc2ba617c4fbd738127f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 4, 9, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,0 -https://github.com/clojure/tools.logging.git,2014-05-20 19:24:36-07:00,b2ca1f68d6bc7cd292cdb9e5c7c8e863bef60bbd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Diaoul/subliminal.git,2015-08-22 20:33:04+02:00,3bc239ffee43a378a6ec64c169d9f7cb3f1753a5,"[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 26, 0, 0, 0, 6, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1]","[33, 1, 0, 3, 2, 1, 1, 0, 3, 23, 5, 0, 0, 0, 0, 0, 0, 0, 17, 10, 0, 0, 8, 20, 17, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 2, 0, 0, 0]",2,0,4,2 -https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb,2018-02-01 09:02:21+00:00,e22f687c821e219b59c5350b7e12447c65e635c1,"[82, 50, 92, 97, 49, 59, 75, 41, 47, 13, 27, 31, 12, 29, 26, 14, 19, 12, 14, 21, 10, 5, 27, 23, 14, 20, 1]","[8, 6, 10, 7, 12, 12, 9, 6, 7, 0, 3, 0, 1, 2, 10, 3, 7, 2, 5, 5, 1, 0, 6, 5, 1, 3, 0]","[33, 44, 51, 59, 91, 60, 50, 49, 44, 68, 52, 33, 42, 20, 12, 10, 27, 29, 37, 26, 25, 36, 34, 19, 7, 2, 0]","[2, 9, 5, 5, 19, 13, 10, 17, 5, 19, 8, 10, 17, 9, 7, 3, 7, 11, 14, 7, 5, 15, 13, 7, 0, 0, 0]",2,3,3,0 -https://github.com/drwetter/testssl.sh.git,2019-08-08 18:34:14+02:00,642cfe46dd33e5b80c8678e2900ea82159d2beb0,"[22, 13, 10, 6, 3, 2, 5, 10, 8, 15, 24, 12, 48, 0, 2, 0, 1, 6, 2, 2, 2, 4, 0, 1, 0, 4, 2]","[7, 3, 4, 0, 1, 1, 1, 3, 1, 6, 3, 6, 12, 0, 1, 0, 0, 3, 1, 1, 1, 2, 0, 0, 0, 1, 1]","[14, 3, 1, 0, 2, 14, 18, 12, 8, 5, 9, 23, 14, 13, 17, 10, 10, 17, 0, 4, 10, 20, 49, 48, 16, 23, 1]","[5, 2, 0, 0, 1, 6, 4, 4, 0, 4, 5, 8, 7, 4, 9, 5, 5, 8, 0, 2, 3, 7, 12, 14, 8, 10, 0]",5,0,15,0 -https://github.com/rr-debugger/rr.git,2014-06-12 16:15:10+12:00,0cd2366fee96dadab517b9cabca21200266684fd,"[2, 4, 0, 1, 8, 11, 33, 20, 0, 16, 42, 52, 48, 21, 15, 32, 12, 24, 13, 26, 24, 25, 24, 8, 15, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 1, 0, 0, 4, 5, 4, 1, 3, 3, 6, 0, 0, 0, 0, 0]","[11, 11, 39, 28, 18, 9, 18, 21, 17, 22, 38, 12, 42, 89, 75, 24, 72, 42, 56, 42, 80, 54, 58, 50, 29, 34, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",12,0,3,1 -https://github.com/igraph/igraph.git,2014-10-24 17:58:59-04:00,b09df08be878ddf23d7bef6d63c8b90b8a81b193,"[4, 1, 8, 0, 0, 0, 0, 0, 5, 0, 12, 12, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/rsnapshot/rsnapshot.git,2015-03-18 14:08:11+01:00,5b015eb3bcdc20460a13342c5c480f1503fff560,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[23, 18, 3, 4, 0, 2, 0, 6, 2, 1, 9, 8, 21, 3, 1, 3, 2, 1, 0, 1, 0, 7, 0, 0, 0, 0, 0]","[10, 9, 0, 2, 0, 2, 0, 2, 1, 1, 3, 0, 5, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,1,2,1 -https://github.com/composer/semver,2015-07-15 20:54:52+02:00,0ce26349ac7e579342d88e6a79ad12fe10bf8083,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 17, 0, 0, 1, 4, 0, 1, 3, 0, 0, 1, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,1,4,1 -https://github.com/EsotericSoftware/kryo.git,2015-06-27 14:17:07+02:00,df07c66082a8c4a9aa38a8dafde49413710cb692,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/scikit-learn-contrib/imbalanced-learn.git,2016-06-30 10:55:27+02:00,b8904ed382f24288012e7189c49d02115355cb9b,"[1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 32, 14, 10, 10, 20, 49, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 0, 1, 4, 6, 0]","[25, 10, 11, 11, 11, 5, 1, 0, 35, 3, 0, 0, 2, 0, 1, 3, 2, 9, 1, 0, 0, 3, 4, 0, 4, 15, 1]","[1, 1, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0]",8,1,4,4 -https://github.com/PracticallyGreen/omniauth-saml.git,2016-02-11 18:36:48+01:00,a78422c2e0b5c3e6a9ea5aa6909356fee2deb881,"[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0]","[6, 4, 8, 5, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 2, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",9,3,5,2 -https://github.com/mypaint/libmypaint,2016-05-22 23:00:07+01:00,055f6ff46896cc22bc5dc1f3f766691f2351d57d,"[2, 2, 5, 10, 4, 7, 6, 3, 1, 20, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 4, 0, 0, 3, 27, 33, 2]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[19, 1, 3, 0, 0, 2, 0, 0, 1, 3, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",12,2,10,0 -https://github.com/python-bugzilla/python-bugzilla,2015-09-02 15:18:06-04:00,b233ccd3cf036e7b0330eb1fc704c71d4c5fcdf8,"[1, 0, 0, 3, 5, 8, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 10, 0, 0, 0, 2, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,1 -https://github.com/zeromq/czmq.git,2014-08-15 21:07:32+02:00,f8e9182f3f076a709e385c23715475068ece18b2,"[0, 7, 10, 27, 35, 21, 32, 30, 14, 19, 32, 11, 41, 25, 16, 37, 35, 13, 6, 14, 14, 16, 32, 13, 6, 26, 1]","[0, 1, 3, 11, 10, 8, 11, 9, 4, 5, 9, 2, 11, 10, 4, 12, 8, 5, 3, 6, 3, 4, 10, 4, 3, 8, 0]","[58, 62, 37, 34, 127, 65, 37, 49, 21, 28, 40, 30, 43, 34, 38, 18, 33, 10, 4, 17, 31, 13, 7, 17, 17, 19, 1]","[20, 12, 11, 9, 13, 26, 17, 20, 8, 11, 14, 13, 8, 11, 11, 7, 15, 3, 2, 5, 11, 5, 3, 7, 8, 6, 0]",37,11,41,6 -https://github.com/fgrehm/vagrant-lxc,2013-09-28 02:11:10-03:00,c76df6358c1b848ee82a791734d834007a7c3b75,"[44, 27, 15, 55, 26, 41, 5, 1, 7, 31, 3, 0, 7, 0, 18, 16, 10, 26, 0, 3, 0, 4, 0, 16, 26, 15, 2]","[1, 0, 1, 1, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 1, 3, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0]","[11, 6, 5, 4, 5, 26, 4, 2, 1, 0, 0, 3, 2, 1, 0, 0, 0, 0, 13, 2, 6, 4, 0, 111, 19, 9, 1]","[0, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 2, 1, 0, 5, 2, 1, 0]",9,1,16,1 -https://gitlab.gnome.org/GNOME/libgweather.git,2021-10-17 00:37:04+01:00,8bd7e1d45b07fb8089b09bc2206a8929357dec12,"[2, 14, 5, 4, 1, 1, 1, 0, 3, 7, 9, 1, 1, 1, 1, 5, 1, 0, 3, 6, 4, 4, 0, 3, 1, 79, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 5, 22, 32, 23, 3, 3, 4, 2, 4, 4, 6, 2, 7, 2, 10, 6, 3, 27, 16, 14, 5, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,14,0 -https://bitbucket.org/sshguard/sshguard.git,2017-02-04 13:15:52-08:00,562270515ef3e98038c1a2da8984d92720b86659,"[9, 11, 0, 0, 2, 1, 0, 0, 0, 17, 1, 4, 0, 7, 7, 7, 1, 4, 0, 1, 25, 8, 9, 3, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[1, 7, 1, 5, 5, 2, 1, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1 -https://github.com/resurrecting-open-source-projects/nbtscan,2019-11-14 01:02:36-03:00,fc1a0f5e16c9d1c011596f5d4d9f20af9abc2ae1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/keymanapp/keyman,2021-10-08 13:47:14+11:00,82824f124cb3f891d35c02e6cd99c2d6ca85ec98,"[1, 57, 21, 2, 28, 16, 15, 31, 25, 17, 26, 24, 12, 1, 11, 28, 12, 12, 11, 13, 6, 2, 12, 4, 23, 12, 0]","[0, 23, 10, 0, 14, 8, 5, 8, 7, 9, 8, 6, 7, 0, 7, 6, 5, 1, 5, 6, 2, 1, 6, 1, 8, 6, 0]","[0, 0, 0, 0, 0, 9, 2, 7, 3, 3, 2, 0, 3, 5, 10, 19, 0, 7, 0, 1, 1, 3, 7, 4, 12, 1, 1]","[0, 0, 0, 0, 0, 2, 2, 3, 2, 1, 1, 0, 1, 3, 4, 7, 0, 1, 0, 1, 0, 2, 3, 2, 7, 0, 1]",1,0,1,0 -https://github.com/prometheus/haproxy_exporter,2015-01-22 16:50:42+01:00,29650004ab6114d3d8e3eb55d13776881ceb78f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 2, 2, 2, 0, 0, 0, 0, 4, 0, 0, 4, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0, 1]","[1, 2, 12, 1, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 0, 1, 0, 0]","[1, 1, 4, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0]",3,1,6,1 -https://github.com/htop-dev/htop,2018-02-26 11:45:53-03:00,9ca1c993ac1b24c9ec52ffca3d1cc30bd3d82cde,"[2, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 26, 0, 33, 5, 2]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 9, 3, 5, 57, 5, 0, 0, 0, 0, 0, 6, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 4, 26, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,15,0 -https://github.com/puppetlabs/puppetlabs-xinetd,2016-04-19 14:45:10+01:00,ea501586d273f131c086858930fb2a4490e7d61b,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 1, 0, 4, 0, 0, 0, 4, 1, 1, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 1]","[1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 3, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",3,2,5,1 -https://github.com/philpem/printer-driver-ptouch.git,2020-05-26 11:05:30+01:00,7b13070b64f87bb432f84cc7d4826a126d2e8bc2,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 47, 1, 0, 3, 0, 0, 94, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,1,1 -https://github.com/korfuri/django-prometheus,2015-07-04 18:36:16-07:00,723bcacef4c62d8db1aeaa93dd374c25ef1979eb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jashkenas/underscore.git,2012-09-17 13:06:33-04:00,d09457f7683654441b998a6c22e20c059bf57799,"[21, 8, 28, 4, 16, 11, 6, 4, 0, 24, 1, 4, 3, 4, 4, 0, 2, 2, 0, 1, 1, 8, 8, 33, 7, 21, 2]","[5, 1, 12, 1, 6, 4, 3, 1, 0, 3, 0, 2, 0, 2, 1, 0, 1, 1, 0, 0, 0, 4, 3, 7, 5, 2, 0]","[32, 12, 8, 2, 5, 2, 4, 5, 0, 5, 17, 10, 9, 4, 9, 3, 0, 2, 1, 9, 1, 12, 2, 2, 5, 8, 0]","[5, 3, 2, 0, 2, 1, 2, 1, 0, 1, 2, 1, 3, 2, 3, 1, 0, 1, 0, 1, 0, 4, 1, 1, 1, 4, 0]",29,0,26,2 -https://github.com/phpmyadmin/motranslator,2017-04-03 08:46:30+02:00,7237ab2de4c4c814d2602f327a89f9e173767e0f,"[0, 13, 1, 0, 0, 2, 2, 0, 0, 0, 6, 11, 0, 10, 0, 4, 3, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 3, 1, 3, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,0,3,1 -https://github.com/i18next/i18next,2022-06-20 13:20:44+02:00,41e9a6085825f9047707a0464ae290706aa574d2,"[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 5, 2, 0, 6, 3, 3, 2, 1, 1, 2, 3, 0, 0, 3, 0, 11, 7, 2, 4, 2, 1, 3, 33, 7, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,7,0 -https://github.com/math-comp/math-comp,2017-11-24 15:12:17+01:00,6b25220e33cd141a3fc219e31f7251c0ee47fae7,"[3, 9, 3, 0, 3, 0, 2, 0, 0, 1, 0, 2, 0, 0, 4, 1, 0, 0, 0, 2, 13, 12, 4, 5, 0, 1, 1]","[1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 1, 0]","[5, 0, 18, 1, 0, 0, 0, 0, 0, 1, 7, 0, 10, 2, 7, 0, 3, 0, 0, 3, 18, 9, 0, 0, 0, 0, 0]","[1, 0, 8, 1, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 5, 0, 2, 0, 0, 1, 4, 2, 0, 0, 0, 0, 0]",3,0,2,1 -https://github.com/Mottie/tablesorter.git,2015-02-20 21:31:24-06:00,44ee94502bfafaf540092649fde6a7ccb428507a,"[18, 5, 14, 11, 1, 13, 12, 2, 9, 24, 19, 3, 0, 4, 8, 3, 0, 7, 2, 7, 14, 9, 13, 34, 30, 29, 2]","[0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 7, 1, 3, 0]","[17, 9, 19, 7, 18, 7, 16, 4, 6, 10, 11, 15, 21, 6, 10, 22, 11, 12, 3, 0, 12, 16, 19, 0, 5, 15, 1]","[1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",7,1,6,0 -https://github.com/robert7/nixnote2,2018-10-09 17:48:11+02:00,67222b362f9f152f3a2aa2764c8bf90fdfb355ff,"[0, 0, 0, 0, 3, 0, 268, 1, 9, 100, 23, 19, 79, 32, 0, 5, 63, 4, 12, 37, 12, 5, 26, 33, 56, 25, 2]","[0, 0, 0, 0, 1, 0, 1, 1, 1, 12, 4, 1, 2, 2, 0, 0, 10, 1, 2, 4, 1, 1, 5, 5, 4, 5, 0]","[69, 15, 3, 5, 7, 2, 4, 7, 24, 34, 0, 12, 19, 9, 11, 1, 2, 5, 2, 10, 0, 12, 3, 3, 0, 0, 0]","[13, 6, 1, 2, 4, 1, 1, 3, 8, 9, 0, 3, 6, 1, 4, 1, 1, 2, 1, 3, 0, 1, 1, 2, 0, 0, 0]",6,0,4,3 -https://github.com/JDimproved/JDim.git,2019-02-17 11:43:34+09:00,9090d85334a7b6b0613d728b76b8615eb5896615,"[0, 0, 0, 0, 0, 0, 13, 14, 0, 2, 0, 0, 0, 1, 17, 1, 3, 1, 5, 5, 1, 0, 17, 43, 7, 9, 2]","[0, 0, 0, 0, 0, 0, 2, 4, 0, 1, 0, 0, 0, 0, 2, 1, 0, 1, 2, 0, 1, 0, 5, 1, 2, 3, 1]","[8, 7, 12, 5, 17, 9, 0, 4, 49, 3, 4, 3, 5, 0, 7, 3, 4, 14, 11, 14, 31, 5, 0, 4, 0, 3, 1]","[4, 3, 5, 0, 6, 4, 0, 0, 1, 1, 1, 3, 1, 0, 1, 1, 0, 3, 2, 3, 3, 2, 0, 1, 0, 1, 0]",4,0,3,0 -https://github.com/brunonova/drmips,2015-09-16 18:45:27+01:00,8ea5eb73f001e2d98a428f57a61f834bdacb0ccd,"[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 3, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 4, 0, 0, 7, 7, 18, 9, 13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git,2016-11-14 19:10:52+01:00,8a9067fc53f824f1a8252c699ecdcca8fc4d8b19,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 8, 14, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[3, 0, 5, 1, 1, 1, 1, 1, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1 -https://github.com/nvbn/thefuck.git,2015-10-17 15:45:13+02:00,c970f190d26cc0634567c048e20aa7b802fe6042,"[189, 36, 33, 42, 42, 17, 21, 10, 9, 20, 4, 31, 10, 88, 60, 6, 14, 21, 38, 23, 39, 3, 0, 5, 1, 1, 1]","[63, 9, 5, 15, 11, 8, 8, 2, 3, 4, 0, 12, 1, 17, 10, 2, 2, 6, 5, 5, 9, 1, 0, 2, 0, 0, 0]","[12, 18, 6, 2, 8, 11, 5, 1, 0, 1, 4, 6, 8, 11, 13, 9, 2, 6, 6, 9, 5, 13, 7, 10, 8, 2, 1]","[6, 4, 2, 0, 2, 2, 0, 0, 0, 0, 2, 3, 3, 4, 5, 2, 0, 2, 2, 1, 3, 4, 3, 2, 3, 0, 0]",64,0,12,4 -https://github.com/squizlabs/PHP_CodeSniffer,2014-09-16 15:57:24+10:00,58c0fdc412824222f33d15e418f826e6dcbff4e6,"[3, 4, 1, 0, 1, 6, 4, 3, 4, 6, 0, 0, 2, 7, 11, 8, 4, 0, 0, 5, 7, 2, 1, 8, 16, 1, 1]","[1, 2, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0]","[6, 20, 1, 35, 15, 21, 21, 14, 2, 14, 18, 12, 21, 15, 13, 25, 34, 37, 2, 17, 11, 19, 0, 18, 6, 0, 1]","[1, 3, 0, 6, 2, 0, 4, 5, 1, 0, 1, 1, 1, 0, 0, 6, 2, 2, 0, 3, 0, 5, 0, 2, 2, 0, 0]",16,0,14,0 -https://github.com/letsencrypt/letsencrypt,2015-03-21 12:51:33-07:00,5eb007cc317db5a12e01ded18e344a73155f7c1e,"[0, 0, 0, 0, 0, 0, 3, 13, 148, 135, 69, 58, 31, 29, 3, 10, 27, 45, 73, 62, 101, 33, 47, 4, 5, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 34, 31, 20, 15, 6, 16, 1, 1, 8, 10, 24, 6, 27, 8, 7, 2, 3, 1, 0]","[112, 32, 10, 62, 37, 47, 58, 102, 63, 31, 47, 40, 53, 144, 36, 72, 67, 55, 48, 30, 31, 29, 34, 10, 77, 50, 1]","[26, 12, 1, 3, 10, 12, 10, 30, 22, 12, 17, 13, 17, 49, 8, 15, 19, 17, 14, 10, 13, 6, 17, 0, 25, 22, 1]",26,6,29,6 -https://github.com/googlei18n/fontmake.git,2015-11-16 16:58:47-08:00,ff8f62e92f06cef4158fb9be327487d45ba047e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 0, 0, 0, 2, 0, 0, 3, 1, 9, 3, 7, 1, 2, 0, 3, 8, 16, 1, 6, 4, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0]",1,2,3,0 -https://gitlab.com/oath-toolkit/oath-toolkit,2023-07-08 15:54:41+02:00,8f311c3e20cf1ddd7392b9ca229c78e39400ca26,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://salsa.debian.org/ruby-team/ruby-github-markup,2015-09-23 16:11:55+05:30,b8a217e59476ce3a07497642d8535993cda832b5,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 -https://github.com/include-what-you-use/include-what-you-use,2017-07-16 11:26:23+02:00,ca06167b607eb473d62d908d1cc0bb3a2bb13fae,"[0, 9, 1, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 1, 0, 0, 2, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 2, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/mathjax/MathJax,2014-06-12 11:30:50-04:00,60e0a8c5cd57acb366a0a49004d8fd61b8acbf87,"[0, 0, 0, 2, 5, 0, 2, 0, 50, 46, 18, 4, 0, 21, 5, 0, 5, 8, 19, 5, 16, 3, 0, 10, 13, 4, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 20, 23, 7, 1, 0, 11, 2, 0, 0, 3, 8, 1, 0, 0, 0, 5, 5, 0, 1]","[2, 2, 0, 1, 1, 2, 0, 3, 0, 30, 10, 19, 19, 16, 0, 0, 0, 4, 4, 1, 3, 0, 6, 0, 0, 16, 0]","[2, 0, 0, 0, 0, 2, 0, 2, 0, 13, 5, 9, 5, 7, 0, 0, 0, 2, 0, 1, 3, 0, 2, 0, 0, 8, 0]",3,2,4,0 -https://github.com/puppetlabs/marionette-collective,2016-05-17 11:14:46-07:00,9030ad1e93aea1a8f9ec8473011cedf7810daeb1,"[0, 2, 0, 2, 1, 1, 2, 0, 4, 4, 0, 2, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 2, 0]","[0, 1, 0, 1, 0, 1, 1, 0, 1, 2, 0, 1, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]","[5, 0, 1, 3, 2, 10, 0, 2, 3, 0, 4, 3, 2, 4, 0, 0, 4, 3, 5, 0, 0, 3, 3, 0, 10, 0, 1]","[2, 0, 0, 2, 0, 4, 0, 1, 1, 0, 0, 2, 2, 1, 0, 0, 2, 1, 4, 0, 0, 2, 1, 0, 7, 0, 0]",4,6,17,2 -https://github.com/elastic/elasticsearch-ruby,2013-09-24 19:48:46+02:00,d8e5ed91bdb14bb2bad6ae04639fddf404e4b703,"[0, 0, 0, 0, 1, 0, 0, 27, 0, 0, 0, 2, 90, 4, 0, 0, 1, 11, 0, 0, 0, 0, 0, 6, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 9, 4, 8, 14, 5, 0, 3, 8, 11, 17, 8, 1, 5, 23, 42, 6, 6, 43, 32, 16, 0, 5, 5, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 -https://github.com/python-social-auth/social-app-django.git,2016-11-05 02:18:00-03:00,77a3ec42468640dd67086e6afba3375cb7ae8135,"[2, 1, 0, 1, 20, 1, 1, 1, 0, 4, 13, 7, 2, 41, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 10, 0, 0, 24, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 8, 3, 0, 5, 4, 1, 0, 7, 11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 5, 1]","[0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0]",20,0,8,1 -https://github.com/resurrecting-open-source-projects/packit,2016-05-09 10:06:35-03:00,7d0a0fdeedf95d192f6561ea02f4146f2764ff07,"[0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Icinga/icinga2,2017-04-18 18:04:56+02:00,fac61a5bfafd8eb2a0445d62df9079b934cee3e3,"[4, 1, 4, 12, 25, 7, 7, 19, 4, 0, 0, 1, 11, 1, 4, 11, 32, 8, 16, 5, 29, 24, 15, 32, 11, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 6, 1, 2, 1, 0, 1, 0, 2, 0]","[16, 14, 32, 42, 14, 26, 17, 23, 28, 11, 5, 0, 2, 9, 5, 30, 45, 20, 7, 19, 69, 15, 55, 16, 9, 17, 1]","[1, 5, 11, 18, 6, 11, 7, 12, 13, 5, 2, 0, 1, 3, 2, 10, 16, 8, 3, 4, 7, 6, 17, 6, 6, 11, 0]",18,2,29,1 -https://github.com/webcamoid/webcamoid.git,2015-06-19 13:40:58-03:00,2b36be98c48515fab027193b18620849343db752,"[3, 7, 3, 5, 4, 1, 7, 9, 6, 6, 3, 0, 0, 0, 1, 1, 11, 1, 0, 0, 0, 2, 1, 0, 1, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 1, 4, 2, 0, 0, 1, 2, 3, 1, 0, 1, 3, 5, 13, 9, 2, 0, 2, 3, 5, 2, 3, 2, 3, 1]","[2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0]",10,1,4,1 -https://github.com/colmap/colmap,2017-06-24 18:30:17+02:00,5bea89263bf5f3ed623b8e6e6a5f022a0ed9c1de,"[0, 14, 5, 3, 2, 4, 8, 1, 14, 6, 0, 4, 31, 15, 16, 12, 16, 25, 13, 46, 0, 19, 27, 5, 30, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 3, 0, 18, 4, 24, 19, 21, 5, 5, 11, 19, 8, 2, 0, 11, 4, 0, 1, 0, 0, 12, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0 -https://github.com/major/MySQLTuner-perl,2015-06-16 15:20:36+02:00,b7fbf3832f7cc7fbe348ef5fec82e292b3167a14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 -https://github.com/puppetlabs/clj-kitchensink.git,2014-04-15 16:50:33-07:00,4ccb6af985ce4d98f5251317d774ccf3d98d7664,"[0, 3, 4, 21, 10, 14, 4, 1, 2, 7, 4, 8, 7, 0, 1, 9, 3, 11, 8, 0, 2, 3, 0, 0, 6, 0, 2]","[0, 0, 1, 8, 4, 6, 1, 0, 1, 1, 1, 2, 1, 0, 0, 3, 0, 4, 2, 0, 1, 0, 0, 0, 1, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[5, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",12,1,1,4 -https://gitlab.gnome.org/GNOME/gnome-desktop.git,2018-12-27 20:26:34+00:00,870618416465c2c5b2690185ff3dbf3d38e1b0a1,"[0, 0, 6, 1, 24, 12, 9, 6, 7, 11, 9, 1, 1, 1, 1, 1, 1, 0, 2, 4, 0, 0, 0, 6, 3, 2, 1]","[0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 13, 6, 2, 7, 4, 1, 1, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",26,0,7,6 -https://github.com/isaacs/inherits,2016-12-15 10:53:17-08:00,f721d6bee2d6df13262a190fee1f48e21ed72b42,"[0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/mlpack/ensmallen,2018-10-18 01:02:08-04:00,51dbf63a19477526914e955d677dbd3bf4c15439,"[7, 9, 4, 2, 12, 0, 5, 5, 6, 7, 5, 7, 3, 3, 0, 5, 0, 0, 0, 1, 2, 1, 2, 7, 62, 103, 2]","[6, 7, 3, 2, 11, 0, 2, 4, 5, 6, 5, 7, 3, 1, 0, 5, 0, 0, 0, 1, 2, 1, 2, 2, 0, 15, 0]","[58, 10, 5, 8, 10, 26, 24, 11, 4, 0, 11, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 1]","[9, 1, 0, 2, 2, 4, 6, 5, 2, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,1 -https://github.com/voxpupuli/beaker,2014-07-23 16:15:46-07:00,5b1fc8a945da104752b6dba19475c1b68db5e610,"[33, 30, 2, 7, 15, 6, 14, 21, 17, 9, 7, 24, 8, 28, 16, 15, 24, 6, 16, 21, 28, 23, 28, 38, 11, 22, 2]","[18, 14, 1, 2, 8, 3, 5, 9, 7, 4, 1, 8, 4, 7, 6, 6, 13, 2, 6, 4, 12, 8, 8, 18, 6, 9, 1]","[19, 13, 23, 20, 20, 12, 18, 4, 21, 10, 4, 6, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 11, 8, 7, 2, 11, 2, 8, 5, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",24,1,8,9 -https://github.com/apache/trafficserver,2016-09-15 15:26:51-07:00,2e002a4a5ee89218771133d3166a51dd199cdd9d,"[0, 0, 0, 0, 2, 9, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 7, 4, 12, 22, 6, 22, 24, 1, 1, 3, 5, 5, 2, 0, 0, 0, 0, 3, 2, 10, 5, 0, 0, 10, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0 -https://gitlab.gnome.org/GNOME/json-glib.git,2021-06-08 17:33:05+01:00,3f67ed0912a90c9bca03233929291d9d6c5baf22,"[0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 13, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]","[23, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 1, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0 -https://github.com/ahmetb/kubectx,2017-03-29 00:30:12-07:00,6de838135f670a66e29e5bd8bf0a66bcf38d9e9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 3, 0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/gpodder/mygpoclient,2017-06-13 13:24:22-05:00,36f776df9993aade39059884a441bb61b91e3b4c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 2, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/ua-parser/uap-core.git,2014-02-17 16:00:07+01:00,ec27337e6f8417e8db9b0c88f84ecf7c81e5466b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/KhronosGroup/SPIRV-LLVM-Translator,2020-08-24 12:53:24+03:00,0bcb157a0233d0cb7dd43e6b28fc7aadcea49ef7,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 13, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 12, 7, 6, 4, 6, 17, 11, 5, 2, 2, 0, 0, 12, 11, 11, 6, 2, 3, 0, 1, 8, 3, 5, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,10,0 -https://github.com/puppetlabs/puppetlabs-apache,2013-10-02 21:36:32+01:00,c04e97311ffa4fbfc016263ef0dbe1e1f8e13373,"[0, 0, 6, 44, 2, 13, 5, 6, 14, 27, 41, 13, 5, 5, 12, 9, 12, 14, 11, 15, 34, 22, 12, 5, 12, 30, 1]","[0, 0, 2, 15, 0, 3, 1, 0, 3, 9, 13, 3, 3, 3, 6, 0, 2, 10, 3, 3, 15, 9, 4, 2, 7, 17, 0]","[10, 7, 12, 9, 10, 41, 28, 20, 6, 18, 13, 5, 0, 3, 8, 6, 21, 20, 21, 12, 15, 28, 14, 3, 7, 12, 0]","[4, 4, 6, 4, 4, 18, 8, 11, 2, 7, 6, 1, 0, 1, 4, 1, 14, 5, 8, 5, 8, 13, 6, 1, 3, 6, 0]",54,3,45,10 -https://gitlab.com/gnutls/libtasn1,2018-06-16 15:07:21+02:00,ffc3058bc909fc83e4db3d8b80f3595a76d9b6d2,"[0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1 -https://gitlab.gnome.org/GNOME/gdk-pixbuf,2018-04-30 18:11:40+01:00,b20f359cb75291d4968c0752cf76a84c90551927,"[1, 0, 2, 1, 10, 22, 2, 0, 4, 1, 7, 2, 1, 0, 3, 0, 5, 3, 4, 3, 0, 0, 1, 0, 0, 19, 17]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 8, 39, 3, 4, 2, 4, 0, 0, 0, 1, 0, 2, 0, 5, 9, 10, 15, 2, 1, 6, 0, 0, 2, 1]","[0, 0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0]",19,1,13,0 -https://github.com/MatMoul/g810-led.git,2017-05-12 22:55:24+02:00,9b7158c6f080aebe284d1a5d22765ef3283afd4b,"[8, 0, 12, 11, 7, 0, 14, 25, 5, 10, 18, 0, 11, 7, 2, 7, 0, 22, 11, 6, 4, 10, 1, 11, 7, 11, 2]","[0, 0, 2, 2, 3, 0, 0, 2, 0, 1, 2, 0, 0, 0, 1, 0, 0, 3, 2, 0, 2, 1, 0, 1, 1, 1, 0]","[9, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",17,0,2,0 -https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,2018-09-10 18:40:29-07:00,5cdae33fb032a0eca57bfb9baf5d823564715d10,"[1, 1, 0, 3, 1, 4, 0, 0, 0, 0, 0, 4, 5, 1, 2, 3, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 1, 1, 0, 1, 1, 1, 3, 0, 1, 1, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,11,2 -https://github.com/scop/bash-completion,2016-02-14 22:49:06+02:00,0345d028ee4ad7793d6293a54bb69929e442041b,"[0, 0, 6, 1, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 29, 14, 14, 5, 5, 4, 5, 16, 5, 5, 3, 5, 0, 4, 0, 0, 0, 0, 0, 1, 1, 5, 0, 9, 12, 0]","[0, 2, 1, 2, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",2,1,12,0 -https://github.com/nicolargo/glances,2015-06-07 12:10:22+02:00,92fd4918807749ebc9dfd21d6e063edbc00f01be,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 -https://github.com/eslint/eslint-scope.git,2015-03-07 05:41:31+09:00,14d0b6ffe3d6cc583b31fac1348fea757ec455f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 10, 3, 8, 9, 0, 0, 0, 3, 2, 0, 2, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 11, 0, 0, 0, 0, 0, 0, 4, 1, 6, 2, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,4,0 -https://github.com/Icinga/icingaweb2.git,2017-05-24 11:17:48+02:00,ffd371f257111d9ecd0e32cfe8eaf08b022ba5fc,"[37, 9, 73, 8, 0, 0, 8, 9, 10, 4, 10, 20, 2, 4, 0, 3, 1, 19, 1, 0, 0, 0, 3, 7, 0, 1, 2]","[1, 1, 12, 0, 0, 0, 1, 2, 1, 1, 1, 4, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 12, 22, 6, 5, 7, 12, 7, 2, 35, 9, 7, 7, 0, 0, 13, 35, 20, 17, 19, 13, 35, 27, 30, 44, 99, 1]","[1, 5, 0, 0, 2, 1, 1, 0, 0, 3, 2, 4, 1, 0, 0, 5, 1, 5, 3, 4, 1, 8, 2, 11, 7, 24, 0]",6,0,13,1 -https://github.com/Fluidsynth/fluidsynth.git,2017-10-28 22:15:46+02:00,a1b9ffd5ba6597ce5671057981caddebc4d2ab2b,"[0, 0, 0, 0, 0, 0, 0, 0, 13, 17, 18, 2, 13, 23, 18, 11, 12, 17, 27, 18, 51, 9, 48, 18, 100, 86, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 2, 2, 3, 1, 1, 2, 5, 2, 5, 0, 8, 1, 5, 14, 0]","[30, 63, 42, 54, 62, 25, 23, 11, 19, 14, 7, 7, 7, 1, 4, 6, 12, 3, 8, 6, 16, 9, 67, 41, 10, 33, 1]","[2, 8, 4, 6, 6, 5, 3, 0, 3, 0, 0, 1, 1, 0, 0, 3, 1, 0, 1, 0, 0, 2, 2, 5, 0, 2, 0]",16,2,12,3 -https://github.com/astropy/astropy-helpers,2014-07-15 01:10:12-04:00,c4466268c2c28f3c6a81cb48a907c3d9a066e1ef,"[0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 5, 0, 15, 0, 0, 0, 0, 14, 36, 16, 19, 7, 6, 21, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 6, 8, 1, 2, 4, 0, 1, 1]","[7, 1, 0, 9, 0, 0, 0, 0, 10, 0, 0, 2, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,0,5 -https://github.com/eclipse-ee4j/eclipselink.git,2018-06-28 01:02:56+02:00,f194797222adc97d62c7d1f462ae368c4cd8426a,"[0, 7, 9, 2, 1, 2, 7, 8, 2, 7, 2, 2, 18, 4, 5, 0, 1, 3, 0, 6, 0, 1, 3, 10, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[7, 6, 0, 2, 0, 6, 1, 2, 0, 2, 0, 0, 1, 4, 0, 1, 1, 2, 0, 0, 1, 3, 0, 0, 15, 8, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,3,1 -https://github.com/LLNL/sundials.git,2019-01-22 10:53:39-08:00,4394d2dcdd46293be45931a524a4e28a8a23f887,"[16, 12, 33, 7, 6, 9, 11, 12, 2, 16, 2, 1, 2, 3, 1, 1, 2, 0, 2, 7, 5, 1, 0, 0, 0, 3, 2]","[3, 1, 6, 0, 1, 3, 2, 1, 0, 4, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]","[3, 9, 5, 3, 16, 0, 1, 4, 3, 4, 1, 1, 12, 8, 2, 10, 1, 1, 2, 0, 0, 4, 5, 0, 17, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]",0,0,0,0 -https://github.com/google/jimfs.git,2014-05-14 17:57:50-04:00,f439b411c4f7a88908cc7d7c44ee4c97a54f7764,"[3, 0, 2, 15, 2, 1, 0, 0, 0, 2, 11, 8, 2, 0, 5, 0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 5, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 5, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0]","[0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,1 -https://github.com/jashkenas/coffeescript,2012-09-17 13:16:41-04:00,7595cb689ae1fca537e4fd781672f7cd33dcd3cd,"[2, 2, 2, 16, 2, 18, 1, 7, 25, 3, 0, 3, 1, 0, 2, 4, 2, 0, 0, 0, 2, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 3, 1, 4, 0, 1, 2, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[0, 7, 2, 0, 2, 8, 1, 0, 9, 4, 3, 0, 0, 1, 0, 14, 4, 18, 8, 16, 2, 5, 27, 51, 15, 1, 0]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 4, 2, 2, 1, 2, 7, 14, 1, 0, 0]",10,3,16,0 -https://gitlab.com/libosinfo/osinfo-db.git,2019-11-19 15:13:17+00:00,69b8fd55af7b9d865ec094e3891bad0add66cc5e,"[12, 11, 6, 0, 18, 7, 0, 7, 2, 20, 8, 0, 10, 6, 13, 7, 10, 3, 1, 18, 6, 16, 0, 6, 19, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 4, 9, 0, 0, 1, 5, 4, 1, 9, 0, 9, 0, 4, 7, 2, 2, 8, 2, 2, 12, 8, 13, 13, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,13,0 -https://github.com/totalopenstation/totalopenstation.git,2020-01-08 15:59:18+01:00,7a66cffa8fab534f23912dcf820f46055e7b0cc7,"[0, 0, 0, 0, 0, 0, 33, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 4, 1, 6, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1 -https://github.com/pydanny/cached-property.git,2014-05-17 15:42:43-07:00,7161ec8bf07e46aa08216e494a29d0428b7d988b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/prometheus/mysqld_exporter,2015-03-12 18:58:52+03:00,4a2553da879a5c332e29058eeab30de64d4d7b02,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 7, 1, 4, 0, 0, 4, 3, 0, 0, 3, 0, 3, 5, 0, 0, 7, 2, 0, 0, 1, 0, 14, 11, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 6, 5, 2, 0]",2,5,14,0 -https://github.com/Iotic-Labs/py-ubjson,2016-02-12 15:50:03+00:00,61cabd66aba5dd1d5cdaf83888584c720a96917a,"[8, 4, 4, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 1, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/httprb/http.rb,2015-01-13 03:30:16+01:00,24428d29d0f30bd00f75a765a624824d0a8b9875,"[0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 1, 5, 0, 0, 29, 0, 10, 0, 48, 24, 15, 0, 5, 0, 30, 7, 6, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 0, 0, 0, 0, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,3,9,0 -https://github.com/silx-kit/pyFAI,2018-12-12 14:03:01+01:00,0bc64b578d2549d672b976e52dcdef02b4c7c96c,"[16, 3, 17, 10, 33, 7, 0, 0, 7, 3, 9, 245, 7, 1, 4, 33, 48, 28, 51, 41, 20, 17, 20, 31, 50, 27, 2]","[5, 2, 10, 0, 3, 4, 0, 0, 0, 3, 4, 12, 3, 0, 0, 11, 13, 5, 16, 7, 5, 1, 7, 4, 14, 6, 1]","[122, 10, 0, 47, 107, 73, 43, 64, 12, 0, 69, 42, 13, 28, 6, 0, 82, 7, 26, 31, 24, 97, 108, 3, 0, 1, 0]","[35, 5, 0, 3, 16, 10, 11, 12, 5, 0, 2, 1, 4, 5, 0, 0, 0, 2, 5, 3, 7, 13, 37, 1, 0, 1, 0]",4,1,4,2 -https://github.com/troglobit/inadyn,2016-12-01 00:29:07+01:00,21ec102da141967b0043b4bb0a7bf7302bd056ea,"[5, 2, 12, 5, 5, 3, 1, 0, 0, 0, 8, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1 -https://gitlab.gnome.org/GNOME/gvfs.git,2018-07-19 14:03:06+02:00,98d0533d57756f8092dd1b4cc717143d3b1c313e,"[4, 0, 3, 9, 9, 11, 9, 6, 13, 6, 6, 5, 12, 2, 0, 4, 8, 4, 5, 1, 0, 0, 0, 1, 4, 9, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 5, 5, 4, 10, 13, 2, 0, 12, 1, 2, 0, 1, 4, 1, 0, 1, 1, 1, 6, 2, 0, 1, 34, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,6,0 -https://github.com/vim-airline/vim-airline.git,2016-01-18 14:01:39-05:00,348663f7f8826b82efdd9ef11c98b8eddaba2e2b,"[0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 10, 3, 2, 0, 0, 0, 3, 1, 0, 0, 0, 0, 3, 7, 2, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 5, 0]","[27, 54, 32, 16, 15, 24, 7, 3, 3, 8, 0, 5, 2, 14, 11, 1, 15, 3, 2, 4, 1, 1, 3, 14, 0, 0, 1]","[13, 24, 12, 5, 7, 10, 3, 1, 0, 5, 0, 3, 1, 7, 5, 0, 6, 1, 1, 1, 1, 0, 0, 8, 0, 0, 0]",11,1,31,1 -https://github.com/puppetlabs/puppetlabs-postgresql.git,2014-06-25 17:23:35-07:00,c63a7ba857333b3203bfd32a1914daa5dd44d1cc,"[0, 6, 2, 11, 7, 0, 2, 6, 6, 35, 4, 0, 4, 12, 5, 0, 4, 2, 9, 41, 2, 0, 3, 4, 0, 3, 1]","[0, 3, 1, 9, 3, 0, 1, 3, 3, 17, 0, 0, 1, 5, 2, 0, 3, 1, 3, 9, 1, 0, 1, 2, 0, 1, 0]","[14, 7, 6, 2, 16, 6, 1, 3, 12, 28, 10, 4, 1, 1, 7, 2, 0, 4, 11, 0, 0, 3, 5, 8, 0, 2, 1]","[5, 2, 3, 0, 6, 3, 1, 0, 5, 15, 5, 0, 0, 0, 7, 1, 0, 1, 7, 0, 0, 1, 1, 3, 0, 2, 0]",16,1,25,3 -https://github.com/jupyter/jupyter_client,2015-04-09 00:12:21-07:00,e7d7c01a9afd0ddcc8c183223a340ffa44468621,"[4, 11, 2, 1, 2, 2, 1, 4, 29, 11, 4, 1, 5, 0, 5, 4, 3, 1, 3, 0, 4, 3, 0, 5, 26, 27, 2]","[1, 6, 0, 1, 1, 1, 0, 2, 3, 3, 2, 0, 3, 0, 2, 1, 1, 0, 1, 0, 2, 1, 0, 3, 5, 7, 0]","[10, 2, 4, 8, 8, 2, 12, 10, 2, 6, 3, 2, 11, 13, 2, 1, 2, 4, 4, 7, 0, 5, 6, 4, 0, 9, 1]","[3, 1, 1, 4, 4, 1, 2, 4, 1, 2, 1, 1, 4, 5, 1, 0, 1, 0, 2, 4, 0, 2, 2, 2, 0, 2, 0]",7,1,6,0 -https://github.com/florimondmanca/djangorestframework-api-key,2018-11-02 21:39:13+01:00,41c564f401aeb7e9a3b7731f324b01c0fc1f6859,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 38, 20, 0, 9, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 1, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 37, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 10, 0, 0]",2,0,0,2 -https://github.com/Backblaze/b2-sdk-python.git,2020-07-29 12:07:47+02:00,dfe4618e350955efb628138a8e0a590b0ab72c8e,"[3, 0, 0, 0, 0, 20, 0, 0, 0, 1, 3, 0, 18, 12, 3, 4, 0, 36, 10, 3, 2, 8, 5, 3, 3, 26, 2]","[2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 7, 0, 1, 0, 9, 4, 1, 1, 1, 1, 1, 0, 2, 0]","[3, 16, 1, 1, 3, 14, 12, 4, 4, 9, 10, 2, 1, 15, 1, 3, 0, 5, 2, 0, 0, 0, 0, 9, 2, 3, 0]","[1, 2, 0, 0, 0, 6, 3, 0, 2, 4, 4, 1, 0, 5, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0]",5,0,8,2 -https://github.com/infirit/caja-admin,2015-09-16 17:05:34+01:00,accfea70349ecb96cefa0713a10b2eadc43c54ef,"[0, 0, 0, 0, 11, 3, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 5, 3, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,3,0 -https://github.com/google/flatbuffers.git,2014-12-08 17:48:06-08:00,14eaddfdcc28b89521625172fa34f710a5082c2e,"[6, 3, 0, 0, 3, 3, 1, 1, 0, 1, 3, 0, 1, 3, 2, 1, 0, 0, 2, 1, 0, 0, 0, 2, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/osantana/dicteval.git,2018-10-01 23:28:11-03:00,5e1970132fd7a6ac55785648a89cf2e3e2131965,"[0, 4, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,7,1 -https://github.com/akheron/jansson.git,2021-09-12 18:37:43+03:00,eb816708811429261974fc28fbf779aaaab1d546,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jupyter/jupyter_console,2015-04-09 14:58:56-07:00,01911a59496d49002da76d73c83a00fd735f63e4,"[3, 1, 0, 0, 5, 4, 0, 2, 2, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 2, 0, 0, 0, 10, 2, 10, 2]","[1, 1, 0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 0]","[1, 0, 1, 0, 2, 0, 2, 0, 5, 0, 0, 7, 2, 10, 0, 0, 0, 5, 0, 2, 10, 0, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 1, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0]",5,0,4,0 -https://gitlab.gnome.org/GNOME/gcr.git,2021-01-16 11:40:41+01:00,f1f1a85026f04f32a53269c104b72f187f1c5b47,"[0, 0, 1, 4, 5, 5, 3, 7, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 2, 0, 0, 4, 0, 0, 0, 2, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,4,0 -https://github.com/porridge/bambam,2022-10-05 20:49:55+02:00,fca59a1105d1586139f938cd83cff2284e5b7347,"[0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 30, 3, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 2, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 -https://github.com/SethMMorton/natsort.git,2017-11-11 22:35:35-08:00,1a37d0ec62dd0949a24a4a5de41d91033c656a1f,"[0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 8, 6, 5, 2, 0, 0, 0, 0, 2, 0, 5, 3, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]",1,1,3,1 -https://github.com/donnemartin/gitsome,2016-05-05 22:24:56-04:00,57200842984c0d9c12600373652e4f4047db5ef4,"[141, 54, 14, 1, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 54, 88, 27, 94, 99, 105, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[109, 42, 33, 45, 5, 5, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 1, 3, 1]","[5, 11, 1, 14, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,2,16,0 -https://github.com/lualdap/lualdap.git,2019-01-03 00:52:55+01:00,b3a33927a0c1e97dd7d73570c81b730041304699,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 6, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/ycm-core/ycmd,2014-05-16 23:31:44-07:00,4895159712d9acf3b1cf45e1c93a654d5b93c6d5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 31, 7, 5, 2, 0, 3, 0, 3, 11, 1, 13, 0, 7, 54, 7, 0, 2, 0, 5, 6, 5, 1, 0, 2, 0, 1]","[2, 1, 0, 1, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 1, 1, 3, 0, 0, 1, 0, 0]",2,2,13,0 -https://github.com/KhronosGroup/Vulkan-Tools,2016-02-26 15:42:57-07:00,c5f63ad07fab1241c70b0f852ff4a570fb11af8b,"[35, 35, 57, 49, 32, 46, 16, 18, 100, 111, 24, 34, 17, 58, 34, 65, 6, 30, 94, 46, 41, 93, 85, 72, 49, 43, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]","[54, 65, 39, 66, 75, 77, 37, 44, 42, 80, 75, 76, 50, 50, 25, 40, 74, 50, 37, 25, 46, 9, 32, 31, 41, 48, 1]","[2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",37,7,29,3 -https://github.com/Ranks/emojione,2015-12-27 20:17:30-08:00,a3321d7d22ea482aa229269e02fa081beb889d28,"[5, 0, 7, 0, 2, 1, 0, 0, 2, 3, 1, 0, 0, 1, 1, 1, 10, 11, 9, 2, 0, 0, 3, 0, 20, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 1, 0, 0, 1, 0, 2, 0, 0]","[8, 12, 0, 0, 5, 3, 4, 4, 5, 1, 2, 7, 10, 2, 3, 0, 0, 0, 0, 0, 0, 0, 10, 2, 4, 8, 1]","[2, 1, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0]",12,4,11,1 -https://github.com/codedread/scour.git,2016-09-18 22:36:21+02:00,7e2b5e43df2f5bf6fc724396de73429423b15fe1,"[1, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 4, 1, 13, 19, 13, 22, 2]","[1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 1, 1, 3, 0]","[10, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,1,1 -https://github.com/sinatra/sinatra.git,2015-03-23 22:35:41-07:00,2ea4612d082119ec170ab860a6488fe8bd6a6964,"[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 2, 2, 0, 3, 9, 0, 4, 2, 12, 0, 3, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 1, 0, 0, 4, 0, 3, 1, 6, 0, 1, 0, 0, 0, 2, 1]","[1, 4, 10, 2, 0, 5, 0, 0, 4, 0, 0, 0, 5, 2, 0, 0, 4, 0, 0, 0, 2, 2, 0, 0, 1, 2, 0]","[1, 1, 4, 1, 0, 2, 0, 0, 3, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 1, 0]",11,1,8,0 -https://github.com/prehor/amavisd-milter,2019-01-07 00:41:58+01:00,1b2d12499c59f754abfe50630ec821e60b4411ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 19, 11, 5, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,0,0 -https://github.com/eavgerinos/pkg-pick,2017-04-19 15:41:59+03:00,559c4afb695dcfe0f7f8efd239d3af20728b7506,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 -https://github.com/capistrano/capistrano.git,2013-11-20 13:38:12+01:00,50164d08340f23dd5d313c282a3622c4f3472aa8,"[22, 6, 6, 18, 6, 11, 26, 11, 3, 3, 12, 12, 4, 2, 8, 3, 2, 0, 5, 3, 11, 21, 12, 26, 6, 2, 2]","[0, 0, 1, 2, 0, 2, 4, 4, 1, 1, 3, 5, 3, 1, 3, 1, 1, 0, 2, 1, 5, 9, 5, 9, 2, 1, 0]","[16, 0, 1, 3, 8, 4, 12, 12, 4, 9, 5, 1, 5, 6, 6, 4, 3, 8, 4, 4, 27, 16, 6, 0, 0, 0, 0]","[7, 0, 0, 0, 4, 2, 6, 4, 0, 6, 3, 0, 1, 2, 2, 2, 1, 4, 1, 1, 17, 6, 3, 0, 0, 0, 0]",24,1,44,1 -https://github.com/rakhimov/scram.git,2015-05-25 15:15:09-07:00,d75adbf8c87758790843f79abd54bb2c0edec4b7,"[22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 14, 8, 17, 14, 3, 0, 1, 0, 0, 16, 9, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 54, 19, 21, 28, 45, 20, 11, 32, 30, 37, 75, 42, 22, 36, 33, 14, 39, 46, 37, 36, 25, 8, 7, 8, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bit-team/backintime,2023-03-13 07:35:38+01:00,d645bee63a96503e0b9aa4b7b6f927baf367c713,"[8, 7, 4, 14, 0, 13, 5, 10, 2, 4, 2, 2, 1, 2, 0, 2, 3, 0, 1, 0, 3, 0, 0, 0, 2, 1, 1]","[2, 1, 2, 5, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 1, 0, 0, 7, 6, 8, 1, 4, 5, 2, 1, 3, 7, 1, 4, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",4,0,1,1 -https://github.com/HaxeFoundation/haxe-debian,2015-08-26 14:24:54+08:00,4c397eb8d7190fc371fcdb24cd3026ffa7cb3ce2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 6, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/angband/angband,2021-07-17 08:31:48+10:00,d38f07c60e2ba0d1ec4b2ccbc88919900bcede1c,"[0, 4, 4, 5, 9, 8, 4, 1, 0, 0, 26, 8, 11, 8, 20, 17, 7, 21, 14, 35, 2, 17, 10, 10, 15, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 28, 27, 20, 8, 6, 12, 1, 7, 0, 6, 4, 0, 11, 7, 8, 14, 2, 13, 8, 9, 17, 19, 21, 11, 20, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,10,0 -https://gitlab.gnome.org/GNOME/gnome-clocks.git,2020-03-01 19:05:43+01:00,3492deeb4819c7d4fbd78315012a49c2f21a05f4,"[0, 3, 3, 26, 5, 1, 2, 1, 1, 4, 1, 0, 1, 9, 2, 2, 3, 2, 2, 3, 5, 46, 28, 8, 27, 43, 2]","[0, 0, 1, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0]","[11, 6, 0, 0, 6, 13, 5, 1, 3, 6, 1, 2, 0, 9, 38, 4, 3, 6, 4, 6, 0, 5, 14, 10, 11, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,25,3 -https://github.com/libevent/libevent,2016-10-05 15:51:40+03:00,a22d2033861284c0f25096b00bed8552a1ce2ed4,"[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/alanxz/rabbitmq-c.git,2012-11-07 00:51:29-05:00,6aa5779d74353f03e56d0c5079885ec2535011a8,"[4, 27, 23, 0, 3, 4, 4, 1, 0, 0, 3, 0, 0, 0, 0, 0, 2, 1, 1, 2, 4, 12, 2, 7, 2, 1, 1]","[0, 1, 4, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 3, 0, 0, 0, 0, 0]","[0, 9, 0, 2, 0, 0, 1, 2, 0, 5, 6, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 47, 0, 24, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",9,0,2,0 -https://github.com/tarantool/tarantool,2022-06-01 10:44:27+03:00,55bdb42dac13af7098e2a110c5539ee3686f715c,"[21, 39, 22, 10, 11, 1, 22, 21, 14, 17, 23, 14, 5, 16, 12, 15, 45, 20, 19, 31, 74, 17, 14, 15, 33, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 8, 26, 26, 37, 33, 31, 14, 31, 48, 19, 9, 32, 29, 18, 30, 7, 45, 36, 29, 29, 18, 24, 16, 12, 30, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,11,0 -https://github.com/opencontainers/runc,2015-01-29 15:35:22-08:00,689e8ec9493a4294856dc1568f5ef667e106707c,"[21, 38, 7, 8, 13, 6, 8, 15, 13, 3, 10, 12, 19, 17, 8, 25, 6, 7, 13, 7, 14, 0, 0, 15, 13, 6, 1]","[5, 11, 2, 4, 5, 3, 3, 7, 4, 2, 5, 5, 9, 7, 3, 9, 3, 4, 0, 1, 1, 0, 0, 4, 3, 1, 1]","[21, 39, 24, 42, 34, 30, 14, 22, 22, 22, 28, 19, 9, 21, 7, 69, 9, 8, 27, 16, 37, 50, 29, 24, 6, 0, 0]","[7, 10, 12, 22, 12, 13, 8, 9, 9, 11, 14, 7, 5, 8, 4, 11, 4, 4, 10, 8, 13, 20, 14, 12, 3, 0, 0]",31,4,58,4 -https://github.com/voxpupuli/pypuppetdb,2021-02-13 11:11:44+01:00,a56ee6336fefff35aac69a625e772d10e228c630,"[0, 0, 0, 5, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 4, 12, 0, 0, 2, 0, 2, 36, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 6, 0, 0, 2, 0, 1, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 -https://github.com/mongodb/mongo-c-driver,2012-11-14 11:42:45-05:00,8a39279e05d864de4996f691d4312183cdb39a2c,"[3, 5, 11, 0, 2, 1, 11, 3, 0, 0, 14, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 0, 1, 1, 2, 2, 26, 0, 5, 3, 4, 0, 0, 6, 4, 1, 18, 80, 14, 1, 0, 0, 0, 0, 0, 1]","[2, 1, 0, 0, 0, 1, 1, 9, 0, 1, 1, 0, 0, 0, 4, 1, 0, 7, 33, 6, 1, 0, 0, 0, 0, 0, 0]",9,4,13,3 -https://github.com/ipython/ipykernel.git,2015-04-09 12:02:45-07:00,8b877ac254ecbd94b3af329380d020566eb9dc6a,"[6, 3, 14, 2, 3, 2, 6, 6, 22, 14, 1, 2, 2, 2, 5, 4, 4, 2, 5, 2, 5, 0, 0, 8, 24, 14, 2]","[3, 1, 5, 1, 2, 0, 2, 3, 7, 4, 1, 1, 1, 1, 2, 2, 0, 1, 3, 0, 2, 0, 0, 5, 4, 5, 0]","[10, 11, 4, 2, 6, 0, 4, 2, 2, 0, 0, 0, 2, 11, 4, 5, 4, 4, 2, 7, 2, 9, 3, 8, 1, 6, 0]","[3, 4, 2, 1, 3, 0, 1, 1, 1, 0, 0, 0, 1, 4, 1, 1, 2, 1, 1, 3, 1, 5, 0, 4, 1, 2, 0]",6,1,7,1 -https://gitlab.gnome.org/GNOME/clutter.git,2018-06-18 18:54:25+01:00,d78670077e0d3165075725b85cc726f166f4511e,"[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 32, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[5, 2, 2, 2, 2, 1, 0, 0, 2, 2, 4, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,9,1 -https://github.com/ipython/traitlets.git,2015-04-08 16:33:28-07:00,e722b4788b076c8f7b4b38c4926e49c15cbf4423,"[1, 1, 1, 1, 15, 13, 3, 4, 0, 8, 0, 0, 0, 0, 1, 3, 5, 0, 5, 5, 5, 1, 4, 41, 17, 30, 2]","[0, 1, 0, 1, 1, 3, 1, 2, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 0, 0, 2, 13, 4, 10, 0]","[6, 13, 3, 1, 4, 5, 7, 17, 10, 27, 3, 6, 1, 8, 4, 22, 1, 6, 6, 4, 11, 11, 10, 17, 8, 15, 1]","[1, 4, 1, 0, 2, 0, 2, 6, 5, 7, 1, 2, 0, 3, 1, 4, 0, 2, 2, 1, 2, 1, 2, 7, 1, 5, 1]",4,2,6,0 -https://github.com/bitletorg/weupnp.git,2013-04-26 19:53:30+00:00,ebab8750932ade8b8418ff78c0168b3e6bf6fbf3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bbatsov/powerpack.git,2016-01-18 11:33:23+02:00,977c913b668fba76b0b4dfdc825894d9bbc34868,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/c-ares/c-ares.git,2014-07-25 09:28:46+01:00,ede0f84b8e9cfe4eeaafb1c90e5fea006e19fe5e,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/unknown-horizons/unknown-horizons.git,2012-09-23 18:55:40+02:00,1365242f5bbebec73a61a4d8fc4c7b50daaba367,"[208, 127, 136, 116, 57, 65, 91, 19, 18, 27, 8, 37, 11, 43, 58, 33, 61, 36, 29, 54, 63, 45, 65, 60, 66, 39, 2]","[12, 11, 14, 10, 4, 1, 4, 1, 1, 2, 0, 0, 0, 3, 9, 1, 2, 1, 2, 3, 4, 5, 6, 4, 4, 4, 0]","[57, 47, 26, 35, 41, 37, 45, 162, 81, 144, 45, 61, 96, 75, 125, 21, 30, 99, 45, 22, 5, 15, 17, 20, 21, 0, 0]","[3, 2, 2, 3, 2, 0, 2, 5, 4, 8, 0, 2, 0, 6, 3, 0, 2, 1, 1, 2, 0, 0, 3, 1, 1, 0, 0]",20,2,13,6 -https://github.com/google/brotli,2015-10-02 12:02:58+02:00,e4d9c617f07ec0a854983496e51f751758a79b6f,"[8, 2, 37, 10, 22, 26, 0, 0, 0, 0, 17, 0, 4, 0, 0, 0, 3, 0, 22, 8, 0, 11, 0, 2, 13, 26, 2]","[4, 1, 18, 5, 11, 7, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0, 1, 0, 7, 3, 0, 4, 0, 1, 6, 10, 1]","[47, 2, 19, 30, 15, 14, 2, 7, 1, 8, 2, 2, 0, 8, 11, 2, 20, 3, 0, 5, 11, 4, 0, 3, 2, 0, 0]","[20, 1, 6, 12, 4, 6, 1, 3, 0, 4, 1, 1, 0, 3, 5, 1, 6, 1, 0, 2, 4, 2, 0, 1, 1, 0, 0]",4,1,13,2 -https://github.com/prometheus/node_exporter,2015-01-22 17:11:26+01:00,e03ed0aedff206afbf9d62274be2711e36405ac1,"[3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 10, 0, 0, 7, 0, 0, 0, 2, 0, 2]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 2, 0, 0, 3, 0, 0, 0, 1, 0, 1]","[5, 4, 12, 9, 0, 1, 4, 1, 9, 1, 0, 4, 1, 0, 1, 6, 4, 3, 3, 2, 0, 2, 0, 5, 35, 0, 1]","[3, 1, 6, 4, 0, 0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 3, 2, 1, 1, 1, 0, 1, 0, 1, 4, 0, 0]",2,3,16,1 -https://github.com/locationtech/jts.git,2016-01-27 22:31:26-08:00,5f02c948ae0ba880dfdfbd59038e32fb180ffa17,"[4, 6, 9, 0, 0, 0, 10, 31, 0, 0, 1, 5, 4, 13, 3, 7, 0, 0, 0, 3, 1, 0, 0, 3, 4, 36, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1]","[12, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1 -https://github.com/zsh-users/antigen,2016-08-27 08:59:54+02:00,e68090b302b1f11e7ea4b1d76f10adcb70a83bb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 16, 8, 8, 8, 2, 9, 5, 0, 1, 2, 3, 2, 7, 9, 4, 3, 4, 3, 3, 2, 1, 3, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/EttusResearch/uhd,2018-06-26 08:56:32-07:00,f2896713d48f6c0bc19a859f5ad506e0ddd7ae61,"[1, 25, 35, 34, 13, 7, 31, 25, 16, 34, 27, 43, 6, 39, 48, 17, 37, 24, 46, 21, 23, 0, 13, 19, 15, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0]","[14, 7, 46, 44, 12, 33, 13, 7, 14, 10, 4, 18, 2, 5, 3, 13, 17, 19, 8, 13, 35, 8, 16, 8, 16, 13, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,16,0 -https://github.com/tinfoil/devise-two-factor.git,2014-05-20 10:56:41-07:00,5f4102f0ec59debb9c72204f83edd47d1d4454bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 38, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]",3,0,3,3 -https://github.com/stachenov/quazip.git,2018-04-07 16:52:11+03:00,079d2622e1806613ae47655bef6935c0cf7345f0,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 1, 2, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,3,0 -https://github.com/zopefoundation/zope.interface.git,2022-07-07 09:06:38+02:00,fc36cf4f860bcc7ac474c80aa40ecfa5f342c666,"[0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 1, 0, 0, 2, 0, 0, 1, 2, 1, 2, 0, 0, 2, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,0,1,0 -https://github.com/maxmind/geoip-api-perl.git,2017-10-10 15:13:04-07:00,a3161863aeb2d8ab00f64e1c9ca7fbb4c91e0d0d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nixxcode/amsynth.git,2020-09-27 10:08:37+01:00,7e167a6bd8b28763084b95cc83b2a4cefedae519,"[0, 0, 7, 2, 6, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 7, 17, 3, 1, 0, 9, 0, 0, 1, 9, 1]","[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0]","[8, 12, 6, 1, 0, 2, 19, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 4, 0, 0]","[1, 2, 2, 0, 0, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/boxbackup/boxbackup.git,2018-08-09 22:56:09+01:00,d5bbc4b4ae89f15b284337174d2fb4e03e608a66,"[0, 0, 2, 5, 5, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mruby-debian/mruby,2012-09-18 21:38:15+09:00,2493915a72fcc57148a17109f9be8525fc887790,"[0, 0, 0, 0, 125, 57, 92, 68, 141, 64, 196, 40, 102, 69, 40, 47, 44, 44, 63, 44, 28, 41, 12, 22, 48, 18, 1]","[0, 0, 0, 0, 31, 16, 23, 11, 26, 18, 40, 8, 17, 15, 11, 13, 12, 13, 19, 5, 5, 14, 4, 1, 14, 7, 0]","[44, 11, 5, 11, 46, 18, 49, 32, 24, 68, 22, 60, 34, 71, 13, 56, 55, 63, 44, 49, 26, 44, 66, 120, 57, 177, 1]","[6, 3, 0, 4, 11, 8, 9, 15, 8, 9, 9, 25, 11, 27, 5, 27, 22, 24, 18, 24, 12, 13, 23, 49, 17, 45, 1]",57,8,30,10 -https://github.com/ioquake/ioq3,2018-03-21 10:59:13+00:00,e511c114b3935ec10b8877a8eecf1efbe1551373,"[2, 8, 8, 2, 0, 0, 1, 3, 2, 2, 2, 0, 4, 2, 0, 1, 1, 8, 2, 8, 3, 1, 1, 1, 1, 9, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 16, 7, 0, 14, 2, 7, 1, 2, 2, 2, 0, 1, 0, 0, 0, 9, 5, 1, 0, 0, 1, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,0 -https://github.com/twbs/bootstrap-sass,2013-01-20 14:48:58+00:00,64fedeefd2a72ac47c5c385c5a2dd4219c8d01f1,"[2, 0, 1, 0, 0, 12, 6, 4, 4, 2, 1, 3, 6, 5, 16, 6, 2, 3, 0, 2, 3, 1, 0, 0, 1, 4, 1]","[0, 0, 0, 0, 0, 1, 3, 0, 2, 0, 0, 0, 5, 2, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0]","[0, 3, 5, 3, 6, 2, 0, 2, 7, 0, 0, 2, 0, 4, 3, 3, 1, 2, 6, 0, 3, 0, 0, 0, 0, 6, 0]","[0, 1, 3, 1, 3, 1, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0]",22,0,14,1 -https://github.com/pydicom/pydicom.git,2017-07-10 12:36:07-04:00,60f11430ff7793d50925f4ef3ba54787bdc3be9c,"[0, 17, 13, 10, 13, 4, 0, 18, 8, 6, 14, 6, 7, 1, 10, 0, 5, 0, 2, 3, 32, 9, 2, 0, 2, 9, 2]","[0, 3, 4, 3, 2, 0, 0, 2, 3, 5, 2, 2, 1, 1, 0, 0, 2, 0, 1, 1, 7, 2, 1, 0, 1, 0, 0]","[21, 78, 37, 15, 8, 9, 5, 1, 2, 2, 2, 8, 0, 0, 0, 1, 2, 0, 0, 0, 7, 3, 1, 0, 2, 0, 1]","[6, 8, 8, 3, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0]",11,0,6,2 -https://github.com/oneapi-src/oneTBB.git,2021-08-26 17:55:23+03:00,a6b90fc9f522b1c9fa1e3b9eabb4f677abb2268d,"[1, 0, 0, 0, 4, 0, 0, 0, 0, 1, 3, 5, 10, 4, 22, 4, 8, 13, 13, 2, 12, 3, 8, 13, 8, 8, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 15, 9, 3, 12, 8, 16, 6, 19, 5, 4, 13, 4, 3, 6, 4, 5, 22, 0, 6, 7, 13, 3, 12, 5, 1, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",40,0,15,1 -https://github.com/axel-download-accelerator/axel.git,2016-03-20 16:28:09-03:00,711b8992f9c7c9ad91ca943a55ab099a9bffd521,"[0, 0, 0, 0, 0, 31, 7, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 43, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 22, 0, 0, 0, 6, 1, 1, 0, 7, 47, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,8,1 -https://gitlab.com/o9000/tint2,2017-02-26 16:30:54+00:00,d47924492a7f8dd3aba6061b51778804e09936f2,"[4, 1, 9, 0, 8, 23, 0, 0, 2, 0, 0, 3, 0, 2, 1, 1, 1, 2, 0, 6, 1, 0, 0, 0, 0, 8, 2]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[28, 10, 5, 24, 4, 5, 2, 24, 6, 1, 0, 3, 2, 4, 9, 0, 15, 16, 2, 3, 4, 0, 0, 0, 0, 11, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0]",5,0,1,0 -https://github.com/pgRouting/pgrouting.git,2016-12-08 17:32:24-06:00,34b933f144cf6cab04de7055c7bc404590c8f6f1,"[104, 104, 78, 48, 83, 285, 115, 78, 35, 46, 11, 7, 35, 0, 30, 25, 87, 2, 0, 0, 0, 78, 31, 11, 97, 71, 2]","[21, 18, 3, 7, 17, 24, 25, 13, 9, 24, 1, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 8, 1, 0, 0, 4, 0]","[23, 30, 41, 17, 78, 0, 0, 0, 0, 46, 35, 68, 68, 92, 68, 38, 55, 42, 39, 77, 33, 40, 76, 96, 44, 48, 1]","[4, 1, 3, 1, 10, 0, 0, 0, 0, 2, 2, 16, 6, 13, 17, 7, 5, 3, 8, 4, 3, 2, 18, 9, 3, 8, 0]",6,2,9,3 -https://github.com/google/fscrypt,2017-05-31 12:33:04-07:00,bd6a1acc8c6b6c03f999558baa4aab464417548d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 5, 2, 8, 0, 44, 9, 0, 4, 4, 10, 20, 18, 1, 0, 0, 17, 2, 1, 19, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 10, 3, 0, 2, 2, 1, 5, 3, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 -https://github.com/varvet/pundit,2015-03-27 14:30:23+01:00,06187d68f39c7edaf8a9bb2459e9b64c52c565c1,"[0, 0, 3, 0, 2, 2, 1, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 19, 2]","[0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[12, 2, 0, 5, 0, 2, 2, 0, 2, 0, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 1, 3, 2, 0]","[4, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]",10,0,12,1 -https://github.com/py-pdf/pypdf,2023-08-27 10:09:05+02:00,9aa39677eca11204cdf1fd1bb317cef2def9e2aa,"[15, 6, 13, 9, 15, 4, 12, 9, 5, 9, 0, 6, 3, 6, 2, 19, 13, 15, 8, 7, 8, 23, 9, 11, 13, 15, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[6, 18, 12, 7, 9, 11, 10, 4, 9, 0, 2, 6, 2, 4, 7, 4, 16, 13, 12, 1, 10, 2, 3, 1, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",28,0,23,0 -https://github.com/galaxyproject/bioblend,2019-08-08 13:37:15+01:00,c9c45f2e6e012e83dc23951bb169ba471b2ffcc0,"[1, 0, 2, 1, 5, 0, 0, 0, 7, 1, 2, 0, 2, 13, 0, 2, 1, 0, 0, 4, 0, 5, 2, 0, 0, 4, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1]","[8, 1, 13, 6, 0, 1, 0, 1, 0, 2, 1, 4, 0, 2, 12, 8, 14, 12, 0, 0, 0, 2, 1, 2, 8, 14, 1]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 2, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0]",4,2,8,0 -https://github.com/fonttools/fonttools.git,2019-04-11 12:52:00-04:00,1bcd212df2f01816c02b302d739838c1a68e4190,"[35, 37, 49, 23, 75, 36, 2, 38, 8, 28, 0, 22, 26, 41, 26, 10, 32, 17, 14, 17, 60, 19, 19, 26, 26, 1, 1]","[1, 6, 3, 4, 0, 7, 0, 9, 3, 2, 0, 4, 6, 9, 7, 0, 7, 4, 4, 4, 10, 1, 2, 0, 8, 0, 0]","[18, 12, 30, 23, 19, 18, 31, 13, 15, 59, 1, 0, 5, 3, 4, 16, 12, 17, 11, 3, 6, 24, 17, 8, 1, 14, 1]","[4, 3, 5, 6, 5, 6, 4, 1, 0, 14, 0, 0, 0, 0, 2, 6, 4, 5, 0, 0, 1, 10, 1, 2, 1, 1, 0]",10,0,6,4 -https://github.com/rails/rails-dom-testing,2015-09-01 12:22:57-04:00,51292a2f23c5c579366d6d12d256a2f01722ea4e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 -https://github.com/kilobyte/pmemkv,2017-05-19 11:16:42-06:00,60309a73f591039719e7dca0ff28349a451f8d33,"[0, 0, 0, 0, 0, 0, 4, 4, 7, 0, 12, 1, 4, 11, 2, 3, 1, 0, 7, 6, 4, 2, 6, 6, 9, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 1, 2, 1, 0]","[9, 0, 0, 0, 0, 5, 0, 4, 1, 0, 0, 0, 2, 0, 11, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1 -https://github.com/mypaint/mypaint,2014-10-31 14:38:22+00:00,f666bb4186c74134a837bd251eda40f6a5a76b3a,"[0, 0, 11, 9, 26, 11, 17, 13, 12, 10, 14, 20, 5, 4, 6, 0, 2, 4, 0, 1, 1, 14, 0, 7, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]","[11, 7, 5, 2, 5, 18, 9, 0, 2, 5, 22, 6, 8, 11, 10, 6, 26, 34, 8, 1, 21, 17, 63, 13, 12, 14, 1]","[3, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 2, 2, 1, 0, 0, 2, 1, 1, 0, 1, 5, 2, 0, 1, 1, 0]",3,4,7,1 -https://github.com/doctrine/sql-formatter.git,2020-05-22 13:29:39+02:00,cb591932999210615eeb77dc8a17866304fc50a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 16, 12, 6, 13, 2, 2, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 4, 3, 4, 1, 1, 0, 1, 1]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1 -https://github.com/zloirock/core-js.git,2018-03-17 13:53:13+07:00,b004608e4c3d202b778a4077421825cc71eaabcf,"[0, 4, 2, 2, 2, 2, 3, 0, 1, 0, 2, 3, 13, 1, 3, 2, 1, 0, 1, 0, 1, 1, 2, 1, 0, 75, 13]","[0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[124, 239, 231, 14, 1, 0, 1, 15, 262, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",4,0,3,0 -https://github.com/rackerlabs/kthresher,2018-02-28 09:01:33-06:00,3bc7d75cba5f2da85ab50438b6a9b0a4a964ae8c,"[0, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 1, 3]","[0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/fog/fog-rackspace,2016-02-17 14:17:09-05:00,c4a0c16bbcc83d0178adc9cf69007b5d6f7bf4d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ruby-ldap/ruby-net-ldap.git,2014-10-24 13:54:10-07:00,2091729f3a96626fd37264dd5f35468a2f9ebfce,"[0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 11, 0, 0, 38, 11, 2, 0, 1, 0, 48, 91, 78, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 0, 0, 3, 1, 1, 0, 0, 0, 8, 23, 15, 1]","[36, 2, 5, 1, 7, 15, 11, 22, 2, 0, 14, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[15, 2, 2, 0, 2, 0, 3, 4, 2, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",15,0,5,4 -https://github.com/voxpupuli/librarian-puppet.git,2015-07-03 16:31:45+02:00,cdfffce57aed1a1a1ab15762f1e14c93dbc4034b,"[0, 0, 0, 0, 0, 1, 0, 12, 8, 3, 0, 0, 0, 0, 0, 4, 1, 2, 1, 11, 3, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 1, 0, 0, 2, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0 -https://github.com/nikic/PHP-Parser,2022-08-29 21:59:07+02:00,09c6048df12ff141578876a401cd38094afd90b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,3,0 -https://github.com/jaap-karssenberg/zim-desktop-wiki.git,2019-01-27 20:16:28+01:00,ed0cef97e7a9cc7d86b683a0291baa9c791f8578,"[0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 12, 12, 5, 0, 0, 5, 7, 3, 22, 32, 0, 7, 1, 2, 7, 9, 0, 2, 0, 6, 0, 0, 0, 0, 2, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,5,0 -https://github.com/OSGeo/PROJ.git,2017-05-09 22:35:39+02:00,46b07308d9d43692f1feb21f60d91891db5c8a4a,"[1, 5, 0, 0, 9, 11, 0, 0, 1, 0, 3, 0, 3, 3, 2, 22, 0, 8, 2, 1, 0, 4, 1, 0, 2, 1, 2]","[0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[1, 16, 17, 6, 9, 0, 3, 3, 5, 13, 1, 0, 11, 5, 3, 3, 11, 10, 5, 9, 7, 16, 16, 17, 24, 19, 1]","[0, 3, 1, 1, 1, 0, 0, 0, 1, 4, 0, 0, 1, 3, 1, 0, 1, 2, 0, 1, 0, 4, 6, 3, 6, 6, 0]",4,0,7,0 -https://github.com/ninja-build/ninja.git,2019-11-24 12:58:31+01:00,a37da20ae74c81703b1c811182fc154d95ed46fe,"[1, 1, 0, 1, 0, 1, 2, 0, 1, 3, 6, 1, 1, 7, 0, 0, 6, 1, 0, 0, 0, 0, 8, 1, 8, 8, 1]","[0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 3, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 2, 1]","[1, 3, 0, 2, 7, 4, 3, 7, 1, 5, 5, 1, 7, 0, 1, 0, 1, 2, 0, 3, 4, 1, 2, 0, 1, 2, 1]","[1, 0, 0, 0, 0, 4, 2, 2, 1, 2, 1, 1, 2, 0, 1, 0, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0]",13,0,10,0 -https://github.com/rbenv/ruby-build.git,2022-01-25 19:18:26+01:00,45b9dd0465d4f11aa9b9ea5471222a16e0a61e0b,"[5, 3, 0, 0, 3, 0, 0, 0, 9, 0, 0, 4, 0, 2, 6, 0, 0, 2, 5, 0, 0, 11, 1, 0, 0, 2, 3]","[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 1, 0]","[1, 0, 0, 3, 2, 0, 0, 4, 2, 2, 3, 1, 2, 1, 0, 2, 0, 0, 0, 4, 0, 4, 2, 12, 9, 8, 0]","[0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0]",3,0,6,0 -https://github.com/abishekvashok/cmatrix.git,2017-08-05 20:54:40+05:30,33cae7f639316d24d85faf57a11de3f894713f90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 2, 0, 4, 1, 0, 0, 2, 0, 0, 0, 2, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,1,6,0 -https://github.com/KDAB/hotspot.git,2018-01-08 01:08:05+01:00,725cab123a681bbe38ed8d3452e67548dde5e0c3,"[14, 3, 4, 5, 0, 0, 17, 16, 11, 24, 36, 80, 7, 0, 3, 5, 9, 0, 7, 1, 10, 0, 0, 19, 9, 2, 2]","[4, 1, 2, 2, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[3, 47, 19, 12, 24, 1, 1, 0, 0, 0, 0, 0, 5, 7, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,1,2 -https://github.com/twisted/twisted.git,2013-08-29 23:20:20+00:00,79daa4d56c3110610e10ea4df8dda01d57066601,"[126, 50, 232, 71, 44, 77, 89, 90, 61, 49, 55, 9, 31, 155, 72, 64, 66, 84, 73, 73, 40, 52, 78, 51, 65, 74, 2]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 97, 63, 77, 38, 86, 76, 40, 55, 47, 75, 82, 14, 26, 48, 18, 20, 52, 59, 132, 123, 71, 77, 46, 42, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,2,2 -https://github.com/supercollider/supercollider.git,2017-06-27 14:42:42-04:00,27be93376413ec0db52d4639ee2d01855aff782f,"[54, 50, 52, 41, 11, 51, 28, 19, 10, 33, 20, 12, 11, 6, 6, 2, 10, 7, 13, 18, 6, 25, 21, 19, 42, 15, 2]","[8, 3, 16, 5, 7, 19, 7, 5, 3, 11, 8, 4, 1, 1, 0, 1, 5, 1, 3, 2, 3, 8, 4, 3, 12, 6, 1]","[34, 41, 61, 261, 31, 17, 4, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1]","[15, 9, 8, 9, 10, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",7,0,4,1 -https://github.com/cespare/reflex.git,2014-02-06 12:30:38-08:00,e0e1525adeee7ef167a88b7362de3701791f9166,"[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 3, 1, 1, 0, 1, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/developit/preact.git,2019-09-11 19:22:36+02:00,33c836018f46c2ced9a7fdd328418ef82d0e3861,"[64, 29, 73, 56, 85, 37, 26, 77, 58, 35, 31, 63, 97, 86, 24, 36, 23, 25, 5, 13, 39, 52, 153, 12, 9, 27, 2]","[9, 2, 23, 8, 20, 15, 4, 10, 13, 7, 5, 15, 21, 10, 2, 8, 9, 12, 1, 4, 15, 14, 2, 5, 3, 10, 1]","[8, 6, 10, 23, 37, 51, 94, 71, 64, 30, 16, 30, 14, 13, 7, 25, 23, 0, 14, 51, 51, 22, 31, 6, 17, 14, 1]","[2, 2, 2, 3, 1, 5, 16, 20, 10, 8, 1, 3, 3, 2, 1, 3, 10, 0, 3, 12, 6, 3, 8, 2, 5, 2, 0]",26,0,40,5 -https://github.com/varietywalls/variety.git,2019-07-13 12:49:36+03:00,de6e11b96461d82edb2f6b43304a001f79401972,"[0, 0, 0, 0, 1, 5, 0, 0, 1, 0, 0, 0, 1, 1, 5, 10, 8, 2, 5, 3, 2, 3, 1, 4, 3, 6, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 12, 0, 0, 2, 0, 11, 0, 2, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 5, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0 -https://github.com/rails/sprockets.git,2015-08-17 21:31:51-04:00,be44f0c8fdd20a7654fa947b381d0d741b235d64,"[2, 1, 1, 21, 43, 16, 3, 13, 11, 15, 10, 21, 0, 0, 2, 5, 4, 0, 0, 0, 0, 0, 0, 0, 2, 7, 1]","[1, 0, 1, 6, 3, 2, 1, 3, 1, 2, 2, 4, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]","[10, 8, 2, 0, 0, 4, 4, 0, 2, 0, 0, 2, 0, 0, 1, 15, 3, 0, 0, 0, 0, 0, 2, 3, 0, 1, 1]","[3, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",16,1,7,2 -https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2016-06-03 16:52:16+02:00,0236ef27e3c8828c51ff5d0910744aaacf234253,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/puppetlabs/puppetlabs-concat,2014-06-25 17:23:15-07:00,2b51a83b9baeebcd795d94a8051ba598b6353ae2,"[1, 12, 0, 4, 3, 2, 2, 5, 2, 2, 0, 0, 0, 2, 4, 1, 2, 1, 4, 4, 2, 0, 6, 0, 0, 3, 2]","[0, 6, 0, 1, 2, 1, 1, 2, 0, 1, 0, 0, 0, 2, 2, 1, 1, 0, 3, 2, 1, 0, 2, 0, 0, 1, 1]","[7, 6, 2, 0, 0, 2, 0, 7, 0, 4, 21, 13, 3, 0, 10, 0, 0, 9, 0, 0, 8, 1, 0, 5, 0, 1, 1]","[3, 3, 1, 0, 0, 1, 0, 3, 0, 2, 11, 8, 1, 0, 5, 0, 0, 6, 0, 0, 6, 0, 0, 2, 0, 1, 0]",12,2,9,3 -https://github.com/processone/fast_tls.git,2019-01-21 10:36:32+01:00,2c908ef4489c7a778c9ecb999ff4d6484644880c,"[0, 0, 0, 0, 5, 1, 0, 0, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/plastex/plastex,2020-04-03 19:52:22+02:00,37092807809a954ee018010b3e6bd021bef5bca8,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/processone/stun.git,2019-01-18 14:32:30+01:00,9f9bf240f287293045da6c718e82534facd4d4be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/OpenPrinting/cups-filters,2022-11-14 23:33:16+01:00,28e7d07be7de98b9ac0bdb8c2f26a4a984902132,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/selectize/selectize.js,2021-10-03 12:15:31-04:00,1c823774062acd5f736c487021188e81f2bdd741,"[0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jashkenas/backbone,2012-09-17 13:10:58-04:00,74ba05c8da60f5748efc40f149a7529b8eff6f4e,"[23, 11, 17, 15, 12, 15, 17, 14, 16, 13, 19, 5, 32, 18, 2, 2, 2, 11, 9, 5, 2, 10, 12, 23, 20, 21, 2]","[7, 3, 7, 5, 2, 4, 8, 3, 4, 5, 4, 2, 10, 4, 0, 0, 1, 5, 2, 2, 1, 4, 4, 8, 9, 5, 1]","[9, 10, 29, 11, 18, 12, 17, 4, 10, 13, 29, 28, 111, 93, 31, 17, 29, 32, 21, 17, 5, 12, 7, 9, 17, 11, 1]","[4, 5, 9, 4, 6, 4, 7, 0, 1, 4, 9, 8, 25, 24, 10, 4, 6, 11, 6, 4, 2, 1, 1, 3, 5, 4, 0]",44,4,37,2 -https://github.com/Beep6581/RawTherapee,2017-08-10 12:53:34+02:00,86f3d326d972c86aa463ab1cc709a9ce82cb2ff1,"[37, 30, 14, 43, 44, 44, 30, 69, 46, 22, 15, 17, 15, 26, 6, 11, 24, 18, 21, 14, 13, 21, 23, 18, 11, 11, 2]","[5, 8, 4, 8, 8, 12, 8, 6, 12, 7, 1, 2, 0, 3, 1, 1, 6, 4, 1, 4, 2, 2, 4, 2, 2, 4, 0]","[23, 25, 16, 22, 58, 33, 45, 24, 8, 32, 47, 20, 34, 26, 35, 21, 15, 33, 43, 19, 39, 55, 40, 44, 39, 39, 1]","[4, 4, 0, 6, 7, 8, 12, 7, 0, 6, 1, 5, 3, 8, 3, 1, 4, 6, 13, 3, 5, 15, 8, 9, 6, 12, 0]",8,0,8,4 -https://github.com/processone/pkix.git,2019-01-18 16:36:40+01:00,3a0f15c4e05eea9b6b1be1a8d5facee811e392ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 3, 0, 1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,0 -https://github.com/prometheus/pushgateway,2015-01-22 17:52:54+01:00,e4121e44b8256b49aa06bcfa24c28a52baecccb4,"[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 1, 9, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 2, 1, 0, 0, 2, 6, 5, 1, 3, 3, 0, 4, 0, 0]","[2, 0, 4, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 3, 1, 1, 1, 1, 0, 2, 0, 0]",2,3,10,1 -https://github.com/OSGeo/shapelib.git,2023-02-11 12:45:06+01:00,f29e0a78afe390257180eb02112e67049c3c4338,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0 -https://github.com/RiotGames/buff-extensions,2013-06-16 23:34:54-07:00,9d703c776a40162c0e3e7f555a9ed9e8bb8c3cbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/matlab2tikz/matlab2tikz,2015-07-14 20:01:13+02:00,1018a5f224d097a45a64e3cd29c2baf6222ca17f,"[27, 19, 1, 1, 0, 18, 49, 27, 34, 49, 7, 6, 47, 42, 19, 11, 89, 14, 13, 26, 0, 4, 2, 9, 18, 35, 1]","[2, 4, 1, 0, 0, 2, 11, 1, 4, 4, 2, 1, 8, 11, 2, 1, 10, 0, 6, 7, 0, 2, 0, 1, 7, 11, 0]","[29, 15, 42, 27, 25, 36, 38, 55, 20, 12, 7, 3, 12, 3, 27, 19, 14, 36, 7, 2, 12, 0, 0, 0, 5, 5, 1]","[4, 2, 4, 6, 5, 2, 8, 7, 1, 2, 2, 1, 3, 1, 3, 3, 1, 8, 1, 1, 5, 0, 0, 0, 1, 1, 0]",3,1,5,1 -https://github.com/geopython/geolinks.git,2022-07-01 14:00:50-04:00,d99cb2c8a71a4d0edc219f1af8221620e99cedbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/spacetelescope/gwcs,2018-11-09 08:01:55-05:00,ad4b55c1be147a06f11b5cebb4b6bff782b6ebc1,"[20, 24, 0, 1, 0, 1, 0, 1, 1, 4, 2, 2, 4, 0, 0, 0, 1, 0, 2, 4, 2, 4, 0, 0, 5, 4, 2]","[3, 7, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 2, 3, 1]","[19, 2, 3, 6, 4, 1, 4, 0, 2, 8, 1, 2, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]","[4, 1, 0, 2, 2, 0, 1, 0, 0, 3, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]",1,0,2,0 -https://github.com/CorsixTH/CorsixTH.git,2013-10-10 12:36:08-04:00,2a0e6ee3eb70c19a7c97e24a078e9332a76d3acf,"[9, 1, 1, 6, 2, 0, 2, 1, 1, 0, 3, 1, 4, 1, 0, 0, 6, 2, 12, 12, 5, 1, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[43, 33, 19, 4, 0, 10, 3, 7, 0, 0, 2, 2, 14, 13, 4, 2, 3, 38, 8, 0, 0, 0, 3, 0, 0, 0, 0]","[4, 12, 3, 2, 0, 4, 1, 4, 0, 0, 0, 2, 8, 6, 2, 2, 1, 13, 3, 0, 0, 0, 2, 0, 0, 0, 0]",3,6,18,1 -https://github.com/canonical/lightdm.git,2019-02-18 14:55:04+01:00,8a0c3a1630bb063b2e3f37372f1344e13b6b6340,"[3, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/ImageOptim/libimagequant.git,2016-12-02 21:00:50+00:00,138a37ed8ccbc3c06804a68bbe3556e068e3e055,"[2, 1, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 3, 9, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 2, 0, 0, 0, 5, 0, 0, 7, 5, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/jupyter/nbformat,2015-04-08 18:46:25-07:00,0762fbc4bbb2150944ed23b70dde4c23b30dc489,"[4, 1, 0, 34, 7, 1, 5, 2, 6, 3, 1, 0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 5, 10, 9, 2]","[2, 1, 0, 2, 3, 0, 1, 2, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0]","[3, 2, 0, 0, 4, 2, 4, 0, 2, 0, 2, 0, 4, 2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/zopefoundation/zope.testrunner,2022-03-07 08:03:05+01:00,ad25458997c12b86b35d735da448b06b7aa1d5e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 4, 1, 10, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,1,0,0 -https://github.com/zaach/jison,2015-03-02 22:22:03-05:00,dfdc4d05b381591e4b07fd592f596e67938dd6dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,0,0,0 -https://github.com/openSUSE/open-build-service,2015-07-23 13:27:42+02:00,8ad9588d49184f809b9e5796083b260b0a8a4fa1,"[0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 6, 1, 0, 3, 4, 0, 1, 0, 1, 6, 0, 1, 23, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0 -https://github.com/ipython/ipython_genutils,2015-04-08 15:06:03-07:00,6cf40ccc0e77a41d9e4909ff3e8ea1e753b0a69e,"[1, 1, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 14, 2]","[0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0]","[8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/namhyung/uftrace,2017-11-15 08:52:46+09:00,134a6aeaedc938894f53c651f6f673dea89286b6,"[37, 24, 0, 16, 24, 7, 30, 15, 21, 18, 29, 24, 21, 17, 32, 44, 42, 8, 1, 10, 3, 26, 16, 50, 15, 28, 2]","[7, 5, 0, 2, 3, 2, 4, 4, 2, 3, 4, 2, 2, 1, 3, 6, 6, 1, 0, 1, 1, 4, 3, 8, 2, 4, 0]","[32, 36, 22, 12, 10, 35, 16, 35, 12, 3, 1, 0, 4, 7, 1, 11, 11, 7, 19, 4, 1, 8, 2, 14, 31, 8, 1]","[6, 4, 3, 2, 2, 3, 3, 3, 3, 0, 0, 0, 0, 1, 0, 2, 1, 1, 1, 1, 0, 1, 1, 3, 2, 2, 0]",11,0,4,0 -https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git,2021-01-04 15:30:38+00:00,28f646fd87e824ba5e89377cd9aedde74e6be96c,"[6, 4, 7, 1, 11, 11, 0, 1, 3, 4, 6, 1, 4, 0, 6, 7, 6, 0, 1, 11, 4, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 33, 55, 2, 13, 5, 3, 31, 7, 0, 10, 9, 3, 20, 5, 5, 4, 0, 9, 16, 1, 37, 2, 12, 3, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",20,0,33,0 -https://github.com/emacs-lsp/lsp-mode.git,2020-07-14 20:35:59-03:00,e8ed95f0dfefd725f45464009e82cf3299cd84ff,"[13, 9, 11, 27, 18, 14, 16, 23, 13, 6, 12, 10, 10, 11, 21, 68, 32, 12, 19, 18, 26, 56, 21, 17, 25, 25, 2]","[1, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 29, 20, 28, 46, 18, 15, 20, 21, 16, 13, 6, 11, 4, 12, 5, 11, 8, 23, 9, 4, 13, 11, 12, 19, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",77,0,60,0 -https://gitlab.com/orcus/orcus,2020-03-29 12:09:36-04:00,dcec0c56b0a435790fc8e189344a3de9287b1410,"[1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 16, 2, 8, 20, 0, 0, 0, 0, 0, 0, 0, 0, 31, 21, 22, 21, 24, 0, 13, 3, 1, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ignitionrobotics/ign-cmake.git,2018-11-02 09:35:21-07:00,a051b40afa72d59d7ac35e2d52f7c91f3c115827,"[15, 0, 8, 37, 36, 31, 12, 6, 20, 7, 24, 24, 12, 4, 5, 4, 9, 2, 5, 0, 3, 4, 2, 3, 1, 0, 2]","[7, 0, 0, 2, 6, 8, 4, 3, 6, 3, 7, 6, 6, 0, 2, 1, 2, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0]","[2, 8, 9, 1, 2, 12, 28, 1, 4, 15, 9, 23, 20, 0, 6, 2, 0, 3, 2, 7, 0, 0, 0, 11, 7, 0, 0]","[1, 4, 2, 0, 1, 1, 7, 0, 1, 4, 0, 10, 8, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 2, 0, 0, 0]",7,0,1,3 -https://github.com/intridea/multi_json,2012-10-07 11:57:21-07:00,5f2a2c9b8b30bdd0520f1bb53e60aab43615cdf4,"[5, 15, 7, 3, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 0, 2, 0, 5, 4, 35, 1, 6, 2, 0, 1, 4, 4, 14, 31, 7, 1, 0, 24, 11, 3, 1, 0]","[1, 1, 0, 0, 0, 0, 0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0]",5,0,9,0 -https://github.com/ntop/nDPI.git,2019-07-23 10:47:25+01:00,e781ddfa43ce9963c705c93fd015d4df3f39d08c,"[1, 2, 2, 2, 3, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 13, 0, 14, 28, 11, 34, 32, 30, 31, 10, 17, 20, 34, 7, 12, 17, 12, 19, 18, 9, 3, 18, 17, 7, 1]","[3, 0, 1, 0, 1, 2, 1, 3, 5, 7, 5, 1, 2, 1, 12, 1, 1, 1, 2, 3, 0, 3, 0, 2, 1, 3, 0]",0,3,14,0 -https://github.com/HandBrake/HandBrake,2018-06-05 22:07:10+01:00,6c236b7cfa36dc1331b6c18a58ce0cac99a19e97,"[29, 50, 52, 23, 3, 36, 4, 16, 5, 4, 7, 5, 0, 3, 16, 0, 2, 2, 2, 2, 9, 1, 1, 16, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[66, 66, 26, 22, 14, 11, 6, 6, 11, 31, 7, 5, 23, 1, 6, 12, 20, 7, 5, 13, 2, 13, 13, 18, 14, 4, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,8,0 -https://github.com/mfontanini/libtins.git,2016-02-06 16:04:07-08:00,0832184896ababac7ee696625bfa32cc7b596815,"[0, 6, 1, 0, 0, 1, 2, 0, 0, 1, 0, 0, 1, 1, 0, 4, 0, 3, 6, 8, 18, 2, 8, 1, 4, 8, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[14, 28, 13, 8, 6, 11, 5, 5, 1, 1, 0, 0, 4, 4, 0, 1, 0, 2, 2, 1, 0, 0, 0, 1, 0, 0, 1]","[0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 -https://github.com/intridea/grape-entity,2014-01-28 08:58:06-05:00,a22ca7c17fa6fc4448c8667d28563a9405986b0e,"[9, 2, 2, 2, 0, 1, 8, 0, 0, 0, 1, 2, 0, 2, 4, 0, 0, 0, 2, 3, 0, 0, 8, 5, 1, 2, 2]","[3, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0]","[3, 0, 2, 0, 2, 5, 1, 0, 0, 2, 2, 0, 0, 1, 0, 7, 0, 2, 0, 12, 2, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0]",13,1,10,2 -https://github.com/libwww-perl/HTTP-Message.git,2018-05-31 17:35:13-04:00,08ff5033e1df607267a573e56c50004c9a25b1b0,"[0, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 9, 0, 5, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,4,0 -https://github.com/darold/pgbadger.git,2013-03-13 14:31:59+01:00,940c51a164da83b9eb9d0765f4bdea9aa308bafc,"[5, 1, 3, 4, 12, 8, 7, 7, 8, 3, 3, 1, 8, 4, 6, 9, 3, 3, 9, 5, 9, 4, 8, 10, 13, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 10, 0, 6, 5, 3, 6, 3, 2, 1, 2, 0, 1, 11, 6, 5, 5, 4, 2, 4, 2, 0, 0, 0, 1, 1, 1]","[1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",8,0,3,0 -https://github.com/dpmb/dpmb,2015-08-10 20:00:14+02:00,94292ea1da848a0f6b653d30190cf961359cf565,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 64, 227, 42, 9, 0, 0, 0, 0, 5, 0, 0, 0, 55, 6, 0, 0, 2, 9, 29, 143, 48, 9, 0, 0, 21, 1]","[0, 4, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]",2,4,8,0 -https://github.com/freelan-developers/freelan,2015-03-19 19:58:24-04:00,8e8aae30552d0d061d771220ad23e11df347102b,"[0, 0, 0, 14, 9, 9, 0, 0, 0, 0, 0, 0, 3, 11, 8, 18, 19, 0, 3, 0, 0, 0, 0, 0, 17, 19, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[7, 3, 9, 50, 6, 15, 21, 24, 0, 0, 0, 105, 59, 5, 0, 13, 4, 0, 13, 21, 19, 10, 3, 0, 0, 1, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]",3,0,2,0 -https://github.com/mlpack/mlpack,2017-10-22 00:12:46-04:00,76384a8b371737f48443d0a3f9ee44950d1611a1,"[27, 36, 39, 32, 63, 32, 55, 43, 42, 51, 55, 53, 56, 27, 98, 92, 76, 60, 29, 17, 3, 21, 10, 12, 8, 0, 2]","[3, 2, 4, 3, 6, 4, 6, 5, 4, 11, 1, 8, 6, 4, 3, 16, 6, 6, 3, 4, 3, 2, 1, 0, 1, 0, 1]","[13, 20, 7, 20, 20, 16, 6, 40, 75, 42, 50, 28, 48, 51, 82, 79, 192, 58, 128, 51, 84, 36, 62, 0, 0, 1, 1]","[4, 4, 2, 5, 0, 0, 4, 1, 7, 8, 11, 3, 9, 7, 9, 10, 14, 12, 21, 3, 11, 9, 16, 0, 0, 0, 1]",13,10,33,3 -https://github.com/resurrecting-open-source-projects/dcfldd,2019-10-28 23:39:47-03:00,b1896720ef3807fe735cd44d7c2bb19961d2ff42,"[0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 4, 0, 0, 6, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 -https://github.com/librsync/librsync,2015-11-15 11:52:18-08:00,94ce627c7832dae8dd4231491cfa5e035fcb2771,"[0, 0, 0, 3, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2]","[0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[5, 1, 46, 6, 1, 35, 9, 16, 14, 5, 10, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 5, 0, 0]","[0, 0, 0, 0, 0, 2, 1, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0]",2,0,4,1 -https://github.com/keras-team/keras,2015-12-05 15:26:17-08:00,74b37bf87a8b76e9d4af3a7b29f570aa9c96f572,"[37, 57, 109, 77, 51, 48, 64, 22, 15, 24, 43, 24, 15, 36, 8, 29, 21, 40, 10, 24, 90, 13, 40, 34, 30, 73, 2]","[15, 10, 26, 20, 9, 10, 20, 6, 4, 7, 15, 9, 4, 14, 2, 12, 12, 14, 3, 9, 15, 6, 14, 6, 8, 14, 0]","[128, 97, 39, 20, 35, 22, 47, 30, 37, 30, 32, 61, 22, 34, 8, 19, 40, 56, 46, 29, 28, 22, 15, 14, 12, 14, 1]","[27, 24, 8, 8, 11, 7, 16, 11, 8, 9, 12, 21, 7, 8, 3, 6, 4, 5, 3, 2, 1, 0, 1, 0, 2, 1, 0]",77,6,98,14 -https://github.com/zeroc-ice/ice-debian-packaging.git,2016-05-16 17:16:31+02:00,c22f16328b81ddfeaaa89b699c84f804edd83e12,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 11, 0, 86, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 0, 1, 7, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,4,1 -https://github.com/websocket-client/websocket-client,2021-02-24 23:18:10-05:00,aa561086a4342c962fa5d4333f66b85c728c3624,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 1, 12, 7, 13, 8, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 1, 0, 0, 1, 0]","[31, 4, 0, 8, 11, 0, 0, 1, 4, 13, 5, 19, 2, 18, 9, 0, 0, 0, 1, 0, 2, 0, 1, 9, 4, 2, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,16,2 -https://github.com/Grokzen/redis-py-cluster,2015-11-29 02:30:35+01:00,3ee5c059c4b6d24f8c5e8d37ded03c47680c5bf2,"[6, 14, 0, 2, 3, 3, 1, 7, 0, 2, 2, 0, 0, 0, 3, 0, 0, 6, 5, 1, 15, 15, 0, 0, 0, 8, 2]","[0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0]","[8, 3, 6, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 24, 21, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,6,0 -https://github.com/puppetlabs/puppetlabs-firewall,2011-10-18 21:23:17+01:00,c3739abac431ff06748978f128ba723a8d99833a,"[0, 0, 12, 14, 0, 0, 0, 0, 25, 6, 0, 3, 4, 0, 0, 1, 12, 0, 2, 0, 0, 6, 0, 0, 4, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 1, 1, 1]","[7, 10, 0, 12, 4, 1, 13, 0, 0, 0, 5, 0, 2, 4, 0, 0, 0, 0, 0, 0, 6, 9, 8, 0, 0, 2, 0]","[4, 5, 0, 5, 2, 1, 6, 0, 0, 0, 2, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 4, 3, 0, 0, 1, 0]",3,3,11,2 -https://github.com/Exiv2/exiv2.git,2017-12-03 17:00:04+01:00,977c5f7a63fafff260413de9154328625155dbc2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 5, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1 -https://github.com/resurrecting-open-source-projects/txt2html,2019-08-01 21:57:37-03:00,e5c21016e4cebe414a9b8c94840c36c4c94b28cd,"[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/openstreetmap/osm2pgsql.git,2015-07-06 22:58:53-07:00,71283c25f2e0ef283a999add7e7f844c80c1bef3,"[6, 9, 11, 1, 1, 8, 23, 1, 3, 0, 5, 0, 5, 5, 14, 15, 7, 2, 0, 13, 9, 3, 0, 3, 8, 20, 1]","[2, 0, 4, 0, 0, 2, 9, 0, 1, 0, 1, 0, 2, 0, 4, 7, 2, 1, 0, 6, 0, 1, 0, 0, 2, 7, 1]","[22, 71, 19, 19, 7, 6, 7, 0, 1, 0, 0, 2, 0, 8, 8, 14, 28, 14, 10, 4, 5, 4, 2, 0, 1, 0, 1]","[5, 24, 4, 5, 3, 1, 3, 0, 1, 0, 0, 1, 0, 1, 4, 5, 12, 2, 2, 3, 2, 2, 1, 0, 1, 0, 0]",4,1,5,0 -git://git.lttng.org/lttng-ust.git,2016-02-19 21:31:00-05:00,8f6a68ab4249b31fd1a220b5fa75b3e24e592e8a,"[2, 0, 2, 0, 12, 0, 0, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 16, 7, 3, 1, 0, 10, 8, 2, 7, 0, 17, 21, 10, 13, 0, 2, 0, 1, 1, 4, 0, 1, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/CESNET/libyang,2018-11-09 18:57:59+01:00,b6374cbcbbc73340f47a490de36ac10e2dad808e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/defunkt/mustache,2014-12-26 11:00:42-08:00,474000bad5cfd15f0d9408204190df97ba356ae6,"[0, 0, 0, 10, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 18, 0, 0, 0, 0, 0, 27, 0, 30, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 7, 2, 0, 1, 16, 11, 15, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0]","[0, 0, 1, 1, 0, 0, 3, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",3,0,9,0 -https://github.com/hamcrest/hamcrest-php.git,2019-04-19 00:12:06+08:00,05925036271d1c7d38b40b0b66516fe7f442cfcd,"[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/codership/galera,2016-02-08 11:22:48+02:00,afdbdb22bf75a4d96a7efcc0c780fb8c54b35da4,"[8, 12, 4, 1, 5, 14, 32, 1, 0, 2, 3, 13, 7, 0, 2, 2, 7, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[3, 6, 1, 0, 0, 3, 9, 0, 0, 0, 2, 5, 4, 0, 0, 2, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/fail2ban/fail2ban,2014-04-17 13:19:03-04:00,e66231f041e7fa1925b080e43328dc1afd50ff8f,"[18, 35, 12, 41, 16, 14, 16, 41, 34, 18, 29, 38, 18, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 9, 4, 14, 4, 3, 4, 9, 6, 7, 8, 12, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 3, 11, 7, 7, 0, 3, 12, 6, 13, 1, 2, 3, 14, 22, 2, 14, 4, 0, 0, 3, 7, 0, 0, 0, 0, 0]","[2, 1, 6, 2, 0, 0, 1, 1, 3, 3, 0, 0, 0, 3, 9, 1, 5, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",6,1,17,1 -https://github.com/assimp/assimp,2018-05-12 12:01:52+02:00,a571d013102b62b437b4623dd4fc28a042dc5945,"[58, 50, 45, 27, 38, 41, 22, 37, 72, 23, 45, 51, 60, 23, 44, 24, 37, 19, 45, 23, 44, 16, 8, 29, 21, 4, 0]","[9, 22, 22, 10, 6, 21, 5, 18, 44, 14, 15, 16, 17, 11, 24, 12, 16, 7, 26, 7, 23, 9, 2, 13, 9, 0, 0]","[31, 29, 31, 19, 36, 26, 13, 16, 13, 16, 8, 8, 24, 12, 9, 16, 22, 16, 33, 31, 14, 49, 3, 4, 21, 14, 1]","[20, 8, 11, 7, 18, 17, 4, 5, 9, 11, 4, 5, 8, 6, 5, 8, 10, 6, 14, 18, 5, 18, 1, 2, 9, 7, 0]",36,5,47,4 -https://github.com/processone/eimp.git,2019-01-21 11:19:32+01:00,171b7a006fb2d54260903e376ed2d42d77412b4f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/intel/intel-vaapi-driver.git,2017-01-22 17:22:05-08:00,4a083a37e91b1a40e9d2bc8fa3c1c6b673b18ae4,"[6, 2, 3, 20, 58, 0, 23, 19, 5, 14, 18, 5, 2, 13, 100, 6, 27, 5, 9, 0, 1, 4, 9, 4, 34, 37, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[9, 12, 2, 9, 5, 13, 3, 6, 1, 11, 6, 1, 0, 0, 0, 0, 5, 1, 0, 0, 55, 0, 1, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,8,0 -https://github.com/oauth-xx/oauth-ruby,2021-11-09 14:42:34+07:00,c9a4917e1b45fcc21d7eb5fd86546e9e0aa1ef72,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 13, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://0xacab.org/schleuder/schleuder.git,2016-11-29 14:34:52+01:00,283bfecbf4d50e773d138dd31ad63755849e8beb,"[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 2, 0, 9, 8, 8, 1, 1, 7, 11, 15, 5, 16, 9, 37, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 4, 2, 4, 0, 3, 0]","[28, 34, 10, 16, 27, 23, 37, 11, 45, 3, 13, 27, 0, 1, 0, 1, 5, 2, 0, 13, 3, 7, 8, 9, 11, 0, 0]","[1, 5, 1, 2, 4, 1, 0, 2, 3, 1, 1, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 4, 3, 3, 3, 0, 0]",2,3,4,0 -https://github.com/michaelrsweet/htmldoc.git,2022-05-31 16:50:05-04:00,b1ac82c83a4fd892064a43b68f1c8074d76a7379,"[0, 0, 2, 4, 2, 5, 8, 0, 1, 5, 0, 1, 1, 0, 1, 0, 11, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,0,1,0 -https://github.com/01org/isa-l.git,2017-02-24 14:50:34-07:00,5ec8ea0e14884d9f445ed0f86878fa6f3c2347f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 35, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 15, 0, 0, 0, 0, 0, 0, 6, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0 -https://github.com/easyrdf/easyrdf.git,2020-08-27 01:26:51+01:00,a921dd72517c0a03639ac2c82ae31a069b2d4380,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 3, 1, 5, 1, 8, 0, 2, 3, 1, 0, 6, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 0, 1, 3, 8, 0, 1, 0, 1, 1, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/plotly/plotly.R.git,2015-12-23 14:08:14-06:00,4afeaf85d3c7e07a917a8f73035775fc58aec54b,"[35, 24, 7, 13, 33, 49, 18, 15, 8, 4, 6, 28, 9, 3, 15, 19, 0, 4, 28, 7, 21, 2, 17, 0, 71, 25, 2]","[0, 1, 0, 0, 0, 4, 6, 7, 2, 2, 0, 5, 0, 1, 1, 1, 0, 0, 5, 0, 5, 1, 7, 0, 33, 8, 0]","[12, 0, 8, 48, 40, 35, 4, 14, 7, 28, 28, 61, 23, 6, 25, 6, 14, 8, 4, 13, 31, 12, 13, 1, 10, 44, 1]","[4, 0, 3, 11, 5, 7, 1, 6, 0, 3, 2, 7, 8, 1, 6, 1, 4, 2, 0, 3, 6, 3, 1, 0, 3, 0, 0]",3,3,8,2 -https://github.com/psf/black.git,2018-03-16 01:05:36-07:00,28547942498bbac24ba4165800382ae9b170c788,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 38, 30, 17, 19, 24, 5, 27, 28, 17, 20, 45, 16, 15, 1, 3, 1, 1, 1, 0, 0, 0, 23, 9, 0, 2, 1]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,50,0 -https://github.com/biojava/biojava.git,2018-03-01 11:07:38-08:00,6a1293edcadae8c53a550122a67a69b160a47de4,"[0, 4, 0, 0, 2, 7, 14, 1, 0, 0, 2, 3, 0, 7, 5, 1, 0, 0, 4, 6, 4, 10, 6, 7, 7, 2, 2]","[0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 1, 3, 0, 1, 2, 1, 0]","[28, 43, 23, 4, 3, 2, 0, 0, 2, 10, 7, 11, 0, 3, 9, 7, 6, 5, 0, 5, 3, 5, 3, 0, 5, 12, 1]","[9, 14, 2, 1, 1, 1, 0, 0, 0, 2, 1, 2, 0, 0, 1, 1, 1, 1, 0, 3, 1, 2, 2, 0, 1, 4, 0]",5,2,3,1 -https://github.com/davesteele/comitup,2021-02-22 13:27:38-05:00,29ea71025138d758a082c94b66ca94f7b2349a33,"[0, 0, 0, 13, 3, 2, 0, 0, 0, 2, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 10, 4, 2]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[1, 0, 7, 7, 1, 12, 26, 11, 13, 8, 29, 28, 67, 4, 9, 12, 4, 0, 16, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 0, 3, 1, 1, 1, 1, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/puppetlabs/puppetlabs-ntp.git,2012-12-10 15:28:20-08:00,67a9d82a15ad068188f299acd8cb3a9ae2e6ddca,"[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 2, 2, 0, 0, 1, 19, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 1, 0, 0, 0, 0, 7, 1]","[3, 0, 0, 0, 0, 0, 0, 3, 0, 2, 5, 1, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",10,2,8,3 -https://github.com/coreruleset/coreruleset.git,2017-09-12 22:20:15-03:00,a822ebd053e8451a957d456f8af9af71734e1e63,"[2, 14, 6, 5, 17, 4, 20, 9, 11, 0, 2, 2, 6, 3, 0, 2, 1, 15, 21, 3, 3, 0, 0, 6, 4, 3, 1]","[0, 4, 2, 0, 6, 0, 13, 3, 5, 0, 1, 0, 3, 2, 0, 1, 0, 2, 3, 2, 1, 0, 0, 0, 3, 3, 0]","[4, 0, 0, 0, 0, 0, 3, 5, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,1,2 -https://github.com/mongoengine/flask-mongoengine,2013-05-02 10:42:12+00:00,6ea122aa377e56b47d4f302dd995367daea27fec,"[6, 0, 1, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 11, 2]","[4, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[32, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,2 -https://github.com/Xastir/Xastir.git,2016-08-19 07:57:30-07:00,45e06a4340a5107590567e4b094a344a4918d7c7,"[4, 6, 0, 12, 12, 3, 2, 5, 0, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/matrix-org/synapse.git,2015-04-03 10:09:06-04:00,364c7f92b4b1e8d4425418b7e797381ca31ec1aa,"[20, 32, 47, 73, 120, 114, 94, 43, 48, 105, 89, 15, 2, 62, 24, 57, 154, 150, 151, 112, 65, 80, 98, 53, 21, 3, 1]","[1, 4, 8, 7, 6, 5, 15, 6, 10, 11, 14, 3, 1, 10, 3, 7, 20, 28, 37, 31, 8, 16, 10, 7, 3, 0, 0]","[54, 65, 63, 158, 62, 119, 97, 56, 44, 10, 66, 44, 17, 50, 16, 22, 7, 35, 96, 102, 75, 34, 31, 29, 50, 29, 1]","[12, 5, 11, 16, 11, 23, 17, 22, 12, 2, 14, 3, 2, 8, 6, 3, 2, 9, 32, 35, 19, 10, 7, 13, 8, 10, 0]",12,2,7,5 -https://gitlab.gnome.org/GNOME/gnome-calendar.git,2017-09-06 21:49:00-03:00,8cbb5c1a4d9c52cc76b6f591d7279a340d66a992,"[15, 35, 52, 0, 24, 27, 16, 16, 17, 23, 11, 4, 4, 32, 7, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 4, 3, 24, 5, 1, 2, 0, 1, 2, 0, 0, 5, 1, 3, 0, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,10,0 -https://github.com/zopefoundation/zope.i18nmessageid,2022-11-03 16:23:33+01:00,cb6def05fdea2b2c40bcc154a159cfae0ed46b92,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[6, 2, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/google/googletest.git,2017-12-08 23:20:55-05:00,c82cd5e41e3755fc9ed65912ca3acaae69921dbb,"[2, 9, 2, 7, 1, 2, 6, 28, 54, 26, 23, 64, 33, 12, 6, 3, 1, 1, 12, 11, 4, 1, 0, 1, 4, 14, 1]","[1, 2, 0, 0, 0, 0, 5, 14, 26, 11, 16, 37, 15, 10, 3, 2, 1, 0, 7, 5, 3, 0, 0, 0, 3, 9, 1]","[14, 13, 3, 26, 48, 26, 31, 6, 10, 30, 17, 32, 19, 14, 12, 21, 63, 71, 42, 3, 10, 9, 0, 11, 3, 5, 1]","[11, 9, 0, 15, 25, 11, 13, 3, 4, 16, 8, 23, 12, 5, 4, 9, 24, 21, 11, 2, 1, 3, 0, 7, 1, 4, 0]",52,6,24,5 -https://github.com/rails/rails-html-sanitizer,2015-09-01 12:29:57-04:00,7a09522351832235bd2a88387709b4c24d574ed4,"[5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",3,1,3,0 -https://github.com/Nuitka/Nuitka,2018-01-01 11:14:46+01:00,1bb4258c7af8abe0141b44870749ad85858f7387,"[21, 9, 35, 0, 0, 48, 11, 5, 2, 1, 0, 0, 1, 2, 42, 27, 0, 0, 0, 0, 0, 18, 0, 1, 0, 13, 5]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 1, 0, 0, 15, 17, 19, 26, 0, 6, 0, 98, 6, 18, 0, 0, 0, 0, 32, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,4,0 -https://github.com/matthewdeanmartin/terminaltables,2015-09-05 17:19:37-07:00,324140dfa724ecec0df89871061c31492d62bbef,"[0, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[5, 0, 0, 0, 0, 4, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",3,0,1,0 -https://github.com/bk138/gromit-mpx.git,2021-01-09 13:16:32+01:00,6a3025e12fa739327a9a9e904f90b0c4b0ab1f1d,"[0, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 13, 0, 7, 3, 17, 0, 21, 1, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jbeder/yaml-cpp,2015-04-08 14:30:07-05:00,b43db54810846ec0e150d9d04c5b47c5cd9e8029,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 3, 0, 0, 0, 0, 11, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 -https://github.com/aws/aws-xray-sdk-python,2018-03-28 14:51:58-07:00,fd8957402c8ae9af5607ba4ed4950909b0703f82,"[0, 1, 0, 0, 0, 0, 3, 2, 0, 2, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 3, 4, 3, 2, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 3, 6, 2, 3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 7, 1, 3, 5, 4, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",13,1,15,1 -https://github.com/joewing/jwm,2017-07-19 19:09:59-05:00,c6d802a185b562f442ba78b6b27024d504fc7c6d,"[0, 5, 2, 2, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 16, 8, 3, 0, 0, 2, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 17, 0, 0, 0, 0]","[0, 1, 2, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]",1,0,2,0 -https://gitlab.com/libosinfo/osinfo-db-tools.git,2019-12-18 13:27:47+00:00,58375c6cd12dd77ebbfb5cb9043cab6a6e71e2ad,"[0, 0, 0, 10, 0, 4, 1, 0, 0, 0, 15, 1, 1, 3, 1, 0, 7, 0, 0, 0, 2, 0, 0, 5, 3, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 0, 0, 1, 5, 0, 0, 11, 0, 14, 2, 0, 3, 9, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,7,0 -https://github.com/c4urself/bump2version,2018-04-19 07:54:17-07:00,8d8a60628bfa2695e8bff9fb646d86114becb8b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 6, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 -https://github.com/pyjokes/pyjokes,2014-12-28 23:23:18+00:00,cded1fd1647c814ed6ee64f1efd75d63e2689122,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,1 -https://github.com/prawnpdf/prawn,2013-11-19 17:49:23-05:00,bbcc479046697f6e6de0620bddb61af8888b0e21,"[0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 3, 3, 0, 0, 2, 2, 6, 4, 5, 2, 0, 0, 1, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 3, 0]","[33, 6, 0, 12, 19, 3, 17, 7, 36, 4, 3, 1, 15, 21, 3, 21, 11, 1, 2, 10, 6, 0, 4, 0, 0, 0, 1]","[16, 0, 0, 1, 4, 1, 5, 1, 10, 0, 1, 0, 2, 2, 0, 5, 1, 0, 1, 3, 2, 0, 2, 0, 0, 0, 0]",9,3,12,2 -https://github.com/ranger/ranger.git,2016-05-27 16:44:45+02:00,ea355f491fb10d5ce054c7813d9abdfd3fc68991,"[1, 3, 0, 1, 3, 1, 3, 3, 10, 1, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/pgbackrest/pgbackrest,2019-10-08 15:27:17-04:00,38b72eded4b0f295ed1f30f849f0a99f69e396d2,"[10, 27, 16, 8, 15, 18, 21, 14, 11, 14, 11, 7, 7, 13, 7, 10, 9, 11, 13, 22, 8, 18, 14, 15, 25, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 4, 0, 3, 5, 20, 29, 16, 24, 17, 13, 5, 6, 12, 21, 20, 5, 8, 9, 3, 16, 26, 37, 34, 34, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/seccomp/libseccomp,2020-01-16 20:26:24-05:00,05452332281d60e4116198f1209d74a90c8a3076,"[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 2, 2, 9, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 7, 8, 2, 13, 6, 1, 5, 0, 0, 0, 0, 1, 0, 4, 2, 12, 1, 3, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,7,0 -https://github.com/osmcode/libosmium.git,2015-11-05 09:59:36+01:00,fc78d040066eab780302efb395d94df3fa394da2,"[15, 26, 1, 4, 1, 5, 4, 10, 16, 4, 7, 5, 16, 0, 14, 38, 11, 1, 1, 4, 0, 4, 10, 9, 82, 48, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0]","[17, 15, 12, 19, 5, 1, 0, 0, 1, 5, 8, 1, 32, 1, 8, 5, 0, 2, 1, 1, 6, 4, 4, 5, 27, 15, 1]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0 -https://github.com/cubiq/iscroll,2016-01-07 16:07:33+03:00,31ff659ed39a9e2a4b7e2a3079ca6c8f391884f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 8, 0, 0, 0, 0, 0, 0, 0, 5, 8, 4, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,7,0 -https://github.com/pytest-dev/pytest-bdd.git,2022-07-08 15:57:11+02:00,6af0350c5bf9125958b83ba16b5c8d73d0e0f719,"[1, 5, 0, 1, 0, 5, 25, 19, 5, 0, 0, 0, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 1, 32, 2]","[0, 0, 0, 0, 0, 0, 7, 1, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0]","[39, 12, 26, 14, 0, 20, 17, 4, 2, 0, 4, 5, 0, 2, 0, 0, 11, 36, 4, 0, 7, 2, 2, 2, 2, 8, 0]","[6, 6, 3, 1, 0, 3, 4, 1, 1, 0, 2, 2, 0, 1, 0, 0, 3, 9, 2, 0, 2, 1, 1, 1, 0, 4, 0]",3,0,6,1 -https://github.com/jupyter/jupyter_core,2015-07-14 10:02:24-07:00,3619a51a8e318fbc45e90552ca694baf6704d99f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 7, 3, 4, 3, 1, 0, 11, 6, 0, 18, 15, 7, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 0, 3, 2, 0, 4, 4, 1, 1, 1]","[11, 0, 0, 0, 12, 0, 4, 0, 6, 9, 1, 0, 2, 1, 1, 5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 4, 0, 2, 0, 2, 3, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,5,4 -https://github.com/ClusterLabs/pacemaker,2016-08-24 16:43:04-05:00,6b1d65bc4e190086adc47b4e68be2a5108b4bc06,"[40, 11, 13, 27, 3, 9, 5, 30, 12, 28, 16, 14, 22, 44, 48, 39, 54, 25, 23, 9, 5, 23, 18, 18, 20, 37, 2]","[12, 3, 4, 7, 1, 3, 1, 5, 6, 9, 3, 6, 8, 13, 13, 9, 15, 7, 8, 3, 1, 6, 4, 5, 5, 8, 0]","[23, 10, 6, 13, 11, 14, 18, 5, 2, 19, 38, 7, 9, 15, 12, 23, 8, 0, 0, 9, 13, 18, 4, 13, 0, 2, 1]","[8, 2, 1, 3, 4, 3, 5, 1, 1, 4, 8, 2, 3, 6, 5, 5, 4, 0, 0, 2, 1, 2, 2, 4, 0, 0, 0]",7,0,6,1 -https://github.com/P403n1x87/austin,2018-09-23 22:36:13+01:00,c6a3ce5b7ba320b4a935a4c4aad0fc877a196c1f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 9, 1, 0, 3, 3, 0, 5, 1, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/osmcode/osmium-tool.git,2016-08-08 10:29:21+02:00,e6748cc3837e4792e8452d5c227e740434e10539,"[1, 0, 0, 0, 11, 0, 8, 14, 0, 0, 3, 0, 0, 1, 0, 7, 2, 8, 3, 0, 0, 0, 2, 1, 7, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[10, 0, 8, 0, 18, 21, 0, 0, 4, 0, 2, 3, 1, 9, 4, 0, 3, 2, 1, 0, 0, 0, 11, 49, 5, 0, 1]","[0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,1,1,1 -https://github.com/rails/jbuilder,2015-09-01 11:43:29-04:00,f060fd54b106e6a43c74a977fa71d3d568796949,"[8, 1, 1, 0, 2, 4, 0, 0, 0, 0, 9, 0, 0, 4, 7, 0, 4, 1, 1, 3, 0, 0, 0, 0, 0, 0, 2]","[2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",8,1,8,1 -https://github.com/zopefoundation/BTrees.git,2022-03-09 08:12:29+01:00,472179656f901a1967f71723f43331846ca804b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/Xaviju/inkscape-open-symbols,2016-12-14 23:46:33+01:00,17224694613cea92fdd5fabbd34bfde40bff9c42,"[0, 0, 0, 3, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[3, 9, 6, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,1 -https://github.com/ocsigen/js_of_ocaml.git,2019-07-21 18:28:02+08:00,1c1c79271a6c987c484aec464274166349c6488b,"[12, 14, 2, 10, 0, 0, 0, 6, 0, 2, 0, 8, 6, 9, 14, 1, 9, 5, 1, 0, 12, 0, 0, 3, 7, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 13, 3, 0, 4, 0, 0, 2, 8, 29, 1, 8, 9, 24, 4, 23, 10, 7, 1, 11, 0, 0, 9, 11, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",9,0,10,0 -https://invent.kde.org/office/ghostwriter,2017-06-18 11:17:47-07:00,fb0d26ac9afdec01c755925ab2b17f4dd3a56760,"[3, 5, 0, 0, 3, 5, 0, 0, 1, 5, 4, 19, 2, 3, 13, 1, 9, 0, 9, 2, 5, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,0,0 -https://github.com/lxc/lxcfs.git,2014-12-12 14:44:09+02:00,60f73aff3126dc2850a4fb698f911e4279ba46b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 5, 5, 5, 4, 9, 1, 0, 4, 2, 0, 1, 1, 0, 1, 14, 2, 6, 1, 3, 3, 2, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,4,6,0 -https://github.com/swaywm/wlroots,2017-06-06 10:54:53-04:00,d79f5780225d2416f3fff9dcebeac1d64110bb94,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 12, 13, 0, 0, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 3, 0]","[32, 26, 45, 10, 11, 11, 4, 6, 39, 138, 72, 52, 26, 22, 19, 61, 155, 143, 56, 80, 94, 70, 70, 94, 18, 16, 1]","[2, 4, 6, 1, 1, 2, 2, 3, 5, 27, 20, 4, 5, 6, 1, 10, 24, 36, 13, 30, 20, 19, 20, 27, 7, 7, 0]",3,4,22,2 -https://github.com/jendrikseipp/vulture.git,2017-12-28 01:44:37+01:00,b6342c0a3e861731a236a64a3484057fd551fa75,"[11, 14, 23, 51, 15, 15, 29, 0, 7, 1, 0, 0, 3, 2, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 2, 22, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0 -https://gitlab.com/libidn/libidn2,2016-12-28 09:27:38+01:00,b374503a8562449644d48977d5df202c12687162,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 12, 14, 0, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 28, 2, 0, 28, 12, 11, 20, 2, 21, 75, 12, 10, 6, 0, 12, 12, 1, 0, 0, 0, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 18, 5, 2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 -https://git.osgeo.org/gitea/postgis/postgis.git,2015-10-19 10:52:10+00:00,775817c24521613b747bcdb9a8bd26fe0bfe4583,"[15, 29, 6, 27, 27, 48, 28, 42, 8, 48, 42, 9, 12, 33, 11, 28, 11, 61, 37, 15, 8, 17, 35, 49, 25, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 19, 7, 16, 25, 19, 7, 24, 11, 10, 40, 15, 9, 3, 2, 31, 2, 51, 36, 14, 8, 7, 1, 3, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/Intel-Media-SDK/MediaSDK,2017-04-04 17:54:50+03:00,1ec49c728ede53d813cc13da086d8436edcfc9d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/capistrano/sshkit.git,2013-01-16 18:22:25+01:00,fc3f251b04738ee3e0f14abcd9f8af8e259b83c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 35, 2, 0, 0, 2, 1, 0, 1, 8, 5, 10, 0, 1, 0, 0, 5, 0, 0, 0, 0, 7, 4, 0, 12, 3, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,3,0 -https://github.com/erlware/erlware_commons.git,2013-04-09 15:40:31-07:00,a1fc04f2b76f20d0f07d2197aaa14ee6d844960e,"[0, 3, 10, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 10, 0, 3, 0, 0, 4, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1]","[1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",5,0,1,3 -https://github.com/royhills/arp-scan,2023-02-13 21:30:40+00:00,b9e5e5c354ec6244349732a71b56e07b626c56d8,"[0, 0, 2, 11, 14, 0, 7, 6, 2, 5, 15, 12, 8, 0, 2, 1, 2, 1, 0, 0, 0, 5, 6, 7, 2, 6, 2]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/tpm2-software/tpm2-abrmd.git,2017-03-23 10:58:26-07:00,ff0e028f37e1b943592e2a1fe3c60435a8fc71e8,"[8, 13, 1, 18, 0, 6, 5, 13, 9, 0, 0, 6, 10, 0, 14, 16, 7, 12, 23, 2, 0, 4, 8, 3, 8, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 55, 18, 27, 16, 0, 21, 4, 11, 25, 7, 19, 12, 2, 2, 0, 0, 1, 2, 4, 16, 31, 3, 0, 0, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,9,0 -https://github.com/joaotavora/yasnippet,2015-03-18 15:59:28-04:00,b9989f8c8cc3068f264214a5efb236bbcce65075,"[2, 2, 3, 3, 1, 0, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0, 1, 2]","[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[5, 0, 27, 3, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 5, 1, 0]","[1, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",5,0,4,0 -https://github.com/AFLplusplus/AFLplusplus.git,2019-09-03 11:19:27+02:00,f094908f549151e604c92286e791816fae7d67fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 7, 7, 8, 17, 23, 30, 28, 20, 12, 18, 4, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 1, 2, 4, 3, 2, 3, 2, 0, 0, 0, 0]","[27, 31, 37, 38, 23, 25, 24, 51, 41, 40, 32, 7, 42, 32, 26, 22, 25, 10, 0, 6, 0, 0, 0, 0, 2, 0, 0]","[3, 4, 7, 6, 5, 4, 1, 11, 11, 10, 4, 3, 10, 5, 4, 4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",18,3,13,5 -https://github.com/Graylog2/gelf-rb,2014-04-15 16:21:00+02:00,2f5d3c33f1ca3f8e7c1d1fa915ff0a903a6cf31b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://gitlab.gnome.org/GNOME/vala.git,2019-01-05 20:41:00+00:00,8e4a0f7e1370f97195b1ed4553059a5864bd3c56,"[22, 4, 11, 6, 13, 10, 0, 4, 2, 3, 39, 4, 0, 7, 6, 24, 24, 23, 29, 40, 41, 13, 5, 17, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 26, 28, 8, 6, 12, 17, 85, 15, 115, 27, 15, 10, 69, 38, 7, 19, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,3,0 -https://github.com/solnic/virtus.git,2013-10-25 22:51:00-07:00,441f6ddd1e58ce45e0b2209ed628a2519032246e,"[2, 0, 2, 7, 6, 33, 3, 4, 0, 0, 0, 1, 2, 0, 0, 0, 0, 4, 0, 10, 83, 53, 58, 11, 4, 0, 2]","[1, 0, 1, 2, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 5, 0, 0, 0, 0, 0]","[2, 2, 0, 1, 0, 2, 8, 2, 0, 0, 3, 0, 0, 4, 0, 0, 0, 2, 0, 3, 0, 6, 2, 0, 6, 0, 0]","[0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 2, 0, 0]",11,1,11,0 -https://github.com/prometheus/snmp_exporter,2015-07-30 17:14:38+01:00,c425f56b444ef4757d99051c74095fa5b58b15de,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 3, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0]",1,1,5,0 -https://github.com/google/gopacket.git,2013-05-16 12:03:59-06:00,166c796597299a4e2e68b8423ef3ced877c2f041,"[9, 21, 27, 40, 39, 22, 9, 25, 23, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1]","[2, 0, 2, 5, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 20, 5, 24, 7, 0, 0, 5, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 6, 13, 0, 0, 0, 2, 0, 0]","[0, 4, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",4,0,0,1 -https://github.com/emcrisostomo/fswatch.git,2015-08-09 21:38:54+02:00,20269b8a9686886a07f656d657bc0ef081e4aab6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/zkat/ssri.git,2017-03-22 21:55:44-07:00,cdb6d7d19ded4d8126c2753b9c15491f8c3f83bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 19, 5, 2, 1, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/eproxus/meck.git,2016-12-22 11:15:33+01:00,f05a82d0ff8e8d82a3c5a7c19bc07950756e8431,"[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1 -https://github.com/tkf/emacs-jedi.git,2013-06-15 19:51:52+02:00,1022dd47ca02fec5355958927e57dfd63bdfa9ec,"[0, 14, 0, 1, 7, 12, 31, 6, 9, 1, 0, 15, 16, 3, 9, 0, 0, 0, 6, 0, 2, 3, 26, 24, 39, 10, 2]","[0, 2, 0, 0, 1, 1, 2, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 2, 4, 2, 2, 0]","[5, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0 -https://gitlab.dune-project.org/core/dune-common,2015-11-02 15:55:05+01:00,c266380f5d0a69c7d0a90db4bf8995571fdccca4,"[14, 16, 11, 4, 2, 7, 10, 2, 26, 13, 4, 7, 13, 0, 3, 4, 4, 4, 3, 3, 2, 11, 1, 23, 18, 9, 1]","[0, 2, 1, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0]","[11, 4, 25, 52, 7, 11, 22, 0, 0, 0, 1, 5, 30, 15, 18, 30, 27, 8, 15, 7, 5, 4, 15, 0, 0, 2, 1]","[1, 1, 1, 7, 1, 4, 3, 0, 0, 0, 0, 3, 4, 5, 4, 4, 9, 2, 6, 3, 2, 0, 5, 0, 0, 1, 0]",5,6,10,0 -https://github.com/flask-restful/flask-restful,2012-10-16 21:07:16-07:00,a4465e3e9cc4c30e7f53e0b908f734a42ed32da4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 5, 7, 2, 6, 7, 14, 2, 1, 5, 3, 1, 1, 0, 0, 0, 4, 8, 0, 6, 8, 9, 30, 0, 1]","[6, 0, 0, 1, 2, 1, 2, 1, 6, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 4, 0, 2, 1, 2, 3, 0, 0]",2,5,15,0 -https://github.com/davidcelis/api-pagination.git,2014-03-14 19:16:51-07:00,c57fc392f9adfd04a54bcdba2dfe3cac2497e619,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 4, 0, 0, 3, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 6, 4, 0, 4, 0, 2, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,0,4,0 -https://github.com/dask/partd.git,2019-10-21 14:07:37+01:00,f5db249faea99fb0e39c113f6f17f91c4ec34101,"[0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/Tux/Text-CSV_XS.git,2015-08-07 08:45:37+02:00,450831e5bda9ba59e33b6aa19177b3e1b50c6131,"[5, 0, 0, 10, 0, 1, 0, 1, 1, 2, 7, 7, 0, 0, 7, 5, 0, 9, 5, 0, 0, 5, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 1, 0, 0, 2, 0, 0, 1, 3, 0, 2, 1, 0, 5, 0, 3, 0, 0, 0, 4, 2, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 -https://github.com/intel/compute-runtime,2020-02-28 14:40:54+01:00,efa06319677bdf9ccdbba1bc1110774992e1474e,"[52, 48, 42, 34, 36, 33, 35, 44, 34, 38, 50, 41, 49, 42, 38, 58, 14, 23, 37, 52, 54, 56, 60, 70, 64, 74, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 66, 85, 95, 68, 63, 49, 51, 49, 60, 50, 50, 60, 53, 31, 48, 57, 46, 50, 62, 37, 76, 65, 51, 50, 52, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,0,28,0 -https://github.com/alastair/python-musicbrainz-ngs,2015-06-02 14:16:42+02:00,39368538a5f0c79dfce6a9750a005232b1c27e93,"[1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[10, 9, 0, 0, 1, 1, 1, 3, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 1, 0, 3, 0, 0, 2, 4, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]",1,0,2,0 -https://github.com/jquery/sizzle.git,2013-05-14 15:18:42-04:00,20a1a95a3b4882ec53927e0949df5fe7ed5f0c93,"[2, 1, 3, 9, 19, 6, 0, 0, 3, 9, 2, 2, 1, 5, 6, 2, 1, 4, 9, 0, 7, 4, 7, 1, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 7, 0, 0, 0, 2, 5, 13, 3, 0, 0, 0, 0, 10, 0, 0, 8, 0, 1, 0, 8, 1, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,4,1 -https://github.com/google/stenographer,2014-12-12 15:05:46-07:00,fb8e60c0ee41f94ffb0f9cb707247767f52085ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 24, 20, 17, 8, 5, 0, 21, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 7, 2, 1, 0, 7, 6, 0]","[22, 2, 0, 32, 24, 18, 21, 15, 33, 31, 3, 3, 16, 3, 5, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 1]","[11, 0, 0, 10, 12, 7, 9, 7, 11, 14, 0, 2, 5, 1, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",5,2,4,5 -https://gitlab.com/libosinfo/libosinfo.git,2019-12-18 13:28:22+00:00,27cc7e31b9c5cd9ba83241711cf6b8a042fa822b,"[6, 7, 2, 28, 5, 4, 5, 0, 5, 0, 1, 0, 8, 21, 4, 1, 8, 0, 0, 7, 3, 0, 2, 15, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 19, 8, 0, 2, 1, 0, 1, 3, 6, 3, 0, 1, 11, 0, 27, 15, 0, 15, 3, 6, 12, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,10,0 -https://gitlab.gnome.org/GNOME/balsa,2018-05-27 01:32:46+00:00,910f3b1f9e08dea61a11b235bfa8868336101799,"[2, 3, 3, 1, 0, 5, 3, 3, 4, 1, 5, 5, 5, 5, 1, 2, 4, 1, 0, 1, 0, 0, 1, 1, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 6, 3, 12, 14, 6, 1, 6, 4, 1, 7, 7, 0, 5, 3, 12, 0, 0, 0, 0, 5, 1, 2, 3, 2, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",4,1,0,0 -https://github.com/libxsmm/libxsmm,2017-06-15 13:45:51+02:00,16cc0585da06090c4216b4bf30e3845514f98991,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/jmcnamara/XlsxWriter,2013-07-25 20:34:18+01:00,16a0a5094c5f0801595aec278fa4ad2679df271b,"[13, 7, 13, 19, 21, 21, 14, 16, 21, 33, 10, 15, 22, 8, 0, 1, 0, 0, 2, 15, 10, 7, 3, 0, 0, 5, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0]","[2, 0, 5, 22, 28, 6, 1, 7, 4, 0, 0, 7, 10, 1, 0, 15, 13, 0, 8, 0, 0, 0, 9, 3, 4, 6, 1]","[0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]",6,0,5,1 -https://github.com/cesbit/libcleri.git,2018-10-11 14:25:34+02:00,9adc7c4b319f8ec614751304550fedeb4d70b38f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 5, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0]","[16, 1, 3, 1, 5, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/deckar01/task_list.git,2014-11-21 15:27:44-08:00,b1989c447979a8a748dc7e518f50de0eb3b9cc81,"[6, 0, 3, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 1, 21, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/lostisland/faraday_middleware,2013-01-06 13:15:47-06:00,04f41576b2f37bce2b2d7e1ce737e17daaafcd4d,"[0, 1, 0, 0, 0, 2, 0, 6, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,1 -https://github.com/jackfranklin/gulp-load-plugins,2016-01-05 10:40:33+00:00,f914cbed3a9085662fbd1b3815430b11272cac1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 3, 1, 0, 3, 0, 0, 0, 0, 3, 0, 0]","[1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 -https://github.com/netty/netty,2014-03-07 01:54:59+09:00,3cf463825598b910e3f5e6e6f6445ce294b972ff,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 0, 0, 0, 1, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/X0rg/CPU-X.git,2020-11-14 19:16:38+01:00,49d9f02e6a88c6fcb51606b5c28859bcac6dc5d0,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/simd-everywhere/simde,2020-03-06 19:06:05-08:00,0ce105d8307d3bc67809088bb16ebd7ec0daf6fb,"[0, 0, 0, 0, 5, 17, 7, 0, 2, 21, 2, 9, 19, 11, 31, 13, 15, 24, 42, 33, 3, 39, 36, 7, 16, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 6, 33, 53, 35, 27, 29, 34, 63, 64, 58, 45, 26, 81, 56, 94, 42, 45, 37, 75, 18, 30, 28, 30, 16, 27, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,21,1 -https://github.com/pypa/pipenv.git,2017-10-18 17:05:05+02:00,8ab98afc93fb4eb349b0fd3d4a37d9d6bcd2f583,"[20, 17, 2, 26, 9, 32, 15, 23, 9, 9, 0, 3, 1, 2, 2, 0, 0, 0, 13, 146, 282, 269, 498, 188, 37, 45, 2]","[3, 3, 1, 5, 2, 6, 2, 7, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, 26, 25, 49, 27, 11, 16, 1]","[41, 32, 25, 11, 31, 19, 12, 21, 14, 19, 2, 7, 34, 6, 39, 25, 16, 45, 87, 352, 300, 110, 40, 65, 104, 120, 1]","[12, 10, 9, 3, 7, 7, 4, 4, 9, 1, 0, 1, 13, 3, 6, 3, 4, 10, 18, 23, 51, 32, 12, 15, 27, 43, 0]",74,1,96,5 -https://github.com/lunarmodules/penlight,2013-05-06 16:56:41+02:00,8f4f4290ad44efe8c3a9cde0f13fde948e69c8e8,"[0, 4, 0, 0, 6, 0, 0, 1, 3, 5, 2, 0, 1, 0, 0, 6, 1, 4, 1, 5, 1, 2, 0, 8, 4, 12, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 3, 1, 2, 0]","[4, 0, 11, 3, 0, 5, 10, 3, 0, 0, 2, 0, 0, 4, 0, 4, 0, 6, 12, 4, 0, 0, 2, 0, 0, 0, 0]","[2, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0]",10,2,5,1 -https://github.com/OCamlPro/alt-ergo.git,2020-04-10 19:09:18+02:00,c310259a8b0770838b560cb3b1f7315bd7025625,"[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 6, 0, 0, 3, 13, 8, 0, 2, 0, 69, 2, 2, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 2, 1, 2, 0, 0, 0, 1, 1, 0, 0]","[2, 0, 1, 1, 0, 3, 2, 2, 2, 1, 1, 0, 2, 21, 14, 1, 6, 0, 3, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,2,1 -https://github.com/sopel-irc/sopel.git,2013-03-30 00:25:05-04:00,12bdf43ab2d2f23413a625a843a1cafea25c0386,"[5, 6, 6, 8, 26, 37, 26, 9, 0, 4, 0, 6, 3, 3, 6, 14, 11, 1, 5, 18, 6, 25, 39, 2, 10, 6, 2]","[1, 1, 0, 1, 5, 3, 8, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 2, 1, 1, 5, 0, 0, 1, 0]","[5, 3, 11, 21, 18, 8, 7, 31, 43, 39, 18, 18, 61, 12, 13, 9, 2, 19, 6, 2, 21, 12, 1, 18, 12, 2, 1]","[1, 0, 4, 4, 4, 0, 1, 5, 6, 6, 1, 6, 2, 2, 0, 2, 0, 1, 0, 0, 5, 3, 0, 0, 2, 1, 1]",2,4,17,1 -https://github.com/mapbox/mapnik-vector-tile.git,2015-07-27 15:50:59-05:00,72b1c48f154b7f94607babda3587d8e976795e4e,"[1, 4, 19, 31, 1, 2, 1, 0, 17, 37, 7, 8, 6, 14, 29, 1, 5, 5, 20, 31, 21, 15, 1, 0, 10, 2, 2]","[0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 1, 2, 2, 3, 3, 3, 0, 0, 2, 1, 0]","[11, 9, 15, 9, 0, 0, 4, 0, 2, 5, 11, 3, 18, 4, 1, 0, 0, 0, 3, 11, 18, 3, 3, 16, 2, 54, 1]","[2, 2, 3, 1, 0, 0, 1, 0, 0, 1, 2, 1, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 6, 0]",3,2,5,2 -https://github.com/rails/jquery-rails.git,2013-05-29 02:11:48-04:00,9ca9c33e1d944e7b9c8e732bf5970f2edf10bbba,"[0, 0, 0, 0, 0, 1, 0, 6, 0, 1, 9, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 1, 3, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,5,3 -https://github.com/DamienCassou/beginend.git,2015-05-29 13:11:10+02:00,1b53cb8802f4e7de35f5f3e794bfffdaa70a03bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 -https://github.com/EnterpriseDB/mysql_fdw.git,2014-12-12 02:52:46+00:00,619d5917b650642c33d905bf9df69213340e4bf9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 9, 0, 0, 1, 2, 0, 0, 2, 3, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 5, 2, 2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,1 -https://gitlab.gnome.org/GNOME/gnome-builder.git,2015-12-13 23:53:09-08:00,6a73540b64ede264453b90dded50a1206e97ca85,"[177, 11, 6, 6, 32, 5, 4, 5, 4, 29, 66, 107, 34, 103, 61, 115, 37, 98, 7, 75, 25, 12, 17, 4, 5, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[370, 76, 7, 7, 64, 38, 49, 27, 64, 104, 40, 64, 40, 47, 41, 29, 27, 22, 53, 93, 57, 117, 52, 18, 22, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",41,0,42,0 -https://github.com/PDAL/PDAL.git,2014-04-25 10:05:11-06:00,6f827a7519822ca56a52da4b9a37a03dfc6bef85,"[0, 17, 11, 15, 11, 14, 8, 19, 7, 23, 39, 13, 24, 37, 10, 8, 13, 8, 0, 2, 14, 19, 15, 30, 29, 4, 2]","[0, 2, 4, 2, 3, 0, 0, 0, 0, 5, 4, 1, 2, 14, 2, 2, 4, 2, 0, 0, 3, 6, 5, 13, 15, 2, 1]","[36, 21, 22, 42, 9, 38, 11, 9, 12, 10, 27, 34, 12, 10, 43, 34, 76, 46, 23, 57, 54, 49, 26, 39, 18, 25, 1]","[12, 10, 2, 20, 3, 13, 1, 2, 2, 3, 6, 9, 0, 0, 2, 4, 21, 11, 7, 19, 20, 19, 8, 9, 6, 9, 0]",6,3,5,1 -https://github.com/pyparsing/pyparsing,2019-07-15 23:22:27-05:00,6ea260a4211da88f3d28fd6266e6765a6c209baf,"[0, 0, 3, 0, 0, 0, 0, 3, 1, 0, 12, 10, 1, 2, 0, 0, 0, 0, 4, 5, 2, 2, 0, 8, 20, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[5, 11, 10, 6, 8, 5, 5, 2, 0, 0, 6, 0, 3, 0, 2, 3, 6, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,7,1 -https://codeberg.org/freedroid/freedroid-src.git,2019-01-18 00:15:08+01:00,21d21bd66b64e15ae89ea1f20e00280e031120e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 9, 2, 3, 0, 1, 0, 2, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[4, 0, 3, 0, 0, 20, 3, 3, 0, 6, 6, 0, 5, 5, 1, 9, 3, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/gcsideal/syslog-ng-debian,2015-09-11 21:28:33+02:00,31ebc2ecbfc1a49710b4401e5678dc7c3ad4edcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/SELinuxProject/selinux.git,2019-06-14 14:58:52-04:00,dbffdf71351e2c53b4d8b82f4035594f09e9d7c7,"[6, 0, 7, 17, 4, 6, 5, 8, 8, 9, 2, 0, 3, 3, 1, 0, 1, 2, 0, 1, 0, 4, 3, 3, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 5, 0, 0, 3, 2, 7, 0, 0, 0, 0, 2, 1, 15, 9, 6, 2, 4, 6, 1, 4, 4, 3, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,6,0 -https://github.com/xtaran/unburden-home-dir,2015-12-25 22:56:04+01:00,9af7a85895b1bf941a082eabaea77bf128208e5f,"[4, 9, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 18, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 14, 3, 9, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/elasticsearch/curator.git,2015-03-24 15:36:44-06:00,8b67dda6fe56def7d90c02183e603544e8885473,"[14, 2, 16, 0, 3, 1, 0, 0, 0, 3, 7, 0, 4, 4, 4, 0, 4, 12, 6, 4, 0, 2, 33, 40, 17, 10, 2]","[6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 2, 5, 3, 1, 0, 0, 1, 16, 7, 5, 0]","[31, 8, 2, 18, 6, 2, 0, 0, 18, 0, 0, 3, 17, 19, 7, 12, 10, 0, 0, 5, 2, 7, 18, 0, 0, 0, 0]","[11, 1, 1, 8, 3, 1, 0, 0, 9, 0, 0, 2, 7, 8, 4, 5, 2, 0, 0, 3, 1, 3, 7, 0, 0, 0, 0]",8,1,9,0 -https://github.com/howardabrams/node-mocks-http,2015-03-10 12:54:01+08:00,a248c3fcba26bc13c6df9e888fa17bbea2e9e25c,"[2, 5, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 5, 2, 2, 0, 0, 0, 0, 11, 4, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 2, 3, 0]","[18, 25, 8, 17, 26, 5, 0, 8, 0, 0, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[3, 6, 2, 3, 5, 3, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,4,1 -https://github.com/JabRef/jabref.git,2014-07-02 00:08:09+02:00,eb07ee5b555afde0f1c0446471761d645f7114dc,"[0, 0, 0, 0, 0, 0, 3, 1, 0, 6, 110, 101, 6, 2, 0, 2, 1, 1, 2, 16, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 5, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 6, 4, 1, 2, 1, 4, 3, 2, 5, 0, 0, 0, 2, 9, 18, 14, 0, 0, 0, 2, 4, 0, 0, 0, 0]","[0, 0, 1, 1, 0, 1, 0, 1, 2, 2, 1, 0, 0, 0, 0, 3, 5, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0]",13,5,15,3 -https://github.com/awslabs/amazon-ecr-credential-helper,2018-05-01 10:15:42-07:00,6f57df714f4290a49f8239a839352ae56dd606dd,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 6, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0]",2,0,5,0 -https://github.com/mishoo/UglifyJS2,2018-02-06 14:19:28+08:00,c0b8f2a16d4804fe302e5db91995735ee7041c8d,"[3, 4, 1, 5, 6, 6, 9, 7, 3, 13, 23, 16, 18, 15, 12, 16, 26, 20, 26, 26, 27, 31, 33, 29, 6, 18, 2]","[0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 6, 4, 2, 4, 2, 2, 0, 0]","[15, 15, 10, 9, 4, 8, 6, 10, 11, 6, 3, 11, 10, 5, 4, 5, 5, 1, 0, 6, 5, 3, 3, 2, 3, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,3,0 -https://github.com/kilobyte/ndctl,2018-06-29 11:24:54-06:00,08a96c61a15b5588733cbfb39b3e6a5b4773c432,"[0, 1, 0, 2, 11, 9, 8, 11, 8, 1, 15, 4, 12, 1, 14, 6, 7, 0, 0, 17, 2, 1, 4, 8, 6, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 12, 7, 6, 10, 6, 20, 3, 0, 1, 2, 1, 0, 12, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,3,0 -https://github.com/ros/robot_state_publisher,2017-03-22 14:13:04-07:00,3fa5bd8e3312fa0581c1dffd019077b1af09b6c6,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/checkpoint-restore/criu.git,2020-10-20 00:18:24-07:00,808684c99eb4c0cf12a5725cd6bbe3fea191273c,"[20, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,0,0 -https://github.com/cleishm/libneo4j-client,2016-06-12 23:40:47-07:00,f60c821a6bc5580f573fc1a0ed36d21ebb810ece,"[0, 0, 0, 62, 29, 3, 10, 9, 6, 3, 5, 0, 6, 1, 0, 0, 0, 4, 0, 3, 0, 4, 4, 1, 3, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 28, 14, 0, 20, 6, 2, 0, 17, 9, 9, 2, 0, 0, 3, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/kivy/kivy,2012-09-18 02:06:50+05:30,a5d8ca9bb4dfa69c61d754324a01df3a9bdb4350,"[36, 18, 59, 16, 8, 13, 6, 13, 18, 22, 11, 32, 28, 46, 22, 37, 41, 26, 49, 39, 55, 14, 2, 19, 12, 7, 2]","[6, 3, 13, 7, 2, 3, 2, 3, 1, 8, 2, 7, 4, 19, 5, 10, 4, 4, 14, 8, 15, 4, 0, 5, 1, 3, 0]","[33, 44, 30, 28, 58, 68, 34, 13, 13, 30, 34, 61, 31, 26, 21, 13, 20, 9, 22, 43, 17, 39, 23, 11, 33, 24, 1]","[6, 10, 9, 6, 6, 11, 6, 3, 6, 7, 11, 19, 8, 4, 5, 2, 7, 2, 4, 9, 3, 10, 8, 1, 5, 8, 0]",23,6,37,3 -https://github.com/intel/libva.git,2017-01-21 21:40:11-08:00,1c745cf56f36a117fcb12a2611918f3e40b26f66,"[0, 4, 1, 0, 33, 0, 1, 3, 4, 0, 0, 0, 0, 1, 8, 2, 2, 2, 0, 0, 0, 1, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[11, 19, 3, 1, 1, 0, 1, 1, 0, 2, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 24, 0, 1, 0, 0, 0, 0]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,9,0 -https://gitlab.gnome.org/GNOME/geary.git,2018-08-01 05:28:08+00:00,c43d86f35a840bdc56753676d5d54550bf70b744,"[35, 15, 3, 10, 13, 2, 5, 1, 0, 9, 24, 3, 3, 8, 5, 17, 36, 4, 47, 13, 2, 7, 16, 3, 5, 16, 2]","[1, 1, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 3, 0, 9, 2, 0, 0, 6, 0, 1, 6, 0]","[15, 3, 0, 14, 31, 3, 15, 7, 13, 11, 11, 6, 6, 4, 7, 4, 4, 63, 10, 1, 18, 28, 29, 36, 0, 0, 1]","[0, 1, 0, 3, 1, 0, 5, 2, 3, 3, 2, 2, 1, 0, 0, 1, 0, 3, 0, 0, 0, 3, 4, 5, 0, 0, 0]",7,0,9,0 -https://github.com/cyrusimap/cyrus-sasl.git,2019-12-06 12:19:49+11:00,23ee2d7fad94018164930808f6699c32209d0d32,"[0, 1, 0, 2, 0, 0, 0, 0, 7, 5, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://gitlab.gnome.org/GNOME/template-glib.git,2016-01-11 04:08:34-08:00,e514833a80a262377781325a56502d313091e40d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 2, 0, 2, 0, 1, 3, 3, 0, 0, 0, 0, 1, 3, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 -https://github.com/luakit/luakit,2017-07-03 00:47:36+08:00,eb1e723c0eef96a5d5e7d8c0094dcb3b0effdf4d,"[0, 0, 1, 4, 4, 0, 74, 38, 66, 61, 47, 59, 46, 32, 43, 16, 28, 45, 43, 66, 16, 19, 19, 18, 12, 8, 2]","[0, 0, 0, 0, 0, 0, 2, 1, 4, 4, 1, 3, 1, 2, 2, 1, 1, 3, 3, 3, 2, 1, 1, 1, 0, 0, 0]","[5, 53, 43, 57, 104, 90, 11, 48, 13, 15, 2, 8, 12, 0, 12, 13, 3, 3, 2, 21, 23, 22, 30, 6, 0, 0, 0]","[0, 2, 1, 5, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,14,0 -https://github.com/smarty-php/smarty.git,2023-09-14 14:50:04+02:00,26332c9de4b8341e3de0cb198706a6573e54dfe7,"[0, 13, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 22, 0, 0, 0, 0, 6, 1]","[0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 4, 1, 12, 3, 0, 1, 3, 0, 0, 1, 2, 0, 0, 7, 1, 12, 1, 1, 14, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0]",2,0,3,0 -https://github.com/openalpr/openalpr,2013-11-09 09:28:42-06:00,77c128d7edad82f0ba15d2b26cc083dfbed0fd23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 11, 6, 2, 3, 7, 1, 7, 37, 2, 0, 0, 11, 12, 12, 23, 0, 3, 3, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 6, 1, 0, 0, 3, 1, 3, 0, 0, 0, 0, 2, 0]",2,3,4,0 -https://github.com/zmartzone/cjose.git,2016-11-14 14:50:58+09:00,7d0f5566dff5258f4babb1e843715fcec3b03cbe,"[2, 3, 0, 0, 1, 0, 0, 0, 6, 20, 11, 10, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,1 -https://github.com/Blosc/c-blosc,2018-12-03 13:09:03+01:00,19a4ad2ef69bdb38a8a99d05df3df4623fdb611f,"[0, 0, 3, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 10, 0, 1, 0, 2, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0]","[4, 0, 0, 0, 0, 4, 4, 1, 22, 2, 1, 0, 1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 2, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 -https://github.com/Electrostatics/apbs,2021-03-29 19:22:29-07:00,ab7c6c1c85b9598cecdc5bfcf2a769e66d7a20da,"[17, 8, 11, 16, 5, 5, 21, 28, 30, 14, 0, 0, 11, 0, 0, 0, 7, 2, 7, 11, 12, 0, 0, 0, 1, 0, 2]","[3, 0, 2, 2, 1, 1, 2, 7, 2, 3, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[10, 2, 0, 0, 0, 0, 0, 0, 0, 24, 14, 12, 10, 7, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,1,0,1 -https://gitlab.gnome.org/GNOME/gjs.git,2018-11-03 17:05:17-04:00,fd507b01b852d2e8c0a943dd8a453505dfaa821e,"[42, 12, 16, 14, 11, 35, 6, 2, 19, 23, 25, 28, 26, 6, 6, 19, 64, 12, 5, 3, 1, 3, 32, 9, 8, 24, 1]","[8, 5, 2, 3, 3, 12, 2, 1, 4, 10, 8, 12, 5, 1, 2, 2, 2, 2, 2, 1, 0, 1, 4, 3, 3, 3, 1]","[42, 19, 0, 0, 11, 2, 7, 8, 8, 3, 0, 4, 4, 7, 15, 2, 17, 19, 5, 1, 1, 0, 4, 0, 0, 0, 1]","[8, 2, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 2, 2, 3, 0, 3, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0]",9,0,1,2 -https://github.com/guessit-io/guessit.git,2015-11-29 19:32:40+01:00,d560755d6b6f55d292f0ebfbc0983479a526c7f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 13, 52, 24, 35, 26, 9, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 0, 0, 1, 0, 0, 25, 28, 8, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/github/git-lfs.git,2015-02-07 09:51:55-07:00,16d262114d5ba6f2c414ddd94d468797524064ee,"[10, 11, 0, 9, 10, 20, 19, 22, 21, 2, 6, 13, 1, 0, 0, 0, 0, 1, 1, 0, 1, 2, 17, 1, 31, 12, 2]","[0, 4, 0, 2, 3, 3, 0, 3, 2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 3, 0]","[37, 13, 11, 16, 1, 28, 45, 13, 56, 28, 58, 29, 8, 50, 62, 99, 41, 19, 99, 24, 26, 79, 14, 77, 138, 43, 1]","[5, 6, 0, 2, 0, 3, 11, 2, 15, 9, 12, 10, 1, 4, 11, 19, 5, 3, 35, 3, 10, 18, 1, 15, 26, 14, 0]",6,6,29,0 -https://github.com/GoalSmashers/clean-css.git,2015-05-11 19:30:45+01:00,976f8465273d669bf681a93229f5701f473eec5d,"[4, 3, 3, 46, 20, 13, 4, 8, 13, 9, 17, 8, 11, 16, 4, 34, 26, 10, 16, 1, 4, 36, 18, 11, 9, 2, 1]","[2, 0, 0, 1, 0, 1, 2, 1, 0, 0, 2, 0, 0, 3, 0, 2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[9, 7, 17, 4, 13, 18, 14, 3, 1, 4, 2, 4, 18, 10, 20, 21, 2, 7, 15, 5, 4, 0, 2, 0, 4, 3, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 1, 1, 0]",4,0,11,0 -https://gitlab.com/ixion/ixion.git,2017-06-08 10:16:47-04:00,14b28d947ae04be1d13469461b055a1b28ef73b0,"[6, 0, 0, 0, 0, 11, 10, 2, 19, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 3, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/gohugoio/hugo.git,2016-02-05 12:35:42+08:00,bd0176a5487b0d8c368a14b3f283b9029f51d619,"[24, 5, 7, 4, 17, 20, 11, 7, 15, 19, 12, 0, 16, 11, 27, 47, 35, 11, 20, 35, 6, 32, 11, 8, 17, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 20, 10, 20, 31, 40, 63, 16, 31, 40, 15, 18, 4, 7, 3, 3, 10, 15, 23, 9, 12, 10, 19, 10, 2, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",80,0,94,0 -https://github.com/ddclient/ddclient.git,2020-06-11 23:10:39-04:00,e74797f55710b5a42917947b18fce0431d82a45d,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 41, 27, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 14, 4, 1]","[22, 7, 70, 57, 22, 6, 7, 22, 3, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 25, 24, 7, 3, 2, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,6,1 -https://github.com/datalad/datalad,2015-02-24 14:36:35-05:00,8e5df02c5c62578705feee22ede106de7416e36b,"[0, 0, 1, 0, 0, 6, 4, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 1, 7, 0, 1, 2, 10, 1, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0]","[33, 36, 14, 58, 83, 44, 81, 99, 63, 29, 21, 10, 1, 12, 7, 1, 0, 1, 3, 0, 0, 2, 39, 2, 12, 36, 1]","[6, 5, 3, 8, 10, 9, 18, 16, 20, 2, 4, 3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 5, 1]",1,2,2,1 -https://github.com/gazebosim/gz-transport,2018-11-02 09:45:05-07:00,39f054aaaa2ca6d4d7511fb50d228fefd2c74e8b,"[26, 14, 15, 5, 10, 38, 59, 6, 11, 25, 9, 5, 17, 1, 11, 24, 10, 5, 2, 0, 8, 0, 2, 0, 0, 0, 2]","[10, 4, 3, 0, 1, 12, 17, 2, 3, 7, 4, 0, 6, 1, 1, 5, 4, 2, 0, 0, 2, 0, 1, 0, 0, 0, 0]","[2, 0, 5, 14, 0, 2, 16, 2, 3, 1, 5, 0, 1, 0, 12, 2, 7, 1, 8, 8, 25, 4, 53, 1, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 3, 1, 1, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 1, 7, 0, 16, 0, 0, 0, 0]",3,0,0,2 -https://github.com/NagiosEnterprises/nrpe.git,2018-06-06 15:38:54-05:00,6eb197a2d6ec81cc8a09cacf53af425f923b7f71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/doctrine/instantiator,2014-06-13 12:16:14+02:00,82c7b039d3e7110b26962c71fc4f47829813555a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 0, 11, 0, 1, 0, 67, 0, 32, 3, 3, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 2, 0, 2, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://github.com/jazzband/django-sortedm2m.git,2019-06-27 00:07:49-07:00,3c4b5b165cfe82c314976a76c044759bcaf1e22e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 11, 1, 1, 0, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,0,6,0 -https://github.com/terser/terser,2018-02-06 14:19:28+08:00,c0b8f2a16d4804fe302e5db91995735ee7041c8d,"[3, 4, 1, 5, 6, 6, 9, 7, 3, 13, 23, 16, 18, 15, 12, 16, 26, 20, 26, 26, 27, 31, 33, 29, 6, 18, 2]","[0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 6, 4, 2, 4, 2, 2, 0, 0]","[15, 16, 10, 10, 9, 24, 15, 1, 0, 32, 14, 15, 20, 9, 19, 8, 7, 5, 6, 24, 5, 10, 6, 5, 1, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",11,1,5,0 -https://github.com/highlightjs/highlight.js,2021-03-25 12:29:02-04:00,d57d4793a5a6907a758cf0b24820f4fef8b63c35,"[9, 13, 9, 14, 12, 21, 7, 63, 5, 46, 6, 10, 35, 2, 4, 2, 8, 7, 16, 9, 15, 2, 11, 5, 10, 11, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 18, 97, 26, 11, 17, 9, 42, 0, 10, 12, 12, 11, 0, 6, 0, 0, 2, 5, 0, 3, 0, 5, 5, 3, 1, 1]","[0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",50,1,36,0 -https://github.com/yrro/command-t,2017-08-18 07:47:16-07:00,818c86c05a64c46e35f2fd444d909374b029ccd7,"[0, 2, 0, 0, 0, 0, 1, 0, 4, 1, 5, 0, 0, 1, 0, 6, 3, 11, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1 -https://github.com/bobek/pkg-pimd,2015-07-31 10:16:51+02:00,fadc4aa3b6f74a28fac18f15f3f5be7797cc4903,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 11, 0, 6, 31, 40, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 1, 0, 3, 0, 4, 2, 0, 0, 1, 0, 0, 0, 10, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0 -https://github.com/nojhan/liquidprompt.git,2013-11-26 20:09:29+01:00,0898c39bf50238d8de9c95c26a96ae06b6b6b57f,"[4, 4, 18, 3, 3, 4, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 15, 7, 4, 12, 11, 3, 17, 10, 1, 0, 5, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 1, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,12,0 -https://github.com/audacity/audacity.git,2018-09-10 19:15:06+01:00,334c0d83b2f12254a66325778f039b7aa65b4567,"[69, 62, 53, 46, 51, 9, 8, 6, 16, 7, 16, 18, 11, 13, 19, 16, 12, 4, 17, 26, 49, 80, 9, 45, 57, 28, 2]","[9, 2, 4, 3, 3, 0, 0, 0, 2, 0, 0, 2, 0, 1, 1, 0, 0, 1, 0, 2, 4, 2, 0, 3, 4, 0, 0]","[31, 9, 95, 17, 37, 92, 62, 71, 12, 40, 7, 22, 3, 0, 6, 1, 0, 1, 1, 1, 4, 5, 3, 4, 0, 22, 1]","[1, 0, 15, 0, 1, 7, 6, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",12,0,11,1 -https://github.com/coq/coq,2017-08-10 08:11:54+01:00,94c50815caf4c57b77ed761e05dc707f48685c65,"[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 38, 62, 45, 48, 47, 54, 56, 82, 25, 46, 23, 57, 38, 52, 122, 55, 102, 81, 53, 26, 37, 41, 33, 33, 30, 1]","[16, 8, 15, 17, 15, 22, 16, 23, 41, 7, 16, 6, 23, 17, 19, 34, 19, 39, 32, 19, 5, 16, 15, 13, 14, 14, 1]",0,1,16,0 -https://github.com/slime/slime,2014-01-10 02:12:10+00:00,ad8bc1ba6a8ad87d6eedd8e4e4ea158a29171894,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 3, 6, 17, 26, 20, 27, 21, 28, 16, 14, 1, 29, 5, 10, 4, 2, 1, 13, 16, 3, 0, 0, 5, 1, 1]","[3, 1, 0, 0, 2, 3, 0, 1, 1, 1, 1, 2, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",0,2,10,0 -https://github.com/zopefoundation/zope.proxy,2022-07-08 09:03:28+02:00,5c53fd90b1a529f2d1d4ed361d3bfa646520ba58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 1, 6, 0, 0, 0, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,0,1,0 -https://github.com/lunarmodules/say.git,2012-09-17 12:51:52-07:00,427e49a6c7d20069ca36e95fa535bdea2acace28,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 22, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]","[2, 2, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,3 -https://github.com/moment/moment.git,2012-09-17 10:52:28-07:00,9addcb0e935510584e8d9529f2774e6518dfd535,"[28, 8, 12, 18, 6, 22, 26, 13, 5, 8, 3, 12, 14, 14, 0, 5, 10, 1, 10, 6, 2, 8, 0, 1, 7, 1, 2]","[6, 4, 4, 1, 2, 6, 8, 2, 0, 2, 0, 4, 3, 1, 0, 4, 5, 0, 2, 2, 1, 2, 0, 0, 1, 0, 0]","[6, 7, 14, 0, 1, 22, 18, 65, 3, 15, 8, 2, 11, 2, 1, 1, 11, 17, 15, 0, 12, 12, 51, 0, 0, 0, 1]","[3, 2, 4, 0, 0, 5, 6, 3, 2, 5, 4, 0, 5, 1, 0, 1, 2, 7, 5, 0, 5, 4, 11, 0, 0, 0, 1]",25,4,28,6 -https://github.com/ropensci/RNeXML.git,2014-03-25 10:37:55-07:00,7be7ac02bde898211c8d7dbf0f447bca86da6b0d,"[0, 3, 1, 9, 11, 0, 2, 17, 33, 41, 4, 2, 2, 4, 0, 1, 1, 0, 0, 2, 0, 8, 0, 21, 33, 30, 2]","[0, 0, 0, 0, 1, 0, 1, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 4, 0]","[9, 0, 0, 0, 3, 8, 1, 0, 4, 0, 0, 5, 61, 13, 9, 20, 11, 4, 5, 7, 8, 17, 16, 3, 1, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 2, 0, 0, 1, 2, 2, 0, 0, 0, 0]",4,1,3,1 -https://github.com/mvz/ruby-gir-ffi,2021-03-05 11:13:25+01:00,0bbe9f45eb18d47e7f10854a340a32efbb143882,"[16, 2, 2, 8, 0, 5, 2, 1, 5, 9, 7, 4, 4, 2, 0, 1, 10, 6, 16, 4, 0, 2, 2, 0, 0, 12, 2]","[4, 1, 1, 2, 0, 2, 1, 0, 1, 3, 1, 2, 2, 1, 0, 0, 3, 3, 3, 1, 0, 1, 1, 0, 0, 5, 1]","[1, 0, 4, 0, 0, 2, 4, 2, 2, 0, 5, 2, 2, 0, 2, 2, 3, 2, 0, 0, 2, 0, 5, 0, 2, 0, 0]","[1, 0, 2, 0, 0, 1, 2, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 2, 0, 1, 0, 0]",2,0,0,0 -https://github.com/jquery/qunit.git,2013-05-14 15:14:41-04:00,8292e26107a5507a1a0d26035131e616f2ef7d41,"[8, 0, 0, 2, 8, 4, 0, 7, 2, 6, 0, 4, 0, 0, 1, 0, 10, 6, 1, 7, 0, 0, 1, 7, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 4, 7, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",12,1,2,0 -https://github.com/calamares/calamares.git,2020-09-30 10:53:04+02:00,613966d3ffa583f29841d4c4437660f48f8dfa3f,"[86, 20, 53, 13, 32, 69, 68, 17, 2, 48, 40, 65, 16, 19, 14, 31, 77, 49, 147, 40, 41, 32, 14, 9, 22, 3, 2]","[10, 1, 7, 4, 4, 10, 5, 2, 0, 5, 8, 5, 1, 4, 1, 0, 7, 4, 14, 2, 2, 6, 0, 2, 1, 0, 0]","[42, 19, 45, 69, 114, 54, 40, 7, 20, 29, 2, 9, 0, 1, 5, 7, 27, 68, 25, 6, 22, 4, 53, 72, 33, 38, 1]","[8, 4, 2, 4, 12, 9, 3, 2, 1, 3, 0, 0, 0, 0, 0, 4, 1, 5, 0, 0, 3, 1, 5, 6, 3, 5, 0]",10,0,10,1 -https://github.com/jtesta/ssh-audit.git,2020-09-26 22:06:49-04:00,13b065b3162a0394ce021dd0dcb6a8e9ed83a82d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 4, 1, 12, 5, 15, 0, 4, 0, 5, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 6, 18, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 15, 0, 1, 7, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/virt-manager/virt-manager,2019-05-16 16:31:27-04:00,0366eb15e25baa07be53061081c3be16fa425805,"[0, 0, 3, 1, 16, 0, 0, 34, 4, 4, 7, 49, 21, 4, 3, 63, 18, 20, 15, 18, 20, 28, 0, 0, 0, 166, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 32, 131, 81, 2, 23, 2, 23, 1, 5, 11, 1, 3, 2, 2, 2, 0, 0, 18, 4, 0, 2, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,2,0 -https://github.com/janestreet/variantslib.git,2018-05-23 17:00:52+01:00,1bb5da5e7ebfb664e62d3044ba7730926c1a9eb9,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/andialbrecht/sqlparse.git,2023-08-06 12:46:23+02:00,bb42969cca7c1e0bc49b970ea6512bf0184b97fe,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 1, 0, 6, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/puppetlabs/puppetlabs-mysql,2014-06-25 17:23:29-07:00,66e3d2b52c7fba9c5d902638ebdb9ba72d958b7e,"[4, 3, 0, 7, 15, 2, 11, 18, 25, 22, 6, 4, 2, 1, 1, 4, 6, 2, 2, 25, 3, 0, 9, 10, 3, 1, 2]","[1, 1, 0, 3, 7, 1, 5, 7, 12, 9, 4, 1, 1, 1, 0, 2, 3, 1, 1, 6, 1, 0, 3, 7, 2, 0, 1]","[4, 6, 7, 8, 4, 0, 15, 3, 2, 2, 2, 7, 2, 2, 8, 6, 2, 4, 2, 17, 10, 11, 3, 8, 13, 5, 1]","[2, 2, 2, 5, 3, 0, 6, 2, 0, 1, 2, 3, 1, 0, 4, 3, 1, 3, 0, 10, 5, 5, 1, 3, 7, 3, 0]",28,2,30,2 -https://gitlab.gnome.org/GNOME/folks,2021-02-07 15:48:32+01:00,e9215d3393251ee8ba7938ea844f70d10afdef35,"[0, 1, 1, 0, 0, 0, 2, 0, 0, 6, 1, 0, 0, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/django-haystack/django-haystack,2012-11-25 12:35:45-05:00,68a0b876d9d4c594a44f5bb92eb1d5c3c4e92bd5,"[4, 0, 2, 15, 9, 0, 1, 0, 6, 1, 1, 0, 2, 1, 4, 1, 0, 12, 5, 0, 0, 0, 1, 5, 0, 1, 2]","[0, 0, 1, 5, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[9, 3, 13, 1, 0, 1, 4, 8, 1, 1, 2, 1, 2, 6, 2, 4, 1, 3, 1, 2, 0, 6, 6, 29, 12, 0, 1]","[3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 2, 0, 1, 0, 3, 1, 2, 6, 0, 0]",7,2,25,2 -https://github.com/ytdl-org/youtube-dl.git,2014-12-12 16:42:40+01:00,e56190b378367291abe4677f2357fcfc213b1a6a,"[27, 33, 36, 48, 52, 113, 31, 37, 22, 53, 122, 100, 42, 98, 49, 108, 30, 40, 51, 116, 45, 57, 70, 113, 69, 97, 2]","[5, 5, 5, 7, 10, 7, 2, 7, 2, 10, 9, 21, 12, 11, 6, 9, 3, 6, 5, 11, 2, 7, 3, 9, 7, 14, 0]","[118, 38, 76, 110, 94, 47, 121, 114, 90, 128, 110, 57, 70, 80, 56, 56, 90, 60, 98, 81, 83, 102, 70, 57, 79, 68, 1]","[11, 5, 17, 12, 11, 6, 18, 9, 6, 10, 12, 10, 6, 12, 4, 13, 11, 2, 5, 8, 5, 11, 7, 7, 10, 7, 0]",78,2,90,4 -https://github.com/linuxmint/cjs.git,2020-10-19 11:12:34+01:00,974a99b3623a82d5fffa8e83f37c9ec5f51ef9c8,"[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 4, 1, 1, 0, 0, 0, 1, 1, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jobovy/galpy.git,2017-08-29 23:59:10-04:00,487757d5e6af47e3806de123f6077dcd66c6c9ff,"[0, 1, 2, 1, 0, 0, 0, 0, 2, 3, 0, 1, 20, 17, 8, 1, 34, 49, 10, 4, 15, 0, 0, 0, 10, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 1, 2, 4, 1, 0, 0, 0, 0, 0, 1, 0]","[14, 2, 19, 7, 2, 7, 14, 15, 10, 8, 2, 17, 0, 27, 2, 12, 29, 10, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 -https://github.com/Haivision/srt.git,2017-04-21 18:42:56-04:00,bdeb5d24336f001a0e3d38894eb89af192c0d2d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 2, 7, 3, 4, 2, 19, 28, 9, 5, 1, 7, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 7, 1]","[5, 1, 0, 4, 1, 0, 1, 3, 6, 4, 1, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",2,4,18,0 -https://github.com/skvadrik/re2c,2020-10-19 10:22:53+03:00,41fc15892806405652ae87e38bb7d12edee84d8d,"[14, 10, 12, 14, 17, 10, 8, 15, 20, 10, 24, 7, 17, 3, 7, 3, 0, 13, 6, 3, 2, 10, 2, 12, 15, 10, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 5, 3, 4, 0]","[11, 9, 7, 5, 0, 0, 0, 0, 1, 0, 5, 55, 2, 2, 0, 0, 0, 0, 0, 12, 5, 12, 42, 9, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 -https://github.com/janestreet/sexplib.git,2018-05-23 17:00:52+01:00,5de776a327933d3d28b43ee15c23aa96351e71e3,"[0, 0, 2, 0, 0, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/libcgroup/libcgroup,2021-06-09 10:39:41-06:00,60f75f11e2d93b0da7aa5bdf915d82f836824fbf,"[6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 1, 0, 6, 6, 7, 3, 18, 3, 1, 4, 1, 1, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 2, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 1, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/log2timeline/plaso,2016-01-30 10:59:54+01:00,ebb77482ee2b3ed9a7e5607e2a6fd6748585a423,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 849, 5, 7, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 8, 4, 3, 15, 5, 1, 0, 0, 1, 0, 0, 7, 9, 7, 6, 5, 0, 4, 0, 9, 12, 24, 21, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 -https://github.com/httpie/httpie,2014-04-24 19:32:55+02:00,887f70f595399c46698ad515ce1e19e4d44d54ac,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 2, 8, 2, 2, 2, 0, 4, 0, 1, 2, 2, 0, 0, 5, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0]","[67, 3, 12, 1, 2, 1, 0, 2, 2, 5, 0, 2, 2, 0, 0, 0, 1, 0, 0, 9, 0, 2, 0, 0, 0, 3, 0]","[0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0]",4,0,5,0 -https://github.com/guillaumechereau/goxel.git,2018-05-15 00:16:11+08:00,662be5d2b493f84cff00e4cec87081239db09ac4,"[3, 2, 0, 1, 7, 0, 4, 0, 0, 0, 1, 18, 153, 6, 10, 13, 26, 9, 5, 26, 26, 16, 52, 12, 4, 791, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 1, 0, 0, 37, 3, 0, 0, 0, 0, 4, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/mapbox/leaflet-image,2016-05-19 12:29:18-04:00,e2a406e25860bf235273a97fd543c8d6d2296975,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/nodejs/node-gyp.git,2017-06-14 10:29:50+01:00,2e40fad2bf50dc41acdeb10edaf3b7d64b411d0b,"[1, 0, 0, 2, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 1, 0, 3, 2, 1, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,1,0 -https://github.com/cucumber/aruba.git,2014-06-23 09:33:40+02:00,2ad8301a0a0a730769fd4ae17d81928f8d813405,"[0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 20, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 3, 0, 0, 0, 0, 2, 24, 3, 6, 8, 16, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",2,0,5,0 -https://github.com/rclone/rclone.git,2015-12-29 19:23:20+00:00,64a808ac762c7b4767daab2d10f88872a467dd8b,"[0, 0, 0, 0, 1, 7, 14, 9, 11, 8, 23, 13, 8, 11, 2, 3, 0, 5, 23, 16, 3, 0, 0, 0, 11, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 13, 10, 17, 11, 6, 10, 13, 27, 5, 2, 9, 5, 3, 3, 5, 12, 4, 7, 4, 1, 10, 13, 6, 17, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,16,0 -https://github.com/isaacs/node-glob.git,2014-11-13 14:55:58-08:00,033402bdc5bcca52cc6ccf7706ef550204270d97,"[7, 0, 8, 0, 0, 0, 3, 1, 5, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 6, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 2, 9, 0, 0, 4, 0, 1, 11, 1, 0, 0, 0, 3, 2, 2, 25, 4, 0, 0, 4, 0, 0, 1, 0, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,9,0 -https://github.com/fog/fog-local,2015-02-14 16:04:42+02:00,4b45d54ca61be4c3428a273ba011675cade639c4,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/un33k/django-ipware,2019-07-27 23:10:41-04:00,db9a5d622a05c83f852806911687788e5fbff7bb,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/zopefoundation/zope.schema,2022-08-05 07:49:05+02:00,d466d9e0a60f98a69657e3624b2cb8788c8a3da2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 7, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/markdown-it/markdown-it,2014-10-16 08:59:56+04:00,3b527ef9d2feab32c320dda8c42a35f4dce42179,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 28, 25, 3, 26, 25, 48, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[41, 92, 9, 28, 6, 4, 14, 8, 8, 38, 42, 40, 24, 7, 0, 2, 15, 11, 9, 13, 36, 11, 10, 6, 3, 6, 1]","[3, 7, 0, 2, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",3,0,20,1 -https://github.com/geopython/stetl.git,2016-02-22 08:03:56+01:00,370dc6389e0af477f990731134f6befd74f2e97c,"[0, 3, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 4, 1, 0, 2]","[0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 13, 6, 2, 6, 10, 0, 1, 22, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 4, 0, 0, 0]",2,2,0,0 -https://github.com/javaparser/javaparser.git,2016-10-06 14:42:31+02:00,b612d63cb2b0740d61e74acd1ec41ca172f0e0fa,"[9, 0, 0, 3, 0, 0, 0, 11, 0, 1, 1, 6, 10, 44, 83, 10, 10, 0, 5, 34, 6, 12, 1, 1, 2, 13, 2]","[3, 0, 0, 2, 0, 0, 0, 6, 0, 0, 1, 3, 4, 20, 29, 3, 5, 0, 3, 5, 1, 2, 0, 0, 0, 2, 0]","[7, 10, 5, 18, 4, 49, 33, 32, 24, 69, 88, 24, 21, 44, 49, 25, 76, 49, 124, 57, 184, 106, 32, 49, 19, 12, 0]","[0, 1, 2, 2, 0, 8, 7, 7, 5, 34, 44, 13, 11, 7, 11, 3, 20, 20, 10, 25, 10, 38, 13, 4, 3, 5, 0]",15,5,20,4 -https://github.com/tmuxinator/tmuxinator,2013-05-31 00:42:58+10:00,79ead205f6bb8df496c41d0fbe90900ac1b81bd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 0, 0, 0, 3, 5, 9, 17, 27, 14, 3, 1, 0, 0, 6, 4, 0, 0, 3, 1, 0, 8, 2, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0]",4,1,18,1 -https://github.com/olive-editor/olive,2019-06-29 01:42:07-07:00,84720b39cb812750b12db728f7c0127b02443fbd,"[83, 107, 42, 89, 74, 57, 100, 47, 46, 59, 74, 58, 46, 17, 3, 29, 14, 27, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 29, 3, 10, 16, 8, 20, 9, 10, 9, 3, 3, 9, 3, 0, 9, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",25,0,2,6 -https://invent.kde.org/plasma/kwin.git,2021-08-31 22:10:58+00:00,f6005a28cd613def28a9e4a8cfab95966b5b7868,"[30, 33, 22, 14, 47, 37, 38, 55, 62, 33, 93, 65, 40, 49, 51, 41, 15, 41, 37, 13, 45, 35, 36, 67, 45, 102, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[71, 33, 61, 57, 49, 32, 78, 69, 57, 58, 61, 57, 49, 29, 51, 30, 14, 34, 32, 80, 92, 35, 33, 80, 49, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",18,0,26,0 -https://github.com/google/benchmark,2014-02-10 17:37:54-05:00,99459023d9c45d514ba84c899f0bc98bd83d6df1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 19, 10, 3, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 1, 0]","[6, 2, 0, 0, 0, 3, 0, 3, 1, 4, 9, 6, 0, 0, 0, 3, 13, 1, 0, 0, 0, 0, 0, 13, 10, 6, 1]","[1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 2, 3, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 5, 2, 2, 0]",7,3,11,2 -https://github.com/jquery/jquery.git,2012-09-17 14:29:58-04:00,3cb36f7a42a200cead4723841015f61301b02a52,"[6, 5, 18, 13, 17, 18, 17, 14, 14, 13, 32, 30, 32, 34, 19, 42, 28, 10, 34, 1, 14, 16, 16, 20, 10, 8, 2]","[0, 0, 2, 3, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 6, 7, 20, 78, 17, 18, 16, 13, 20, 18, 22, 43, 64, 49, 36, 54, 37, 29, 32, 10, 3, 9, 27, 4, 4, 1]","[0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 0, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",24,0,43,0 -https://github.com/zopefoundation/zope.testing,2022-03-04 08:18:32+01:00,3b9901b40ec39a859e3187083d2c5ef956dc19f9,"[0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/aws/aws-cli,2013-08-09 13:31:16-07:00,0d125a567e7ffa9dfe285df8c436783d29594c79,"[15, 35, 22, 4, 19, 9, 0, 2, 26, 17, 8, 8, 34, 30, 20, 17, 4, 13, 7, 14, 21, 13, 36, 16, 12, 1, 1]","[3, 5, 1, 0, 6, 3, 0, 1, 5, 3, 4, 3, 10, 1, 5, 7, 2, 3, 3, 2, 3, 2, 7, 4, 3, 0, 0]","[71, 116, 81, 43, 42, 46, 19, 40, 15, 31, 21, 27, 35, 13, 21, 36, 25, 16, 22, 7, 12, 15, 11, 11, 16, 21, 1]","[18, 32, 28, 16, 10, 20, 4, 10, 4, 8, 10, 10, 13, 4, 3, 12, 9, 5, 7, 3, 5, 5, 6, 3, 5, 7, 0]",5,1,14,1 -https://github.com/zopefoundation/zope.deprecation.git,2022-11-30 08:35:36+01:00,11a3002b47b622b2d7b84b1f743e2895b0377b3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/npm/abbrev-js,2013-02-11 17:16:30-08:00,c98311d7cdafa82dec133a87662890618a5959c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/OpenTTD/OpenTTD.git,2018-04-16 23:20:04+02:00,6d31478988315180743772d879524de51ab1edb8,"[0, 2, 1, 0, 1, 1, 0, 11, 1, 6, 6, 5, 2, 3, 1, 0, 1, 0, 1, 2, 18, 5, 4, 4, 5, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 21, 9, 3, 5, 10, 4, 23, 12, 14, 15, 7, 2, 13, 10, 10, 5, 2, 0, 4, 2, 2, 5, 2, 3, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,28,0 -https://gitlab.gnome.org/GNOME/glade,2016-02-27 11:17:38-03:00,7e5dfa8ccd211945e624b0fab7fe2b19fb1b9907,"[3, 3, 2, 4, 0, 1, 0, 0, 1, 3, 1, 9, 9, 9, 24, 7, 13, 0, 2, 0, 2, 57, 2, 10, 4, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 3, 17, 9, 0, 2, 2, 0, 3, 0, 3, 12, 2, 1, 0, 0, 1, 2, 0, 0, 2, 0, 2, 0, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,11,0 -https://github.com/kaminari/kaminari,2014-08-18 20:17:03-07:00,5f9b7956c56bf721d8614dcec67e85244b1b3963,"[6, 4, 11, 8, 7, 8, 2, 7, 8, 0, 0, 18, 6, 7, 1, 6, 1, 2, 1, 0, 0, 0, 0, 1, 1, 4, 2]","[0, 2, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 3, 0, 8, 2, 0, 0, 0, 0, 0, 0, 5, 1, 21, 6, 2, 5, 3, 3, 7, 0, 0, 2, 2, 0, 3, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",11,0,7,0 -https://github.com/resurrecting-open-source-projects/openrdate,2019-09-24 22:07:24-03:00,2d5de63c9bb2ab4124f6f1b2c72efe8cf553b9be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/elves/elvish.git,2016-02-19 00:13:35+01:00,4ca7fbca03c1db2c512648cb418da56e04b54ddd,"[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 99, 66, 133, 127, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 2, 0]","[141, 79, 31, 32, 34, 11, 18, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 15, 4, 2, 7, 4, 1, 2, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",4,1,5,2 -https://github.com/resurrecting-open-source-projects/scrot,2019-02-12 22:52:37-02:00,b21539df7b1faa23a82c8917d23c80ce82230e2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35, 4, 4, 0, 10, 2, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 4, 0, 0, 0, 1, 0, 0]",1,2,5,0 -https://github.com/ARMmbed/yotta.git,2015-09-17 17:54:30+01:00,c3607c653d1989a9eaa1a1a705b9812bed59374e,"[40, 19, 4, 7, 19, 8, 13, 9, 4, 2, 14, 12, 7, 8, 27, 23, 9, 8, 28, 16, 26, 23, 1, 3, 4, 28, 2]","[17, 3, 0, 2, 6, 0, 7, 1, 1, 1, 2, 4, 3, 1, 10, 5, 3, 3, 9, 6, 8, 6, 0, 2, 2, 8, 1]","[28, 40, 40, 35, 24, 12, 29, 12, 22, 28, 15, 21, 15, 18, 0, 10, 19, 24, 20, 3, 6, 16, 8, 7, 2, 6, 1]","[7, 14, 15, 13, 4, 5, 12, 2, 9, 6, 6, 5, 4, 8, 0, 3, 5, 8, 7, 2, 2, 4, 3, 2, 1, 2, 0]",11,2,15,2 -https://github.com/fuzzylite/fuzzylite,2017-10-23 18:24:45+13:00,3838d268c8480bef42dd40f1bbc4bc66d28e0e34,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 15]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://salsa.debian.org/emacsen-team/magithub,2017-10-10 23:19:15-05:00,efea5210adfc335f43a30d328d51f96258e679df,"[0, 0, 1, 44, 102, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 22, 29, 21, 3, 9, 2, 1, 2, 0, 0, 16, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 1, 0, 1, 0, 0, 0, 0, 2, 0]","[3, 27, 54, 24, 8, 11, 3, 15, 6, 5, 9, 0, 0, 14, 31, 14, 38, 1, 2, 3, 4, 1, 1, 1, 16, 6, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 1, 0, 0, 1, 3, 0]",6,0,10,0 -https://github.com/vim-syntastic/syntastic,2013-04-10 19:41:53+01:00,807f8c1824bcc6a0fabf855807256701d36f8221,"[0, 0, 1, 14, 6, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 9, 0, 2, 0, 4, 0, 0]","[0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[31, 15, 21, 21, 27, 13, 16, 32, 35, 15, 18, 19, 30, 17, 5, 16, 20, 24, 19, 1, 1, 1, 1, 22, 12, 6, 1]","[5, 5, 5, 4, 4, 3, 1, 9, 9, 4, 6, 5, 8, 4, 2, 4, 4, 8, 6, 0, 0, 0, 0, 7, 2, 2, 0]",4,5,39,2 -https://github.com/syncthing/syncthing.git,2014-01-28 19:10:39+01:00,d31a1264082a13b7cc89781ca9d2e8cdebc4f031,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 16, 36, 38, 25, 8, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[7, 12, 13, 10, 19, 14, 12, 19, 19, 13, 24, 28, 11, 29, 31, 44, 60, 38, 30, 25, 17, 10, 31, 26, 15, 50, 1]","[0, 0, 0, 0, 3, 1, 1, 0, 1, 0, 0, 0, 0, 1, 4, 3, 4, 5, 1, 0, 0, 1, 2, 0, 0, 3, 0]",3,1,14,1 -https://github.com/numba/numba.git,2014-10-08 16:19:53+02:00,d05a0fc061a6844784cba01b291fe532d5c24024,"[27, 23, 17, 29, 16, 16, 38, 52, 21, 25, 75, 52, 13, 7, 2, 0, 1, 16, 9, 8, 0, 4, 11, 0, 0, 3, 1]","[2, 3, 2, 0, 0, 2, 7, 11, 4, 2, 31, 15, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[89, 27, 28, 13, 20, 26, 37, 32, 46, 30, 27, 32, 37, 57, 51, 58, 53, 55, 44, 21, 74, 43, 40, 53, 32, 17, 1]","[28, 12, 5, 1, 2, 1, 10, 7, 11, 3, 15, 8, 4, 24, 17, 24, 10, 12, 14, 7, 16, 11, 11, 18, 13, 4, 0]",8,2,3,4 -https://github.com/jupyter/notebook.git,2015-04-21 15:37:06-07:00,fa4aa84fc5cfdbfe0817df5ade13e215b3c47899,"[31, 133, 55, 123, 82, 62, 145, 139, 97, 47, 41, 48, 101, 161, 71, 41, 47, 24, 70, 24, 28, 54, 86, 47, 34, 0, 7]","[6, 20, 12, 26, 19, 15, 30, 44, 16, 15, 20, 15, 32, 46, 25, 11, 15, 10, 28, 10, 14, 16, 29, 18, 14, 0, 0]","[96, 8, 26, 37, 20, 21, 17, 13, 21, 14, 8, 23, 22, 44, 11, 27, 43, 13, 75, 32, 42, 62, 51, 35, 55, 38, 1]","[28, 3, 13, 4, 3, 4, 5, 6, 5, 1, 4, 8, 9, 20, 4, 3, 11, 5, 8, 11, 18, 21, 16, 10, 20, 11, 0]",45,0,47,4 -https://github.com/zopefoundation/zope.event,2022-04-11 07:57:25+02:00,cdd8d1976ef48d4a59ba49d57d4c956456640c1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kelektiv/node-uuid,2020-01-21 13:29:10+01:00,53ca9d46f616af807aafacc743cbdbf0e2874888,"[0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 9, 0, 5, 0, 0, 0, 0, 0, 11, 0, 0, 2, 0, 1, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 1]","[17, 3, 3, 5, 13, 10, 6, 4, 0, 0, 4, 2, 0, 3, 8, 3, 1, 5, 3, 1, 0, 4, 3, 0, 0, 0, 1]","[2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/analogdevicesinc/libiio.git,2020-02-11 12:31:25-05:00,ec2f07932bb69150d43b6eddb46ead4b2c4b5a77,"[0, 0, 0, 0, 3, 1, 2, 0, 2, 0, 0, 1, 1, 1, 0, 7, 0, 1, 0, 0, 1, 10, 14, 13, 10, 9, 1]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 6, 7, 5, 2, 6, 0]","[18, 15, 5, 1, 12, 5, 10, 20, 32, 28, 58, 30, 17, 33, 23, 28, 30, 12, 3, 0, 3, 2, 1, 8, 10, 2, 0]","[6, 5, 3, 1, 4, 2, 3, 2, 10, 5, 21, 9, 3, 14, 10, 8, 12, 3, 1, 0, 1, 1, 0, 5, 4, 1, 0]",9,0,7,1 -https://github.com/open-power/skiboot.git,2017-02-06 12:00:11+11:00,ed735d729a41161e6399dd453c90d35cd33b6417,"[6, 0, 4, 3, 1, 14, 4, 3, 0, 2, 3, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/resurrecting-open-source-projects/sniffit,2016-11-15 09:41:45-02:00,31ca5eeab3f471e87fd8d57a3d0a8174f3cabb9f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/thoughtbot/shoulda-matchers,2012-03-18 20:39:15-04:00,76127ea45fcade0cf119538952f6c7387ebf2efb,"[4, 0, 0, 10, 1, 0, 4, 2, 8, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 5, 6, 6, 2]","[0, 0, 0, 5, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[34, 9, 6, 22, 12, 11, 0, 11, 1, 0, 0, 3, 5, 3, 1, 0, 6, 3, 3, 0, 0, 1, 0, 1, 0, 30, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",12,1,19,0 -https://github.com/jupyter/nbconvert,2015-04-09 21:41:47-07:00,edf33845534349bf73e7ff7cbc1aa77cdb61767c,"[15, 9, 2, 15, 6, 3, 5, 3, 19, 2, 0, 0, 3, 16, 4, 14, 2, 0, 0, 10, 29, 0, 16, 10, 5, 23, 2]","[2, 3, 1, 3, 2, 0, 2, 1, 5, 1, 0, 0, 1, 7, 2, 3, 0, 0, 0, 2, 11, 0, 3, 5, 2, 7, 0]","[5, 13, 7, 2, 10, 0, 2, 2, 29, 10, 23, 2, 3, 17, 16, 9, 9, 0, 9, 2, 2, 0, 8, 21, 1, 12, 1]","[1, 6, 3, 1, 3, 0, 1, 0, 4, 2, 3, 1, 3, 6, 3, 4, 4, 0, 3, 1, 1, 0, 4, 7, 0, 4, 0]",11,3,16,1 +"upstream_vcs_link","event_date","event_hash","before_all_ct","before_mrg_ct","after_all_ct","after_mrg_ct","before_auth_new","after_commit_new","after_auth_new","before_commit_new","age_of_project" +"https://github.com/Exa-Networks/exabgp",2020-05-12 08:59:33,"0517dc80b8479ba65cfe1e2eb3e09832b895b999","[0, 0, 0, 12, 3, 0, 3, 0, 40, 23, 0, 4, 7, 3, 0, 4, 5, 1, 0, 1, 0, 0, 0, 0, 2, 9, 2]","[0, 0, 0, 2, 2, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]",5,0,4,0,5211.7322222222 +"https://github.com/thoughtbot/factory_girl.git",2015-04-16 03:32:05,"5a8804871c6bf18f16e830948ce4a04f97c77c4f","[2, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 1, 2, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,7,0,4913.9169675926 +"https://github.com/rsyslog/rsyslog-doc",2018-02-13 07:40:47,"265f04c4c9354f3a7fb49fa8054a0b14f679ce43","[4, 1, 9, 15, 5, 0, 0, 2, 0, 4, 0, 0, 2, 0, 17, 13, 15, 7, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[3, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 9, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 1, 3, 2, 2, 5, 2, 0, 0, 2, 1, 3, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 2, 0, 0, 1]",7,0,10,0,5603.1068634259 +"https://github.com/mqttjs/mqtt-packet",2015-01-06 19:58:23,"87aef8413f8ebfa0bb9c30332b6829884ee56d0a","[0, 0, 1, 0, 0, 0, 2, 4, 0, 6, 0, 0, 0, 2, 0, 13, 12, 3, 1, 0, 0, 0, 0, 8, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,3391.8497337963 +"https://github.com/iem-projects/ambix.git",2016-04-27 10:19:17,"c6a44bd1bb01d7f2b9dd73ac7d0f5389d786d6fe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 10, 1, 3, 2, 0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,4,0,2332.8963194445 +"https://invent.kde.org/plasma/kscreen.git",2019-11-11 20:52:25,"50cf930ec8240be069a18765c10f681f1c4d7599","[3, 0, 3, 1, 11, 2, 1, 2, 1, 0, 0, 2, 2, 0, 0, 0, 11, 2, 10, 2, 0, 1, 8, 1, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 1, 5, 0, 0, 8, 1, 6, 8, 1, 0, 2, 2, 1, 4, 1, 1, 5, 2, 2, 0, 3, 2, 2, 0, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",6,1,4,0,4047.6193055556 +"https://github.com/ocaml/dune.git",2018-05-02 12:57:10,"a9462d135f4ab57a7a566183c7e0a306ea63ff3d","[18, 4, 7, 10, 6, 12, 20, 16, 17, 19, 30, 36, 37, 30, 38, 42, 41, 70, 59, 101, 25, 19, 39, 38, 39, 22, 1]","[4, 0, 0, 1, 4, 2, 4, 5, 3, 1, 3, 6, 8, 7, 3, 7, 7, 9, 8, 12, 2, 2, 7, 10, 5, 4, 0]","[44, 33, 28, 60, 47, 75, 49, 27, 102, 145, 74, 18, 54, 73, 45, 25, 51, 71, 28, 103, 67, 73, 61, 76, 30, 12, 1]","[9, 3, 6, 19, 13, 17, 11, 6, 17, 16, 11, 6, 15, 16, 13, 9, 5, 16, 9, 14, 12, 9, 15, 16, 5, 1, 0]",12,1,34,0,2601.2655208333 +"https://github.com/ceres-solver/ceres-solver.git",2018-07-10 06:16:27,"2c1e595b775f6c23ec985ac20976f81dbed327e5","[9, 2, 1, 5, 1, 3, 18, 14, 2, 4, 4, 5, 19, 6, 7, 5, 1, 2, 0, 1, 0, 0, 4, 3, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 4, 0, 2, 1, 1, 4, 9, 5, 3, 4, 0, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,6,0,4197.5254166667 +"https://github.com/google/yapf.git",2015-03-18 20:36:07,"7d623455f45435ad351514dfd4abd064cac61aab","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 50, 51, 21, 32, 18, 16, 0, 3, 5, 3, 0, 6, 2, 5, 10, 9, 3, 6, 1, 1, 0, 4, 0, 11, 12, 1]","[4, 2, 8, 5, 12, 5, 1, 0, 0, 1, 1, 0, 3, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,3,19,0,3193.809224537 +"https://github.com/flot/flot",2012-11-27 15:25:25,"b362df896c80adca1fcf48fb2a78b3f93e32928d","[0, 4, 7, 0, 2, 4, 28, 7, 5, 1, 0, 0, 0, 0, 1, 3, 8, 3, 0, 0, 0, 0, 6, 6, 1, 35, 2]","[0, 1, 2, 0, 0, 1, 6, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 1, 2, 0, 7, 0]","[23, 2, 11, 16, 0, 3, 19, 12, 19, 21, 15, 12, 11, 15, 18, 1, 1, 6, 11, 5, 0, 0, 0, 0, 0, 1, 1]","[4, 0, 3, 2, 0, 1, 6, 1, 2, 0, 2, 2, 1, 2, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",18,0,14,1,5632.0385300926 +"https://github.com/Backblaze/B2_Command_Line_Tool",2020-07-29 10:07:07,"b4578f915dd49cdb1435accd260c59a34ea66e75","[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 9, 1, 0, 11, 0, 22, 14, 1, 15, 3, 3, 3, 4, 10, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 4, 3, 1, 5, 0, 1, 1, 0, 1, 0]","[1, 22, 0, 1, 0, 3, 0, 0, 4, 5, 3, 0, 2, 10, 9, 2, 0, 0, 0, 0, 0, 0, 0, 9, 6, 3, 1]","[0, 5, 0, 0, 0, 2, 0, 0, 1, 3, 1, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",5,0,1,1,2942.6175925926 +"https://github.com/ycm-core/YouCompleteMe",2013-04-04 01:50:01,"bbc437c6a18447c03d7ab1d85f65d823df4a2bb8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 29, 49, 42, 50, 28, 22, 7, 13, 24, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 10, 3, 3, 0, 1, 2, 1, 1]","[13, 15, 20, 19, 10, 16, 16, 25, 7, 9, 4, 7, 8, 21, 16, 13, 5, 9, 19, 19, 6, 4, 6, 0, 0, 0, 1]","[2, 3, 1, 2, 1, 6, 2, 3, 0, 0, 1, 0, 0, 3, 5, 5, 1, 1, 5, 5, 0, 0, 2, 0, 0, 0, 0]",24,2,26,2,4190.5715509259 +"https://github.com/npm/nopt",2023-05-31 18:54:58,"9122d7c511c81421992c86faf30da2f35ce6f4e4","[0, 2, 0, 0, 1, 1, 0, 0, 2, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4635.8365972222 +"https://github.com/pdfminer/pdfminer.six.git",2019-07-08 21:03:47,"a03566da21530159175f9856a1fcce3438a09b29","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 6, 1, 5, 3, 4, 0, 1, 0, 0, 0, 0, 9, 13, 13, 2, 10, 0, 0, 0, 0, 1, 0, 1, 3, 1]","[3, 0, 3, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 7, 2, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,11,0,5691.1447916667 +"https://github.com/tqdm/tqdm.git",2017-01-05 22:39:17,"2cd875ffa648c41ffdb539ea28726b00f8751bcb","[0, 9, 21, 2, 0, 8, 0, 3, 14, 23, 3, 0, 0, 1, 9, 3, 17, 0, 18, 0, 0, 3, 2, 3, 0, 4, 2]","[0, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 4, 0, 0, 0, 0, 1, 0, 0, 1]","[10, 1, 16, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 17, 1, 0, 1, 0, 0, 0]","[2, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]",8,0,3,1,3584.2928472222 +"https://github.com/clojure/core.cache",2014-05-21 02:24:35,"fe96879f158428d949f45fc4902333b02a20110a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4284.5170138889 +"https://github.com/resurrecting-open-source-projects/stress",2021-10-01 21:05:17,"c16f6ee03496b5031ca786e04c629529fe9ee893","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,489.8052893519 +"https://github.com/Leaflet/Leaflet.markercluster",2015-10-01 03:25:53,"10d440ba403d43a95453c660d16c2846fc624b54","[0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 2, 3, 1, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0]","[11, 16, 28, 14, 0, 0, 9, 12, 8, 4, 0, 16, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 9, 4, 0, 0, 4, 0, 2, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,5,0,3967.8092708333 +"https://github.com/stephane/libmodbus.git",2016-05-17 21:28:41,"7612ce2029de1eac698ebc2ba617c4fbd738127f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 4, 9, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,0,5746.5321180556 +"https://github.com/clojure/tools.logging.git",2014-05-21 02:24:36,"b2ca1f68d6bc7cd292cdb9e5c7c8e863bef60bbd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4541.1196180556 +"https://github.com/Diaoul/subliminal.git",2015-08-22 18:33:04,"3bc239ffee43a378a6ec64c169d9f7cb3f1753a5","[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 26, 0, 0, 0, 6, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1]","[33, 1, 0, 3, 2, 1, 1, 0, 3, 23, 5, 0, 0, 0, 0, 0, 0, 0, 17, 10, 0, 0, 8, 20, 17, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 2, 0, 0, 0]",2,0,4,2,3790.6726273148 +"https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb",2018-02-01 09:02:21,"e22f687c821e219b59c5350b7e12447c65e635c1","[82, 50, 92, 97, 49, 59, 75, 41, 47, 13, 27, 31, 12, 29, 26, 14, 19, 12, 14, 21, 10, 5, 27, 23, 14, 20, 1]","[8, 6, 10, 7, 12, 12, 9, 6, 7, 0, 3, 0, 1, 2, 10, 3, 7, 2, 5, 5, 1, 0, 6, 5, 1, 3, 0]","[33, 44, 51, 59, 91, 60, 50, 49, 44, 68, 52, 33, 42, 20, 12, 10, 27, 29, 37, 26, 25, 36, 34, 19, 7, 2, 0]","[2, 9, 5, 5, 19, 13, 10, 17, 5, 19, 8, 10, 17, 9, 7, 3, 7, 11, 14, 7, 5, 15, 13, 7, 0, 0, 0]",2,3,3,0,4046.8698842593 +"https://github.com/drwetter/testssl.sh.git",2019-08-08 16:34:14,"642cfe46dd33e5b80c8678e2900ea82159d2beb0","[22, 13, 10, 6, 3, 2, 5, 10, 8, 15, 24, 12, 48, 0, 2, 0, 1, 6, 2, 2, 2, 4, 0, 1, 0, 4, 2]","[7, 3, 4, 0, 1, 1, 1, 3, 1, 6, 3, 6, 12, 0, 1, 0, 0, 3, 1, 1, 1, 2, 0, 0, 0, 1, 1]","[14, 3, 1, 0, 2, 14, 18, 12, 8, 5, 9, 23, 14, 13, 17, 10, 10, 17, 0, 4, 10, 20, 49, 48, 16, 23, 1]","[5, 2, 0, 0, 1, 6, 4, 4, 0, 4, 5, 8, 7, 4, 9, 5, 5, 8, 0, 2, 3, 7, 12, 14, 8, 10, 0]",5,0,15,0,3448.2208101852 +"https://github.com/rr-debugger/rr.git",2014-06-12 04:15:10,"0cd2366fee96dadab517b9cabca21200266684fd","[2, 4, 0, 1, 8, 11, 33, 20, 0, 16, 42, 52, 48, 21, 15, 32, 12, 24, 13, 26, 24, 25, 24, 8, 15, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 1, 0, 0, 4, 5, 4, 1, 3, 3, 6, 0, 0, 0, 0, 0]","[11, 11, 39, 28, 18, 9, 18, 21, 17, 22, 38, 12, 42, 89, 75, 24, 72, 42, 56, 42, 80, 54, 58, 50, 29, 34, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",12,0,3,1,4494.4015972222 +"https://github.com/igraph/igraph.git",2014-10-24 21:58:59,"b09df08be878ddf23d7bef6d63c8b90b8a81b193","[4, 1, 8, 0, 0, 0, 0, 0, 5, 0, 12, 12, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5787.0887037037 +"https://github.com/rsnapshot/rsnapshot.git",2015-03-18 13:08:11,"5b015eb3bcdc20460a13342c5c480f1503fff560","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[23, 18, 3, 4, 0, 2, 0, 6, 2, 1, 9, 8, 21, 3, 1, 3, 2, 1, 0, 1, 0, 7, 0, 0, 0, 0, 0]","[10, 9, 0, 2, 0, 2, 0, 2, 1, 1, 3, 0, 5, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,1,2,1,5724.6217361111 +"https://github.com/composer/semver",2015-07-15 18:54:52,"0ce26349ac7e579342d88e6a79ad12fe10bf8083","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 17, 0, 0, 1, 4, 0, 1, 3, 0, 0, 1, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,1,4,1,2969.0927777778 +"https://github.com/EsotericSoftware/kryo.git",2015-06-27 12:17:07,"df07c66082a8c4a9aa38a8dafde49413710cb692","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5184.6080092593 +"https://github.com/scikit-learn-contrib/imbalanced-learn.git",2016-06-30 08:55:27,"b8904ed382f24288012e7189c49d02115355cb9b","[1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 32, 14, 10, 10, 20, 49, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 0, 1, 4, 6, 0]","[25, 10, 11, 11, 11, 5, 1, 0, 35, 3, 0, 0, 2, 0, 1, 3, 2, 9, 1, 0, 0, 3, 4, 0, 4, 15, 1]","[1, 1, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0]",8,1,4,4,3355.2317592593 +"https://github.com/PracticallyGreen/omniauth-saml.git",2016-02-11 17:36:48,"a78422c2e0b5c3e6a9ea5aa6909356fee2deb881","[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0]","[6, 4, 8, 5, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 2, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",9,3,5,2,4118.1158217593 +"https://github.com/mypaint/libmypaint",2016-05-22 22:00:07,"055f6ff46896cc22bc5dc1f3f766691f2351d57d","[2, 2, 5, 10, 4, 7, 6, 3, 1, 20, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 4, 0, 0, 3, 27, 33, 2]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[19, 1, 3, 0, 0, 2, 0, 0, 1, 3, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",12,2,10,0,4528.3509259259 +"https://github.com/python-bugzilla/python-bugzilla",2015-09-02 19:18:06,"b233ccd3cf036e7b0330eb1fc704c71d4c5fcdf8","[1, 0, 0, 3, 5, 8, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 10, 0, 0, 0, 2, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,1,5775.4981712963 +"https://github.com/zeromq/czmq.git",2014-08-15 19:07:32,"f8e9182f3f076a709e385c23715475068ece18b2","[0, 7, 10, 27, 35, 21, 32, 30, 14, 19, 32, 11, 41, 25, 16, 37, 35, 13, 6, 14, 14, 16, 32, 13, 6, 26, 1]","[0, 1, 3, 11, 10, 8, 11, 9, 4, 5, 9, 2, 11, 10, 4, 12, 8, 5, 3, 6, 3, 4, 10, 4, 3, 8, 0]","[58, 62, 37, 34, 127, 65, 37, 49, 21, 28, 40, 30, 43, 34, 38, 18, 33, 10, 4, 17, 31, 13, 7, 17, 17, 19, 1]","[20, 12, 11, 9, 13, 26, 17, 20, 8, 11, 14, 13, 8, 11, 11, 7, 15, 3, 2, 5, 11, 5, 3, 7, 8, 6, 0]",37,11,41,6,4540.4409027778 +"https://github.com/fgrehm/vagrant-lxc",2013-09-28 05:11:10,"c76df6358c1b848ee82a791734d834007a7c3b75","[44, 27, 15, 55, 26, 41, 5, 1, 7, 31, 3, 0, 7, 0, 18, 16, 10, 26, 0, 3, 0, 4, 0, 16, 26, 15, 2]","[1, 0, 1, 1, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 1, 3, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0]","[11, 6, 5, 4, 5, 26, 4, 2, 1, 0, 0, 3, 2, 1, 0, 0, 0, 0, 13, 2, 6, 4, 0, 111, 19, 9, 1]","[0, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 2, 1, 0, 5, 2, 1, 0]",9,1,16,1,3559.775474537 +"https://gitlab.gnome.org/GNOME/libgweather.git",2021-10-16 23:37:04,"8bd7e1d45b07fb8089b09bc2206a8929357dec12","[2, 14, 5, 4, 1, 1, 1, 0, 3, 7, 9, 1, 1, 1, 1, 5, 1, 0, 3, 6, 4, 4, 0, 3, 1, 79, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 5, 22, 32, 23, 3, 3, 4, 2, 4, 4, 6, 2, 7, 2, 10, 6, 3, 27, 16, 14, 5, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,14,0,5779.3689236111 +"https://bitbucket.org/sshguard/sshguard.git",2017-02-04 21:15:52,"562270515ef3e98038c1a2da8984d92720b86659","[9, 11, 0, 0, 2, 1, 0, 0, 0, 17, 1, 4, 0, 7, 7, 7, 1, 4, 0, 1, 25, 8, 9, 3, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[1, 7, 1, 5, 5, 2, 1, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1,5304.903900463 +"https://github.com/resurrecting-open-source-projects/nbtscan",2019-11-14 04:02:36,"fc1a0f5e16c9d1c011596f5d4d9f20af9abc2ae1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1167.6364699074 +"https://github.com/keymanapp/keyman",2021-10-08 02:47:14,"82824f124cb3f891d35c02e6cd99c2d6ca85ec98","[1, 57, 21, 2, 28, 16, 15, 31, 25, 17, 26, 24, 12, 1, 11, 28, 12, 12, 11, 13, 6, 2, 12, 4, 23, 12, 0]","[0, 23, 10, 0, 14, 8, 5, 8, 7, 9, 8, 6, 7, 0, 7, 6, 5, 1, 5, 6, 2, 1, 6, 1, 8, 6, 0]","[0, 0, 0, 0, 0, 9, 2, 7, 3, 3, 2, 0, 3, 5, 10, 19, 0, 7, 0, 1, 1, 3, 7, 4, 12, 1, 1]","[0, 0, 0, 0, 0, 2, 2, 3, 2, 1, 1, 0, 1, 3, 4, 7, 0, 1, 0, 1, 0, 2, 3, 2, 7, 0, 1]",1,0,1,0,3329.4431944445 +"https://github.com/prometheus/haproxy_exporter",2015-01-22 15:50:42,"29650004ab6114d3d8e3eb55d13776881ceb78f4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 2, 2, 2, 0, 0, 0, 0, 4, 0, 0, 4, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0, 1]","[1, 2, 12, 1, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 0, 1, 0, 0]","[1, 1, 4, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0]",3,1,6,1,3672.0941203704 +"https://github.com/htop-dev/htop",2018-02-26 14:45:53,"9ca1c993ac1b24c9ec52ffca3d1cc30bd3d82cde","[2, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 26, 0, 33, 5, 2]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 9, 3, 5, 57, 5, 0, 0, 0, 0, 0, 6, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 4, 26, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,15,0,5761.1663425926 +"https://github.com/puppetlabs/puppetlabs-xinetd",2016-04-19 13:45:10,"ea501586d273f131c086858930fb2a4490e7d61b","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 1, 0, 4, 0, 0, 0, 4, 1, 1, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 1]","[1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 3, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",3,2,5,1,4771.0705671296 +"https://github.com/philpem/printer-driver-ptouch.git",2020-05-26 10:05:30,"7b13070b64f87bb432f84cc7d4826a126d2e8bc2","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 47, 1, 0, 3, 0, 0, 94, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,1,1,1342.5621990741 +"https://github.com/korfuri/django-prometheus",2015-07-05 01:36:16,"723bcacef4c62d8db1aeaa93dd374c25ef1979eb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3173.3548148148 +"https://github.com/jashkenas/underscore.git",2012-09-17 17:06:33,"d09457f7683654441b998a6c22e20c059bf57799","[21, 8, 28, 4, 16, 11, 6, 4, 0, 24, 1, 4, 3, 4, 4, 0, 2, 2, 0, 1, 1, 8, 8, 33, 7, 21, 2]","[5, 1, 12, 1, 6, 4, 3, 1, 0, 3, 0, 2, 0, 2, 1, 0, 1, 1, 0, 0, 0, 4, 3, 7, 5, 2, 0]","[32, 12, 8, 2, 5, 2, 4, 5, 0, 5, 17, 10, 9, 4, 9, 3, 0, 2, 1, 9, 1, 12, 2, 2, 5, 8, 0]","[5, 3, 2, 0, 2, 1, 2, 1, 0, 1, 2, 1, 3, 2, 3, 1, 0, 1, 0, 1, 0, 4, 1, 1, 1, 4, 0]",29,0,26,2,5084.8093171296 +"https://github.com/phpmyadmin/motranslator",2017-04-03 06:46:30,"7237ab2de4c4c814d2602f327a89f9e173767e0f","[0, 13, 1, 0, 0, 2, 2, 0, 0, 0, 6, 11, 0, 10, 0, 4, 3, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 3, 1, 3, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,0,3,1,2762.9628356482 +"https://github.com/i18next/i18next",2022-06-20 11:20:44,"41e9a6085825f9047707a0464ae290706aa574d2","[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 5, 2, 0, 6, 3, 3, 2, 1, 1, 2, 3, 0, 0, 3, 0, 11, 7, 2, 4, 2, 1, 3, 33, 7, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,7,0,4381.3880439815 +"https://github.com/math-comp/math-comp",2017-11-24 14:12:17,"6b25220e33cd141a3fc219e31f7251c0ee47fae7","[3, 9, 3, 0, 3, 0, 2, 0, 0, 1, 0, 2, 0, 0, 4, 1, 0, 0, 0, 2, 13, 12, 4, 5, 0, 1, 1]","[1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 1, 0]","[5, 0, 18, 1, 0, 0, 0, 0, 0, 1, 7, 0, 10, 2, 7, 0, 3, 0, 0, 3, 18, 9, 0, 0, 0, 0, 0]","[1, 0, 8, 1, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 5, 0, 2, 0, 0, 1, 4, 2, 0, 0, 0, 0, 0]",3,0,2,1,3203.2040162037 +"https://github.com/Mottie/tablesorter.git",2015-02-21 03:31:24,"44ee94502bfafaf540092649fde6a7ccb428507a","[18, 5, 14, 11, 1, 13, 12, 2, 9, 24, 19, 3, 0, 4, 8, 3, 0, 7, 2, 7, 14, 9, 13, 34, 30, 29, 2]","[0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 7, 1, 3, 0]","[17, 9, 19, 7, 18, 7, 16, 4, 6, 10, 11, 15, 21, 6, 10, 22, 11, 12, 3, 0, 12, 16, 19, 0, 5, 15, 1]","[1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",7,1,6,0,4550.6609606482 +"https://github.com/robert7/nixnote2",2018-10-09 15:48:11,"67222b362f9f152f3a2aa2764c8bf90fdfb355ff","[0, 0, 0, 0, 3, 0, 268, 1, 9, 100, 23, 19, 79, 32, 0, 5, 63, 4, 12, 37, 12, 5, 26, 33, 56, 25, 2]","[0, 0, 0, 0, 1, 0, 1, 1, 1, 12, 4, 1, 2, 2, 0, 0, 10, 1, 2, 4, 1, 1, 5, 5, 4, 5, 0]","[69, 15, 3, 5, 7, 2, 4, 7, 24, 34, 0, 12, 19, 9, 11, 1, 2, 5, 2, 10, 0, 12, 3, 3, 0, 0, 0]","[13, 6, 1, 2, 4, 1, 1, 3, 8, 9, 0, 3, 6, 1, 4, 1, 1, 2, 1, 3, 0, 1, 1, 2, 0, 0, 0]",6,0,4,3,4104.4428587963 +"https://github.com/JDimproved/JDim.git",2019-02-17 02:43:34,"9090d85334a7b6b0613d728b76b8615eb5896615","[0, 0, 0, 0, 0, 0, 13, 14, 0, 2, 0, 0, 0, 1, 17, 1, 3, 1, 5, 5, 1, 0, 17, 43, 7, 9, 2]","[0, 0, 0, 0, 0, 0, 2, 4, 0, 1, 0, 0, 0, 0, 2, 1, 0, 1, 2, 0, 1, 0, 5, 1, 2, 3, 1]","[8, 7, 12, 5, 17, 9, 0, 4, 49, 3, 4, 3, 5, 0, 7, 3, 4, 14, 11, 14, 31, 5, 0, 4, 0, 3, 1]","[4, 3, 5, 0, 6, 4, 0, 0, 1, 1, 1, 3, 1, 0, 1, 1, 0, 3, 2, 3, 3, 2, 0, 1, 0, 1, 0]",4,0,3,0,5782.9914467593 +"https://github.com/brunonova/drmips",2015-09-16 17:45:27,"8ea5eb73f001e2d98a428f57a61f834bdacb0ccd","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 3, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 4, 0, 0, 7, 7, 18, 9, 13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3165.66125 +"https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git",2016-11-14 18:10:52,"8a9067fc53f824f1a8252c699ecdcca8fc4d8b19","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 8, 14, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[3, 0, 5, 1, 1, 1, 1, 1, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1,3262.6136111111 +"https://github.com/nvbn/thefuck.git",2015-10-17 13:45:13,"c970f190d26cc0634567c048e20aa7b802fe6042","[189, 36, 33, 42, 42, 17, 21, 10, 9, 20, 4, 31, 10, 88, 60, 6, 14, 21, 38, 23, 39, 3, 0, 5, 1, 1, 1]","[63, 9, 5, 15, 11, 8, 8, 2, 3, 4, 0, 12, 1, 17, 10, 2, 2, 6, 5, 5, 9, 1, 0, 2, 0, 0, 0]","[12, 18, 6, 2, 8, 11, 5, 1, 0, 1, 4, 6, 8, 11, 13, 9, 2, 6, 6, 9, 5, 13, 7, 10, 8, 2, 1]","[6, 4, 2, 0, 2, 2, 0, 0, 0, 0, 2, 3, 3, 4, 5, 2, 0, 2, 2, 1, 3, 4, 3, 2, 3, 0, 0]",64,0,12,4,3035.1713888889 +"https://github.com/squizlabs/PHP_CodeSniffer",2014-09-16 05:57:24,"58c0fdc412824222f33d15e418f826e6dcbff4e6","[3, 4, 1, 0, 1, 6, 4, 3, 4, 6, 0, 0, 2, 7, 11, 8, 4, 0, 0, 5, 7, 2, 1, 8, 16, 1, 1]","[1, 2, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0]","[6, 20, 1, 35, 15, 21, 21, 14, 2, 14, 18, 12, 21, 15, 13, 25, 34, 37, 2, 17, 11, 19, 0, 18, 6, 0, 1]","[1, 3, 0, 6, 2, 0, 4, 5, 1, 0, 1, 1, 1, 0, 0, 6, 2, 2, 0, 3, 0, 5, 0, 2, 2, 0, 0]",16,0,14,0,5773.4666666667 +"https://github.com/letsencrypt/letsencrypt",2015-03-21 19:51:33,"5eb007cc317db5a12e01ded18e344a73155f7c1e","[0, 0, 0, 0, 0, 0, 3, 13, 148, 135, 69, 58, 31, 29, 3, 10, 27, 45, 73, 62, 101, 33, 47, 4, 5, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 34, 31, 20, 15, 6, 16, 1, 1, 8, 10, 24, 6, 27, 8, 7, 2, 3, 1, 0]","[112, 32, 10, 62, 37, 47, 58, 102, 63, 31, 47, 40, 53, 144, 36, 72, 67, 55, 48, 30, 31, 29, 34, 10, 77, 50, 1]","[26, 12, 1, 3, 10, 12, 10, 30, 22, 12, 17, 13, 17, 49, 8, 15, 19, 17, 14, 10, 13, 6, 17, 0, 25, 22, 1]",26,6,29,6,4226.9669907407 +"https://github.com/googlei18n/fontmake.git",2015-11-17 00:58:47,"ff8f62e92f06cef4158fb9be327487d45ba047e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 0, 0, 0, 2, 0, 0, 3, 1, 9, 3, 7, 1, 2, 0, 3, 8, 16, 1, 6, 4, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0]",1,2,3,0,2987.8108217593 +"https://gitlab.com/oath-toolkit/oath-toolkit",2023-07-08 13:54:41,"8f311c3e20cf1ddd7392b9ca229c78e39400ca26","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4975.3153125 +"https://salsa.debian.org/ruby-team/ruby-github-markup",2015-09-23 10:41:55,"b8a217e59476ce3a07497642d8535993cda832b5","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1,3514.5048263889 +"https://github.com/include-what-you-use/include-what-you-use",2017-07-16 09:26:23,"ca06167b607eb473d62d908d1cc0bb3a2bb13fae","[0, 9, 1, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 1, 0, 0, 2, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 2, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,4692.8704050926 +"https://github.com/mathjax/MathJax",2014-06-12 15:30:50,"60e0a8c5cd57acb366a0a49004d8fd61b8acbf87","[0, 0, 0, 2, 5, 0, 2, 0, 50, 46, 18, 4, 0, 21, 5, 0, 5, 8, 19, 5, 16, 3, 0, 10, 13, 4, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 20, 23, 7, 1, 0, 11, 2, 0, 0, 3, 8, 1, 0, 0, 0, 5, 5, 0, 1]","[2, 2, 0, 1, 1, 2, 0, 3, 0, 30, 10, 19, 19, 16, 0, 0, 0, 4, 4, 1, 3, 0, 6, 0, 0, 16, 0]","[2, 0, 0, 0, 0, 2, 0, 2, 0, 13, 5, 9, 5, 7, 0, 0, 0, 2, 0, 1, 3, 0, 2, 0, 0, 8, 0]",3,2,4,0,4869.8166782407 +"https://github.com/puppetlabs/marionette-collective",2016-05-17 18:14:46,"9030ad1e93aea1a8f9ec8473011cedf7810daeb1","[0, 2, 0, 2, 1, 1, 2, 0, 4, 4, 0, 2, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 2, 0]","[0, 1, 0, 1, 0, 1, 1, 0, 1, 2, 0, 1, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]","[5, 0, 1, 3, 2, 10, 0, 2, 3, 0, 4, 3, 2, 4, 0, 0, 4, 3, 5, 0, 0, 3, 3, 0, 10, 0, 1]","[2, 0, 0, 2, 0, 4, 0, 1, 1, 0, 0, 2, 2, 1, 0, 0, 2, 1, 4, 0, 0, 2, 1, 0, 7, 0, 0]",4,6,17,2,3620.6848148148 +"https://github.com/elastic/elasticsearch-ruby",2013-09-24 17:48:46,"d8e5ed91bdb14bb2bad6ae04639fddf404e4b703","[0, 0, 0, 0, 1, 0, 0, 27, 0, 0, 0, 2, 90, 4, 0, 0, 1, 11, 0, 0, 0, 0, 0, 6, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 9, 4, 8, 14, 5, 0, 3, 8, 11, 17, 8, 1, 5, 23, 42, 6, 6, 43, 32, 16, 0, 5, 5, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0,3879.9172106482 +"https://github.com/python-social-auth/social-app-django.git",2016-11-05 05:18:00,"77a3ec42468640dd67086e6afba3375cb7ae8135","[2, 1, 0, 1, 20, 1, 1, 1, 0, 4, 13, 7, 2, 41, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 10, 0, 0, 24, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 8, 3, 0, 5, 4, 1, 0, 7, 11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 5, 1]","[0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0]",20,0,8,1,4020.1488541667 +"https://github.com/resurrecting-open-source-projects/packit",2016-05-09 13:06:35,"7d0a0fdeedf95d192f6561ea02f4146f2764ff07","[0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2522.8474189815 +"https://github.com/Icinga/icinga2",2017-04-18 16:04:56,"fac61a5bfafd8eb2a0445d62df9079b934cee3e3","[4, 1, 4, 12, 25, 7, 7, 19, 4, 0, 0, 1, 11, 1, 4, 11, 32, 8, 16, 5, 29, 24, 15, 32, 11, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 6, 1, 2, 1, 0, 1, 0, 2, 0]","[16, 14, 32, 42, 14, 26, 17, 23, 28, 11, 5, 0, 2, 9, 5, 30, 45, 20, 7, 19, 69, 15, 55, 16, 9, 17, 1]","[1, 5, 11, 18, 6, 11, 7, 12, 13, 5, 2, 0, 1, 3, 2, 10, 16, 8, 3, 4, 7, 6, 17, 6, 6, 11, 0]",18,2,29,1,4277.2438310185 +"https://github.com/webcamoid/webcamoid.git",2015-06-19 16:40:58,"2b36be98c48515fab027193b18620849343db752","[3, 7, 3, 5, 4, 1, 7, 9, 6, 6, 3, 0, 0, 0, 1, 1, 11, 1, 0, 0, 0, 2, 1, 0, 1, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 1, 4, 2, 0, 0, 1, 2, 3, 1, 0, 1, 3, 5, 13, 9, 2, 0, 2, 3, 5, 2, 3, 2, 3, 1]","[2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0]",10,1,4,1,4311.3546990741 +"https://github.com/colmap/colmap",2017-06-24 16:30:17,"5bea89263bf5f3ed623b8e6e6a5f022a0ed9c1de","[0, 14, 5, 3, 2, 4, 8, 1, 14, 6, 0, 4, 31, 15, 16, 12, 16, 25, 13, 46, 0, 19, 27, 5, 30, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 3, 0, 18, 4, 24, 19, 21, 5, 5, 11, 19, 8, 2, 0, 11, 4, 0, 1, 0, 0, 12, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0,2802.2067824074 +"https://github.com/major/MySQLTuner-perl",2015-06-16 13:20:36,"b7fbf3832f7cc7fbe348ef5fec82e292b3167a14","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0,4651.9533217593 +"https://github.com/puppetlabs/clj-kitchensink.git",2014-04-15 23:50:33,"4ccb6af985ce4d98f5251317d774ccf3d98d7664","[0, 3, 4, 21, 10, 14, 4, 1, 2, 7, 4, 8, 7, 0, 1, 9, 3, 11, 8, 0, 2, 3, 0, 0, 6, 0, 2]","[0, 0, 1, 8, 4, 6, 1, 0, 1, 1, 1, 2, 1, 0, 0, 3, 0, 4, 2, 0, 1, 0, 0, 0, 1, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[5, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",12,1,1,4,3697.8495138889 +"https://gitlab.gnome.org/GNOME/gnome-desktop.git",2018-12-27 20:26:34,"870618416465c2c5b2690185ff3dbf3d38e1b0a1","[0, 0, 6, 1, 24, 12, 9, 6, 7, 11, 9, 1, 1, 1, 1, 1, 1, 0, 2, 4, 0, 0, 0, 6, 3, 2, 1]","[0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 13, 6, 2, 7, 4, 1, 1, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",26,0,7,6,5774.5479398148 +"https://github.com/isaacs/inherits",2016-12-15 18:53:17,"f721d6bee2d6df13262a190fee1f48e21ed72b42","[0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4576.503912037 +"https://github.com/mlpack/ensmallen",2018-10-18 05:02:08,"51dbf63a19477526914e955d677dbd3bf4c15439","[7, 9, 4, 2, 12, 0, 5, 5, 6, 7, 5, 7, 3, 3, 0, 5, 0, 0, 0, 1, 2, 1, 2, 7, 62, 103, 2]","[6, 7, 3, 2, 11, 0, 2, 4, 5, 6, 5, 7, 3, 1, 0, 5, 0, 0, 0, 1, 2, 1, 2, 2, 0, 15, 0]","[58, 10, 5, 8, 10, 26, 24, 11, 4, 0, 11, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 1]","[9, 1, 0, 2, 2, 4, 6, 5, 2, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,1,3267.1139236111 +"https://github.com/voxpupuli/beaker",2014-07-23 23:15:46,"5b1fc8a945da104752b6dba19475c1b68db5e610","[33, 30, 2, 7, 15, 6, 14, 21, 17, 9, 7, 24, 8, 28, 16, 15, 24, 6, 16, 21, 28, 23, 28, 38, 11, 22, 2]","[18, 14, 1, 2, 8, 3, 5, 9, 7, 4, 1, 8, 4, 7, 6, 6, 13, 2, 6, 4, 12, 8, 8, 18, 6, 9, 1]","[19, 13, 23, 20, 20, 12, 18, 4, 21, 10, 4, 6, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 11, 8, 7, 2, 11, 2, 8, 5, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",24,1,8,9,4907.9281134259 +"https://github.com/apache/trafficserver",2016-09-15 22:26:51,"2e002a4a5ee89218771133d3166a51dd199cdd9d","[0, 0, 0, 0, 2, 9, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 7, 4, 12, 22, 6, 22, 24, 1, 1, 3, 5, 5, 2, 0, 0, 0, 0, 3, 2, 10, 5, 0, 0, 10, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0,5180.0140046296 +"https://gitlab.gnome.org/GNOME/json-glib.git",2021-06-08 16:33:05,"3f67ed0912a90c9bca03233929291d9d6c5baf22","[0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 13, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]","[23, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 1, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0,5734.4554861111 +"https://github.com/ahmetb/kubectx",2017-03-29 07:30:12,"6de838135f670a66e29e5bd8bf0a66bcf38d9e9a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 3, 0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2319.9031944445 +"https://github.com/gpodder/mygpoclient",2017-06-13 18:24:22,"36f776df9993aade39059884a441bb61b91e3b4c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 2, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4565.949837963 +"https://github.com/ua-parser/uap-core.git",2014-02-17 15:00:07,"ec27337e6f8417e8db9b0c88f84ecf7c81e5466b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3378.7186458333 +"https://github.com/KhronosGroup/SPIRV-LLVM-Translator",2020-08-24 09:53:24,"0bcb157a0233d0cb7dd43e6b28fc7aadcea49ef7","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 13, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 12, 7, 6, 4, 6, 17, 11, 5, 2, 2, 0, 0, 12, 11, 11, 6, 2, 3, 0, 1, 8, 3, 5, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,10,0,3136.491087963 +"https://github.com/puppetlabs/puppetlabs-apache",2013-10-02 20:36:32,"c04e97311ffa4fbfc016263ef0dbe1e1f8e13373","[0, 0, 6, 44, 2, 13, 5, 6, 14, 27, 41, 13, 5, 5, 12, 9, 12, 14, 11, 15, 34, 22, 12, 5, 12, 30, 1]","[0, 0, 2, 15, 0, 3, 1, 0, 3, 9, 13, 3, 3, 3, 6, 0, 2, 10, 3, 3, 15, 9, 4, 2, 7, 17, 0]","[10, 7, 12, 9, 10, 41, 28, 20, 6, 18, 13, 5, 0, 3, 8, 6, 21, 20, 21, 12, 15, 28, 14, 3, 7, 12, 0]","[4, 4, 6, 4, 4, 18, 8, 11, 2, 7, 6, 1, 0, 1, 4, 1, 14, 5, 8, 5, 8, 13, 6, 1, 3, 6, 0]",54,3,45,10,4851.4447106482 +"https://gitlab.com/gnutls/libtasn1",2018-06-16 13:07:21,"ffc3058bc909fc83e4db3d8b80f3595a76d9b6d2","[0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1,5754.7146180556 +"https://gitlab.gnome.org/GNOME/gdk-pixbuf",2018-04-30 17:11:40,"b20f359cb75291d4968c0752cf76a84c90551927","[1, 0, 2, 1, 10, 22, 2, 0, 4, 1, 7, 2, 1, 0, 3, 0, 5, 3, 4, 3, 0, 0, 1, 0, 0, 19, 17]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 8, 39, 3, 4, 2, 4, 0, 0, 0, 1, 0, 2, 0, 5, 9, 10, 15, 2, 1, 6, 0, 0, 2, 1]","[0, 0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0]",19,1,13,0,5703.8827199074 +"https://github.com/MatMoul/g810-led.git",2017-05-12 20:55:24,"9b7158c6f080aebe284d1a5d22765ef3283afd4b","[8, 0, 12, 11, 7, 0, 14, 25, 5, 10, 18, 0, 11, 7, 2, 7, 0, 22, 11, 6, 4, 10, 1, 11, 7, 11, 2]","[0, 0, 2, 2, 3, 0, 0, 2, 0, 1, 2, 0, 0, 0, 1, 0, 0, 3, 2, 0, 2, 1, 0, 1, 1, 1, 0]","[9, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",17,0,2,0,2361.9422453704 +"https://github.com/GoogleCloudPlatform/cloudsql-proxy.git",2018-09-11 01:40:29,"5cdae33fb032a0eca57bfb9baf5d823564715d10","[1, 1, 0, 3, 1, 4, 0, 0, 0, 0, 0, 4, 5, 1, 2, 3, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 1, 1, 0, 1, 1, 1, 3, 0, 1, 1, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,11,2,3012.7314930556 +"https://github.com/scop/bash-completion",2016-02-14 20:49:06,"0345d028ee4ad7793d6293a54bb69929e442041b","[0, 0, 6, 1, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 29, 14, 14, 5, 5, 4, 5, 16, 5, 5, 3, 5, 0, 4, 0, 0, 0, 0, 0, 1, 1, 5, 0, 9, 12, 0]","[0, 2, 1, 2, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",2,1,12,0,5698.983125 +"https://github.com/nicolargo/glances",2015-06-07 10:10:22,"92fd4918807749ebc9dfd21d6e063edbc00f01be","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0,4176.1404282407 +"https://github.com/eslint/eslint-scope.git",2015-03-06 20:41:31,"14d0b6ffe3d6cc583b31fac1348fea757ec455f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 10, 3, 8, 9, 0, 0, 0, 3, 2, 0, 2, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 11, 0, 0, 0, 0, 0, 0, 4, 1, 6, 2, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,4,0,4084.6226157407 +"https://github.com/Icinga/icingaweb2.git",2017-05-24 09:17:48,"ffd371f257111d9ecd0e32cfe8eaf08b022ba5fc","[37, 9, 73, 8, 0, 0, 8, 9, 10, 4, 10, 20, 2, 4, 0, 3, 1, 19, 1, 0, 0, 0, 3, 7, 0, 1, 2]","[1, 1, 12, 0, 0, 0, 1, 2, 1, 1, 1, 4, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 12, 22, 6, 5, 7, 12, 7, 2, 35, 9, 7, 7, 0, 0, 13, 35, 20, 17, 19, 13, 35, 27, 30, 44, 99, 1]","[1, 5, 0, 0, 2, 1, 1, 0, 0, 3, 2, 4, 1, 0, 0, 5, 1, 5, 3, 4, 1, 8, 2, 11, 7, 24, 0]",6,0,13,1,3851.0336111111 +"https://github.com/Fluidsynth/fluidsynth.git",2017-10-28 20:15:46,"a1b9ffd5ba6597ce5671057981caddebc4d2ab2b","[0, 0, 0, 0, 0, 0, 0, 0, 13, 17, 18, 2, 13, 23, 18, 11, 12, 17, 27, 18, 51, 9, 48, 18, 100, 86, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 2, 2, 3, 1, 1, 2, 5, 2, 5, 0, 8, 1, 5, 14, 0]","[30, 63, 42, 54, 62, 25, 23, 11, 19, 14, 7, 7, 7, 1, 4, 6, 12, 3, 8, 6, 16, 9, 67, 41, 10, 33, 1]","[2, 8, 4, 6, 6, 5, 3, 0, 3, 0, 0, 1, 1, 0, 0, 3, 1, 0, 1, 0, 0, 2, 2, 5, 0, 2, 0]",16,2,12,3,5564.4887152778 +"https://github.com/astropy/astropy-helpers",2014-07-15 05:10:12,"c4466268c2c28f3c6a81cb48a907c3d9a066e1ef","[0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 5, 0, 15, 0, 0, 0, 0, 14, 36, 16, 19, 7, 6, 21, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 6, 8, 1, 2, 4, 0, 1, 1]","[7, 1, 0, 9, 0, 0, 0, 0, 10, 0, 0, 2, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,0,5,3097.3243981482 +"https://github.com/eclipse-ee4j/eclipselink.git",2018-06-27 23:02:56,"f194797222adc97d62c7d1f462ae368c4cd8426a","[0, 7, 9, 2, 1, 2, 7, 8, 2, 7, 2, 2, 18, 4, 5, 0, 1, 3, 0, 6, 0, 1, 3, 10, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[7, 6, 0, 2, 0, 6, 1, 2, 0, 2, 0, 0, 1, 4, 0, 1, 1, 2, 0, 0, 1, 3, 0, 0, 15, 8, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,3,1,5753.9492939815 +"https://github.com/LLNL/sundials.git",2019-01-22 18:53:39,"4394d2dcdd46293be45931a524a4e28a8a23f887","[16, 12, 33, 7, 6, 9, 11, 12, 2, 16, 2, 1, 2, 3, 1, 1, 2, 0, 2, 7, 5, 1, 0, 0, 0, 3, 2]","[3, 1, 6, 0, 1, 3, 2, 1, 0, 4, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]","[3, 9, 5, 3, 16, 0, 1, 4, 3, 4, 1, 1, 12, 8, 2, 10, 1, 1, 2, 0, 0, 4, 5, 0, 17, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]",0,0,0,0,5750.416412037 +"https://github.com/google/jimfs.git",2014-05-14 21:57:50,"f439b411c4f7a88908cc7d7c44ee4c97a54f7764","[3, 0, 2, 15, 2, 1, 0, 0, 0, 2, 11, 8, 2, 0, 5, 0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 5, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 5, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0]","[0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,1,3771.606712963 +"https://github.com/jashkenas/coffeescript",2012-09-17 17:16:41,"7595cb689ae1fca537e4fd781672f7cd33dcd3cd","[2, 2, 2, 16, 2, 18, 1, 7, 25, 3, 0, 3, 1, 0, 2, 4, 2, 0, 0, 0, 2, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 3, 1, 4, 0, 1, 2, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[0, 7, 2, 0, 2, 8, 1, 0, 9, 4, 3, 0, 0, 1, 0, 14, 4, 18, 8, 16, 2, 5, 27, 51, 15, 1, 0]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 4, 2, 2, 1, 2, 7, 14, 1, 0, 0]",10,3,16,0,5027.7445833333 +"https://gitlab.com/libosinfo/osinfo-db.git",2019-11-19 15:13:17,"69b8fd55af7b9d865ec094e3891bad0add66cc5e","[12, 11, 6, 0, 18, 7, 0, 7, 2, 20, 8, 0, 10, 6, 13, 7, 10, 3, 1, 18, 6, 16, 0, 6, 19, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 4, 9, 0, 0, 1, 5, 4, 1, 9, 0, 9, 0, 4, 7, 2, 2, 8, 2, 2, 12, 8, 13, 13, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,13,0,5150.4414699074 +"https://github.com/totalopenstation/totalopenstation.git",2020-01-08 14:59:18,"7a66cffa8fab534f23912dcf820f46055e7b0cc7","[0, 0, 0, 0, 0, 0, 33, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 4, 1, 6, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1,3856.5791319445 +"https://github.com/pydanny/cached-property.git",2014-05-17 22:42:43,"7161ec8bf07e46aa08216e494a29d0428b7d988b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3487.9884837963 +"https://github.com/prometheus/mysqld_exporter",2015-03-12 15:58:52,"4a2553da879a5c332e29058eeab30de64d4d7b02","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 7, 1, 4, 0, 0, 4, 3, 0, 0, 3, 0, 3, 5, 0, 0, 7, 2, 0, 0, 1, 0, 14, 11, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 6, 5, 2, 0]",2,5,14,0,3197.2337268519 +"https://github.com/Iotic-Labs/py-ubjson",2016-02-12 15:50:03,"61cabd66aba5dd1d5cdaf83888584c720a96917a","[8, 4, 4, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 1, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2987.1609027778 +"https://github.com/httprb/http.rb",2015-01-13 02:30:16,"24428d29d0f30bd00f75a765a624824d0a8b9875","[0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 1, 5, 0, 0, 29, 0, 10, 0, 48, 24, 15, 0, 5, 0, 30, 7, 6, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 0, 0, 0, 0, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,3,9,0,4428.9060416667 +"https://github.com/silx-kit/pyFAI",2018-12-12 13:03:01,"0bc64b578d2549d672b976e52dcdef02b4c7c96c","[16, 3, 17, 10, 33, 7, 0, 0, 7, 3, 9, 245, 7, 1, 4, 33, 48, 28, 51, 41, 20, 17, 20, 31, 50, 27, 2]","[5, 2, 10, 0, 3, 4, 0, 0, 0, 3, 4, 12, 3, 0, 0, 11, 13, 5, 16, 7, 5, 1, 7, 4, 14, 6, 1]","[122, 10, 0, 47, 107, 73, 43, 64, 12, 0, 69, 42, 13, 28, 6, 0, 82, 7, 26, 31, 24, 97, 108, 3, 0, 1, 0]","[35, 5, 0, 3, 16, 10, 11, 12, 5, 0, 2, 1, 4, 5, 0, 0, 0, 2, 5, 3, 7, 13, 37, 1, 0, 1, 0]",4,1,4,2,3860.8997106482 +"https://github.com/troglobit/inadyn",2016-11-30 23:29:07,"21ec102da141967b0043b4bb0a7bf7302bd056ea","[5, 2, 12, 5, 5, 3, 1, 0, 0, 0, 8, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1,4734.4166203704 +"https://gitlab.gnome.org/GNOME/gvfs.git",2018-07-19 12:03:06,"98d0533d57756f8092dd1b4cc717143d3b1c313e","[4, 0, 3, 9, 9, 11, 9, 6, 13, 6, 6, 5, 12, 2, 0, 4, 8, 4, 5, 1, 0, 0, 0, 1, 4, 9, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 5, 5, 4, 10, 13, 2, 0, 12, 1, 2, 0, 1, 4, 1, 0, 1, 1, 1, 6, 2, 0, 1, 34, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,6,0,5759.9996180556 +"https://github.com/vim-airline/vim-airline.git",2016-01-18 19:01:39,"348663f7f8826b82efdd9ef11c98b8eddaba2e2b","[0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 10, 3, 2, 0, 0, 0, 3, 1, 0, 0, 0, 0, 3, 7, 2, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 5, 0]","[27, 54, 32, 16, 15, 24, 7, 3, 3, 8, 0, 5, 2, 14, 11, 1, 15, 3, 2, 4, 1, 1, 3, 14, 0, 0, 1]","[13, 24, 12, 5, 7, 10, 3, 1, 0, 5, 0, 3, 1, 7, 5, 0, 6, 1, 1, 1, 1, 0, 0, 8, 0, 0, 0]",11,1,31,1,3754.6958796296 +"https://github.com/puppetlabs/puppetlabs-postgresql.git",2014-06-26 00:23:35,"c63a7ba857333b3203bfd32a1914daa5dd44d1cc","[0, 6, 2, 11, 7, 0, 2, 6, 6, 35, 4, 0, 4, 12, 5, 0, 4, 2, 9, 41, 2, 0, 3, 4, 0, 3, 1]","[0, 3, 1, 9, 3, 0, 1, 3, 3, 17, 0, 0, 1, 5, 2, 0, 3, 1, 3, 9, 1, 0, 1, 2, 0, 1, 0]","[14, 7, 6, 2, 16, 6, 1, 3, 12, 28, 10, 4, 1, 1, 7, 2, 0, 4, 11, 0, 0, 3, 5, 8, 0, 2, 1]","[5, 2, 3, 0, 6, 3, 1, 0, 5, 15, 5, 0, 0, 0, 7, 1, 0, 1, 7, 0, 0, 1, 1, 3, 0, 2, 0]",16,1,25,3,4242.2840046296 +"https://github.com/jupyter/jupyter_client",2015-04-09 07:12:21,"e7d7c01a9afd0ddcc8c183223a340ffa44468621","[4, 11, 2, 1, 2, 2, 1, 4, 29, 11, 4, 1, 5, 0, 5, 4, 3, 1, 3, 0, 4, 3, 0, 5, 26, 27, 2]","[1, 6, 0, 1, 1, 1, 0, 2, 3, 3, 2, 0, 3, 0, 2, 1, 1, 0, 1, 0, 2, 1, 0, 3, 5, 7, 0]","[10, 2, 4, 8, 8, 2, 12, 10, 2, 6, 3, 2, 11, 13, 2, 1, 2, 4, 4, 7, 0, 5, 6, 4, 0, 9, 1]","[3, 1, 1, 4, 4, 1, 2, 4, 1, 2, 1, 1, 4, 5, 1, 0, 1, 0, 2, 4, 0, 2, 2, 2, 0, 2, 0]",7,1,6,0,5666.1043171296 +"https://github.com/florimondmanca/djangorestframework-api-key",2018-11-02 20:39:13,"41c564f401aeb7e9a3b7731f324b01c0fc1f6859","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 38, 20, 0, 9, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 1, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 37, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 10, 0, 0]",2,0,0,2,1908.8148263889 +"https://github.com/Backblaze/b2-sdk-python.git",2020-07-29 10:07:47,"dfe4618e350955efb628138a8e0a590b0ab72c8e","[3, 0, 0, 0, 0, 20, 0, 0, 0, 1, 3, 0, 18, 12, 3, 4, 0, 36, 10, 3, 2, 8, 5, 3, 3, 26, 2]","[2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 7, 0, 1, 0, 9, 4, 1, 1, 1, 1, 1, 0, 2, 0]","[3, 16, 1, 1, 3, 14, 12, 4, 4, 9, 10, 2, 1, 15, 1, 3, 0, 5, 2, 0, 0, 0, 0, 9, 2, 3, 0]","[1, 2, 0, 0, 0, 6, 3, 0, 2, 4, 4, 1, 0, 5, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0]",5,0,8,2,2948.6294907407 +"https://github.com/infirit/caja-admin",2015-09-16 16:05:34,"accfea70349ecb96cefa0713a10b2eadc43c54ef","[0, 0, 0, 0, 11, 3, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 5, 3, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,3,0,2910.0051851852 +"https://github.com/google/flatbuffers.git",2014-12-09 01:48:06,"14eaddfdcc28b89521625172fa34f710a5082c2e","[6, 3, 0, 0, 3, 3, 1, 1, 0, 1, 3, 0, 1, 3, 2, 1, 0, 0, 2, 1, 0, 0, 0, 2, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3592.7395138889 +"https://github.com/osantana/dicteval.git",2018-10-02 02:28:11,"5e1970132fd7a6ac55785648a89cf2e3e2131965","[0, 4, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,7,1,1110.6433217593 +"https://github.com/akheron/jansson.git",2021-09-12 15:37:43,"eb816708811429261974fc28fbf779aaaab1d546","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5159.4155902778 +"https://github.com/jupyter/jupyter_console",2015-04-09 21:58:56,"01911a59496d49002da76d73c83a00fd735f63e4","[3, 1, 0, 0, 5, 4, 0, 2, 2, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 2, 0, 0, 0, 10, 2, 10, 2]","[1, 1, 0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 0]","[1, 0, 1, 0, 2, 0, 2, 0, 5, 0, 0, 7, 2, 10, 0, 0, 0, 5, 0, 2, 10, 0, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 1, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0]",5,0,4,0,4679.6520833333 +"https://gitlab.gnome.org/GNOME/gcr.git",2021-01-16 10:40:41,"f1f1a85026f04f32a53269c104b72f187f1c5b47","[0, 0, 1, 4, 5, 5, 3, 7, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 2, 0, 0, 4, 0, 0, 0, 2, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,4,0,5613.7803356482 +"https://github.com/porridge/bambam",2022-10-05 18:49:55,"fca59a1105d1586139f938cd83cff2284e5b7347","[0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 30, 3, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 2, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0,5711.2973958333 +"https://github.com/SethMMorton/natsort.git",2017-11-12 06:35:35,"1a37d0ec62dd0949a24a4a5de41d91033c656a1f","[0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 8, 6, 5, 2, 0, 0, 0, 0, 2, 0, 5, 3, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]",1,1,3,1,4065.0547106482 +"https://github.com/donnemartin/gitsome",2016-05-06 02:24:56,"57200842984c0d9c12600373652e4f4047db5ef4","[141, 54, 14, 1, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 54, 88, 27, 94, 99, 105, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[109, 42, 33, 45, 5, 5, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 1, 3, 1]","[5, 11, 1, 14, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,2,16,0,1294.2226388889 +"https://github.com/lualdap/lualdap.git",2019-01-02 23:52:55,"b3a33927a0c1e97dd7d73570c81b730041304699","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 6, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,4408.7069791667 +"https://github.com/ycm-core/ycmd",2014-05-17 06:31:44,"4895159712d9acf3b1cf45e1c93a654d5b93c6d5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 31, 7, 5, 2, 0, 3, 0, 3, 11, 1, 13, 0, 7, 54, 7, 0, 2, 0, 5, 6, 5, 1, 0, 2, 0, 1]","[2, 1, 0, 1, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 1, 1, 3, 0, 0, 1, 0, 0]",2,2,13,0,3497.9243055556 +"https://github.com/KhronosGroup/Vulkan-Tools",2016-02-26 22:42:57,"c5f63ad07fab1241c70b0f852ff4a570fb11af8b","[35, 35, 57, 49, 32, 46, 16, 18, 100, 111, 24, 34, 17, 58, 34, 65, 6, 30, 94, 46, 41, 93, 85, 72, 49, 43, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]","[54, 65, 39, 66, 75, 77, 37, 44, 42, 80, 75, 76, 50, 50, 25, 40, 74, 50, 37, 25, 46, 9, 32, 31, 41, 48, 1]","[2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",37,7,29,3,3430.9236458333 +"https://github.com/Ranks/emojione",2015-12-28 04:17:30,"a3321d7d22ea482aa229269e02fa081beb889d28","[5, 0, 7, 0, 2, 1, 0, 0, 2, 3, 1, 0, 0, 1, 1, 1, 10, 11, 9, 2, 0, 0, 3, 0, 20, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 1, 0, 0, 1, 0, 2, 0, 0]","[8, 12, 0, 0, 5, 3, 4, 4, 5, 1, 2, 7, 10, 2, 3, 0, 0, 0, 0, 0, 0, 0, 10, 2, 4, 8, 1]","[2, 1, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0]",12,4,11,1,1788.2746759259 +"https://github.com/codedread/scour.git",2016-09-18 20:36:21,"7e2b5e43df2f5bf6fc724396de73429423b15fe1","[1, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 4, 1, 13, 19, 13, 22, 2]","[1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 1, 1, 3, 0]","[10, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,1,1,2869.1347569445 +"https://github.com/sinatra/sinatra.git",2015-03-24 05:35:41,"2ea4612d082119ec170ab860a6488fe8bd6a6964","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 2, 2, 0, 3, 9, 0, 4, 2, 12, 0, 3, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 1, 0, 0, 4, 0, 3, 1, 6, 0, 1, 0, 0, 0, 2, 1]","[1, 4, 10, 2, 0, 5, 0, 0, 4, 0, 0, 0, 5, 2, 0, 0, 4, 0, 0, 0, 2, 2, 0, 0, 1, 2, 0]","[1, 1, 4, 1, 0, 2, 0, 0, 3, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 1, 0]",11,1,8,0,5774.2084027778 +"https://github.com/prehor/amavisd-milter",2019-01-06 23:41:58,"1b2d12499c59f754abfe50630ec821e60b4411ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 19, 11, 5, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,0,0,5582.9392824074 +"https://github.com/eavgerinos/pkg-pick",2017-04-19 12:41:59,"559c4afb695dcfe0f7f8efd239d3af20728b7506","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0,1591.7380671296 +"https://github.com/capistrano/capistrano.git",2013-11-20 12:38:12,"50164d08340f23dd5d313c282a3622c4f3472aa8","[22, 6, 6, 18, 6, 11, 26, 11, 3, 3, 12, 12, 4, 2, 8, 3, 2, 0, 5, 3, 11, 21, 12, 26, 6, 2, 2]","[0, 0, 1, 2, 0, 2, 4, 4, 1, 1, 3, 5, 3, 1, 3, 1, 1, 0, 2, 1, 5, 9, 5, 9, 2, 1, 0]","[16, 0, 1, 3, 8, 4, 12, 12, 4, 9, 5, 1, 5, 6, 6, 4, 3, 8, 4, 4, 27, 16, 6, 0, 0, 0, 0]","[7, 0, 0, 0, 4, 2, 6, 4, 0, 6, 3, 0, 1, 2, 2, 2, 1, 4, 1, 1, 17, 6, 3, 0, 0, 0, 0]",24,1,44,1,5751.7282060185 +"https://github.com/rakhimov/scram.git",2015-05-25 22:15:09,"d75adbf8c87758790843f79abd54bb2c0edec4b7","[22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 14, 8, 17, 14, 3, 0, 1, 0, 0, 16, 9, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 54, 19, 21, 28, 45, 20, 11, 32, 30, 37, 75, 42, 22, 36, 33, 14, 39, 46, 37, 36, 25, 8, 7, 8, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1943.5289930556 +"https://github.com/bit-team/backintime",2023-03-13 06:35:38,"d645bee63a96503e0b9aa4b7b6f927baf367c713","[8, 7, 4, 14, 0, 13, 5, 10, 2, 4, 2, 2, 1, 2, 0, 2, 3, 0, 1, 0, 3, 0, 0, 0, 2, 1, 1]","[2, 1, 2, 5, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 1, 0, 0, 7, 6, 8, 1, 4, 5, 2, 1, 3, 7, 1, 4, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",4,0,1,1,5520.9053125 +"https://github.com/HaxeFoundation/haxe-debian",2015-08-26 06:24:54,"4c397eb8d7190fc371fcdb24cd3026ffa7cb3ce2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 6, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5039.1597916667 +"https://github.com/angband/angband",2021-07-16 22:31:48,"d38f07c60e2ba0d1ec4b2ccbc88919900bcede1c","[0, 4, 4, 5, 9, 8, 4, 1, 0, 0, 26, 8, 11, 8, 20, 17, 7, 21, 14, 35, 2, 17, 10, 10, 15, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 28, 27, 20, 8, 6, 12, 1, 7, 0, 6, 4, 0, 11, 7, 8, 14, 2, 13, 8, 9, 17, 19, 21, 11, 20, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,10,0,5784.383275463 +"https://gitlab.gnome.org/GNOME/gnome-clocks.git",2020-03-01 18:05:43,"3492deeb4819c7d4fbd78315012a49c2f21a05f4","[0, 3, 3, 26, 5, 1, 2, 1, 1, 4, 1, 0, 1, 9, 2, 2, 3, 2, 2, 3, 5, 46, 28, 8, 27, 43, 2]","[0, 0, 1, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0]","[11, 6, 0, 0, 6, 13, 5, 1, 3, 6, 1, 2, 0, 9, 38, 4, 3, 6, 4, 6, 0, 5, 14, 10, 11, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,25,3,4242.1822685185 +"https://github.com/libevent/libevent",2016-10-05 12:51:40,"a22d2033861284c0f25096b00bed8552a1ce2ed4","[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5769.2016435185 +"https://github.com/alanxz/rabbitmq-c.git",2012-11-07 05:51:29,"6aa5779d74353f03e56d0c5079885ec2535011a8","[4, 27, 23, 0, 3, 4, 4, 1, 0, 0, 3, 0, 0, 0, 0, 0, 2, 1, 1, 2, 4, 12, 2, 7, 2, 1, 1]","[0, 1, 4, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 3, 0, 0, 0, 0, 0]","[0, 9, 0, 2, 0, 0, 1, 2, 0, 5, 6, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 47, 0, 24, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",9,0,2,0,5294.5360185185 +"https://github.com/tarantool/tarantool",2022-06-01 07:44:27,"55bdb42dac13af7098e2a110c5539ee3686f715c","[21, 39, 22, 10, 11, 1, 22, 21, 14, 17, 23, 14, 5, 16, 12, 15, 45, 20, 19, 31, 74, 17, 14, 15, 33, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 8, 26, 26, 37, 33, 31, 14, 31, 48, 19, 9, 32, 29, 18, 30, 7, 45, 36, 29, 29, 18, 24, 16, 12, 30, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,11,0,4846.2850231482 +"https://github.com/opencontainers/runc",2015-01-29 23:35:22,"689e8ec9493a4294856dc1568f5ef667e106707c","[21, 38, 7, 8, 13, 6, 8, 15, 13, 3, 10, 12, 19, 17, 8, 25, 6, 7, 13, 7, 14, 0, 0, 15, 13, 6, 1]","[5, 11, 2, 4, 5, 3, 3, 7, 4, 2, 5, 5, 9, 7, 3, 9, 3, 4, 0, 1, 1, 0, 0, 4, 3, 1, 1]","[21, 39, 24, 42, 34, 30, 14, 22, 22, 22, 28, 19, 9, 21, 7, 69, 9, 8, 27, 16, 37, 50, 29, 24, 6, 0, 0]","[7, 10, 12, 22, 12, 13, 8, 9, 9, 11, 14, 7, 5, 8, 4, 11, 4, 4, 10, 8, 13, 20, 14, 12, 3, 0, 0]",31,4,58,4,3584.075162037 +"https://github.com/voxpupuli/pypuppetdb",2021-02-13 10:11:44,"a56ee6336fefff35aac69a625e772d10e228c630","[0, 0, 0, 5, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 4, 12, 0, 0, 2, 0, 2, 36, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 6, 0, 0, 2, 0, 1, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0,3781.8189814815 +"https://github.com/mongodb/mongo-c-driver",2012-11-14 16:42:45,"8a39279e05d864de4996f691d4312183cdb39a2c","[3, 5, 11, 0, 2, 1, 11, 3, 0, 0, 14, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 0, 1, 1, 2, 2, 26, 0, 5, 3, 4, 0, 0, 6, 4, 1, 18, 80, 14, 1, 0, 0, 0, 0, 0, 1]","[2, 1, 0, 0, 0, 1, 1, 9, 0, 1, 1, 0, 0, 0, 4, 1, 0, 7, 33, 6, 1, 0, 0, 0, 0, 0, 0]",9,4,13,3,5226.5267939815 +"https://github.com/ipython/ipykernel.git",2015-04-09 19:02:45,"8b877ac254ecbd94b3af329380d020566eb9dc6a","[6, 3, 14, 2, 3, 2, 6, 6, 22, 14, 1, 2, 2, 2, 5, 4, 4, 2, 5, 2, 5, 0, 0, 8, 24, 14, 2]","[3, 1, 5, 1, 2, 0, 2, 3, 7, 4, 1, 1, 1, 1, 2, 2, 0, 1, 3, 0, 2, 0, 0, 5, 4, 5, 0]","[10, 11, 4, 2, 6, 0, 4, 2, 2, 0, 0, 0, 2, 11, 4, 5, 4, 4, 2, 7, 2, 9, 3, 8, 1, 6, 0]","[3, 4, 2, 1, 3, 0, 1, 1, 1, 0, 0, 0, 1, 4, 1, 1, 2, 1, 1, 3, 1, 5, 0, 4, 1, 2, 0]",6,1,7,1,5666.2640509259 +"https://gitlab.gnome.org/GNOME/clutter.git",2018-06-18 17:54:25,"d78670077e0d3165075725b85cc726f166f4511e","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 32, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[5, 2, 2, 2, 2, 1, 0, 0, 2, 2, 4, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,9,1,5312.2263078704 +"https://github.com/ipython/traitlets.git",2015-04-08 23:33:28,"e722b4788b076c8f7b4b38c4926e49c15cbf4423","[1, 1, 1, 1, 15, 13, 3, 4, 0, 8, 0, 0, 0, 0, 1, 3, 5, 0, 5, 5, 5, 1, 4, 41, 17, 30, 2]","[0, 1, 0, 1, 1, 3, 1, 2, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 0, 0, 2, 13, 4, 10, 0]","[6, 13, 3, 1, 4, 5, 7, 17, 10, 27, 3, 6, 1, 8, 4, 22, 1, 6, 6, 4, 11, 11, 10, 17, 8, 15, 1]","[1, 4, 1, 0, 2, 0, 2, 6, 5, 7, 1, 2, 0, 3, 1, 4, 0, 2, 2, 1, 2, 1, 2, 7, 1, 5, 1]",4,2,6,0,5659.0350347222 +"https://github.com/bitletorg/weupnp.git",2013-04-26 19:53:30,"ebab8750932ade8b8418ff78c0168b3e6bf6fbf3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,896.40375 +"https://github.com/bbatsov/powerpack.git",2016-01-18 09:33:23,"977c913b668fba76b0b4dfdc825894d9bbc34868","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2684.7776041667 +"https://github.com/c-ares/c-ares.git",2014-07-25 08:28:46,"ede0f84b8e9cfe4eeaafb1c90e5fea006e19fe5e","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,5778.6172222222 +"https://github.com/unknown-horizons/unknown-horizons.git",2012-09-23 16:55:40,"1365242f5bbebec73a61a4d8fc4c7b50daaba367","[208, 127, 136, 116, 57, 65, 91, 19, 18, 27, 8, 37, 11, 43, 58, 33, 61, 36, 29, 54, 63, 45, 65, 60, 66, 39, 2]","[12, 11, 14, 10, 4, 1, 4, 1, 1, 2, 0, 0, 0, 3, 9, 1, 2, 1, 2, 3, 4, 5, 6, 4, 4, 4, 0]","[57, 47, 26, 35, 41, 37, 45, 162, 81, 144, 45, 61, 96, 75, 125, 21, 30, 99, 45, 22, 5, 15, 17, 20, 21, 0, 0]","[3, 2, 2, 3, 2, 0, 2, 5, 4, 8, 0, 2, 0, 6, 3, 0, 2, 1, 1, 2, 0, 0, 3, 1, 1, 0, 0]",20,2,13,6,5675.9453240741 +"https://github.com/google/brotli",2015-10-02 10:02:58,"e4d9c617f07ec0a854983496e51f751758a79b6f","[8, 2, 37, 10, 22, 26, 0, 0, 0, 0, 17, 0, 4, 0, 0, 0, 3, 0, 22, 8, 0, 11, 0, 2, 13, 26, 2]","[4, 1, 18, 5, 11, 7, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0, 1, 0, 7, 3, 0, 4, 0, 1, 6, 10, 1]","[47, 2, 19, 30, 15, 14, 2, 7, 1, 8, 2, 2, 0, 8, 11, 2, 20, 3, 0, 5, 11, 4, 0, 3, 2, 0, 0]","[20, 1, 6, 12, 4, 6, 1, 3, 0, 4, 1, 1, 0, 3, 5, 1, 6, 1, 0, 2, 4, 2, 0, 1, 1, 0, 0]",4,1,13,2,3713.0230555556 +"https://github.com/prometheus/node_exporter",2015-01-22 16:11:26,"e03ed0aedff206afbf9d62274be2711e36405ac1","[3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 10, 0, 0, 7, 0, 0, 0, 2, 0, 2]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 2, 0, 0, 3, 0, 0, 0, 1, 0, 1]","[5, 4, 12, 9, 0, 1, 4, 1, 9, 1, 0, 4, 1, 0, 1, 6, 4, 3, 3, 2, 0, 2, 0, 5, 35, 0, 1]","[3, 1, 6, 4, 0, 0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 3, 2, 1, 1, 1, 0, 1, 0, 1, 4, 0, 0]",2,3,16,1,3891.8962384259 +"https://github.com/locationtech/jts.git",2016-01-28 06:31:26,"5f02c948ae0ba880dfdfbd59038e32fb180ffa17","[4, 6, 9, 0, 0, 0, 10, 31, 0, 0, 1, 5, 4, 13, 3, 7, 0, 0, 0, 3, 1, 0, 0, 3, 4, 36, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1]","[12, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1,5138.0149189815 +"https://github.com/zsh-users/antigen",2016-08-27 06:59:54,"e68090b302b1f11e7ea4b1d76f10adcb70a83bb5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 16, 8, 8, 8, 2, 9, 5, 0, 1, 2, 3, 2, 7, 9, 4, 3, 4, 3, 3, 2, 1, 3, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,2767.2354513889 +"https://github.com/EttusResearch/uhd",2018-06-26 15:56:32,"f2896713d48f6c0bc19a859f5ad506e0ddd7ae61","[1, 25, 35, 34, 13, 7, 31, 25, 16, 34, 27, 43, 6, 39, 48, 17, 37, 24, 46, 21, 23, 0, 13, 19, 15, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0]","[14, 7, 46, 44, 12, 33, 13, 7, 14, 10, 4, 18, 2, 5, 3, 13, 17, 19, 8, 13, 35, 8, 16, 8, 16, 13, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,16,0,5060.909212963 +"https://github.com/tinfoil/devise-two-factor.git",2014-05-20 17:56:41,"5f4102f0ec59debb9c72204f83edd47d1d4454bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 38, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]",3,0,3,3,3466.0953935185 +"https://github.com/stachenov/quazip.git",2018-04-07 13:52:11,"079d2622e1806613ae47655bef6935c0cf7345f0","[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 1, 2, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,3,0,5295.4944097222 +"https://github.com/zopefoundation/zope.interface.git",2022-07-07 07:06:38,"fc36cf4f860bcc7ac474c80aa40ecfa5f342c666","[0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 1, 0, 0, 2, 0, 0, 1, 2, 1, 2, 0, 0, 2, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,0,1,0,5664.7027546296 +"https://github.com/maxmind/geoip-api-perl.git",2017-10-10 22:13:04,"a3161863aeb2d8ab00f64e1c9ca7fbb4c91e0d0d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4739.8765162037 +"https://github.com/nixxcode/amsynth.git",2020-09-27 09:08:37,"7e167a6bd8b28763084b95cc83b2a4cefedae519","[0, 0, 7, 2, 6, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 7, 17, 3, 1, 0, 9, 0, 0, 1, 9, 1]","[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0]","[8, 12, 6, 1, 0, 2, 19, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 4, 0, 0]","[1, 2, 2, 0, 0, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5332.9271990741 +"https://github.com/boxbackup/boxbackup.git",2018-08-09 21:56:09,"d5bbc4b4ae89f15b284337174d2fb4e03e608a66","[0, 0, 2, 5, 5, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5737.3015625 +"https://github.com/mruby-debian/mruby",2012-09-18 12:38:15,"2493915a72fcc57148a17109f9be8525fc887790","[0, 0, 0, 0, 125, 57, 92, 68, 141, 64, 196, 40, 102, 69, 40, 47, 44, 44, 63, 44, 28, 41, 12, 22, 48, 18, 1]","[0, 0, 0, 0, 31, 16, 23, 11, 26, 18, 40, 8, 17, 15, 11, 13, 12, 13, 19, 5, 5, 14, 4, 1, 14, 7, 0]","[44, 11, 5, 11, 46, 18, 49, 32, 24, 68, 22, 60, 34, 71, 13, 56, 55, 63, 44, 49, 26, 44, 66, 120, 57, 177, 1]","[6, 3, 0, 4, 11, 8, 9, 15, 8, 9, 9, 25, 11, 27, 5, 27, 22, 24, 18, 24, 12, 13, 23, 49, 17, 45, 1]",57,8,30,10,4156.8421527778 +"https://github.com/ioquake/ioq3",2018-03-21 10:59:13,"e511c114b3935ec10b8877a8eecf1efbe1551373","[2, 8, 8, 2, 0, 0, 1, 3, 2, 2, 2, 0, 4, 2, 0, 1, 1, 8, 2, 8, 3, 1, 1, 1, 1, 9, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 16, 7, 0, 14, 2, 7, 1, 2, 2, 2, 0, 1, 0, 0, 0, 9, 5, 1, 0, 0, 1, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,0,5764.2156828704 +"https://github.com/twbs/bootstrap-sass",2013-01-20 14:48:58,"64fedeefd2a72ac47c5c385c5a2dd4219c8d01f1","[2, 0, 1, 0, 0, 12, 6, 4, 4, 2, 1, 3, 6, 5, 16, 6, 2, 3, 0, 2, 3, 1, 0, 0, 1, 4, 1]","[0, 0, 0, 0, 0, 1, 3, 0, 2, 0, 0, 0, 5, 2, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0]","[0, 3, 5, 3, 6, 2, 0, 2, 7, 0, 0, 2, 0, 4, 3, 3, 1, 2, 6, 0, 3, 0, 0, 0, 0, 6, 0]","[0, 1, 3, 1, 3, 1, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0]",22,0,14,1,4131.8156944445 +"https://github.com/pydicom/pydicom.git",2017-07-10 16:36:07,"60f11430ff7793d50925f4ef3ba54787bdc3be9c","[0, 17, 13, 10, 13, 4, 0, 18, 8, 6, 14, 6, 7, 1, 10, 0, 5, 0, 2, 3, 32, 9, 2, 0, 2, 9, 2]","[0, 3, 4, 3, 2, 0, 0, 2, 3, 5, 2, 2, 1, 1, 0, 0, 2, 0, 1, 1, 7, 2, 1, 0, 1, 0, 0]","[21, 78, 37, 15, 8, 9, 5, 1, 2, 2, 2, 8, 0, 0, 0, 1, 2, 0, 0, 0, 7, 3, 1, 0, 2, 0, 1]","[6, 8, 8, 3, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0]",11,0,6,2,5576.1416435185 +"https://github.com/oneapi-src/oneTBB.git",2021-08-26 14:55:23,"a6b90fc9f522b1c9fa1e3b9eabb4f677abb2268d","[1, 0, 0, 0, 4, 0, 0, 0, 0, 1, 3, 5, 10, 4, 22, 4, 8, 13, 13, 2, 12, 3, 8, 13, 8, 8, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 15, 9, 3, 12, 8, 16, 6, 19, 5, 4, 13, 4, 3, 6, 4, 5, 22, 0, 6, 7, 13, 3, 12, 5, 1, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",40,0,15,1,2645.1234143519 +"https://github.com/axel-download-accelerator/axel.git",2016-03-20 19:28:09,"711b8992f9c7c9ad91ca943a55ab099a9bffd521","[0, 0, 0, 0, 0, 31, 7, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 43, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 22, 0, 0, 0, 6, 1, 1, 0, 7, 47, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,8,1,5432.0664814815 +"https://gitlab.com/o9000/tint2",2017-02-26 16:30:54,"d47924492a7f8dd3aba6061b51778804e09936f2","[4, 1, 9, 0, 8, 23, 0, 0, 2, 0, 0, 3, 0, 2, 1, 1, 1, 2, 0, 6, 1, 0, 0, 0, 0, 8, 2]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[28, 10, 5, 24, 4, 5, 2, 24, 6, 1, 0, 3, 2, 4, 9, 0, 15, 16, 2, 3, 4, 0, 0, 0, 0, 11, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0]",5,0,1,0,5016.1640162037 +"https://github.com/pgRouting/pgrouting.git",2016-12-08 23:32:24,"34b933f144cf6cab04de7055c7bc404590c8f6f1","[104, 104, 78, 48, 83, 285, 115, 78, 35, 46, 11, 7, 35, 0, 30, 25, 87, 2, 0, 0, 0, 78, 31, 11, 97, 71, 2]","[21, 18, 3, 7, 17, 24, 25, 13, 9, 24, 1, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 8, 1, 0, 0, 4, 0]","[23, 30, 41, 17, 78, 0, 0, 0, 0, 46, 35, 68, 68, 92, 68, 38, 55, 42, 39, 77, 33, 40, 76, 96, 44, 48, 1]","[4, 1, 3, 1, 10, 0, 0, 0, 0, 2, 2, 16, 6, 13, 17, 7, 5, 3, 8, 4, 3, 2, 18, 9, 3, 8, 0]",6,2,9,3,5779.2725 +"https://github.com/google/fscrypt",2017-05-31 19:33:04,"bd6a1acc8c6b6c03f999558baa4aab464417548d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 5, 2, 8, 0, 44, 9, 0, 4, 4, 10, 20, 18, 1, 0, 0, 17, 2, 1, 19, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 10, 3, 0, 2, 2, 1, 5, 3, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0,2602.2166782407 +"https://github.com/varvet/pundit",2015-03-27 13:30:23,"06187d68f39c7edaf8a9bb2459e9b64c52c565c1","[0, 0, 3, 0, 2, 2, 1, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 19, 2]","[0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[12, 2, 0, 5, 0, 2, 2, 0, 2, 0, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 1, 3, 2, 0]","[4, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]",10,0,12,1,3993.9621990741 +"https://github.com/py-pdf/pypdf",2023-08-27 08:09:05,"9aa39677eca11204cdf1fd1bb317cef2def9e2aa","[15, 6, 13, 9, 15, 4, 12, 9, 5, 9, 0, 6, 3, 6, 2, 19, 13, 15, 8, 7, 8, 23, 9, 11, 13, 15, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[6, 18, 12, 7, 9, 11, 10, 4, 9, 0, 2, 6, 2, 4, 7, 4, 16, 13, 12, 1, 10, 2, 3, 1, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",28,0,23,0,4367.5921759259 +"https://github.com/galaxyproject/bioblend",2019-08-08 12:37:15,"c9c45f2e6e012e83dc23951bb169ba471b2ffcc0","[1, 0, 2, 1, 5, 0, 0, 0, 7, 1, 2, 0, 2, 13, 0, 2, 1, 0, 0, 4, 0, 5, 2, 0, 0, 4, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1]","[8, 1, 13, 6, 0, 1, 0, 1, 0, 2, 1, 4, 0, 2, 12, 8, 14, 12, 0, 0, 0, 2, 1, 2, 8, 14, 1]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 2, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0]",4,2,8,0,4206.6765393519 +"https://github.com/fonttools/fonttools.git",2019-04-11 16:52:00,"1bcd212df2f01816c02b302d739838c1a68e4190","[35, 37, 49, 23, 75, 36, 2, 38, 8, 28, 0, 22, 26, 41, 26, 10, 32, 17, 14, 17, 60, 19, 19, 26, 26, 1, 1]","[1, 6, 3, 4, 0, 7, 0, 9, 3, 2, 0, 4, 6, 9, 7, 0, 7, 4, 4, 4, 10, 1, 2, 0, 8, 0, 0]","[18, 12, 30, 23, 19, 18, 31, 13, 15, 59, 1, 0, 5, 3, 4, 16, 12, 17, 11, 3, 6, 24, 17, 8, 1, 14, 1]","[4, 3, 5, 6, 5, 6, 4, 1, 0, 14, 0, 0, 0, 0, 2, 6, 4, 5, 0, 0, 1, 10, 1, 2, 1, 1, 0]",10,0,6,4,5774.704837963 +"https://github.com/rails/rails-dom-testing",2015-09-01 16:22:57,"51292a2f23c5c579366d6d12d256a2f01722ea4e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0,3596.7865625 +"https://github.com/kilobyte/pmemkv",2017-05-19 17:16:42,"60309a73f591039719e7dca0ff28349a451f8d33","[0, 0, 0, 0, 0, 0, 4, 4, 7, 0, 12, 1, 4, 11, 2, 3, 1, 0, 7, 6, 4, 2, 6, 6, 9, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 1, 2, 1, 0]","[9, 0, 0, 0, 0, 5, 0, 4, 1, 0, 0, 0, 2, 0, 11, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1,2071.5010185185 +"https://github.com/mypaint/mypaint",2014-10-31 14:38:22,"f666bb4186c74134a837bd251eda40f6a5a76b3a","[0, 0, 11, 9, 26, 11, 17, 13, 12, 10, 14, 20, 5, 4, 6, 0, 2, 4, 0, 1, 1, 14, 0, 7, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]","[11, 7, 5, 2, 5, 18, 9, 0, 2, 5, 22, 6, 8, 11, 10, 6, 26, 34, 8, 1, 21, 17, 63, 13, 12, 14, 1]","[3, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 2, 2, 1, 0, 0, 2, 1, 1, 0, 1, 5, 2, 0, 1, 1, 0]",3,4,7,1,5559.7677199074 +"https://github.com/doctrine/sql-formatter.git",2020-05-22 11:29:39,"cb591932999210615eeb77dc8a17866304fc50a9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 16, 12, 6, 13, 2, 2, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 4, 3, 4, 1, 1, 0, 1, 1]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1,4125.6360300926 +"https://github.com/zloirock/core-js.git",2018-03-17 06:53:13,"b004608e4c3d202b778a4077421825cc71eaabcf","[0, 4, 2, 2, 2, 2, 3, 0, 1, 0, 2, 3, 13, 1, 3, 2, 1, 0, 1, 0, 1, 1, 2, 1, 0, 75, 13]","[0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[124, 239, 231, 14, 1, 0, 1, 15, 262, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",4,0,3,0,3801.3871990741 +"https://github.com/rackerlabs/kthresher",2018-02-28 15:01:33,"3bc7d75cba5f2da85ab50438b6a9b0a4a964ae8c","[0, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 1, 3]","[0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1564.7436342593 +"https://github.com/fog/fog-rackspace",2016-02-17 19:17:09,"c4a0c16bbcc83d0178adc9cf69007b5d6f7bf4d7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1479.8924537037 +"https://github.com/ruby-ldap/ruby-net-ldap.git",2014-10-24 20:54:10,"2091729f3a96626fd37264dd5f35468a2f9ebfce","[0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 11, 0, 0, 38, 11, 2, 0, 1, 0, 48, 91, 78, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 0, 0, 3, 1, 1, 0, 0, 0, 8, 23, 15, 1]","[36, 2, 5, 1, 7, 15, 11, 22, 2, 0, 14, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[15, 2, 2, 0, 2, 0, 3, 4, 2, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",15,0,5,4,5396.7690856482 +"https://github.com/voxpupuli/librarian-puppet.git",2015-07-03 14:31:45,"cdfffce57aed1a1a1ab15762f1e14c93dbc4034b","[0, 0, 0, 0, 0, 1, 0, 12, 8, 3, 0, 0, 0, 0, 0, 4, 1, 2, 1, 11, 3, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 1, 0, 0, 2, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0,4114.1364930556 +"https://github.com/nikic/PHP-Parser",2022-08-29 19:59:07,"09c6048df12ff141578876a401cd38094afd90b7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,3,0,4619.1675115741 +"https://github.com/jaap-karssenberg/zim-desktop-wiki.git",2019-01-27 19:16:28,"ed0cef97e7a9cc7d86b683a0291baa9c791f8578","[0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 12, 12, 5, 0, 0, 5, 7, 3, 22, 32, 0, 7, 1, 2, 7, 9, 0, 2, 0, 6, 0, 0, 0, 0, 2, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,5,0,5538.0760532407 +"https://github.com/OSGeo/PROJ.git",2017-05-09 20:35:39,"46b07308d9d43692f1feb21f60d91891db5c8a4a","[1, 5, 0, 0, 9, 11, 0, 0, 1, 0, 3, 0, 3, 3, 2, 22, 0, 8, 2, 1, 0, 4, 1, 0, 2, 1, 2]","[0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[1, 16, 17, 6, 9, 0, 3, 3, 5, 13, 1, 0, 11, 5, 3, 3, 11, 10, 5, 9, 7, 16, 16, 17, 24, 19, 1]","[0, 3, 1, 1, 1, 0, 0, 0, 1, 4, 0, 0, 1, 3, 1, 0, 1, 2, 0, 1, 0, 4, 6, 3, 6, 6, 0]",4,0,7,0,5782.0658101852 +"https://github.com/ninja-build/ninja.git",2019-11-24 11:58:31,"a37da20ae74c81703b1c811182fc154d95ed46fe","[1, 1, 0, 1, 0, 1, 2, 0, 1, 3, 6, 1, 1, 7, 0, 0, 6, 1, 0, 0, 0, 0, 8, 1, 8, 8, 1]","[0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 3, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 2, 1]","[1, 3, 0, 2, 7, 4, 3, 7, 1, 5, 5, 1, 7, 0, 1, 0, 1, 2, 0, 3, 4, 1, 2, 0, 1, 2, 1]","[1, 0, 0, 0, 0, 4, 2, 2, 1, 2, 1, 1, 2, 0, 1, 0, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0]",13,0,10,0,4801.452974537 +"https://github.com/rbenv/ruby-build.git",2022-01-25 18:18:26,"45b9dd0465d4f11aa9b9ea5471222a16e0a61e0b","[5, 3, 0, 0, 3, 0, 0, 0, 9, 0, 0, 4, 0, 2, 6, 0, 0, 2, 5, 0, 0, 11, 1, 0, 0, 2, 3]","[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 1, 0]","[1, 0, 0, 3, 2, 0, 0, 4, 2, 2, 3, 1, 2, 1, 0, 2, 0, 0, 0, 4, 0, 4, 2, 12, 9, 8, 0]","[0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0]",3,0,6,0,4513.8946527778 +"https://github.com/abishekvashok/cmatrix.git",2017-08-05 15:24:40,"33cae7f639316d24d85faf57a11de3f894713f90","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 2, 0, 4, 1, 0, 0, 2, 0, 0, 0, 2, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,1,6,0,2359.866400463 +"https://github.com/KDAB/hotspot.git",2018-01-08 00:08:05,"725cab123a681bbe38ed8d3452e67548dde5e0c3","[14, 3, 4, 5, 0, 0, 17, 16, 11, 24, 36, 80, 7, 0, 3, 5, 9, 0, 7, 1, 10, 0, 0, 19, 9, 2, 2]","[4, 1, 2, 2, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[3, 47, 19, 12, 24, 1, 1, 0, 0, 0, 0, 0, 5, 7, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,1,2,2548.0331481482 +"https://github.com/twisted/twisted.git",2013-08-29 23:20:20,"79daa4d56c3110610e10ea4df8dda01d57066601","[126, 50, 232, 71, 44, 77, 89, 90, 61, 49, 55, 9, 31, 155, 72, 64, 66, 84, 73, 73, 40, 52, 78, 51, 65, 74, 2]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 97, 63, 77, 38, 86, 76, 40, 55, 47, 75, 82, 14, 26, 48, 18, 20, 52, 59, 132, 123, 71, 77, 46, 42, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,2,2,5788.1823726852 +"https://github.com/supercollider/supercollider.git",2017-06-27 18:42:42,"27be93376413ec0db52d4639ee2d01855aff782f","[54, 50, 52, 41, 11, 51, 28, 19, 10, 33, 20, 12, 11, 6, 6, 2, 10, 7, 13, 18, 6, 25, 21, 19, 42, 15, 2]","[8, 3, 16, 5, 7, 19, 7, 5, 3, 11, 8, 4, 1, 1, 0, 1, 5, 1, 3, 2, 3, 8, 4, 3, 12, 6, 1]","[34, 41, 61, 261, 31, 17, 4, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1]","[15, 9, 8, 9, 10, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",7,0,4,1,5761.273125 +"https://github.com/cespare/reflex.git",2014-02-06 20:30:38,"e0e1525adeee7ef167a88b7362de3701791f9166","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 3, 1, 1, 0, 1, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,3024.8018634259 +"https://github.com/developit/preact.git",2019-09-11 17:22:36,"33c836018f46c2ced9a7fdd328418ef82d0e3861","[64, 29, 73, 56, 85, 37, 26, 77, 58, 35, 31, 63, 97, 86, 24, 36, 23, 25, 5, 13, 39, 52, 153, 12, 9, 27, 2]","[9, 2, 23, 8, 20, 15, 4, 10, 13, 7, 5, 15, 21, 10, 2, 8, 9, 12, 1, 4, 15, 14, 2, 5, 3, 10, 1]","[8, 6, 10, 23, 37, 51, 94, 71, 64, 30, 16, 30, 14, 13, 7, 25, 23, 0, 14, 51, 51, 22, 31, 6, 17, 14, 1]","[2, 2, 2, 3, 1, 5, 16, 20, 10, 8, 1, 3, 3, 2, 1, 3, 10, 0, 3, 12, 6, 3, 8, 2, 5, 2, 0]",26,0,40,5,3016.8271064815 +"https://github.com/varietywalls/variety.git",2019-07-13 09:49:36,"de6e11b96461d82edb2f6b43304a001f79401972","[0, 0, 0, 0, 1, 5, 0, 0, 1, 0, 0, 0, 1, 1, 5, 10, 8, 2, 5, 3, 2, 3, 1, 4, 3, 6, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 12, 0, 0, 2, 0, 11, 0, 2, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 5, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0,4151.289224537 +"https://github.com/rails/sprockets.git",2015-08-18 01:31:51,"be44f0c8fdd20a7654fa947b381d0d741b235d64","[2, 1, 1, 21, 43, 16, 3, 13, 11, 15, 10, 21, 0, 0, 2, 5, 4, 0, 0, 0, 0, 0, 0, 0, 2, 7, 1]","[1, 0, 1, 6, 3, 2, 1, 3, 1, 2, 2, 4, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]","[10, 8, 2, 0, 0, 4, 4, 0, 2, 0, 0, 2, 0, 0, 1, 15, 3, 0, 0, 0, 0, 0, 2, 3, 0, 1, 1]","[3, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",16,1,7,2,3278.0454050926 +"https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git",2016-06-03 14:52:16,"0236ef27e3c8828c51ff5d0910744aaacf234253","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2370.9240625 +"https://github.com/puppetlabs/puppetlabs-concat",2014-06-26 00:23:15,"2b51a83b9baeebcd795d94a8051ba598b6353ae2","[1, 12, 0, 4, 3, 2, 2, 5, 2, 2, 0, 0, 0, 2, 4, 1, 2, 1, 4, 4, 2, 0, 6, 0, 0, 3, 2]","[0, 6, 0, 1, 2, 1, 1, 2, 0, 1, 0, 0, 0, 2, 2, 1, 1, 0, 3, 2, 1, 0, 2, 0, 0, 1, 1]","[7, 6, 2, 0, 0, 2, 0, 7, 0, 4, 21, 13, 3, 0, 10, 0, 0, 9, 0, 0, 8, 1, 0, 5, 0, 1, 1]","[3, 3, 1, 0, 0, 1, 0, 3, 0, 2, 11, 8, 1, 0, 5, 0, 0, 6, 0, 0, 6, 0, 0, 2, 0, 1, 0]",12,2,9,3,4953.9728703704 +"https://github.com/processone/fast_tls.git",2019-01-21 09:36:32,"2c908ef4489c7a778c9ecb999ff4d6484644880c","[0, 0, 0, 0, 5, 1, 0, 0, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3904.2279282408 +"https://github.com/plastex/plastex",2020-04-03 17:52:22,"37092807809a954ee018010b3e6bd021bef5bca8","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5539.2969907407 +"https://github.com/processone/stun.git",2019-01-18 13:32:30,"9f9bf240f287293045da6c718e82534facd4d4be","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3846.8886574074 +"https://github.com/OpenPrinting/cups-filters",2022-11-14 22:33:16,"28e7d07be7de98b9ac0bdb8c2f26a4a984902132","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5780.7735185185 +"https://github.com/selectize/selectize.js",2021-10-03 16:15:31,"1c823774062acd5f736c487021188e81f2bdd741","[0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4120.8884143519 +"https://github.com/jashkenas/backbone",2012-09-17 17:10:58,"74ba05c8da60f5748efc40f149a7529b8eff6f4e","[23, 11, 17, 15, 12, 15, 17, 14, 16, 13, 19, 5, 32, 18, 2, 2, 2, 11, 9, 5, 2, 10, 12, 23, 20, 21, 2]","[7, 3, 7, 5, 2, 4, 8, 3, 4, 5, 4, 2, 10, 4, 0, 0, 1, 5, 2, 2, 1, 4, 4, 8, 9, 5, 1]","[9, 10, 29, 11, 18, 12, 17, 4, 10, 13, 29, 28, 111, 93, 31, 17, 29, 32, 21, 17, 5, 12, 7, 9, 17, 11, 1]","[4, 5, 9, 4, 6, 4, 7, 0, 1, 4, 9, 8, 25, 24, 10, 4, 6, 11, 6, 4, 2, 1, 1, 3, 5, 4, 0]",44,4,37,2,4697.0951736111 +"https://github.com/Beep6581/RawTherapee",2017-08-10 10:53:34,"86f3d326d972c86aa463ab1cc709a9ce82cb2ff1","[37, 30, 14, 43, 44, 44, 30, 69, 46, 22, 15, 17, 15, 26, 6, 11, 24, 18, 21, 14, 13, 21, 23, 18, 11, 11, 2]","[5, 8, 4, 8, 8, 12, 8, 6, 12, 7, 1, 2, 0, 3, 1, 1, 6, 4, 1, 4, 2, 2, 4, 2, 2, 4, 0]","[23, 25, 16, 22, 58, 33, 45, 24, 8, 32, 47, 20, 34, 26, 35, 21, 15, 33, 43, 19, 39, 55, 40, 44, 39, 39, 1]","[4, 4, 0, 6, 7, 8, 12, 7, 0, 6, 1, 5, 3, 8, 3, 1, 4, 6, 13, 3, 5, 15, 8, 9, 6, 12, 0]",8,0,8,4,4840.9254861111 +"https://github.com/processone/pkix.git",2019-01-18 15:36:40,"3a0f15c4e05eea9b6b1be1a8d5facee811e392ce","[0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 3, 0, 1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,0,1315.7862615741 +"https://github.com/prometheus/pushgateway",2015-01-22 16:52:54,"e4121e44b8256b49aa06bcfa24c28a52baecccb4","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 1, 9, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 2, 1, 0, 0, 2, 6, 5, 1, 3, 3, 0, 4, 0, 0]","[2, 0, 4, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 3, 1, 1, 1, 1, 0, 2, 0, 0]",2,3,10,1,3606.187337963 +"https://github.com/OSGeo/shapelib.git",2023-02-11 11:45:06,"f29e0a78afe390257180eb02112e67049c3c4338","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0,5762.8618865741 +"https://github.com/RiotGames/buff-extensions",2013-06-17 06:34:54,"9d703c776a40162c0e3e7f555a9ed9e8bb8c3cbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1162.5226851852 +"https://github.com/matlab2tikz/matlab2tikz",2015-07-14 18:01:13,"1018a5f224d097a45a64e3cd29c2baf6222ca17f","[27, 19, 1, 1, 0, 18, 49, 27, 34, 49, 7, 6, 47, 42, 19, 11, 89, 14, 13, 26, 0, 4, 2, 9, 18, 35, 1]","[2, 4, 1, 0, 0, 2, 11, 1, 4, 4, 2, 1, 8, 11, 2, 1, 10, 0, 6, 7, 0, 2, 0, 1, 7, 11, 0]","[29, 15, 42, 27, 25, 36, 38, 55, 20, 12, 7, 3, 12, 3, 27, 19, 14, 36, 7, 2, 12, 0, 0, 0, 5, 5, 1]","[4, 2, 4, 6, 5, 2, 8, 7, 1, 2, 2, 1, 3, 1, 3, 3, 1, 8, 1, 1, 5, 0, 0, 0, 1, 1, 0]",3,1,5,1,5208.0300231482 +"https://github.com/geopython/geolinks.git",2022-07-01 18:00:50,"d99cb2c8a71a4d0edc219f1af8221620e99cedbc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3405.8642361111 +"https://github.com/spacetelescope/gwcs",2018-11-09 13:01:55,"ad4b55c1be147a06f11b5cebb4b6bff782b6ebc1","[20, 24, 0, 1, 0, 1, 0, 1, 1, 4, 2, 2, 4, 0, 0, 0, 1, 0, 2, 4, 2, 4, 0, 0, 5, 4, 2]","[3, 7, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 2, 3, 1]","[19, 2, 3, 6, 4, 1, 4, 0, 2, 8, 1, 2, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]","[4, 1, 0, 2, 2, 0, 1, 0, 0, 3, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]",1,0,2,0,3241.9580787037 +"https://github.com/CorsixTH/CorsixTH.git",2013-10-10 16:36:08,"2a0e6ee3eb70c19a7c97e24a078e9332a76d3acf","[9, 1, 1, 6, 2, 0, 2, 1, 1, 0, 3, 1, 4, 1, 0, 0, 6, 2, 12, 12, 5, 1, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[43, 33, 19, 4, 0, 10, 3, 7, 0, 0, 2, 2, 14, 13, 4, 2, 3, 38, 8, 0, 0, 0, 3, 0, 0, 0, 0]","[4, 12, 3, 2, 0, 4, 1, 4, 0, 0, 0, 2, 8, 6, 2, 2, 1, 13, 3, 0, 0, 0, 2, 0, 0, 0, 0]",3,6,18,1,5111.7033217593 +"https://github.com/canonical/lightdm.git",2019-02-18 13:55:04,"8a0c3a1630bb063b2e3f37372f1344e13b6b6340","[3, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,4834.5447222222 +"https://github.com/ImageOptim/libimagequant.git",2016-12-02 21:00:50,"138a37ed8ccbc3c06804a68bbe3556e068e3e055","[2, 1, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 3, 9, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 2, 0, 0, 0, 5, 0, 0, 7, 5, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,4336.732037037 +"https://github.com/jupyter/nbformat",2015-04-09 01:46:25,"0762fbc4bbb2150944ed23b70dde4c23b30dc489","[4, 1, 0, 34, 7, 1, 5, 2, 6, 3, 1, 0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 5, 10, 9, 2]","[2, 1, 0, 2, 3, 0, 1, 2, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0]","[3, 2, 0, 0, 4, 2, 4, 0, 2, 0, 2, 0, 4, 2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,4953.7747106482 +"https://github.com/zopefoundation/zope.testrunner",2022-03-07 07:03:05,"ad25458997c12b86b35d735da448b06b7aa1d5e6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 4, 1, 10, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,1,0,0,4988.3216666667 +"https://github.com/zaach/jison",2015-03-03 03:22:03,"dfdc4d05b381591e4b07fd592f596e67938dd6dd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,0,0,0,3961.6974305556 +"https://github.com/openSUSE/open-build-service",2015-07-23 11:27:42,"8ad9588d49184f809b9e5796083b260b0a8a4fa1","[0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 6, 1, 0, 3, 4, 0, 1, 0, 1, 6, 0, 1, 23, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0,5787.9764699074 +"https://github.com/ipython/ipython_genutils",2015-04-08 22:06:03,"6cf40ccc0e77a41d9e4909ff3e8ea1e753b0a69e","[1, 1, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 14, 2]","[0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0]","[8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4920.5252546296 +"https://github.com/namhyung/uftrace",2017-11-14 23:52:46,"134a6aeaedc938894f53c651f6f673dea89286b6","[37, 24, 0, 16, 24, 7, 30, 15, 21, 18, 29, 24, 21, 17, 32, 44, 42, 8, 1, 10, 3, 26, 16, 50, 15, 28, 2]","[7, 5, 0, 2, 3, 2, 4, 4, 2, 3, 4, 2, 2, 1, 3, 6, 6, 1, 0, 1, 1, 4, 3, 8, 2, 4, 0]","[32, 36, 22, 12, 10, 35, 16, 35, 12, 3, 1, 0, 4, 7, 1, 11, 11, 7, 19, 4, 1, 8, 2, 14, 31, 8, 1]","[6, 4, 3, 2, 2, 3, 3, 3, 3, 0, 0, 0, 0, 1, 0, 2, 1, 1, 1, 1, 0, 1, 1, 3, 2, 2, 0]",11,0,4,0,3614.2657175926 +"https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git",2021-01-04 15:30:38,"28f646fd87e824ba5e89377cd9aedde74e6be96c","[6, 4, 7, 1, 11, 11, 0, 1, 3, 4, 6, 1, 4, 0, 6, 7, 6, 0, 1, 11, 4, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 33, 55, 2, 13, 5, 3, 31, 7, 0, 10, 9, 3, 20, 5, 5, 4, 0, 9, 16, 1, 37, 2, 12, 3, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",20,0,33,0,5707.6521990741 +"https://github.com/emacs-lsp/lsp-mode.git",2020-07-14 23:35:59,"e8ed95f0dfefd725f45464009e82cf3299cd84ff","[13, 9, 11, 27, 18, 14, 16, 23, 13, 6, 12, 10, 10, 11, 21, 68, 32, 12, 19, 18, 26, 56, 21, 17, 25, 25, 2]","[1, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 29, 20, 28, 46, 18, 15, 20, 21, 16, 13, 6, 11, 4, 12, 5, 11, 8, 23, 9, 4, 13, 11, 12, 19, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",77,0,60,0,2556.5827430556 +"https://gitlab.com/orcus/orcus",2020-03-29 16:09:36,"dcec0c56b0a435790fc8e189344a3de9287b1410","[1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 16, 2, 8, 20, 0, 0, 0, 0, 0, 0, 0, 0, 31, 21, 22, 21, 24, 0, 13, 3, 1, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4985.8959837963 +"https://github.com/ignitionrobotics/ign-cmake.git",2018-11-02 16:35:21,"a051b40afa72d59d7ac35e2d52f7c91f3c115827","[15, 0, 8, 37, 36, 31, 12, 6, 20, 7, 24, 24, 12, 4, 5, 4, 9, 2, 5, 0, 3, 4, 2, 3, 1, 0, 2]","[7, 0, 0, 2, 6, 8, 4, 3, 6, 3, 7, 6, 6, 0, 2, 1, 2, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0]","[2, 8, 9, 1, 2, 12, 28, 1, 4, 15, 9, 23, 20, 0, 6, 2, 0, 3, 2, 7, 0, 0, 0, 11, 7, 0, 0]","[1, 4, 2, 0, 1, 1, 7, 0, 1, 4, 0, 10, 8, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 2, 0, 0, 0]",7,0,1,3,2275.0046990741 +"https://github.com/intridea/multi_json",2012-10-07 18:57:21,"5f2a2c9b8b30bdd0520f1bb53e60aab43615cdf4","[5, 15, 7, 3, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 0, 2, 0, 5, 4, 35, 1, 6, 2, 0, 1, 4, 4, 14, 31, 7, 1, 0, 24, 11, 3, 1, 0]","[1, 1, 0, 0, 0, 0, 0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0]",5,0,9,0,3679.9527430556 +"https://github.com/ntop/nDPI.git",2019-07-23 09:47:25,"e781ddfa43ce9963c705c93fd015d4df3f39d08c","[1, 2, 2, 2, 3, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 13, 0, 14, 28, 11, 34, 32, 30, 31, 10, 17, 20, 34, 7, 12, 17, 12, 19, 18, 9, 3, 18, 17, 7, 1]","[3, 0, 1, 0, 1, 2, 1, 3, 5, 7, 5, 1, 2, 1, 12, 1, 1, 1, 2, 3, 0, 3, 0, 2, 1, 3, 0]",0,3,14,0,3148.9571990741 +"https://github.com/HandBrake/HandBrake",2018-06-05 21:07:10,"6c236b7cfa36dc1331b6c18a58ce0cac99a19e97","[29, 50, 52, 23, 3, 36, 4, 16, 5, 4, 7, 5, 0, 3, 16, 0, 2, 2, 2, 2, 9, 1, 1, 16, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[66, 66, 26, 22, 14, 11, 6, 6, 11, 31, 7, 5, 23, 1, 6, 12, 20, 7, 5, 13, 2, 13, 13, 18, 14, 4, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,8,0,5786.3675231482 +"https://github.com/mfontanini/libtins.git",2016-02-07 00:04:07,"0832184896ababac7ee696625bfa32cc7b596815","[0, 6, 1, 0, 0, 1, 2, 0, 0, 1, 0, 0, 1, 1, 0, 4, 0, 3, 6, 8, 18, 2, 8, 1, 4, 8, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[14, 28, 13, 8, 6, 11, 5, 5, 1, 1, 0, 0, 4, 4, 0, 1, 0, 2, 2, 1, 0, 0, 0, 1, 0, 0, 1]","[0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0,4422.9672569445 +"https://github.com/intridea/grape-entity",2014-01-28 13:58:06,"a22ca7c17fa6fc4448c8667d28563a9405986b0e","[9, 2, 2, 2, 0, 1, 8, 0, 0, 0, 1, 2, 0, 2, 4, 0, 0, 0, 2, 3, 0, 0, 8, 5, 1, 2, 2]","[3, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0]","[3, 0, 2, 0, 2, 5, 1, 0, 0, 2, 2, 0, 0, 1, 0, 7, 0, 2, 0, 12, 2, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0]",13,1,10,2,3988.0353587963 +"https://github.com/libwww-perl/HTTP-Message.git",2018-05-31 21:35:13,"08ff5033e1df607267a573e56c50004c9a25b1b0","[0, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 9, 0, 5, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,4,0,5655.1268518519 +"https://github.com/darold/pgbadger.git",2013-03-13 13:31:59,"940c51a164da83b9eb9d0765f4bdea9aa308bafc","[5, 1, 3, 4, 12, 8, 7, 7, 8, 3, 3, 1, 8, 4, 6, 9, 3, 3, 9, 5, 9, 4, 8, 10, 13, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 10, 0, 6, 5, 3, 6, 3, 2, 1, 2, 0, 1, 11, 6, 5, 5, 4, 2, 4, 2, 0, 0, 0, 1, 1, 1]","[1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",8,0,3,0,4259.9847222222 +"https://github.com/dpmb/dpmb",2015-08-10 18:00:14,"94292ea1da848a0f6b653d30190cf961359cf565","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 64, 227, 42, 9, 0, 0, 0, 0, 5, 0, 0, 0, 55, 6, 0, 0, 2, 9, 29, 143, 48, 9, 0, 0, 21, 1]","[0, 4, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]",2,4,8,0,3025.1458101852 +"https://github.com/freelan-developers/freelan",2015-03-19 23:58:24,"8e8aae30552d0d061d771220ad23e11df347102b","[0, 0, 0, 14, 9, 9, 0, 0, 0, 0, 0, 0, 3, 11, 8, 18, 19, 0, 3, 0, 0, 0, 0, 0, 17, 19, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[7, 3, 9, 50, 6, 15, 21, 24, 0, 0, 0, 105, 59, 5, 0, 13, 4, 0, 13, 21, 19, 10, 3, 0, 0, 1, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]",3,0,2,0,3106.2727893519 +"https://github.com/mlpack/mlpack",2017-10-22 04:12:46,"76384a8b371737f48443d0a3f9ee44950d1611a1","[27, 36, 39, 32, 63, 32, 55, 43, 42, 51, 55, 53, 56, 27, 98, 92, 76, 60, 29, 17, 3, 21, 10, 12, 8, 0, 2]","[3, 2, 4, 3, 6, 4, 6, 5, 4, 11, 1, 8, 6, 4, 3, 16, 6, 6, 3, 4, 3, 2, 1, 0, 1, 0, 1]","[13, 20, 7, 20, 20, 16, 6, 40, 75, 42, 50, 28, 48, 51, 82, 79, 192, 58, 128, 51, 84, 36, 62, 0, 0, 1, 1]","[4, 4, 2, 5, 0, 0, 4, 1, 7, 8, 11, 3, 9, 7, 9, 10, 14, 12, 21, 3, 11, 9, 16, 0, 0, 0, 1]",13,10,33,3,4436.5602083333 +"https://github.com/resurrecting-open-source-projects/dcfldd",2019-10-29 02:39:47,"b1896720ef3807fe735cd44d7c2bb19961d2ff42","[0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 4, 0, 0, 6, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1,1555.0382175926 +"https://github.com/librsync/librsync",2015-11-15 19:52:18,"94ce627c7832dae8dd4231491cfa5e035fcb2771","[0, 0, 0, 3, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2]","[0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[5, 1, 46, 6, 1, 35, 9, 16, 14, 5, 10, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 5, 0, 0]","[0, 0, 0, 0, 0, 2, 1, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0]",2,0,4,1,3224.9778472222 +"https://github.com/keras-team/keras",2015-12-05 23:26:17,"74b37bf87a8b76e9d4af3a7b29f570aa9c96f572","[37, 57, 109, 77, 51, 48, 64, 22, 15, 24, 43, 24, 15, 36, 8, 29, 21, 40, 10, 24, 90, 13, 40, 34, 30, 73, 2]","[15, 10, 26, 20, 9, 10, 20, 6, 4, 7, 15, 9, 4, 14, 2, 12, 12, 14, 3, 9, 15, 6, 14, 6, 8, 14, 0]","[128, 97, 39, 20, 35, 22, 47, 30, 37, 30, 32, 61, 22, 34, 8, 19, 40, 56, 46, 29, 28, 22, 15, 14, 12, 14, 1]","[27, 24, 8, 8, 11, 7, 16, 11, 8, 9, 12, 21, 7, 8, 3, 6, 4, 5, 3, 2, 1, 0, 1, 0, 2, 1, 0]",77,6,98,14,3182.8412268519 +"https://github.com/zeroc-ice/ice-debian-packaging.git",2016-05-16 15:16:31,"c22f16328b81ddfeaaa89b699c84f804edd83e12","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 11, 0, 86, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 0, 1, 7, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,4,1,2730.2990046296 +"https://github.com/websocket-client/websocket-client",2021-02-25 04:18:10,"aa561086a4342c962fa5d4333f66b85c728c3624","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 1, 12, 7, 13, 8, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 1, 0, 0, 1, 0]","[31, 4, 0, 8, 11, 0, 0, 1, 4, 13, 5, 19, 2, 18, 9, 0, 0, 0, 1, 0, 2, 0, 1, 9, 4, 2, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,16,2,4734.9677083333 +"https://github.com/Grokzen/redis-py-cluster",2015-11-29 01:30:35,"3ee5c059c4b6d24f8c5e8d37ded03c47680c5bf2","[6, 14, 0, 2, 3, 3, 1, 7, 0, 2, 2, 0, 0, 0, 3, 0, 0, 6, 5, 1, 15, 15, 0, 0, 0, 8, 2]","[0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0]","[8, 3, 6, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 24, 21, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,6,0,3217.2146527778 +"https://github.com/puppetlabs/puppetlabs-firewall",2011-10-18 20:23:17,"c3739abac431ff06748978f128ba723a8d99833a","[0, 0, 12, 14, 0, 0, 0, 0, 25, 6, 0, 3, 4, 0, 0, 1, 12, 0, 2, 0, 0, 6, 0, 0, 4, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 1, 1, 1]","[7, 10, 0, 12, 4, 1, 13, 0, 0, 0, 5, 0, 2, 4, 0, 0, 0, 0, 0, 0, 6, 9, 8, 0, 0, 2, 0]","[4, 5, 0, 5, 2, 1, 6, 0, 0, 0, 2, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 4, 3, 0, 0, 1, 0]",3,3,11,2,4586.8520833333 +"https://github.com/Exiv2/exiv2.git",2017-12-03 16:00:04,"977c5f7a63fafff260413de9154328625155dbc2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 5, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1,5776.6242708333 +"https://github.com/resurrecting-open-source-projects/txt2html",2019-08-02 00:57:37,"e5c21016e4cebe414a9b8c94840c36c4c94b28cd","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5316.6490856482 +"https://github.com/openstreetmap/osm2pgsql.git",2015-07-07 05:58:53,"71283c25f2e0ef283a999add7e7f844c80c1bef3","[6, 9, 11, 1, 1, 8, 23, 1, 3, 0, 5, 0, 5, 5, 14, 15, 7, 2, 0, 13, 9, 3, 0, 3, 8, 20, 1]","[2, 0, 4, 0, 0, 2, 9, 0, 1, 0, 1, 0, 2, 0, 4, 7, 2, 1, 0, 6, 0, 1, 0, 0, 2, 7, 1]","[22, 71, 19, 19, 7, 6, 7, 0, 1, 0, 0, 2, 0, 8, 8, 14, 28, 14, 10, 4, 5, 4, 2, 0, 1, 0, 1]","[5, 24, 4, 5, 3, 1, 3, 0, 1, 0, 0, 1, 0, 1, 4, 5, 12, 2, 2, 3, 2, 2, 1, 0, 1, 0, 0]",4,1,5,0,5749.83625 +"git://git.lttng.org/lttng-ust.git",2016-02-20 02:31:00,"8f6a68ab4249b31fd1a220b5fa75b3e24e592e8a","[2, 0, 2, 0, 12, 0, 0, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 16, 7, 3, 1, 0, 10, 8, 2, 7, 0, 17, 21, 10, 13, 0, 2, 0, 1, 1, 4, 0, 1, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5424.0034375 +"https://github.com/CESNET/libyang",2018-11-09 17:57:59,"b6374cbcbbc73340f47a490de36ac10e2dad808e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1297.9920949074 +"https://github.com/defunkt/mustache",2014-12-26 19:00:42,"474000bad5cfd15f0d9408204190df97ba356ae6","[0, 0, 0, 10, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 18, 0, 0, 0, 0, 0, 27, 0, 30, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 7, 2, 0, 1, 16, 11, 15, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0]","[0, 0, 1, 1, 0, 0, 3, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",3,0,9,0,4729.4908680556 +"https://github.com/hamcrest/hamcrest-php.git",2019-04-18 16:12:06,"05925036271d1c7d38b40b0b66516fe7f442cfcd","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4488.7726157407 +"https://github.com/codership/galera",2016-02-08 09:22:48,"afdbdb22bf75a4d96a7efcc0c780fb8c54b35da4","[8, 12, 4, 1, 5, 14, 32, 1, 0, 2, 3, 13, 7, 0, 2, 2, 7, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[3, 6, 1, 0, 0, 3, 9, 0, 0, 0, 2, 5, 4, 0, 0, 2, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5691.7423958333 +"https://github.com/fail2ban/fail2ban",2014-04-17 17:19:03,"e66231f041e7fa1925b080e43328dc1afd50ff8f","[18, 35, 12, 41, 16, 14, 16, 41, 34, 18, 29, 38, 18, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 9, 4, 14, 4, 3, 4, 9, 6, 7, 8, 12, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 3, 11, 7, 7, 0, 3, 12, 6, 13, 1, 2, 3, 14, 22, 2, 14, 4, 0, 0, 3, 7, 0, 0, 0, 0, 0]","[2, 1, 6, 2, 0, 0, 1, 1, 3, 3, 0, 0, 0, 3, 9, 1, 5, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",6,1,17,1,5786.4154976852 +"https://github.com/assimp/assimp",2018-05-12 10:01:52,"a571d013102b62b437b4623dd4fc28a042dc5945","[58, 50, 45, 27, 38, 41, 22, 37, 72, 23, 45, 51, 60, 23, 44, 24, 37, 19, 45, 23, 44, 16, 8, 29, 21, 4, 0]","[9, 22, 22, 10, 6, 21, 5, 18, 44, 14, 15, 16, 17, 11, 24, 12, 16, 7, 26, 7, 23, 9, 2, 13, 9, 0, 0]","[31, 29, 31, 19, 36, 26, 13, 16, 13, 16, 8, 8, 24, 12, 9, 16, 22, 16, 33, 31, 14, 49, 3, 4, 21, 14, 1]","[20, 8, 11, 7, 18, 17, 4, 5, 9, 11, 4, 5, 8, 6, 5, 8, 10, 6, 14, 18, 5, 18, 1, 2, 9, 7, 0]",36,5,47,4,5697.8977662037 +"https://github.com/processone/eimp.git",2019-01-21 10:19:32,"171b7a006fb2d54260903e376ed2d42d77412b4f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1694.160462963 +"https://github.com/intel/intel-vaapi-driver.git",2017-01-23 01:22:05,"4a083a37e91b1a40e9d2bc8fa3c1c6b673b18ae4","[6, 2, 3, 20, 58, 0, 23, 19, 5, 14, 18, 5, 2, 13, 100, 6, 27, 5, 9, 0, 1, 4, 9, 4, 34, 37, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[9, 12, 2, 9, 5, 13, 3, 6, 1, 11, 6, 1, 0, 0, 0, 0, 5, 1, 0, 0, 55, 0, 1, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,8,0,5083.2222916667 +"https://github.com/oauth-xx/oauth-ruby",2021-11-09 07:42:34,"c9a4917e1b45fcc21d7eb5fd86546e9e0aa1ef72","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 13, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,5341.0796643519 +"https://0xacab.org/schleuder/schleuder.git",2016-11-29 13:34:52,"283bfecbf4d50e773d138dd31ad63755849e8beb","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 2, 0, 9, 8, 8, 1, 1, 7, 11, 15, 5, 16, 9, 37, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 4, 2, 4, 0, 3, 0]","[28, 34, 10, 16, 27, 23, 37, 11, 45, 3, 13, 27, 0, 1, 0, 1, 5, 2, 0, 13, 3, 7, 8, 9, 11, 0, 0]","[1, 5, 1, 2, 4, 1, 0, 2, 3, 1, 1, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 4, 3, 3, 3, 0, 0]",2,3,4,0,3437.0275462963 +"https://github.com/michaelrsweet/htmldoc.git",2022-05-31 20:50:05,"b1ac82c83a4fd892064a43b68f1c8074d76a7379","[0, 0, 2, 4, 2, 5, 8, 0, 1, 5, 0, 1, 1, 0, 1, 0, 11, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,0,1,0,5679.7610416667 +"https://github.com/01org/isa-l.git",2017-02-24 21:50:34,"5ec8ea0e14884d9f445ed0f86878fa6f3c2347f7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 35, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 15, 0, 0, 0, 0, 0, 0, 6, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0,2846.4837615741 +"https://github.com/easyrdf/easyrdf.git",2020-08-27 00:26:51,"a921dd72517c0a03639ac2c82ae31a069b2d4380","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 3, 1, 5, 1, 8, 0, 2, 3, 1, 0, 6, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 0, 1, 3, 8, 0, 1, 0, 1, 1, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,4424.6065162037 +"https://github.com/plotly/plotly.R.git",2015-12-23 20:08:14,"4afeaf85d3c7e07a917a8f73035775fc58aec54b","[35, 24, 7, 13, 33, 49, 18, 15, 8, 4, 6, 28, 9, 3, 15, 19, 0, 4, 28, 7, 21, 2, 17, 0, 71, 25, 2]","[0, 1, 0, 0, 0, 4, 6, 7, 2, 2, 0, 5, 0, 1, 1, 1, 0, 0, 5, 0, 5, 1, 7, 0, 33, 8, 0]","[12, 0, 8, 48, 40, 35, 4, 14, 7, 28, 28, 61, 23, 6, 25, 6, 14, 8, 4, 13, 31, 12, 13, 1, 10, 44, 1]","[4, 0, 3, 11, 5, 7, 1, 6, 0, 3, 2, 7, 8, 1, 6, 1, 4, 2, 0, 3, 6, 3, 1, 0, 3, 0, 0]",3,3,8,2,3638.2152546296 +"https://github.com/psf/black.git",2018-03-16 08:05:36,"28547942498bbac24ba4165800382ae9b170c788","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 38, 30, 17, 19, 24, 5, 27, 28, 17, 20, 45, 16, 15, 1, 3, 1, 1, 1, 0, 0, 0, 23, 9, 0, 2, 1]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,50,0,2098.4397453704 +"https://github.com/biojava/biojava.git",2018-03-01 19:07:38,"6a1293edcadae8c53a550122a67a69b160a47de4","[0, 4, 0, 0, 2, 7, 14, 1, 0, 0, 2, 3, 0, 7, 5, 1, 0, 0, 4, 6, 4, 10, 6, 7, 7, 2, 2]","[0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 1, 3, 0, 1, 2, 1, 0]","[28, 43, 23, 4, 3, 2, 0, 0, 2, 10, 7, 11, 0, 3, 9, 7, 6, 5, 0, 5, 3, 5, 3, 0, 5, 12, 1]","[9, 14, 2, 1, 1, 1, 0, 0, 0, 2, 1, 2, 0, 0, 1, 1, 1, 1, 0, 3, 1, 2, 2, 0, 1, 4, 0]",5,2,3,1,5193.17375 +"https://github.com/davesteele/comitup",2021-02-22 18:27:38,"29ea71025138d758a082c94b66ca94f7b2349a33","[0, 0, 0, 13, 3, 2, 0, 0, 0, 2, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 10, 4, 2]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[1, 0, 7, 7, 1, 12, 26, 11, 13, 8, 29, 28, 67, 4, 9, 12, 4, 0, 16, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 0, 3, 1, 1, 1, 1, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,2830.0050115741 +"https://github.com/puppetlabs/puppetlabs-ntp.git",2012-12-10 23:28:20,"67a9d82a15ad068188f299acd8cb3a9ae2e6ddca","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 2, 2, 0, 0, 1, 19, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 1, 0, 0, 0, 0, 7, 1]","[3, 0, 0, 0, 0, 0, 0, 3, 0, 2, 5, 1, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",10,2,8,3,4661.5050231482 +"https://github.com/coreruleset/coreruleset.git",2017-09-13 01:20:15,"a822ebd053e8451a957d456f8af9af71734e1e63","[2, 14, 6, 5, 17, 4, 20, 9, 11, 0, 2, 2, 6, 3, 0, 2, 1, 15, 21, 3, 3, 0, 0, 6, 4, 3, 1]","[0, 4, 2, 0, 6, 0, 13, 3, 5, 0, 1, 0, 3, 2, 0, 1, 0, 2, 3, 2, 1, 0, 0, 0, 3, 3, 0]","[4, 0, 0, 0, 0, 0, 3, 5, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,1,2,4151.0876736111 +"https://github.com/mongoengine/flask-mongoengine",2013-05-02 10:42:12,"6ea122aa377e56b47d4f302dd995367daea27fec","[6, 0, 1, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 11, 2]","[4, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[32, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,2,4513.2838078704 +"https://github.com/Xastir/Xastir.git",2016-08-19 14:57:30,"45e06a4340a5107590567e4b094a344a4918d7c7","[4, 6, 0, 12, 12, 3, 2, 5, 0, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5658.7705902778 +"https://github.com/matrix-org/synapse.git",2015-04-03 14:09:06,"364c7f92b4b1e8d4425418b7e797381ca31ec1aa","[20, 32, 47, 73, 120, 114, 94, 43, 48, 105, 89, 15, 2, 62, 24, 57, 154, 150, 151, 112, 65, 80, 98, 53, 21, 3, 1]","[1, 4, 8, 7, 6, 5, 15, 6, 10, 11, 14, 3, 1, 10, 3, 7, 20, 28, 37, 31, 8, 16, 10, 7, 3, 0, 0]","[54, 65, 63, 158, 62, 119, 97, 56, 44, 10, 66, 44, 17, 50, 16, 22, 7, 35, 96, 102, 75, 34, 31, 29, 50, 29, 1]","[12, 5, 11, 16, 11, 23, 17, 22, 12, 2, 14, 3, 2, 8, 6, 3, 2, 9, 32, 35, 19, 10, 7, 13, 8, 10, 0]",12,2,7,5,3410.0313078704 +"https://gitlab.gnome.org/GNOME/gnome-calendar.git",2017-09-07 00:49:00,"8cbb5c1a4d9c52cc76b6f591d7279a340d66a992","[15, 35, 52, 0, 24, 27, 16, 16, 17, 23, 11, 4, 4, 32, 7, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 4, 3, 24, 5, 1, 2, 0, 1, 2, 0, 0, 5, 1, 3, 0, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,10,0,4242.462962963 +"https://github.com/zopefoundation/zope.i18nmessageid",2022-11-03 15:23:33,"cb6def05fdea2b2c40bcc154a159cfae0ed46b92","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[6, 2, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5530.7271759259 +"https://github.com/google/googletest.git",2017-12-09 04:20:55,"c82cd5e41e3755fc9ed65912ca3acaae69921dbb","[2, 9, 2, 7, 1, 2, 6, 28, 54, 26, 23, 64, 33, 12, 6, 3, 1, 1, 12, 11, 4, 1, 0, 1, 4, 14, 1]","[1, 2, 0, 0, 0, 0, 5, 14, 26, 11, 16, 37, 15, 10, 3, 2, 1, 0, 7, 5, 3, 0, 0, 0, 3, 9, 1]","[14, 13, 3, 26, 48, 26, 31, 6, 10, 30, 17, 32, 19, 14, 12, 21, 63, 71, 42, 3, 10, 9, 0, 11, 3, 5, 1]","[11, 9, 0, 15, 25, 11, 13, 3, 4, 16, 8, 23, 12, 5, 4, 9, 24, 21, 11, 2, 1, 3, 0, 7, 1, 4, 0]",52,6,24,5,5640.1267708333 +"https://github.com/rails/rails-html-sanitizer",2015-09-01 16:29:57,"7a09522351832235bd2a88387709b4c24d574ed4","[5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",3,1,3,0,3530.5188078704 +"https://github.com/Nuitka/Nuitka",2018-01-01 10:14:46,"1bb4258c7af8abe0141b44870749ad85858f7387","[21, 9, 35, 0, 0, 48, 11, 5, 2, 1, 0, 0, 1, 2, 42, 27, 0, 0, 0, 0, 0, 18, 0, 1, 0, 13, 5]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 1, 0, 0, 15, 17, 19, 26, 0, 6, 0, 98, 6, 18, 0, 0, 0, 0, 32, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,4,0,4857.7762847222 +"https://github.com/matthewdeanmartin/terminaltables",2015-09-06 00:19:37,"324140dfa724ecec0df89871061c31492d62bbef","[0, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[5, 0, 0, 0, 0, 4, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",3,0,1,0,2707.668125 +"https://github.com/bk138/gromit-mpx.git",2021-01-09 12:16:32,"6a3025e12fa739327a9a9e904f90b0c4b0ab1f1d","[0, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 13, 0, 7, 3, 17, 0, 21, 1, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5287.5376388889 +"https://github.com/jbeder/yaml-cpp",2015-04-08 19:30:07,"b43db54810846ec0e150d9d04c5b47c5cd9e8029","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 3, 0, 0, 0, 0, 11, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0,5649.6871064815 +"https://github.com/aws/aws-xray-sdk-python",2018-03-28 21:51:58,"fd8957402c8ae9af5607ba4ed4950909b0703f82","[0, 1, 0, 0, 0, 0, 3, 2, 0, 2, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 3, 4, 3, 2, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 3, 6, 2, 3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 7, 1, 3, 5, 4, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",13,1,15,1,2264.9942939815 +"https://github.com/joewing/jwm",2017-07-20 00:09:59,"c6d802a185b562f442ba78b6b27024d504fc7c6d","[0, 5, 2, 2, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 16, 8, 3, 0, 0, 2, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 17, 0, 0, 0, 0]","[0, 1, 2, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]",1,0,2,0,5370.4985648148 +"https://gitlab.com/libosinfo/osinfo-db-tools.git",2019-12-18 13:27:47,"58375c6cd12dd77ebbfb5cb9043cab6a6e71e2ad","[0, 0, 0, 10, 0, 4, 1, 0, 0, 0, 15, 1, 1, 3, 1, 0, 7, 0, 0, 0, 2, 0, 0, 5, 3, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 0, 0, 1, 5, 0, 0, 11, 0, 14, 2, 0, 3, 9, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,7,0,5133.7255092593 +"https://github.com/c4urself/bump2version",2018-04-19 14:54:17,"8d8a60628bfa2695e8bff9fb646d86114becb8b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 6, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0,3866.5811574074 +"https://github.com/pyjokes/pyjokes",2014-12-28 23:23:18,"cded1fd1647c814ed6ee64f1efd75d63e2689122","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,1,3166.3977546296 +"https://github.com/prawnpdf/prawn",2013-11-19 22:49:23,"bbcc479046697f6e6de0620bddb61af8888b0e21","[0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 3, 3, 0, 0, 2, 2, 6, 4, 5, 2, 0, 0, 1, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 3, 0]","[33, 6, 0, 12, 19, 3, 17, 7, 36, 4, 3, 1, 15, 21, 3, 21, 11, 1, 2, 10, 6, 0, 4, 0, 0, 0, 1]","[16, 0, 0, 1, 4, 1, 5, 1, 10, 0, 1, 0, 2, 2, 0, 5, 1, 0, 1, 3, 2, 0, 2, 0, 0, 0, 0]",9,3,12,2,5724.9282986111 +"https://github.com/ranger/ranger.git",2016-05-27 14:44:45,"ea355f491fb10d5ce054c7813d9abdfd3fc68991","[1, 3, 0, 1, 3, 1, 3, 3, 10, 1, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5250.5453472222 +"https://github.com/pgbackrest/pgbackrest",2019-10-08 19:27:17,"38b72eded4b0f295ed1f30f849f0a99f69e396d2","[10, 27, 16, 8, 15, 18, 21, 14, 11, 14, 11, 7, 7, 13, 7, 10, 9, 11, 13, 22, 8, 18, 14, 15, 25, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 4, 0, 3, 5, 20, 29, 16, 24, 17, 13, 5, 6, 12, 21, 20, 5, 8, 9, 3, 16, 26, 37, 34, 34, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,3684.8419791667 +"https://github.com/seccomp/libseccomp",2020-01-17 01:26:24,"05452332281d60e4116198f1209d74a90c8a3076","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 2, 2, 9, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 7, 8, 2, 13, 6, 1, 5, 0, 0, 0, 0, 1, 0, 4, 2, 12, 1, 3, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,7,0,4323.2139467593 +"https://github.com/osmcode/libosmium.git",2015-11-05 08:59:36,"fc78d040066eab780302efb395d94df3fa394da2","[15, 26, 1, 4, 1, 5, 4, 10, 16, 4, 7, 5, 16, 0, 14, 38, 11, 1, 1, 4, 0, 4, 10, 9, 82, 48, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0]","[17, 15, 12, 19, 5, 1, 0, 0, 1, 5, 8, 1, 32, 1, 8, 5, 0, 2, 1, 1, 6, 4, 4, 5, 27, 15, 1]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0,3645.6736805556 +"https://github.com/cubiq/iscroll",2016-01-07 13:07:33,"31ff659ed39a9e2a4b7e2a3079ca6c8f391884f9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 8, 0, 0, 0, 0, 0, 0, 0, 5, 8, 4, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,7,0,2222.4944791667 +"https://github.com/pytest-dev/pytest-bdd.git",2022-07-08 13:57:11,"6af0350c5bf9125958b83ba16b5c8d73d0e0f719","[1, 5, 0, 1, 0, 5, 25, 19, 5, 0, 0, 0, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 1, 32, 2]","[0, 0, 0, 0, 0, 0, 7, 1, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0]","[39, 12, 26, 14, 0, 20, 17, 4, 2, 0, 4, 5, 0, 2, 0, 0, 11, 36, 4, 0, 7, 2, 2, 2, 2, 8, 0]","[6, 6, 3, 1, 0, 3, 4, 1, 1, 0, 2, 2, 0, 1, 0, 0, 3, 9, 2, 0, 2, 1, 1, 1, 0, 4, 0]",3,0,6,1,3909.5599768519 +"https://github.com/jupyter/jupyter_core",2015-07-14 17:02:24,"3619a51a8e318fbc45e90552ca694baf6704d99f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 7, 3, 4, 3, 1, 0, 11, 6, 0, 18, 15, 7, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 0, 3, 2, 0, 4, 4, 1, 1, 1]","[11, 0, 0, 0, 12, 0, 4, 0, 6, 9, 1, 0, 2, 1, 1, 5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 4, 0, 2, 0, 2, 3, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,5,4,3175.9166550926 +"https://github.com/ClusterLabs/pacemaker",2016-08-24 21:43:04,"6b1d65bc4e190086adc47b4e68be2a5108b4bc06","[40, 11, 13, 27, 3, 9, 5, 30, 12, 28, 16, 14, 22, 44, 48, 39, 54, 25, 23, 9, 5, 23, 18, 18, 20, 37, 2]","[12, 3, 4, 7, 1, 3, 1, 5, 6, 9, 3, 6, 8, 13, 13, 9, 15, 7, 8, 3, 1, 6, 4, 5, 5, 8, 0]","[23, 10, 6, 13, 11, 14, 18, 5, 2, 19, 38, 7, 9, 15, 12, 23, 8, 0, 0, 9, 13, 18, 4, 13, 0, 2, 1]","[8, 2, 1, 3, 4, 3, 5, 1, 1, 4, 8, 2, 3, 6, 5, 5, 4, 0, 0, 2, 1, 2, 2, 4, 0, 0, 0]",7,0,6,1,5780.1951388889 +"https://github.com/P403n1x87/austin",2018-09-23 21:36:13,"c6a3ce5b7ba320b4a935a4c4aad0fc877a196c1f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 9, 1, 0, 3, 3, 0, 5, 1, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,1837.728599537 +"https://github.com/osmcode/osmium-tool.git",2016-08-08 08:29:21,"e6748cc3837e4792e8452d5c227e740434e10539","[1, 0, 0, 0, 11, 0, 8, 14, 0, 0, 3, 0, 0, 1, 0, 7, 2, 8, 3, 0, 0, 0, 2, 1, 7, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[10, 0, 8, 0, 18, 21, 0, 0, 4, 0, 2, 3, 1, 9, 4, 0, 3, 2, 1, 0, 0, 0, 11, 49, 5, 0, 1]","[0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,1,1,1,3639.05375 +"https://github.com/rails/jbuilder",2015-09-01 15:43:29,"f060fd54b106e6a43c74a977fa71d3d568796949","[8, 1, 1, 0, 2, 4, 0, 0, 0, 0, 9, 0, 0, 4, 7, 0, 4, 1, 1, 3, 0, 0, 0, 0, 0, 0, 2]","[2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",8,1,8,1,4285.4706134259 +"https://github.com/zopefoundation/BTrees.git",2022-03-09 07:12:29,"472179656f901a1967f71723f43331846ca804b0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4005.3823842593 +"https://github.com/Xaviju/inkscape-open-symbols",2016-12-14 22:46:33,"17224694613cea92fdd5fabbd34bfde40bff9c42","[0, 0, 0, 3, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[3, 9, 6, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,1,2971.3217939815 +"https://github.com/ocsigen/js_of_ocaml.git",2019-07-21 10:28:02,"1c1c79271a6c987c484aec464274166349c6488b","[12, 14, 2, 10, 0, 0, 0, 6, 0, 2, 0, 8, 6, 9, 14, 1, 9, 5, 1, 0, 12, 0, 0, 3, 7, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 13, 3, 0, 4, 0, 0, 2, 8, 29, 1, 8, 9, 24, 4, 23, 10, 7, 1, 11, 0, 0, 9, 11, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",9,0,10,0,5063.2903472222 +"https://invent.kde.org/office/ghostwriter",2017-06-18 18:17:47,"fb0d26ac9afdec01c755925ab2b17f4dd3a56760","[3, 5, 0, 0, 3, 5, 0, 0, 1, 5, 4, 19, 2, 3, 13, 1, 9, 0, 9, 2, 5, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,0,0,3031.7841435185 +"https://github.com/lxc/lxcfs.git",2014-12-12 12:44:09,"60f73aff3126dc2850a4fb698f911e4279ba46b0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 5, 5, 5, 4, 9, 1, 0, 4, 2, 0, 1, 1, 0, 1, 14, 2, 6, 1, 3, 3, 2, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,4,6,0,3289.0780671296 +"https://github.com/swaywm/wlroots",2017-06-06 14:54:53,"d79f5780225d2416f3fff9dcebeac1d64110bb94","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 12, 13, 0, 0, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 3, 0]","[32, 26, 45, 10, 11, 11, 4, 6, 39, 138, 72, 52, 26, 22, 19, 61, 155, 143, 56, 80, 94, 70, 70, 94, 18, 16, 1]","[2, 4, 6, 1, 1, 2, 2, 3, 5, 27, 20, 4, 5, 6, 1, 10, 24, 36, 13, 30, 20, 19, 20, 27, 7, 7, 0]",3,4,22,2,1651.0250925926 +"https://github.com/jendrikseipp/vulture.git",2017-12-28 00:44:37,"b6342c0a3e861731a236a64a3484057fd551fa75","[11, 14, 23, 51, 15, 15, 29, 0, 7, 1, 0, 0, 3, 2, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 2, 22, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0,4281.7359490741 +"https://gitlab.com/libidn/libidn2",2016-12-28 08:27:38,"b374503a8562449644d48977d5df202c12687162","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 12, 14, 0, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 28, 2, 0, 28, 12, 11, 20, 2, 21, 75, 12, 10, 6, 0, 12, 12, 1, 0, 0, 0, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 18, 5, 2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0,4708.2527662037 +"https://git.osgeo.org/gitea/postgis/postgis.git",2015-10-19 10:52:10,"775817c24521613b747bcdb9a8bd26fe0bfe4583","[15, 29, 6, 27, 27, 48, 28, 42, 8, 48, 42, 9, 12, 33, 11, 28, 11, 61, 37, 15, 8, 17, 35, 49, 25, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 19, 7, 16, 25, 19, 7, 24, 11, 10, 40, 15, 9, 3, 2, 31, 2, 51, 36, 14, 8, 7, 1, 3, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5783.9700115741 +"https://github.com/Intel-Media-SDK/MediaSDK",2017-04-04 14:54:50,"1ec49c728ede53d813cc13da086d8436edcfc9d7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,2234.0838888889 +"https://github.com/capistrano/sshkit.git",2013-01-16 17:22:25,"fc3f251b04738ee3e0f14abcd9f8af8e259b83c8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 35, 2, 0, 0, 2, 1, 0, 1, 8, 5, 10, 0, 1, 0, 0, 5, 0, 0, 0, 0, 7, 4, 0, 12, 3, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,3,0,3961.9651041667 +"https://github.com/erlware/erlware_commons.git",2013-04-09 22:40:31,"a1fc04f2b76f20d0f07d2197aaa14ee6d844960e","[0, 3, 10, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 10, 0, 3, 0, 0, 4, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1]","[1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",5,0,1,3,4657.9532060185 +"https://github.com/royhills/arp-scan",2023-02-13 21:30:40,"b9e5e5c354ec6244349732a71b56e07b626c56d8","[0, 0, 2, 11, 14, 0, 7, 6, 2, 5, 15, 12, 8, 0, 2, 1, 2, 1, 0, 0, 0, 5, 6, 7, 2, 6, 2]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5689.2689583333 +"https://github.com/tpm2-software/tpm2-abrmd.git",2017-03-23 17:58:26,"ff0e028f37e1b943592e2a1fe3c60435a8fc71e8","[8, 13, 1, 18, 0, 6, 5, 13, 9, 0, 0, 6, 10, 0, 14, 16, 7, 12, 23, 2, 0, 4, 8, 3, 8, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 55, 18, 27, 16, 0, 21, 4, 11, 25, 7, 19, 12, 2, 2, 0, 0, 1, 2, 4, 16, 31, 3, 0, 0, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,9,0,2473.8150231482 +"https://github.com/joaotavora/yasnippet",2015-03-18 19:59:28,"b9989f8c8cc3068f264214a5efb236bbcce65075","[2, 2, 3, 3, 1, 0, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0, 1, 2]","[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[5, 0, 27, 3, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 5, 1, 0]","[1, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",5,0,4,0,5674.0685300926 +"https://github.com/AFLplusplus/AFLplusplus.git",2019-09-03 09:19:27,"f094908f549151e604c92286e791816fae7d67fa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 7, 7, 8, 17, 23, 30, 28, 20, 12, 18, 4, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 1, 2, 4, 3, 2, 3, 2, 0, 0, 0, 0]","[27, 31, 37, 38, 23, 25, 24, 51, 41, 40, 32, 7, 42, 32, 26, 22, 25, 10, 0, 6, 0, 0, 0, 0, 2, 0, 0]","[3, 4, 7, 6, 5, 4, 1, 11, 11, 10, 4, 3, 10, 5, 4, 4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",18,3,13,5,1658.7534375 +"https://github.com/Graylog2/gelf-rb",2014-04-15 14:21:00,"2f5d3c33f1ca3f8e7c1d1fa915ff0a903a6cf31b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4546.1701157407 +"https://gitlab.gnome.org/GNOME/vala.git",2019-01-05 20:41:00,"8e4a0f7e1370f97195b1ed4553059a5864bd3c56","[22, 4, 11, 6, 13, 10, 0, 4, 2, 3, 39, 4, 0, 7, 6, 24, 24, 23, 29, 40, 41, 13, 5, 17, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 26, 28, 8, 6, 12, 17, 85, 15, 115, 27, 15, 10, 69, 38, 7, 19, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,3,0,5785.9802199074 +"https://github.com/solnic/virtus.git",2013-10-26 05:51:00,"441f6ddd1e58ce45e0b2209ed628a2519032246e","[2, 0, 2, 7, 6, 33, 3, 4, 0, 0, 0, 1, 2, 0, 0, 0, 0, 4, 0, 10, 83, 53, 58, 11, 4, 0, 2]","[1, 0, 1, 2, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 5, 0, 0, 0, 0, 0]","[2, 2, 0, 1, 0, 2, 8, 2, 0, 0, 3, 0, 0, 4, 0, 0, 0, 2, 0, 3, 0, 6, 2, 0, 6, 0, 0]","[0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 2, 0, 0]",11,1,11,0,3718.9197800926 +"https://github.com/prometheus/snmp_exporter",2015-07-30 16:14:38,"c425f56b444ef4757d99051c74095fa5b58b15de","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 3, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0]",1,1,5,0,3213.7672916667 +"https://github.com/google/gopacket.git",2013-05-16 18:03:59,"166c796597299a4e2e68b8423ef3ced877c2f041","[9, 21, 27, 40, 39, 22, 9, 25, 23, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1]","[2, 0, 2, 5, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 20, 5, 24, 7, 0, 0, 5, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 6, 13, 0, 0, 0, 2, 0, 0]","[0, 4, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",4,0,0,1,3976.8553587963 +"https://github.com/emcrisostomo/fswatch.git",2015-08-09 19:38:54,"20269b8a9686886a07f656d657bc0ef081e4aab6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4816.5607060185 +"https://github.com/zkat/ssri.git",2017-03-23 04:55:44,"cdb6d7d19ded4d8126c2753b9c15491f8c3f83bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 19, 5, 2, 1, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2084.4809606482 +"https://github.com/eproxus/meck.git",2016-12-22 10:15:33,"f05a82d0ff8e8d82a3c5a7c19bc07950756e8431","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1,4901.9858333333 +"https://github.com/tkf/emacs-jedi.git",2013-06-15 17:51:52,"1022dd47ca02fec5355958927e57dfd63bdfa9ec","[0, 14, 0, 1, 7, 12, 31, 6, 9, 1, 0, 15, 16, 3, 9, 0, 0, 0, 6, 0, 2, 3, 26, 24, 39, 10, 2]","[0, 2, 0, 0, 1, 1, 2, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 2, 4, 2, 2, 0]","[5, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0,3462.8411458333 +"https://gitlab.dune-project.org/core/dune-common",2015-11-02 14:55:05,"c266380f5d0a69c7d0a90db4bf8995571fdccca4","[14, 16, 11, 4, 2, 7, 10, 2, 26, 13, 4, 7, 13, 0, 3, 4, 4, 4, 3, 3, 2, 11, 1, 23, 18, 9, 1]","[0, 2, 1, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0]","[11, 4, 25, 52, 7, 11, 22, 0, 0, 0, 1, 5, 30, 15, 18, 30, 27, 8, 15, 7, 5, 4, 15, 0, 0, 2, 1]","[1, 1, 1, 7, 1, 4, 3, 0, 0, 0, 0, 3, 4, 5, 4, 4, 9, 2, 6, 3, 2, 0, 5, 0, 0, 1, 0]",5,6,10,0,5758.7812037037 +"https://github.com/flask-restful/flask-restful",2012-10-17 04:07:16,"a4465e3e9cc4c30e7f53e0b908f734a42ed32da4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 5, 7, 2, 6, 7, 14, 2, 1, 5, 3, 1, 1, 0, 0, 0, 4, 8, 0, 6, 8, 9, 30, 0, 1]","[6, 0, 0, 1, 2, 1, 2, 1, 6, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 4, 0, 2, 1, 2, 3, 0, 0]",2,5,15,0,3867.9860763889 +"https://github.com/davidcelis/api-pagination.git",2014-03-15 02:16:51,"c57fc392f9adfd04a54bcdba2dfe3cac2497e619","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 4, 0, 0, 3, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 6, 4, 0, 4, 0, 2, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,0,4,0,3040.7300578704 +"https://github.com/dask/partd.git",2019-10-21 13:07:37,"f5db249faea99fb0e39c113f6f17f91c4ec34101","[0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,3130.7778009259 +"https://github.com/Tux/Text-CSV_XS.git",2015-08-07 06:45:37,"450831e5bda9ba59e33b6aa19177b3e1b50c6131","[5, 0, 0, 10, 0, 1, 0, 1, 1, 2, 7, 7, 0, 0, 7, 5, 0, 9, 5, 0, 0, 5, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 1, 0, 0, 2, 0, 0, 1, 3, 0, 2, 1, 0, 5, 0, 3, 0, 0, 0, 4, 2, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0,5755.1094907407 +"https://github.com/intel/compute-runtime",2020-02-28 13:40:54,"efa06319677bdf9ccdbba1bc1110774992e1474e","[52, 48, 42, 34, 36, 33, 35, 44, 34, 38, 50, 41, 49, 42, 38, 58, 14, 23, 37, 52, 54, 56, 60, 70, 64, 74, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 66, 85, 95, 68, 63, 49, 51, 49, 60, 50, 50, 60, 53, 31, 48, 57, 46, 50, 62, 37, 76, 65, 51, 50, 52, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,0,28,0,2183.6453703704 +"https://github.com/alastair/python-musicbrainz-ngs",2015-06-02 12:16:42,"39368538a5f0c79dfce6a9750a005232b1c27e93","[1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[10, 9, 0, 0, 1, 1, 1, 3, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 1, 0, 3, 0, 0, 2, 4, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]",1,0,2,0,3992.7430092593 +"https://github.com/jquery/sizzle.git",2013-05-14 19:18:42,"20a1a95a3b4882ec53927e0949df5fe7ed5f0c93","[2, 1, 3, 9, 19, 6, 0, 0, 3, 9, 2, 2, 1, 5, 6, 2, 1, 4, 9, 0, 7, 4, 7, 1, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 7, 0, 0, 0, 2, 5, 13, 3, 0, 0, 0, 0, 10, 0, 0, 8, 0, 1, 0, 8, 1, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,4,1,5491.7580787037 +"https://github.com/google/stenographer",2014-12-12 22:05:46,"fb8e60c0ee41f94ffb0f9cb707247767f52085ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 24, 20, 17, 8, 5, 0, 21, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 7, 2, 1, 0, 7, 6, 0]","[22, 2, 0, 32, 24, 18, 21, 15, 33, 31, 3, 3, 16, 3, 5, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 1]","[11, 0, 0, 10, 12, 7, 9, 7, 11, 14, 0, 2, 5, 1, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",5,2,4,5,2239.756412037 +"https://gitlab.com/libosinfo/libosinfo.git",2019-12-18 13:28:22,"27cc7e31b9c5cd9ba83241711cf6b8a042fa822b","[6, 7, 2, 28, 5, 4, 5, 0, 5, 0, 1, 0, 8, 21, 4, 1, 8, 0, 0, 7, 3, 0, 2, 15, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 19, 8, 0, 2, 1, 0, 1, 3, 6, 3, 0, 1, 11, 0, 27, 15, 0, 15, 3, 6, 12, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,10,0,5133.7286805556 +"https://gitlab.gnome.org/GNOME/balsa",2018-05-27 01:32:46,"910f3b1f9e08dea61a11b235bfa8868336101799","[2, 3, 3, 1, 0, 5, 3, 3, 4, 1, 5, 5, 5, 5, 1, 2, 4, 1, 0, 1, 0, 0, 1, 1, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 6, 3, 12, 14, 6, 1, 6, 4, 1, 7, 7, 0, 5, 3, 12, 0, 0, 0, 0, 5, 1, 2, 3, 2, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",4,1,0,0,5766.8402083333 +"https://github.com/libxsmm/libxsmm",2017-06-15 11:45:51,"16cc0585da06090c4216b4bf30e3845514f98991","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2814.5005324074 +"https://github.com/jmcnamara/XlsxWriter",2013-07-25 19:34:18,"16a0a5094c5f0801595aec278fa4ad2679df271b","[13, 7, 13, 19, 21, 21, 14, 16, 21, 33, 10, 15, 22, 8, 0, 1, 0, 0, 2, 15, 10, 7, 3, 0, 0, 5, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0]","[2, 0, 5, 22, 28, 6, 1, 7, 4, 0, 0, 7, 10, 1, 0, 15, 13, 0, 8, 0, 0, 0, 9, 3, 4, 6, 1]","[0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]",6,0,5,1,3960.6774074074 +"https://github.com/cesbit/libcleri.git",2018-10-11 12:25:34,"9adc7c4b319f8ec614751304550fedeb4d70b38f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 5, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0]","[16, 1, 3, 1, 5, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2711.9692592593 +"https://github.com/deckar01/task_list.git",2014-11-21 23:27:44,"b1989c447979a8a748dc7e518f50de0eb3b9cc81","[6, 0, 3, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 1, 21, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,3500.9144675926 +"https://github.com/lostisland/faraday_middleware",2013-01-06 19:15:47,"04f41576b2f37bce2b2d7e1ce737e17daaafcd4d","[0, 1, 0, 0, 0, 2, 0, 6, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,1,4563.5818981482 +"https://github.com/jackfranklin/gulp-load-plugins",2016-01-05 10:40:33,"f914cbed3a9085662fbd1b3815430b11272cac1e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 3, 1, 0, 3, 0, 0, 0, 0, 3, 0, 0]","[1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0,3321.8455787037 +"https://github.com/netty/netty",2014-03-06 16:54:59,"3cf463825598b910e3f5e6e6f6445ce294b972ff","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 0, 0, 0, 1, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5605.2634027778 +"https://github.com/X0rg/CPU-X.git",2020-11-14 18:16:38,"49d9f02e6a88c6fcb51606b5c28859bcac6dc5d0","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2770.4909606482 +"https://github.com/simd-everywhere/simde",2020-03-07 03:06:05,"0ce105d8307d3bc67809088bb16ebd7ec0daf6fb","[0, 0, 0, 0, 5, 17, 7, 0, 2, 21, 2, 9, 19, 11, 31, 13, 15, 24, 42, 33, 3, 39, 36, 7, 16, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 6, 33, 53, 35, 27, 29, 34, 63, 64, 58, 45, 26, 81, 56, 94, 42, 45, 37, 75, 18, 30, 28, 30, 16, 27, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,21,1,2452.9409375 +"https://github.com/pypa/pipenv.git",2017-10-18 15:05:05,"8ab98afc93fb4eb349b0fd3d4a37d9d6bcd2f583","[20, 17, 2, 26, 9, 32, 15, 23, 9, 9, 0, 3, 1, 2, 2, 0, 0, 0, 13, 146, 282, 269, 498, 188, 37, 45, 2]","[3, 3, 1, 5, 2, 6, 2, 7, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, 26, 25, 49, 27, 11, 16, 1]","[41, 32, 25, 11, 31, 19, 12, 21, 14, 19, 2, 7, 34, 6, 39, 25, 16, 45, 87, 352, 300, 110, 40, 65, 104, 120, 1]","[12, 10, 9, 3, 7, 7, 4, 4, 9, 1, 0, 1, 13, 3, 6, 3, 4, 10, 18, 23, 51, 32, 12, 15, 27, 43, 0]",74,1,96,5,2511.301400463 +"https://github.com/lunarmodules/penlight",2013-05-06 14:56:41,"8f4f4290ad44efe8c3a9cde0f13fde948e69c8e8","[0, 4, 0, 0, 6, 0, 0, 1, 3, 5, 2, 0, 1, 0, 0, 6, 1, 4, 1, 5, 1, 2, 0, 8, 4, 12, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 3, 1, 2, 0]","[4, 0, 11, 3, 0, 5, 10, 3, 0, 0, 2, 0, 0, 4, 0, 4, 0, 6, 12, 4, 0, 0, 2, 0, 0, 0, 0]","[2, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0]",10,2,5,1,4944.0652083333 +"https://github.com/OCamlPro/alt-ergo.git",2020-04-10 17:09:18,"c310259a8b0770838b560cb3b1f7315bd7025625","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 6, 0, 0, 3, 13, 8, 0, 2, 0, 69, 2, 2, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 2, 1, 2, 0, 0, 0, 1, 1, 0, 0]","[2, 0, 1, 1, 0, 3, 2, 2, 2, 1, 1, 0, 2, 21, 14, 1, 6, 0, 3, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,2,1,2224.8810300926 +"https://github.com/sopel-irc/sopel.git",2013-03-30 04:25:05,"12bdf43ab2d2f23413a625a843a1cafea25c0386","[5, 6, 6, 8, 26, 37, 26, 9, 0, 4, 0, 6, 3, 3, 6, 14, 11, 1, 5, 18, 6, 25, 39, 2, 10, 6, 2]","[1, 1, 0, 1, 5, 3, 8, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 2, 1, 1, 5, 0, 0, 1, 0]","[5, 3, 11, 21, 18, 8, 7, 31, 43, 39, 18, 18, 61, 12, 13, 9, 2, 19, 6, 2, 21, 12, 1, 18, 12, 2, 1]","[1, 0, 4, 4, 4, 0, 1, 5, 6, 6, 1, 6, 2, 2, 0, 2, 0, 1, 0, 0, 5, 3, 0, 0, 2, 1, 1]",2,4,17,1,5115.8216666667 +"https://github.com/mapbox/mapnik-vector-tile.git",2015-07-27 20:50:59,"72b1c48f154b7f94607babda3587d8e976795e4e","[1, 4, 19, 31, 1, 2, 1, 0, 17, 37, 7, 8, 6, 14, 29, 1, 5, 5, 20, 31, 21, 15, 1, 0, 10, 2, 2]","[0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 1, 2, 2, 3, 3, 3, 0, 0, 2, 1, 0]","[11, 9, 15, 9, 0, 0, 4, 0, 2, 5, 11, 3, 18, 4, 1, 0, 0, 0, 3, 11, 18, 3, 3, 16, 2, 54, 1]","[2, 2, 3, 1, 0, 0, 1, 0, 0, 1, 2, 1, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 6, 0]",3,2,5,2,3418.2549652778 +"https://github.com/rails/jquery-rails.git",2013-05-29 06:11:48,"9ca9c33e1d944e7b9c8e732bf5970f2edf10bbba","[0, 0, 0, 0, 0, 1, 0, 6, 0, 1, 9, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 1, 3, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,5,3,4697.0958680556 +"https://github.com/DamienCassou/beginend.git",2015-05-29 11:11:10,"1b53cb8802f4e7de35f5f3e794bfffdaa70a03bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0,3077.3105208333 +"https://github.com/EnterpriseDB/mysql_fdw.git",2014-12-12 02:52:46,"619d5917b650642c33d905bf9df69213340e4bf9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 9, 0, 0, 1, 2, 0, 0, 2, 3, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 5, 2, 2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,1,4475.7229861111 +"https://gitlab.gnome.org/GNOME/gnome-builder.git",2015-12-14 07:53:09,"6a73540b64ede264453b90dded50a1206e97ca85","[177, 11, 6, 6, 32, 5, 4, 5, 4, 29, 66, 107, 34, 103, 61, 115, 37, 98, 7, 75, 25, 12, 17, 4, 5, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[370, 76, 7, 7, 64, 38, 49, 27, 64, 104, 40, 64, 40, 47, 41, 29, 27, 22, 53, 93, 57, 117, 52, 18, 22, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",41,0,42,0,3382.6812615741 +"https://github.com/PDAL/PDAL.git",2014-04-25 16:05:11,"6f827a7519822ca56a52da4b9a37a03dfc6bef85","[0, 17, 11, 15, 11, 14, 8, 19, 7, 23, 39, 13, 24, 37, 10, 8, 13, 8, 0, 2, 14, 19, 15, 30, 29, 4, 2]","[0, 2, 4, 2, 3, 0, 0, 0, 0, 5, 4, 1, 2, 14, 2, 2, 4, 2, 0, 0, 3, 6, 5, 13, 15, 2, 1]","[36, 21, 22, 42, 9, 38, 11, 9, 12, 10, 27, 34, 12, 10, 43, 34, 76, 46, 23, 57, 54, 49, 26, 39, 18, 25, 1]","[12, 10, 2, 20, 3, 13, 1, 2, 2, 3, 6, 9, 0, 0, 2, 4, 21, 11, 7, 19, 20, 19, 8, 9, 6, 9, 0]",6,3,5,1,4697.1094444445 +"https://github.com/pyparsing/pyparsing",2019-07-16 04:22:27,"6ea260a4211da88f3d28fd6266e6765a6c209baf","[0, 0, 3, 0, 0, 0, 0, 3, 1, 0, 12, 10, 1, 2, 0, 0, 0, 0, 4, 5, 2, 2, 0, 8, 20, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[5, 11, 10, 6, 8, 5, 5, 2, 0, 0, 6, 0, 3, 0, 2, 3, 6, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,7,1,4066.1944907407 +"https://codeberg.org/freedroid/freedroid-src.git",2019-01-17 23:15:08,"21d21bd66b64e15ae89ea1f20e00280e031120e7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 9, 2, 3, 0, 1, 0, 2, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[4, 0, 3, 0, 0, 20, 3, 3, 0, 6, 6, 0, 5, 5, 1, 9, 3, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5650.9641203704 +"https://github.com/gcsideal/syslog-ng-debian",2015-09-11 19:28:33,"31ebc2ecbfc1a49710b4401e5678dc7c3ad4edcf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,4178.4473842593 +"https://github.com/SELinuxProject/selinux.git",2019-06-14 18:58:52,"dbffdf71351e2c53b4d8b82f4035594f09e9d7c7","[6, 0, 7, 17, 4, 6, 5, 8, 8, 9, 2, 0, 3, 3, 1, 0, 1, 2, 0, 1, 0, 4, 3, 3, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 5, 0, 0, 3, 2, 7, 0, 0, 0, 0, 2, 1, 15, 9, 6, 2, 4, 6, 1, 4, 4, 3, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,6,0,5593.8026157407 +"https://github.com/xtaran/unburden-home-dir",2015-12-25 21:56:04,"9af7a85895b1bf941a082eabaea77bf128208e5f","[4, 9, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 18, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 14, 3, 9, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4201.5461342593 +"https://github.com/elasticsearch/curator.git",2015-03-24 21:36:44,"8b67dda6fe56def7d90c02183e603544e8885473","[14, 2, 16, 0, 3, 1, 0, 0, 0, 3, 7, 0, 4, 4, 4, 0, 4, 12, 6, 4, 0, 2, 33, 40, 17, 10, 2]","[6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 2, 5, 3, 1, 0, 0, 1, 16, 7, 5, 0]","[31, 8, 2, 18, 6, 2, 0, 0, 18, 0, 0, 3, 17, 19, 7, 12, 10, 0, 0, 5, 2, 7, 18, 0, 0, 0, 0]","[11, 1, 1, 8, 3, 1, 0, 0, 9, 0, 0, 2, 7, 8, 4, 5, 2, 0, 0, 3, 1, 3, 7, 0, 0, 0, 0]",8,1,9,0,4523.4816435185 +"https://github.com/howardabrams/node-mocks-http",2015-03-10 04:54:01,"a248c3fcba26bc13c6df9e888fa17bbea2e9e25c","[2, 5, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 5, 2, 2, 0, 0, 0, 0, 11, 4, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 2, 3, 0]","[18, 25, 8, 17, 26, 5, 0, 8, 0, 0, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[3, 6, 2, 3, 5, 3, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,4,1,4315.2549074074 +"https://github.com/JabRef/jabref.git",2014-07-01 22:08:09,"eb07ee5b555afde0f1c0446471761d645f7114dc","[0, 0, 0, 0, 0, 0, 3, 1, 0, 6, 110, 101, 6, 2, 0, 2, 1, 1, 2, 16, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 5, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 6, 4, 1, 2, 1, 4, 3, 2, 5, 0, 0, 0, 2, 9, 18, 14, 0, 0, 0, 2, 4, 0, 0, 0, 0]","[0, 0, 1, 1, 0, 1, 0, 1, 2, 2, 1, 0, 0, 0, 0, 3, 5, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0]",13,5,15,3,3914.4709953704 +"https://github.com/awslabs/amazon-ecr-credential-helper",2018-05-01 17:15:42,"6f57df714f4290a49f8239a839352ae56dd606dd","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 6, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0]",2,0,5,0,2759.7970717593 +"https://github.com/mishoo/UglifyJS2",2018-02-06 06:19:28,"c0b8f2a16d4804fe302e5db91995735ee7041c8d","[3, 4, 1, 5, 6, 6, 9, 7, 3, 13, 23, 16, 18, 15, 12, 16, 26, 20, 26, 26, 27, 31, 33, 29, 6, 18, 2]","[0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 6, 4, 2, 4, 2, 2, 0, 0]","[15, 15, 10, 9, 4, 8, 6, 10, 11, 6, 3, 11, 10, 5, 4, 5, 5, 1, 0, 6, 5, 3, 3, 2, 3, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,3,0,3886.0955208333 +"https://github.com/kilobyte/ndctl",2018-06-29 17:24:54,"08a96c61a15b5588733cbfb39b3e6a5b4773c432","[0, 1, 0, 2, 11, 9, 8, 11, 8, 1, 15, 4, 12, 1, 14, 6, 7, 0, 0, 17, 2, 1, 4, 8, 6, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 12, 7, 6, 10, 6, 20, 3, 0, 1, 2, 1, 0, 12, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,3,0,3210.1365509259 +"https://github.com/ros/robot_state_publisher",2017-03-22 21:13:04,"3fa5bd8e3312fa0581c1dffd019077b1af09b6c6","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4113.0053356482 +"https://github.com/checkpoint-restore/criu.git",2020-10-20 07:18:24,"808684c99eb4c0cf12a5725cd6bbe3fea191273c","[20, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,0,0,4462.4346296296 +"https://github.com/cleishm/libneo4j-client",2016-06-13 06:40:47,"f60c821a6bc5580f573fc1a0ed36d21ebb810ece","[0, 0, 0, 62, 29, 3, 10, 9, 6, 3, 5, 0, 6, 1, 0, 0, 0, 4, 0, 3, 0, 4, 4, 1, 3, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 28, 14, 0, 20, 6, 2, 0, 17, 9, 9, 2, 0, 0, 3, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,1826.3064351852 +"https://github.com/kivy/kivy",2012-09-17 20:36:50,"a5d8ca9bb4dfa69c61d754324a01df3a9bdb4350","[36, 18, 59, 16, 8, 13, 6, 13, 18, 22, 11, 32, 28, 46, 22, 37, 41, 26, 49, 39, 55, 14, 2, 19, 12, 7, 2]","[6, 3, 13, 7, 2, 3, 2, 3, 1, 8, 2, 7, 4, 19, 5, 10, 4, 4, 14, 8, 15, 4, 0, 5, 1, 3, 0]","[33, 44, 30, 28, 58, 68, 34, 13, 13, 30, 34, 61, 31, 26, 21, 13, 20, 9, 22, 43, 17, 39, 23, 11, 33, 24, 1]","[6, 10, 9, 6, 6, 11, 6, 3, 6, 7, 11, 19, 8, 4, 5, 2, 7, 2, 4, 9, 3, 10, 8, 1, 5, 8, 0]",23,6,37,3,4786.8645601852 +"https://github.com/intel/libva.git",2017-01-22 05:40:11,"1c745cf56f36a117fcb12a2611918f3e40b26f66","[0, 4, 1, 0, 33, 0, 1, 3, 4, 0, 0, 0, 0, 1, 8, 2, 2, 2, 0, 0, 0, 1, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[11, 19, 3, 1, 1, 0, 1, 1, 0, 2, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 24, 0, 1, 0, 0, 0, 0]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,9,0,5773.8606712963 +"https://gitlab.gnome.org/GNOME/geary.git",2018-08-01 05:28:08,"c43d86f35a840bdc56753676d5d54550bf70b744","[35, 15, 3, 10, 13, 2, 5, 1, 0, 9, 24, 3, 3, 8, 5, 17, 36, 4, 47, 13, 2, 7, 16, 3, 5, 16, 2]","[1, 1, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 3, 0, 9, 2, 0, 0, 6, 0, 1, 6, 0]","[15, 3, 0, 14, 31, 3, 15, 7, 13, 11, 11, 6, 6, 4, 7, 4, 4, 63, 10, 1, 18, 28, 29, 36, 0, 0, 1]","[0, 1, 0, 3, 1, 0, 5, 2, 3, 3, 2, 2, 1, 0, 0, 1, 0, 3, 0, 0, 0, 3, 4, 5, 0, 0, 0]",7,0,9,0,4622.4151851852 +"https://github.com/cyrusimap/cyrus-sasl.git",2019-12-06 01:19:49,"23ee2d7fad94018164930808f6699c32209d0d32","[0, 1, 0, 2, 0, 0, 0, 0, 7, 5, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,5510.1634606482 +"https://gitlab.gnome.org/GNOME/template-glib.git",2016-01-11 12:08:34,"e514833a80a262377781325a56502d313091e40d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 2, 0, 2, 0, 1, 3, 3, 0, 0, 0, 0, 1, 3, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0,2658.0133680556 +"https://github.com/luakit/luakit",2017-07-02 16:47:36,"eb1e723c0eef96a5d5e7d8c0094dcb3b0effdf4d","[0, 0, 1, 4, 4, 0, 74, 38, 66, 61, 47, 59, 46, 32, 43, 16, 28, 45, 43, 66, 16, 19, 19, 18, 12, 8, 2]","[0, 0, 0, 0, 0, 0, 2, 1, 4, 4, 1, 3, 1, 2, 2, 1, 1, 3, 3, 3, 2, 1, 1, 1, 0, 0, 0]","[5, 53, 43, 57, 104, 90, 11, 48, 13, 15, 2, 8, 12, 0, 12, 13, 3, 3, 2, 21, 23, 22, 30, 6, 0, 0, 0]","[0, 2, 1, 5, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,14,0,4157.7710763889 +"https://github.com/smarty-php/smarty.git",2023-09-14 12:50:04,"26332c9de4b8341e3de0cb198706a6573e54dfe7","[0, 13, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 22, 0, 0, 0, 0, 6, 1]","[0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 4, 1, 12, 3, 0, 1, 3, 0, 0, 1, 2, 0, 0, 7, 1, 12, 1, 1, 14, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0]",2,0,3,0,3318.9346180556 +"https://github.com/openalpr/openalpr",2013-11-09 15:28:42,"77c128d7edad82f0ba15d2b26cc083dfbed0fd23","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 11, 6, 2, 3, 7, 1, 7, 37, 2, 0, 0, 11, 12, 12, 23, 0, 3, 3, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 6, 1, 0, 0, 3, 1, 3, 0, 0, 0, 0, 2, 0]",2,3,4,0,3147.0406365741 +"https://github.com/zmartzone/cjose.git",2016-11-14 05:50:58,"7d0f5566dff5258f4babb1e843715fcec3b03cbe","[2, 3, 0, 0, 1, 0, 0, 0, 6, 20, 11, 10, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,1,2698.734525463 +"https://github.com/Blosc/c-blosc",2018-12-03 12:09:03,"19a4ad2ef69bdb38a8a99d05df3df4623fdb611f","[0, 0, 3, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 10, 0, 1, 0, 2, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0]","[4, 0, 0, 0, 0, 4, 4, 1, 22, 2, 1, 0, 1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 2, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0,5250.6618865741 +"https://github.com/Electrostatics/apbs",2021-03-30 02:22:29,"ab7c6c1c85b9598cecdc5bfcf2a769e66d7a20da","[17, 8, 11, 16, 5, 5, 21, 28, 30, 14, 0, 0, 11, 0, 0, 0, 7, 2, 7, 11, 12, 0, 0, 0, 1, 0, 2]","[3, 0, 2, 2, 1, 1, 2, 7, 2, 3, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[10, 2, 0, 0, 0, 0, 0, 0, 0, 24, 14, 12, 10, 7, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,1,0,1,3265.3524074074 +"https://gitlab.gnome.org/GNOME/gjs.git",2018-11-03 21:05:17,"fd507b01b852d2e8c0a943dd8a453505dfaa821e","[42, 12, 16, 14, 11, 35, 6, 2, 19, 23, 25, 28, 26, 6, 6, 19, 64, 12, 5, 3, 1, 3, 32, 9, 8, 24, 1]","[8, 5, 2, 3, 3, 12, 2, 1, 4, 10, 8, 12, 5, 1, 2, 2, 2, 2, 2, 1, 0, 1, 4, 3, 3, 3, 1]","[42, 19, 0, 0, 11, 2, 7, 8, 8, 3, 0, 4, 4, 7, 15, 2, 17, 19, 5, 1, 1, 0, 4, 0, 0, 0, 1]","[8, 2, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 2, 2, 3, 0, 3, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0]",9,0,1,2,5531.0093865741 +"https://github.com/guessit-io/guessit.git",2015-11-29 18:32:40,"d560755d6b6f55d292f0ebfbc0983479a526c7f9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 13, 52, 24, 35, 26, 9, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 0, 0, 1, 0, 0, 25, 28, 8, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2993.2388078704 +"https://github.com/github/git-lfs.git",2015-02-07 16:51:55,"16d262114d5ba6f2c414ddd94d468797524064ee","[10, 11, 0, 9, 10, 20, 19, 22, 21, 2, 6, 13, 1, 0, 0, 0, 0, 1, 1, 0, 1, 2, 17, 1, 31, 12, 2]","[0, 4, 0, 2, 3, 3, 0, 3, 2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 3, 0]","[37, 13, 11, 16, 1, 28, 45, 13, 56, 28, 58, 29, 8, 50, 62, 99, 41, 19, 99, 24, 26, 79, 14, 77, 138, 43, 1]","[5, 6, 0, 2, 0, 3, 11, 2, 15, 9, 12, 10, 1, 4, 11, 19, 5, 3, 35, 3, 10, 18, 1, 15, 26, 14, 0]",6,6,29,0,3479.3090162037 +"https://github.com/GoalSmashers/clean-css.git",2015-05-11 18:30:45,"976f8465273d669bf681a93229f5701f473eec5d","[4, 3, 3, 46, 20, 13, 4, 8, 13, 9, 17, 8, 11, 16, 4, 34, 26, 10, 16, 1, 4, 36, 18, 11, 9, 2, 1]","[2, 0, 0, 1, 0, 1, 2, 1, 0, 0, 2, 0, 0, 3, 0, 2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[9, 7, 17, 4, 13, 18, 14, 3, 1, 4, 2, 4, 18, 10, 20, 21, 2, 7, 15, 5, 4, 0, 2, 0, 4, 3, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 1, 1, 0]",4,0,11,0,4686.8824537037 +"https://gitlab.com/ixion/ixion.git",2017-06-08 14:16:47,"14b28d947ae04be1d13469461b055a1b28ef73b0","[6, 0, 0, 0, 0, 11, 10, 2, 19, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 3, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4997.0195601852 +"https://github.com/gohugoio/hugo.git",2016-02-05 04:35:42,"bd0176a5487b0d8c368a14b3f283b9029f51d619","[24, 5, 7, 4, 17, 20, 11, 7, 15, 19, 12, 0, 16, 11, 27, 47, 35, 11, 20, 35, 6, 32, 11, 8, 17, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 20, 10, 20, 31, 40, 63, 16, 31, 40, 15, 18, 4, 7, 3, 3, 10, 15, 23, 9, 12, 10, 19, 10, 2, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",80,0,94,0,3813.722662037 +"https://github.com/ddclient/ddclient.git",2020-06-12 03:10:39,"e74797f55710b5a42917947b18fce0431d82a45d","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 41, 27, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 14, 4, 1]","[22, 7, 70, 57, 22, 6, 7, 22, 3, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 25, 24, 7, 3, 2, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,6,1,5769.1157986111 +"https://github.com/datalad/datalad",2015-02-24 19:36:35,"8e5df02c5c62578705feee22ede106de7416e36b","[0, 0, 1, 0, 0, 6, 4, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 1, 7, 0, 1, 2, 10, 1, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0]","[33, 36, 14, 58, 83, 44, 81, 99, 63, 29, 21, 10, 1, 12, 7, 1, 0, 1, 3, 0, 0, 2, 39, 2, 12, 36, 1]","[6, 5, 3, 8, 10, 9, 18, 16, 20, 2, 4, 3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 5, 1]",1,2,2,1,3855.2531018519 +"https://github.com/gazebosim/gz-transport",2018-11-02 16:45:05,"39f054aaaa2ca6d4d7511fb50d228fefd2c74e8b","[26, 14, 15, 5, 10, 38, 59, 6, 11, 25, 9, 5, 17, 1, 11, 24, 10, 5, 2, 0, 8, 0, 2, 0, 0, 0, 2]","[10, 4, 3, 0, 1, 12, 17, 2, 3, 7, 4, 0, 6, 1, 1, 5, 4, 2, 0, 0, 2, 0, 1, 0, 0, 0, 0]","[2, 0, 5, 14, 0, 2, 16, 2, 3, 1, 5, 0, 1, 0, 12, 2, 7, 1, 8, 8, 25, 4, 53, 1, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 3, 1, 1, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 1, 7, 0, 16, 0, 0, 0, 0]",3,0,0,2,3531.6416203704 +"https://github.com/NagiosEnterprises/nrpe.git",2018-06-06 20:38:54,"6eb197a2d6ec81cc8a09cacf53af425f923b7f71","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5657.7203819445 +"https://github.com/doctrine/instantiator",2014-06-13 10:16:14,"82c7b039d3e7110b26962c71fc4f47829813555a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 0, 11, 0, 1, 0, 67, 0, 32, 3, 3, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 2, 0, 2, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,3466.1691666667 +"https://github.com/jazzband/django-sortedm2m.git",2019-06-27 07:07:49,"3c4b5b165cfe82c314976a76c044759bcaf1e22e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 11, 1, 1, 0, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,0,6,0,4988.0868287037 +"https://github.com/terser/terser",2018-02-06 06:19:28,"c0b8f2a16d4804fe302e5db91995735ee7041c8d","[3, 4, 1, 5, 6, 6, 9, 7, 3, 13, 23, 16, 18, 15, 12, 16, 26, 20, 26, 26, 27, 31, 33, 29, 6, 18, 2]","[0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 6, 4, 2, 4, 2, 2, 0, 0]","[15, 16, 10, 10, 9, 24, 15, 1, 0, 32, 14, 15, 20, 9, 19, 8, 7, 5, 6, 24, 5, 10, 6, 5, 1, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",11,1,5,0,4211.1498726852 +"https://github.com/highlightjs/highlight.js",2021-03-25 16:29:02,"d57d4793a5a6907a758cf0b24820f4fef8b63c35","[9, 13, 9, 14, 12, 21, 7, 63, 5, 46, 6, 10, 35, 2, 4, 2, 8, 7, 16, 9, 15, 2, 11, 5, 10, 11, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 18, 97, 26, 11, 17, 9, 42, 0, 10, 12, 12, 11, 0, 6, 0, 0, 2, 5, 0, 3, 0, 5, 5, 3, 1, 1]","[0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",50,1,36,0,5773.3725694445 +"https://github.com/yrro/command-t",2017-08-18 14:47:16,"818c86c05a64c46e35f2fd444d909374b029ccd7","[0, 2, 0, 0, 0, 0, 1, 0, 4, 1, 5, 0, 0, 1, 0, 6, 3, 11, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1,4589.5430092593 +"https://github.com/bobek/pkg-pimd",2015-07-31 08:16:51,"fadc4aa3b6f74a28fac18f15f3f5be7797cc4903","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 11, 0, 6, 31, 40, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 1, 0, 3, 0, 4, 2, 0, 0, 1, 0, 0, 0, 10, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0,4933.0961921296 +"https://github.com/nojhan/liquidprompt.git",2013-11-26 19:09:29,"0898c39bf50238d8de9c95c26a96ae06b6b6b57f","[4, 4, 18, 3, 3, 4, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 15, 7, 4, 12, 11, 3, 17, 10, 1, 0, 5, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 1, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,12,0,4694.9375347222 +"https://github.com/audacity/audacity.git",2018-09-10 18:15:06,"334c0d83b2f12254a66325778f039b7aa65b4567","[69, 62, 53, 46, 51, 9, 8, 6, 16, 7, 16, 18, 11, 13, 19, 16, 12, 4, 17, 26, 49, 80, 9, 45, 57, 28, 2]","[9, 2, 4, 3, 3, 0, 0, 0, 2, 0, 0, 2, 0, 1, 1, 0, 0, 1, 0, 2, 4, 2, 0, 3, 4, 0, 0]","[31, 9, 95, 17, 37, 92, 62, 71, 12, 40, 7, 22, 3, 0, 6, 1, 0, 1, 1, 1, 4, 5, 3, 4, 0, 22, 1]","[1, 0, 15, 0, 1, 7, 6, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",12,0,11,1,5069.8878125 +"https://github.com/coq/coq",2017-08-10 07:11:54,"94c50815caf4c57b77ed761e05dc707f48685c65","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 38, 62, 45, 48, 47, 54, 56, 82, 25, 46, 23, 57, 38, 52, 122, 55, 102, 81, 53, 26, 37, 41, 33, 33, 30, 1]","[16, 8, 15, 17, 15, 22, 16, 23, 41, 7, 16, 6, 23, 17, 19, 34, 19, 39, 32, 19, 5, 16, 15, 13, 14, 14, 1]",0,1,16,0,5785.2775347222 +"https://github.com/slime/slime",2014-01-10 02:12:10,"ad8bc1ba6a8ad87d6eedd8e4e4ea158a29171894","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 3, 6, 17, 26, 20, 27, 21, 28, 16, 14, 1, 29, 5, 10, 4, 2, 1, 13, 16, 3, 0, 0, 5, 1, 1]","[3, 1, 0, 0, 2, 3, 0, 1, 1, 1, 1, 2, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",0,2,10,0,3579.6025925926 +"https://github.com/zopefoundation/zope.proxy",2022-07-08 07:03:28,"5c53fd90b1a529f2d1d4ed361d3bfa646520ba58","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 1, 6, 0, 0, 0, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,0,1,0,5686.5842013889 +"https://github.com/lunarmodules/say.git",2012-09-17 19:51:52,"427e49a6c7d20069ca36e95fa535bdea2acace28","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 22, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]","[2, 2, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,3,4008.0407638889 +"https://github.com/moment/moment.git",2012-09-17 17:52:28,"9addcb0e935510584e8d9529f2774e6518dfd535","[28, 8, 12, 18, 6, 22, 26, 13, 5, 8, 3, 12, 14, 14, 0, 5, 10, 1, 10, 6, 2, 8, 0, 1, 7, 1, 2]","[6, 4, 4, 1, 2, 6, 8, 2, 0, 2, 0, 4, 3, 1, 0, 4, 5, 0, 2, 2, 1, 2, 0, 0, 1, 0, 0]","[6, 7, 14, 0, 1, 22, 18, 65, 3, 15, 8, 2, 11, 2, 1, 1, 11, 17, 15, 0, 12, 12, 51, 0, 0, 0, 1]","[3, 2, 4, 0, 0, 5, 6, 3, 2, 5, 4, 0, 5, 1, 0, 1, 2, 7, 5, 0, 5, 4, 11, 0, 0, 0, 1]",25,4,28,6,4145.5463541667 +"https://github.com/ropensci/RNeXML.git",2014-03-25 17:37:55,"7be7ac02bde898211c8d7dbf0f447bca86da6b0d","[0, 3, 1, 9, 11, 0, 2, 17, 33, 41, 4, 2, 2, 4, 0, 1, 1, 0, 0, 2, 0, 8, 0, 21, 33, 30, 2]","[0, 0, 0, 0, 1, 0, 1, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 4, 0]","[9, 0, 0, 0, 3, 8, 1, 0, 4, 0, 0, 5, 61, 13, 9, 20, 11, 4, 5, 7, 8, 17, 16, 3, 1, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 2, 0, 0, 1, 2, 2, 0, 0, 0, 0]",4,1,3,1,3480.1707407407 +"https://github.com/mvz/ruby-gir-ffi",2021-03-05 10:13:25,"0bbe9f45eb18d47e7f10854a340a32efbb143882","[16, 2, 2, 8, 0, 5, 2, 1, 5, 9, 7, 4, 4, 2, 0, 1, 10, 6, 16, 4, 0, 2, 2, 0, 0, 12, 2]","[4, 1, 1, 2, 0, 2, 1, 0, 1, 3, 1, 2, 2, 1, 0, 0, 3, 3, 3, 1, 0, 1, 1, 0, 0, 5, 1]","[1, 0, 4, 0, 0, 2, 4, 2, 2, 0, 5, 2, 2, 0, 2, 2, 3, 2, 0, 0, 2, 0, 5, 0, 2, 0, 0]","[1, 0, 2, 0, 0, 1, 2, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 2, 0, 1, 0, 0]",2,0,0,0,5437.5734375 +"https://github.com/jquery/qunit.git",2013-05-14 19:14:41,"8292e26107a5507a1a0d26035131e616f2ef7d41","[8, 0, 0, 2, 8, 4, 0, 7, 2, 6, 0, 4, 0, 0, 1, 0, 10, 6, 1, 7, 0, 0, 1, 7, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 4, 7, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",12,1,2,0,5676.0677430556 +"https://github.com/calamares/calamares.git",2020-09-30 08:53:04,"613966d3ffa583f29841d4c4437660f48f8dfa3f","[86, 20, 53, 13, 32, 69, 68, 17, 2, 48, 40, 65, 16, 19, 14, 31, 77, 49, 147, 40, 41, 32, 14, 9, 22, 3, 2]","[10, 1, 7, 4, 4, 10, 5, 2, 0, 5, 8, 5, 1, 4, 1, 0, 7, 4, 14, 2, 2, 6, 0, 2, 1, 0, 0]","[42, 19, 45, 69, 114, 54, 40, 7, 20, 29, 2, 9, 0, 1, 5, 7, 27, 68, 25, 6, 22, 4, 53, 72, 33, 38, 1]","[8, 4, 2, 4, 12, 9, 3, 2, 1, 3, 0, 0, 0, 0, 0, 4, 1, 5, 0, 0, 3, 1, 5, 6, 3, 5, 0]",10,0,10,1,3478.1256828704 +"https://github.com/jtesta/ssh-audit.git",2020-09-27 02:06:49,"13b065b3162a0394ce021dd0dcb6a8e9ed83a82d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 4, 1, 12, 5, 15, 0, 4, 0, 5, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 6, 18, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 15, 0, 1, 7, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,2897.0719328704 +"https://github.com/virt-manager/virt-manager",2019-05-16 20:31:27,"0366eb15e25baa07be53061081c3be16fa425805","[0, 0, 3, 1, 16, 0, 0, 34, 4, 4, 7, 49, 21, 4, 3, 63, 18, 20, 15, 18, 20, 28, 0, 0, 0, 166, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 32, 131, 81, 2, 23, 2, 23, 1, 5, 11, 1, 3, 2, 2, 2, 0, 0, 18, 4, 0, 2, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,2,0,5726.7286574074 +"https://github.com/janestreet/variantslib.git",2018-05-23 16:00:52,"1bb5da5e7ebfb664e62d3044ba7730926c1a9eb9","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3865.5561921296 +"https://github.com/andialbrecht/sqlparse.git",2023-08-06 10:46:23,"bb42969cca7c1e0bc49b970ea6512bf0184b97fe","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 1, 0, 6, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5305.0009375 +"https://github.com/puppetlabs/puppetlabs-mysql",2014-06-26 00:23:29,"66e3d2b52c7fba9c5d902638ebdb9ba72d958b7e","[4, 3, 0, 7, 15, 2, 11, 18, 25, 22, 6, 4, 2, 1, 1, 4, 6, 2, 2, 25, 3, 0, 9, 10, 3, 1, 2]","[1, 1, 0, 3, 7, 1, 5, 7, 12, 9, 4, 1, 1, 1, 0, 2, 3, 1, 1, 6, 1, 0, 3, 7, 2, 0, 1]","[4, 6, 7, 8, 4, 0, 15, 3, 2, 2, 2, 7, 2, 2, 8, 6, 2, 4, 2, 17, 10, 11, 3, 8, 13, 5, 1]","[2, 2, 2, 5, 3, 0, 6, 2, 0, 1, 2, 3, 1, 0, 4, 3, 1, 3, 0, 10, 5, 5, 1, 3, 7, 3, 0]",28,2,30,2,4577.2790046296 +"https://gitlab.gnome.org/GNOME/folks",2021-02-07 14:48:32,"e9215d3393251ee8ba7938ea844f70d10afdef35","[0, 1, 1, 0, 0, 0, 2, 0, 0, 6, 1, 0, 0, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,4953.6632407407 +"https://github.com/django-haystack/django-haystack",2012-11-25 17:35:45,"68a0b876d9d4c594a44f5bb92eb1d5c3c4e92bd5","[4, 0, 2, 15, 9, 0, 1, 0, 6, 1, 1, 0, 2, 1, 4, 1, 0, 12, 5, 0, 0, 0, 1, 5, 0, 1, 2]","[0, 0, 1, 5, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[9, 3, 13, 1, 0, 1, 4, 8, 1, 1, 2, 1, 2, 6, 2, 4, 1, 3, 1, 2, 0, 6, 6, 29, 12, 0, 1]","[3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 2, 0, 1, 0, 3, 1, 2, 6, 0, 0]",7,2,25,2,5440.2651388889 +"https://github.com/ytdl-org/youtube-dl.git",2014-12-12 15:42:40,"e56190b378367291abe4677f2357fcfc213b1a6a","[27, 33, 36, 48, 52, 113, 31, 37, 22, 53, 122, 100, 42, 98, 49, 108, 30, 40, 51, 116, 45, 57, 70, 113, 69, 97, 2]","[5, 5, 5, 7, 10, 7, 2, 7, 2, 10, 9, 21, 12, 11, 6, 9, 3, 6, 5, 11, 2, 7, 3, 9, 7, 14, 0]","[118, 38, 76, 110, 94, 47, 121, 114, 90, 128, 110, 57, 70, 80, 56, 56, 90, 60, 98, 81, 83, 102, 70, 57, 79, 68, 1]","[11, 5, 17, 12, 11, 6, 18, 9, 6, 10, 12, 10, 6, 12, 4, 13, 11, 2, 5, 8, 5, 11, 7, 7, 10, 7, 0]",78,2,90,4,5615.2313657407 +"https://github.com/linuxmint/cjs.git",2020-10-19 10:12:34,"974a99b3623a82d5fffa8e83f37c9ec5f51ef9c8","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 4, 1, 1, 0, 0, 0, 1, 1, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3771.5652546296 +"https://github.com/jobovy/galpy.git",2017-08-30 03:59:10,"487757d5e6af47e3806de123f6077dcd66c6c9ff","[0, 1, 2, 1, 0, 0, 0, 0, 2, 3, 0, 1, 20, 17, 8, 1, 34, 49, 10, 4, 15, 0, 0, 0, 10, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 1, 2, 4, 1, 0, 0, 0, 0, 0, 1, 0]","[14, 2, 19, 7, 2, 7, 14, 15, 10, 8, 2, 17, 0, 27, 2, 12, 29, 10, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1,4901.3716550926 +"https://github.com/Haivision/srt.git",2017-04-21 22:42:56,"bdeb5d24336f001a0e3d38894eb89af192c0d2d1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 2, 7, 3, 4, 2, 19, 28, 9, 5, 1, 7, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 7, 1]","[5, 1, 0, 4, 1, 0, 1, 3, 6, 4, 1, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",2,4,18,0,2427.4407523148 +"https://github.com/skvadrik/re2c",2020-10-19 07:22:53,"41fc15892806405652ae87e38bb7d12edee84d8d","[14, 10, 12, 14, 17, 10, 8, 15, 20, 10, 24, 7, 17, 3, 7, 3, 0, 13, 6, 3, 2, 10, 2, 12, 15, 10, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 5, 3, 4, 0]","[11, 9, 7, 5, 0, 0, 0, 0, 1, 0, 5, 55, 2, 2, 0, 0, 0, 0, 0, 12, 5, 12, 42, 9, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0,5784.0503703704 +"https://github.com/janestreet/sexplib.git",2018-05-23 16:00:52,"5de776a327933d3d28b43ee15c23aa96351e71e3","[0, 0, 2, 0, 0, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3950.7644444445 +"https://github.com/libcgroup/libcgroup",2021-06-09 16:39:41,"60f75f11e2d93b0da7aa5bdf915d82f836824fbf","[6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 1, 0, 6, 6, 7, 3, 18, 3, 1, 4, 1, 1, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 2, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 1, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,5745.3289930556 +"https://github.com/log2timeline/plaso",2016-01-30 09:59:54,"ebb77482ee2b3ed9a7e5607e2a6fd6748585a423","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 849, 5, 7, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 8, 4, 3, 15, 5, 1, 0, 0, 1, 0, 0, 7, 9, 7, 6, 5, 0, 4, 0, 9, 12, 24, 21, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0,3988.4880208333 +"https://github.com/httpie/httpie",2014-04-24 17:32:55,"887f70f595399c46698ad515ce1e19e4d44d54ac","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 2, 8, 2, 2, 2, 0, 4, 0, 1, 2, 2, 0, 0, 5, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0]","[67, 3, 12, 1, 2, 1, 0, 2, 2, 5, 0, 2, 2, 0, 0, 0, 1, 0, 0, 9, 0, 2, 0, 0, 0, 3, 0]","[0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0]",4,0,5,0,4259.1971296296 +"https://github.com/guillaumechereau/goxel.git",2018-05-14 16:16:11,"662be5d2b493f84cff00e4cec87081239db09ac4","[3, 2, 0, 1, 7, 0, 4, 0, 0, 0, 1, 18, 153, 6, 10, 13, 26, 9, 5, 26, 26, 16, 52, 12, 4, 791, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 1, 0, 0, 37, 3, 0, 0, 0, 0, 4, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2988.2858564815 +"https://github.com/mapbox/leaflet-image",2016-05-19 16:29:18,"e2a406e25860bf235273a97fd543c8d6d2296975","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1265.9471759259 +"https://github.com/nodejs/node-gyp.git",2017-06-14 09:29:50,"2e40fad2bf50dc41acdeb10edaf3b7d64b411d0b","[1, 0, 0, 2, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 1, 0, 3, 2, 1, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,1,0,4297.5489699074 +"https://github.com/cucumber/aruba.git",2014-06-23 07:33:40,"2ad8301a0a0a730769fd4ae17d81928f8d813405","[0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 20, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 3, 0, 0, 0, 0, 2, 24, 3, 6, 8, 16, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",2,0,5,0,5041.5396643519 +"https://github.com/rclone/rclone.git",2015-12-29 19:23:20,"64a808ac762c7b4767daab2d10f88872a467dd8b","[0, 0, 0, 0, 1, 7, 14, 9, 11, 8, 23, 13, 8, 11, 2, 3, 0, 5, 23, 16, 3, 0, 0, 0, 11, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 13, 10, 17, 11, 6, 10, 13, 27, 5, 2, 9, 5, 3, 3, 5, 12, 4, 7, 4, 1, 10, 13, 6, 17, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,16,0,4043.6951851852 +"https://github.com/isaacs/node-glob.git",2014-11-13 22:55:58,"033402bdc5bcca52cc6ccf7706ef550204270d97","[7, 0, 8, 0, 0, 0, 3, 1, 5, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 6, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 2, 9, 0, 0, 4, 0, 1, 11, 1, 0, 0, 0, 3, 2, 2, 25, 4, 0, 0, 4, 0, 0, 1, 0, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,9,0,5090.5140740741 +"https://github.com/fog/fog-local",2015-02-14 14:04:42,"4b45d54ca61be4c3428a273ba011675cade639c4","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,5023.4471759259 +"https://github.com/un33k/django-ipware",2019-07-28 03:10:41,"db9a5d622a05c83f852806911687788e5fbff7bb","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3876.7555324074 +"https://github.com/zopefoundation/zope.schema",2022-08-05 05:49:05,"d466d9e0a60f98a69657e3624b2cb8788c8a3da2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 7, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",0,0,1,0,5503.5836458333 +"https://github.com/markdown-it/markdown-it",2014-10-16 04:59:56,"3b527ef9d2feab32c320dda8c42a35f4dce42179","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 28, 25, 3, 26, 25, 48, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[41, 92, 9, 28, 6, 4, 14, 8, 8, 38, 42, 40, 24, 7, 0, 2, 15, 11, 9, 13, 36, 11, 10, 6, 3, 6, 1]","[3, 7, 0, 2, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",3,0,20,1,3.7407291667 +"https://github.com/geopython/stetl.git",2016-02-22 07:03:56,"370dc6389e0af477f990731134f6befd74f2e97c","[0, 3, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 4, 1, 0, 2]","[0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 13, 6, 2, 6, 10, 0, 1, 22, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 4, 0, 0, 0]",2,2,0,0,4123.3037847222 +"https://github.com/javaparser/javaparser.git",2016-10-06 12:42:31,"b612d63cb2b0740d61e74acd1ec41ca172f0e0fa","[9, 0, 0, 3, 0, 0, 0, 11, 0, 1, 1, 6, 10, 44, 83, 10, 10, 0, 5, 34, 6, 12, 1, 1, 2, 13, 2]","[3, 0, 0, 2, 0, 0, 0, 6, 0, 0, 1, 3, 4, 20, 29, 3, 5, 0, 3, 5, 1, 2, 0, 0, 0, 2, 0]","[7, 10, 5, 18, 4, 49, 33, 32, 24, 69, 88, 24, 21, 44, 49, 25, 76, 49, 124, 57, 184, 106, 32, 49, 19, 12, 0]","[0, 1, 2, 2, 0, 8, 7, 7, 5, 34, 44, 13, 11, 7, 11, 3, 20, 20, 10, 25, 10, 38, 13, 4, 3, 5, 0]",15,5,20,4,4427.0781597222 +"https://github.com/tmuxinator/tmuxinator",2013-05-30 14:42:58,"79ead205f6bb8df496c41d0fbe90900ac1b81bd1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 0, 0, 0, 3, 5, 9, 17, 27, 14, 3, 1, 0, 0, 6, 4, 0, 0, 3, 1, 0, 8, 2, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0]",4,1,18,1,4304.3138657407 +"https://github.com/olive-editor/olive",2019-06-29 08:42:07,"84720b39cb812750b12db728f7c0127b02443fbd","[83, 107, 42, 89, 74, 57, 100, 47, 46, 59, 74, 58, 46, 17, 3, 29, 14, 27, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 29, 3, 10, 16, 8, 20, 9, 10, 9, 3, 3, 9, 3, 0, 9, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",25,0,2,6,1943.7612384259 +"https://invent.kde.org/plasma/kwin.git",2021-08-31 22:10:58,"f6005a28cd613def28a9e4a8cfab95966b5b7868","[30, 33, 22, 14, 47, 37, 38, 55, 62, 33, 93, 65, 40, 49, 51, 41, 15, 41, 37, 13, 45, 35, 36, 67, 45, 102, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[71, 33, 61, 57, 49, 32, 78, 69, 57, 58, 61, 57, 49, 29, 51, 30, 14, 34, 32, 80, 92, 35, 33, 80, 49, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",18,0,26,0,5787.6912962963 +"https://github.com/google/benchmark",2014-02-10 22:37:54,"99459023d9c45d514ba84c899f0bc98bd83d6df1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 19, 10, 3, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 1, 0]","[6, 2, 0, 0, 0, 3, 0, 3, 1, 4, 9, 6, 0, 0, 0, 3, 13, 1, 0, 0, 0, 0, 0, 13, 10, 6, 1]","[1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 2, 3, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 5, 2, 2, 0]",7,3,11,2,3640.5849537037 +"https://github.com/jquery/jquery.git",2012-09-17 18:29:58,"3cb36f7a42a200cead4723841015f61301b02a52","[6, 5, 18, 13, 17, 18, 17, 14, 14, 13, 32, 30, 32, 34, 19, 42, 28, 10, 34, 1, 14, 16, 16, 20, 10, 8, 2]","[0, 0, 2, 3, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 6, 7, 20, 78, 17, 18, 16, 13, 20, 18, 22, 43, 64, 49, 36, 54, 37, 29, 32, 10, 3, 9, 27, 4, 4, 1]","[0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 0, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",24,0,43,0,5765.4037384259 +"https://github.com/zopefoundation/zope.testing",2022-03-04 07:18:32,"3b9901b40ec39a859e3187083d2c5ef956dc19f9","[0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5685.8682638889 +"https://github.com/aws/aws-cli",2013-08-09 20:31:16,"0d125a567e7ffa9dfe285df8c436783d29594c79","[15, 35, 22, 4, 19, 9, 0, 2, 26, 17, 8, 8, 34, 30, 20, 17, 4, 13, 7, 14, 21, 13, 36, 16, 12, 1, 1]","[3, 5, 1, 0, 6, 3, 0, 1, 5, 3, 4, 3, 10, 1, 5, 7, 2, 3, 3, 2, 3, 2, 7, 4, 3, 0, 0]","[71, 116, 81, 43, 42, 46, 19, 40, 15, 31, 21, 27, 35, 13, 21, 36, 25, 16, 22, 7, 12, 15, 11, 11, 16, 21, 1]","[18, 32, 28, 16, 10, 20, 4, 10, 4, 8, 10, 10, 13, 4, 3, 12, 9, 5, 7, 3, 5, 5, 6, 3, 5, 7, 0]",5,1,14,1,4045.3834027778 +"https://github.com/zopefoundation/zope.deprecation.git",2022-11-30 07:35:36,"11a3002b47b622b2d7b84b1f743e2895b0377b3d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5564.8963541667 +"https://github.com/npm/abbrev-js",2013-02-12 01:16:30,"c98311d7cdafa82dec133a87662890618a5959c0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5021.0522106482 +"https://github.com/OpenTTD/OpenTTD.git",2018-04-16 21:20:04,"6d31478988315180743772d879524de51ab1edb8","[0, 2, 1, 0, 1, 1, 0, 11, 1, 6, 6, 5, 2, 3, 1, 0, 1, 0, 1, 2, 18, 5, 4, 4, 5, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 21, 9, 3, 5, 10, 4, 23, 12, 14, 15, 7, 2, 13, 10, 10, 5, 2, 0, 4, 2, 2, 5, 2, 3, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,28,0,5788.4102083333 +"https://gitlab.gnome.org/GNOME/glade",2016-02-27 14:17:38,"7e5dfa8ccd211945e624b0fab7fe2b19fb1b9907","[3, 3, 2, 4, 0, 1, 0, 0, 1, 3, 1, 9, 9, 9, 24, 7, 13, 0, 2, 0, 2, 57, 2, 10, 4, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 3, 17, 9, 0, 2, 2, 0, 3, 0, 3, 12, 2, 1, 0, 0, 1, 2, 0, 0, 2, 0, 2, 0, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,11,0,5740.6073032407 +"https://github.com/kaminari/kaminari",2014-08-19 03:17:03,"5f9b7956c56bf721d8614dcec67e85244b1b3963","[6, 4, 11, 8, 7, 8, 2, 7, 8, 0, 0, 18, 6, 7, 1, 6, 1, 2, 1, 0, 0, 0, 0, 1, 1, 4, 2]","[0, 2, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 3, 0, 8, 2, 0, 0, 0, 0, 0, 0, 5, 1, 21, 6, 2, 5, 3, 3, 7, 0, 0, 2, 2, 0, 3, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",11,0,7,0,4634.2992476852 +"https://github.com/resurrecting-open-source-projects/openrdate",2019-09-25 01:07:24,"2d5de63c9bb2ab4124f6f1b2c72efe8cf553b9be","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,876.4736111111 +"https://github.com/elves/elvish.git",2016-02-18 23:13:35,"4ca7fbca03c1db2c512648cb418da56e04b54ddd","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 99, 66, 133, 127, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 2, 0]","[141, 79, 31, 32, 34, 11, 18, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 15, 4, 2, 7, 4, 1, 2, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",4,1,5,2,3724.7049768519 +"https://github.com/resurrecting-open-source-projects/scrot",2019-02-13 00:52:37,"b21539df7b1faa23a82c8917d23c80ce82230e2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35, 4, 4, 0, 10, 2, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 4, 0, 0, 0, 1, 0, 0]",1,2,5,0,1711.9000347222 +"https://github.com/ARMmbed/yotta.git",2015-09-17 16:54:30,"c3607c653d1989a9eaa1a1a705b9812bed59374e","[40, 19, 4, 7, 19, 8, 13, 9, 4, 2, 14, 12, 7, 8, 27, 23, 9, 8, 28, 16, 26, 23, 1, 3, 4, 28, 2]","[17, 3, 0, 2, 6, 0, 7, 1, 1, 1, 2, 4, 3, 1, 10, 5, 3, 3, 9, 6, 8, 6, 0, 2, 2, 8, 1]","[28, 40, 40, 35, 24, 12, 29, 12, 22, 28, 15, 21, 15, 18, 0, 10, 19, 24, 20, 3, 6, 16, 8, 7, 2, 6, 1]","[7, 14, 15, 13, 4, 5, 12, 2, 9, 6, 6, 5, 4, 8, 0, 3, 5, 8, 7, 2, 2, 4, 3, 2, 1, 2, 0]",11,2,15,2,2536.0050925926 +"https://github.com/fuzzylite/fuzzylite",2017-10-23 05:24:45,"3838d268c8480bef42dd40f1bbc4bc66d28e0e34","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 15]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3931.5160648148 +"https://salsa.debian.org/emacsen-team/magithub",2017-10-11 04:19:15,"efea5210adfc335f43a30d328d51f96258e679df","[0, 0, 1, 44, 102, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 22, 29, 21, 3, 9, 2, 1, 2, 0, 0, 16, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 1, 0, 1, 0, 0, 0, 0, 2, 0]","[3, 27, 54, 24, 8, 11, 3, 15, 6, 5, 9, 0, 0, 14, 31, 14, 38, 1, 2, 3, 4, 1, 1, 1, 16, 6, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 1, 0, 0, 1, 3, 0]",6,0,10,0,1074.2872569445 +"https://github.com/vim-syntastic/syntastic",2013-04-10 18:41:53,"807f8c1824bcc6a0fabf855807256701d36f8221","[0, 0, 1, 14, 6, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 9, 0, 2, 0, 4, 0, 0]","[0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[31, 15, 21, 21, 27, 13, 16, 32, 35, 15, 18, 19, 30, 17, 5, 16, 20, 24, 19, 1, 1, 1, 1, 22, 12, 6, 1]","[5, 5, 5, 4, 4, 3, 1, 9, 9, 4, 6, 5, 8, 4, 2, 4, 4, 8, 6, 0, 0, 0, 0, 7, 2, 2, 0]",4,5,39,2,3869.6290393519 +"https://github.com/syncthing/syncthing.git",2014-01-28 18:10:39,"d31a1264082a13b7cc89781ca9d2e8cdebc4f031","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 16, 36, 38, 25, 8, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[7, 12, 13, 10, 19, 14, 12, 19, 19, 13, 24, 28, 11, 29, 31, 44, 60, 38, 30, 25, 17, 10, 31, 26, 15, 50, 1]","[0, 0, 0, 0, 3, 1, 1, 0, 1, 0, 0, 0, 0, 1, 4, 3, 4, 5, 1, 0, 0, 1, 2, 0, 0, 3, 0]",3,1,14,1,3650.0363310185 +"https://github.com/numba/numba.git",2014-10-08 14:19:53,"d05a0fc061a6844784cba01b291fe532d5c24024","[27, 23, 17, 29, 16, 16, 38, 52, 21, 25, 75, 52, 13, 7, 2, 0, 1, 16, 9, 8, 0, 4, 11, 0, 0, 3, 1]","[2, 3, 2, 0, 0, 2, 7, 11, 4, 2, 31, 15, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[89, 27, 28, 13, 20, 26, 37, 32, 46, 30, 27, 32, 37, 57, 51, 58, 53, 55, 44, 21, 74, 43, 40, 53, 32, 17, 1]","[28, 12, 5, 1, 2, 1, 10, 7, 11, 3, 15, 8, 4, 24, 17, 24, 10, 12, 14, 7, 16, 11, 11, 18, 13, 4, 0]",8,2,3,4,4209.7246759259 +"https://github.com/jupyter/notebook.git",2015-04-21 22:37:06,"fa4aa84fc5cfdbfe0817df5ade13e215b3c47899","[31, 133, 55, 123, 82, 62, 145, 139, 97, 47, 41, 48, 101, 161, 71, 41, 47, 24, 70, 24, 28, 54, 86, 47, 34, 0, 7]","[6, 20, 12, 26, 19, 15, 30, 44, 16, 15, 20, 15, 32, 46, 25, 11, 15, 10, 28, 10, 14, 16, 29, 18, 14, 0, 0]","[96, 8, 26, 37, 20, 21, 17, 13, 21, 14, 8, 23, 22, 44, 11, 27, 43, 13, 75, 32, 42, 62, 51, 35, 55, 38, 1]","[28, 3, 13, 4, 3, 4, 5, 6, 5, 1, 4, 8, 9, 20, 4, 3, 11, 5, 8, 11, 18, 21, 16, 10, 20, 11, 0]",45,0,47,4,5779.2858796296 +"https://github.com/zopefoundation/zope.event",2022-04-11 05:57:25,"cdd8d1976ef48d4a59ba49d57d4c956456640c1c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5503.5143634259 +"https://github.com/kelektiv/node-uuid",2020-01-21 12:29:10,"53ca9d46f616af807aafacc743cbdbf0e2874888","[0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 9, 0, 5, 0, 0, 0, 0, 0, 11, 0, 0, 2, 0, 1, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 1]","[17, 3, 3, 5, 13, 10, 6, 4, 0, 0, 4, 2, 0, 3, 8, 3, 1, 5, 3, 1, 0, 4, 3, 0, 0, 0, 1]","[2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0,4670.2036805556 +"https://github.com/analogdevicesinc/libiio.git",2020-02-11 17:31:25,"ec2f07932bb69150d43b6eddb46ead4b2c4b5a77","[0, 0, 0, 0, 3, 1, 2, 0, 2, 0, 0, 1, 1, 1, 0, 7, 0, 1, 0, 0, 1, 10, 14, 13, 10, 9, 1]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 6, 7, 5, 2, 6, 0]","[18, 15, 5, 1, 12, 5, 10, 20, 32, 28, 58, 30, 17, 33, 23, 28, 30, 12, 3, 0, 3, 2, 1, 8, 10, 2, 0]","[6, 5, 3, 1, 4, 2, 3, 2, 10, 5, 21, 9, 3, 14, 10, 8, 12, 3, 1, 0, 1, 1, 0, 5, 4, 1, 0]",9,0,7,1,3584.8073032407 +"https://github.com/open-power/skiboot.git",2017-02-06 01:00:11,"ed735d729a41161e6399dd453c90d35cd33b6417","[6, 0, 4, 3, 1, 14, 4, 3, 0, 2, 3, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,3435.5121180556 +"https://github.com/resurrecting-open-source-projects/sniffit",2016-11-15 11:41:45,"31ca5eeab3f471e87fd8d57a3d0a8174f3cabb9f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1171.9152430556 +"https://github.com/thoughtbot/shoulda-matchers",2012-03-19 00:39:15,"76127ea45fcade0cf119538952f6c7387ebf2efb","[4, 0, 0, 10, 1, 0, 4, 2, 8, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 5, 6, 6, 2]","[0, 0, 0, 5, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[34, 9, 6, 22, 12, 11, 0, 11, 1, 0, 0, 3, 5, 3, 1, 0, 6, 3, 3, 0, 0, 1, 0, 1, 0, 30, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",12,1,19,0,5766.0040972222 +"https://github.com/jupyter/nbconvert",2015-04-10 04:41:47,"edf33845534349bf73e7ff7cbc1aa77cdb61767c","[15, 9, 2, 15, 6, 3, 5, 3, 19, 2, 0, 0, 3, 16, 4, 14, 2, 0, 0, 10, 29, 0, 16, 10, 5, 23, 2]","[2, 3, 1, 3, 2, 0, 2, 1, 5, 1, 0, 0, 1, 7, 2, 3, 0, 0, 0, 2, 11, 0, 3, 5, 2, 7, 0]","[5, 13, 7, 2, 10, 0, 2, 2, 29, 10, 23, 2, 3, 17, 16, 9, 9, 0, 9, 2, 2, 0, 8, 21, 1, 12, 1]","[1, 6, 3, 1, 3, 0, 1, 0, 4, 2, 3, 1, 3, 6, 3, 4, 4, 0, 3, 1, 1, 0, 4, 7, 0, 4, 0]",11,3,16,1,4960.6174421296 diff --git a/final_data/deb_full_data.csv b/final_data/deb_full_data.csv index 20ce575..6b39dd9 100644 --- a/final_data/deb_full_data.csv +++ b/final_data/deb_full_data.csv @@ -1,5106 +1,5092 @@ project_name,underproduction_mean,underproduction_low,underproduction_high,debian_vcs_link,upstream_vcs_link,age_of_project,contributors,collaborators,milestone_count -0xffff,-0.510168673014387,1.45279943111322,-1.00117086618243,https://salsa.debian.org/debian/0xffff, https://github.com/pali/0xFFFF,5557.842777777778,3,11,0 -3270font,0.795626592579791,4.35746269027599,-0.214217071018684,https://github.com/kilobyte/3270font/tree/debian,https://github.com/kilobyte/3270font,3596.6082060185186,6,15,0 -4pane,-0.242627942451996,2.29989480702703,-0.819422099435506,https://github.com/dghart/4pane-debian-dir/tree/master/,https://github.com/dghart/4pane-debian-dir,2236.685972222222,0,2,0 -4ti2,0.476440833737227,3.0285400273249,-0.219194365566797,https://salsa.debian.org/math-team/4ti2, https://github.com/4ti2/4ti2.git,5656.560381944444,3,11,0 -6tunnel,-0.563131581951037,0.346490727983096,-0.839859948356692,https://salsa.debian.org/debian/6tunnel, https://github.com/wojtekka/6tunnel,2673.0241203703704,1,7,0 -7kaa,0.873343914137606,3.76518932259787,-0.0927531105574549,https://salsa.debian.org/games-team/7kaa, https://github.com/the3dfxdude/7kaa,5126.709664351852,24,23,0 -a2jmidid,0.359466917341911,1.94843440395128,-0.156227733435732,https://salsa.debian.org/multimedia-team/a2jmidid, https://github.com/linuxaudio/a2jmidid.git,4551.794791666666,8,8,0 -abgate,0.170683343407432,2.31288851659804,-0.444716742427934,https://salsa.debian.org/multimedia-team/abgate, https://github.com/antanasbruzas/abGate.git,1677.578622685185,2,8,0 -ableton-link,0.24190624984189,3.45214605429943,-0.714154937378648,https://salsa.debian.org/multimedia-team/ableton-link, https://github.com/Ableton/link.git,2835.8410648148147,20,10,0 -accerciser,-0.0378163226625927,0.492949292462489,-0.246285807537439,https://salsa.debian.org/gnome-team/accerciser, https://gitlab.gnome.org/GNOME/accerciser,5770.659293981482,125,213,0 -acme-tiny,-0.0997740414324175,0.698285251666775,-0.357256083455663,https://salsa.debian.org/letsencrypt-team/acme-tiny, https://github.com/diafygi/acme-tiny.git,2161.2252314814814,7,34,0 -acmetool,0.621943486643402,2.68754503210466,-0.233690566178644,https://salsa.debian.org/go-team/packages/acmetool, https://github.com/hlandau/acmetool,2727.716875,7,20,1 -acorn,-0.352098731788059,0.208180313755519,-0.59790049944258,https://salsa.debian.org/js-team/acorn, https://github.com/ternjs/acorn.git,4089.973773148148,125,21,0 -acpi-call,0.105692079347462,1.31966601416273,-0.230983048552108,https://salsa.debian.org/moonsweep/acpi-call, https://github.com/nix-community/acpi_call.git,4711.2498958333335,14,26,0 -acpica-unix,0.704078223289118,1.4328185991839,0.250194214510807,https://salsa.debian.org/debian/acpica-unix, https://github.com/acpica/acpica,5757.107615740741,43,108,0 -actiona,0.268592127615787,2.38984495856638,-0.565826782279516,https://salsa.debian.org/debian/actiona, https://github.com/Jmgr/actiona,4932.320543981482,3,17,0 -activemq,-0.707743978986649,-0.252194710986131,-0.929017813983153,https://salsa.debian.org/java-team/activemq, https://github.com/apache/activemq,5739.122835648148,56,141,2 -adapta-kde,-0.0885623802323334,2.08899063570217,-0.531363678282838,https://salsa.debian.org/debian/adapta-kde, https://github.com/PapirusDevelopmentTeam/adapta-kde.git,636.9053819444445,2,5,0 -adcli,0.15644408614283,1.98009217328601,-0.187225826269083,https://salsa.debian.org/debian/adcli, https://gitlab.freedesktop.org/realmd/adcli,3793.8986921296296,7,9,0 -admesh,0.126087687547782,1.81004815315567,-0.381631878995558,https://salsa.debian.org/science-team/admesh, https://github.com/admesh/admesh,3319.1463078703705,15,9,1 -adms,-0.674637302613584,2.08369083985849,-1.26384529492003,https://salsa.debian.org/science-team/adms, https://github.com/Qucs/ADMS.git,3397.3394444444443,6,10,0 -adolc,-0.218347665039878,0.298998807070195,-0.420097301634624,https://salsa.debian.org/science-team/adolc, https://github.com/coin-or/ADOL-C,5292.595347222222,11,44,0 -adplay,0.14041092701626,2.02773259237225,-0.717911290820715,https://salsa.debian.org/debian/adplay, https://github.com/adplug/adplay-unix,4930.808912037037,1,9,0 -adql,-0.160732025116376,2.2507776055854,-0.654429732393435,https://salsa.debian.org/debian-astro-team/adql, https://github.com/gmantele/taplib.git,3533.9449074074073,2,12,0 -adwaita-qt,0.20520102503331,2.35604851930854,-0.287329460126735,https://salsa.debian.org/debian/adwaita-qt, https://github.com/FedoraQt/adwaita-qt.git,3324.8509953703706,3,11,0 -aeskulap,-0.00799468636720424,0.736060248382803,-0.280025211041137,https://salsa.debian.org/med-team/aeskulap, https://github.com/pipelka/aeskulap.git,0.12170138888888889,0,2,0 -afew,-0.174094467011175,3.09143638082015,-1.08293165491561,https://salsa.debian.org/python-team/packages/afew, https://github.com/afewmail/afew,4444.563113425926,14,62,1 -afflib,0.485538307170435,1.29662314566269,0.0866885422979764,https://salsa.debian.org/pkg-security-team/afflib, https://github.com/sshock/AFFLIBv3,3923.2419675925926,1,18,0 -afio,0.747197510388286,2.0817065145595,0.0678453147004074,https://salsa.debian.org/debian/afio, https://github.com/kholtman/afio,3009.1574652777776,0,6,0 -aflplusplus,-0.686637531101834,2.56987917132519,-1.47664664720389,https://salsa.debian.org/pkg-security-team/aflplusplus, https://github.com/AFLplusplus/AFLplusplus.git,1658.7534375,94,190,0 -aggdraw,-1.07382835714099,1.08967225466761,-1.53119433014289,https://salsa.debian.org/debian-gis-team/aggdraw, https://github.com/pytroll/aggdraw,4403.477824074074,4,15,2 -aha,-0.0329000286867077,2.2809487303377,-0.533748136594285,https://salsa.debian.org/debian/aha, https://github.com/theZiz/aha.git,3422.3746180555554,1,26,0 -aiodns,0.165682622787304,1.9021756707542,-0.278362239529697,https://salsa.debian.org/python-team/packages/aiodns, https://github.com/saghul/aiodns.git,3490.347627314815,13,17,0 -aiohttp-cors,-0.759657857710075,2.14980240243621,-1.64646549520465,https://salsa.debian.org/python-team/packages/aiohttp-cors, https://github.com/aio-libs/aiohttp-cors.git,2984.285,8,13,0 -aiohttp-jinja2,-0.775325443746932,2.26778246640382,-1.61544814699553,https://salsa.debian.org/python-team/packages/aiohttp-jinja2, https://github.com/aio-libs/aiohttp-jinja2,3277.172395833333,24,22,0 -aiomysql,-3.20037947133328,-0.702679209227465,-3.73565617907158,https://salsa.debian.org/python-team/packages/aiomysql, https://github.com/aio-libs/aiomysql.git,5227.991076388889,36,80,0 -aioprocessing,-1.81061727232512,-0.403150642885575,-2.07004751938444,https://github.com/davesteele/aioprocessing,https://github.com/davesteele/aioprocessing,3054.801087962963,3,13,0 -aircrack-ng,0.480045815485384,1.04445438725549,0.147529113264687,https://salsa.debian.org/pkg-security-team/aircrack-ng, https://github.com/aircrack-ng/aircrack-ng,5761.920949074074,27,56,7 -airspy-host,0.135032826004998,1.76380044815631,-0.226663426706937,https://salsa.debian.org/bottoms/pkg-airspy-host, https://github.com/airspy/airspyone_host.git,3592.9147685185185,9,15,0 -airspyhf,0.427779244708739,3.1863173208831,-0.243105119199454,https://salsa.debian.org/debian-hamradio-team/airspyhf, https://github.com/airspy/airspyhf.git,2334.5221527777776,3,13,0 -aiscm,-2.12660277467281,-0.902299849194399,-2.44827575241459,https://github.com/wedesoft/aiscm,https://github.com/wedesoft/aiscm,3606.191886574074,0,8,0 -akonadi-calendar-tools,1.27514857034163,3.41003869117582,0.35521733327247,https://salsa.debian.org/qt-kde-team/kde/akonadi-calendar-tools, https://invent.kde.org/pim/akonadi-calendar-tools,5771.388252314815,0,49,0 -akonadi-contacts,0.26721178028677,1.71793900045448,-0.0643570166038133,https://salsa.debian.org/qt-kde-team/kde/akonadi-contacts, https://invent.kde.org/pim/akonadi-contacts,5566.475057870371,4,105,0 -akonadi-import-wizard,0.794324594400879,3.91172069273375,-0.00342087062648847,https://salsa.debian.org/qt-kde-team/kde/akonadi-import-wizard, https://invent.kde.org/pim/akonadi-import-wizard,4309.273807870371,0,46,0 -akonadi-mime,0.815129071880836,4.12627760932511,-0.00497270873208065,https://salsa.debian.org/qt-kde-team/kde/akonadi-mime, https://invent.kde.org/pim/akonadi-mime,5764.833506944445,0,90,0 -alabaster,1.58400342307142,5.01808713483245,0.375411668055358,https://github.com/jbouse-debian/alabaster,https://github.com/jbouse-debian/alabaster,3086.3917592592593,1,6,0 -aldo,1.06014386707221,3.2363855086165,0.0731719800823227,https://salsa.debian.org/debian-hamradio-team/aldo, https://git.savannah.nongnu.org/git/aldo.git,1276.7806712962963,0,3,0 -alfred,-1.32579831544286,-0.975137632807647,-1.39757217650961,https://salsa.debian.org/communitywlan-team/alfred, https://git.open-mesh.org/alfred.git,4046.705115740741,13,7,0 -allegro4.4,0.294859965702309,1.65499872530344,-0.109902071380022,https://salsa.debian.org/games-team/allegro4.4, https://github.com/liballeg/allegro5.git,5772.815868055555,110,47,0 -allegro5,-0.476268621868809,-0.215392434276398,-0.53112698022826,https://salsa.debian.org/games-team/allegro5, https://github.com/liballeg/allegro5.git,5772.815868055555,110,47,0 -almanah,-0.0310059525129501,1.50053743695726,-0.710465526624638,https://salsa.debian.org/debian/almanah, https://gitlab.gnome.org/GNOME/almanah,5624.901215277778,54,77,0 -alot,-0.254426542394691,0.85334659710014,-0.728919512687038,https://salsa.debian.org/python-team/packages/alot, https://github.com/pazz/alot,4591.024155092593,49,67,1 -alsa-lib,2.86883354093849,3.51294107858017,2.35259966145999,https://salsa.debian.org/alsa-team/alsa-lib, git://git.alsa-project.org/alsa-lib.git,5782.973587962963,230,4,0 -alsa-oss,1.35546592851712,3.07586066310879,0.526063334434894,https://salsa.debian.org/alsa-team/alsa-oss, git://git.alsa-project.org/alsa-oss.git,3884.0495949074075,2,2,0 -alsa-plugins,0.527796544504067,0.991606748300998,0.243614509370282,https://salsa.debian.org/alsa-team/alsa-plugins, git://git.alsa-project.org/alsa-plugins.git,5617.823148148148,50,5,0 -alsa-tools,0.71982422734982,1.54591651582811,0.242571419699675,https://salsa.debian.org/alsa-team/alsa-tools, git://git.alsa-project.org/alsa-tools.git,5461.1300810185185,21,5,0 -alsa-ucm-conf,0.787953223482571,4.01105454654796,-0.037986042952459,https://salsa.debian.org/alsa-team/alsa-ucm-conf, git://git.alsa-project.org/alsa-ucm-conf.git,1552.916701388889,109,3,0 -alsa-utils,0.860124204817562,1.11643768195798,0.650622600387128,https://salsa.debian.org/alsa-team/alsa-utils, git://git.alsa-project.org/alsa-utils.git,5783.030914351852,155,7,0 -alt-ergo,-0.166253453986638,1.62066982590669,-0.694522712891391,https://salsa.debian.org/ocaml-team/alt-ergo, https://github.com/OCamlPro/alt-ergo.git,2224.8810300925925,19,33,0 -amavisd-milter,0.615386064993919,3.58791746330739,-0.470593396980749,https://salsa.debian.org/debian/amavisd-milter, https://github.com/prehor/amavisd-milter,5582.9392824074075,1,5,0 -amazon-ecr-credential-helper,-1.29350179960878,1.33757148943728,-1.88556025790644,https://github.com/awslabs/amazon-ecr-credential-helper/tree/debian,https://github.com/awslabs/amazon-ecr-credential-helper,2759.7970717592593,31,49,1 -amora-server,-0.638598553710922,1.53381287298563,-1.33733542687029,https://github.com/amora/amora/tree/master/amora-server,https://github.com/amora/amora,4404.234166666667,0,11,0 -ams,0.922279575592714,2.55579952536506,0.113516804487621,https://salsa.debian.org/multimedia-team/ams, https://git.code.sf.net/p/alsamodular/ams.git,5466.333530092593,0,3,0 -amsynth,0.330636481205025,1.22096174668993,-0.126935944721445,https://salsa.debian.org/multimedia-team/amsynth, https://github.com/nixxcode/amsynth.git ,5332.927199074074,11,24,0 -amule,0.483943008568694,0.687632642276388,0.323873644784891,https://salsa.debian.org/debian/amule, https://github.com/amule-project/amule.git,5047.608055555555,11,25,0 -amule-emc,-0.35842492549173,1.85783039290765,-0.805888050424067,https://salsa.debian.org/morph/amule-emc, https://github.com/palopezv/amule-emc,2735.137662037037,0,2,0 -analitza,0.376653958459358,1.50735754389768,-0.0476586747001439,https://salsa.debian.org/qt-kde-team/kde/analitza, https://invent.kde.org/education/analitza,5784.119675925926,4,60,0 -analog,0.310010033709121,0.630895138146135,0.112953472819103,https://salsa.debian.org/debian/analog, https://github.com/c-amie/analog-ce.git,798.2990509259259,2,1,0 -androguard,0.241297069832582,1.96964623712295,-0.413614131846716,https://salsa.debian.org/python-team/packages/androguard, https://github.com/androguard/androguard,4421.14162037037,25,102,1 -android-platform-dalvik,0.296093283974536,1.475913989957,-0.0862142466166115,https://salsa.debian.org/android-tools-team/android-platform-dalvik, https://android.googlesource.com/platform/dalvik,5526.243668981481,59,229,0 -android-platform-libnativehelper,0.00175902709747076,1.53595336248475,-0.286154188273728,https://salsa.debian.org/android-tools-team/android-platform-libnativehelper, https://android.googlesource.com/platform/libnativehelper,5505.390358796296,15,100,0 -android-platform-system-core,0.682236095100481,1.16632669133768,0.353293543497324,https://salsa.debian.org/android-tools-team/android-platform-system-core, https://android.googlesource.com/platform/system/core,5529.583877314815,375,1288,0 -android-platform-system-extras,0.69470936870439,3.30639348140659,-0.0338139621581865,https://salsa.debian.org/android-tools-team/android-platform-system-extras, https://android.googlesource.com/platform/system/extras,5529.421423611111,60,393,0 -android-platform-system-tools-aidl,0.444882270025389,3.15436161727056,-0.219404449162131,https://salsa.debian.org/android-tools-team/android-platform-system-tools-aidl, https://android.googlesource.com/platform/system/tools/aidl,3023.9934027777776,27,150,0 -android-platform-system-tools-hidl,-3.35793238298667,0.159597696330144,-4.25477338712501,https://salsa.debian.org/android-tools-team/android-platform-system-tools-hidl, https://android.googlesource.com/platform/system/tools/hidl,2797.1883912037038,16,123,0 -anfo,-0.516434387853255,1.11412287457208,-0.885801240207339,https://salsa.debian.org/med-team/anfo, https://github.com/udo-stenzel/anfo,2083.7738310185186,0,5,0 -angband,0.524012737304748,1.197044025941,0.093897414172582,https://salsa.debian.org/games-team/angband, https://github.com/angband/angband,5784.383275462963,62,97,7 -anki,0.648813290868109,1.2727622274722,0.245122798363572,https://salsa.debian.org/debian/anki, https://github.com/ankitects/anki.git,5553.596643518518,128,181,0 -anomaly,-2.69792324322731,-0.929443293100317,-3.01576616380581,https://github.com/mogaal/anomaly,https://github.com/mogaal/anomaly,224.81612268518518,0,2,0 -anosql,-1.75319624841393,0.617887353067759,-2.32130372860723,https://salsa.debian.org/python-team/packages/anosql, https://github.com/honza/anosql,2207.993252314815,1,18,0 -ansible-lint,0.211320028568518,2.3970134544815,-0.419254984826276,https://salsa.debian.org/python-team/packages/ansible-lint, https://github.com/ansible/ansible-lint,3772.125497685185,239,77,4 -antpm,-0.425797777129549,1.24994179184445,-0.909726437737696,https://salsa.debian.org/debian/antpm, https://github.com/ralovich/antpm,5246.650289351852,2,16,0 -anypaper,-0.836678133184714,1.82939574661697,-1.52533132104935,https://github.com/mogaal/anypaper,https://github.com/mogaal/anypaper,358.82306712962964,0,1,0 -aoeui,-1.57537450782922,-0.101833059663743,-2.0145689051822,https://salsa.debian.org/debian/aoeui, https://github.com/pklausler/aoeui.git,0.03113425925925926,0,4,0 -apache-curator,-2.76256754680773,-0.553082695624425,-3.29333100214989,https://salsa.debian.org/java-team/apache-curator, https://github.com/apache/curator.git,4523.4816435185185,47,128,0 -apachetop,-0.143396865464015,0.138479110564189,-0.243618701858805,https://salsa.debian.org/debian/apachetop, https://github.com/tessus/apachetop.git,4171.428784722222,1,5,0 -apbs,0.403944516342388,1.99609575996666,-0.160703720989548,https://salsa.debian.org/debichem-team/apbs, https://github.com/Electrostatics/apbs,3265.3524074074076,3,44,0 -apel,-0.169991167552123,0.0467119456793215,-0.250388459902794,https://salsa.debian.org/debian/apel, https://github.com/wanderlust/apel,5064.915416666667,2,8,0 -apgdiff,-0.535922125727779,1.15818063763013,-0.998404532675352,https://salsa.debian.org/postgresql/apgdiff, https://github.com/fordfrog/apgdiff,4911.740439814815,14,33,0 -apipkg,0.184852309301291,2.33864121667993,-0.297646362982771,https://salsa.debian.org/python-team/packages/apipkg, https://github.com/pytest-dev/apipkg,4796.353657407408,4,14,0 -apktool,-0.142364710819105,0.484434745991675,-0.329878944003666,https://salsa.debian.org/android-tools-team/apktool, https://github.com/JesusFreke/smali,4709.844421296296,28,24,0 -aplpy,-0.0173305787238414,1.63947414572158,-0.5266587064989,https://salsa.debian.org/debian-astro-team/aplpy, https://github.com/aplpy/aplpy.git,4761.81462962963,3,44,0 -appdirs,0.345827763928743,1.95777273592346,-0.1122252660673,https://salsa.debian.org/python-team/packages/appdirs, https://github.com/ActiveState/appdirs.git,4580.797060185185,5,36,0 -appstream-generator,-1.13327130705794,-0.106054630060675,-1.48245214164576,https://salsa.debian.org/pkgutopia-team/appstream-generator, https://github.com/ximion/appstream-generator,2846.9885185185185,14,5,0 -appstream-glib,0.306547939627559,0.950415332480095,0.0390455586714944,https://salsa.debian.org/pkgutopia-team/appstream-glib, https://github.com/hughsie/appstream-glib,3530.064537037037,77,29,0 -apriltag,-1.11792448520614,1.09172581797555,-1.60478369927801,https://salsa.debian.org/science-team/apriltag, https://github.com/AprilRobotics/apriltag.git,1884.0502083333333,21,28,0 -aprsdigi,0.178115776781859,2.74040042620765,-0.734339569554546,https://salsa.debian.org/debian-hamradio-team/aprsdigi, https://github.com/n2ygk/aprsdigi.git,5178.246157407408,2,9,0 -aprx,-0.270432687731495,2.12334679437291,-0.928014463668959,https://salsa.debian.org/debian-hamradio-team/aprx, https://github.com/PhirePhly/aprx,4964.077986111111,6,4,1 -apt-forktracer,0.0547352043403831,1.11225907504004,-0.240127558405969,https://github.com/porridge/apt-forktracer,https://github.com/porridge/apt-forktracer,5457.924699074074,1,3,0 -apt-offline,0.768191027819902,1.80772812578453,0.14873991524389,https://github.com/rickysarraf/apt-offline,https://github.com/rickysarraf/apt-offline,5588.93,4,18,3 -apt-venv,0.598527814932702,4.8192892934729,-0.729186428346901,https://salsa.debian.org/debian/apt-venv, https://github.com/LeoIannacone/apt-venv,1672.1250694444445,0,3,0 -aptitude-robot,0.0330441367843519,2.69876434953211,-0.675886625136312,https://github.com/elmar/aptitude-robot,https://github.com/elmar/aptitude-robot,3822.3247685185183,3,7,1 -aptly,-0.155286769639579,0.754982118024199,-0.460629588851527,https://salsa.debian.org/debian/aptly, https://github.com/aptly-dev/aptly.git,3570.9031944444446,53,62,0 -apulse,-0.17717245694643,1.29973697966089,-0.457689776114603,https://github.com/exaexa/apulse-debian,https://github.com/exaexa/apulse-debian,2693.7106712962964,2,11,0 -apvlv,0.802618607627995,2.49129268373325,-0.0110446925998544,https://salsa.debian.org/debian/apvlv, https://github.com/naihe2010/apvlv,4571.194467592592,1,28,0 -arachne-pnr,-0.239398811946727,0.905582303267077,-0.512849948602523,https://salsa.debian.org/science-team/arachne-pnr, https://github.com/cseed/arachne-pnr.git,1523.5826388888888,1,29,0 -arbiterjs,-0.937225020502237,1.30941715563241,-1.36792845588423,https://salsa.debian.org/js-team/arbiterjs, https://github.com/ArbiterJS/ArbiterJS,777.6784722222222,0,1,0 -arc,1.00343051924479,2.95692526003554,0.170462970292605,https://git.hadrons.org/cgit/debian/pkgs/arc.git, https://github.com/ani6al/arc,0.10119212962962963,1,1,0 -arc-theme,0.0557512099432434,0.947010638316818,-0.178866228103829,https://github.com/UbuntuBudgie/arc-theme/tree/debian,https://github.com/UbuntuBudgie/arc-theme,2773.5425578703703,36,30,0 -arch-test,0.0607618911495027,0.902121307048674,-0.111650473265456,https://github.com/kilobyte/arch-test/tree/debian,https://github.com/kilobyte/arch-test,2721.0558912037036,2,7,0 -archmage,-0.576675011074068,-0.303765149491576,-0.66643977901654,https://salsa.debian.org/python-team/packages/archmage, https://github.com/dottedmag/archmage,4875.184641203704,1,4,0 -arcp,-5.04003096550869,-2.68378015115337,-5.48022562431772,https://salsa.debian.org/python-team/packages/arcp, https://github.com/stain/arcp-py.git,744.5613194444444,0,3,0 -ardentryst,1.6336595560978,4.79019636159861,0.411496119890012,https://salsa.debian.org/games-team/ardentryst, https://github.com/ardentryst/ardentryst,3087.714386574074,4,6,0 -arename,-0.775437519802333,0.964651401264811,-1.13021327762464,https://salsa.debian.org/perl-team/modules/packages/arename, https://github.com/ft/arename.git,5509.574097222222,2,1,0 -argon2,0.743835667031226,2.53001733258646,0.120353018604403,https://salsa.debian.org/pkg-security-team/argon2, https://github.com/P-H-C/phc-winner-argon2,2090.997083333333,21,70,0 -ariba,-0.724970866684118,0.74972388381556,-1.17899230516215,https://salsa.debian.org/med-team/ariba, https://github.com/sanger-pathogens/ariba,3026.196354166667,10,22,0 -arno-iptables-firewall,-0.0994853604563674,0.238247100664681,-0.28857380307344,https://salsa.debian.org/pkg-security-team/arno-iptables-firewall, https://github.com/arno-iptables-firewall/aif.git,5173.18931712963,1,13,0 -arp-scan,0.797385402380103,2.15787074804071,0.191351546468569,https://salsa.debian.org/pkg-security-team/arp-scan, https://github.com/royhills/arp-scan,5689.268958333333,1,16,0 -arpack,0.383731858572043,0.90281659714996,0.109037111073968,https://salsa.debian.org/science-team/arpack, https://github.com/opencollab/arpack-ng.git,4374.647488425926,45,30,0 -arping,0.530645087037964,1.29700118051615,0.131538230952086,https://salsa.debian.org/debian/arping, https://github.com/ThomasHabets/arping,5640.3308564814815,6,8,1 -asn1crypto,0.974072984185648,4.18530240052276,0.0865816737110871,https://salsa.debian.org/python-team/packages/asn1crypto, https://github.com/wbond/asn1crypto.git,3074.7355092592593,14,27,0 -assess-el,-1.40003217092266,1.13321839319326,-2.02785078876853,https://salsa.debian.org/emacsen-team/assess-el, https://github.com/phillord/assess.git,2948.009340277778,0,8,0 -assimp,-0.0454824315267131,0.301977938062067,-0.176789060340407,https://salsa.debian.org/debian/assimp, https://github.com/assimp/assimp,5697.897766203704,208,641,2 -astlib,-0.495336351891529,0.608015445387811,-0.672906049388893,https://salsa.debian.org/debian-astro-team/astlib, https://github.com/mattyowl/astLib.git,2666.6349305555555,0,4,0 -astroid,0.265112984711874,1.4509353814692,-0.113106392786231,https://salsa.debian.org/python-team/packages/astroid, https://github.com/PyCQA/astroid,5779.930196759259,144,70,4 -astromenace,-0.408368489260551,0.580436103347323,-0.617588634321928,https://salsa.debian.org/games-team/astromenace, https://github.com/viewizard/astromenace.git,5567.492789351852,5,4,0 -astroplan,-0.440117647380012,0.368099355405067,-0.618300929779659,https://salsa.debian.org/debian-astro-team/astroplan, https://github.com/astropy/astroplan.git,3067.3247685185183,16,34,0 -astropy-healpix,-0.49444740252525,0.228063170215548,-0.722061408568394,https://salsa.debian.org/debian-astro-team/astropy-healpix, https://github.com/astropy/astropy-healpix,2653.9758333333334,3,14,5 -astropy-helpers,-0.997222938071242,1.14425473482467,-1.4302281515244,https://salsa.debian.org/debian-astro-team/astropy-helpers, https://github.com/astropy/astropy-helpers,3097.3243981481482,6,36,3 -astroquery,-0.565473413355733,-0.391755870957598,-0.607108416026627,https://salsa.debian.org/debian-astro-team/astroquery, https://github.com/astropy/astroquery.git,4368.872638888889,63,141,0 -asymptote,0.239690066392947,0.586126158419268,0.0399132445427328,https://github.com/debian-tex/asymptote,https://github.com/debian-tex/asymptote,4223.6715162037035,6,28,0 -at-spi2-atk,0.0604563992082259,0.235439147096145,-0.00430901128261484,https://salsa.debian.org/a11y-team/at-spi2-atk, https://gitlab.gnome.org/GNOME/at-spi2-atk.git,5197.203854166667,33,112,0 -at-spi2-core,0.219439151760584,0.577757057574272,0.0562810741003053,https://salsa.debian.org/a11y-team/at-spi2-core, https://gitlab.gnome.org/GNOME/at-spi2-core.git,5749.227164351852,186,332,0 -atari800,0.243826287478213,1.41118489077422,-0.322307451233891,https://github.com/bobek/aranym800-debian,https://github.com/bobek/aranym800-debian,4083.298877314815,1,3,0 -atig,-1.86484932436433,0.279641993042784,-2.4212366268619,https://salsa.debian.org/ruby-team/atig, https://github.com/atig/atig,4572.51880787037,2,14,1 -atkmm1.6,0.384725552263202,2.34414436672265,-0.0140246689276284,https://salsa.debian.org/gnome-team/atkmm, https://gitlab.gnome.org/GNOME/atkmm.git,4919.592418981481,1,11,0 -atlas-cpp,0.0341726982762952,1.17604381513103,-0.472138155533536,https://salsa.debian.org/games-team/atlas-cpp, https://github.com/worldforge/atlas-cpp,5588.922164351852,1,7,0 -atomix,-0.127346340836328,0.343956406208478,-0.279251348609716,https://salsa.debian.org/games-team/atomix, https://gitlab.gnome.org/GNOME/atomix.git,5678.142685185185,64,61,0 -atril,0.520773237862205,1.2869272542963,0.152212133447902,https://salsa.debian.org/debian-mate-team/atril, https://github.com/mate-desktop/atril.git,4392.879976851852,62,42,0 -audacious-plugins,1.72247171834969,2.52845544067147,1.16381708545179,https://salsa.debian.org/multimedia-team/audacious-plugins, https://github.com/audacious-media-player/audacious-plugins,5769.387013888889,19,100,0 -audacity,2.05957609206705,2.58790400303534,1.65289331150704,https://salsa.debian.org/multimedia-team/audacity, https://github.com/audacity/audacity.git,5069.8878125,215,104,0 -audiofile,0.422362872962016,1.13708828319636,0.0919717084661777,https://salsa.debian.org/multimedia-team/audiofile, https://github.com/mpruett/audiofile,1573.8945023148149,10,2,0 -audioread,0.479072623695549,2.83797236644546,-0.236304332359752,https://salsa.debian.org/python-team/packages/audioread, https://github.com/sampsyo/audioread.git,4407.000694444445,7,21,0 -austin,-1.98858852892086,0.974958297295704,-2.7198737393518,https://github.com/P403n1x87/austin,https://github.com/P403n1x87/austin,1837.728599537037,4,7,8 -autocutsel,0.179784385400598,2.4764961712794,-0.387389100269758,https://github.com/elmar/autocutsel-debian,https://github.com/elmar/autocutsel-debian,3741.7552430555556,3,8,0 -autokey,0.315787697284519,1.38469332821769,-0.191498222833535,https://salsa.debian.org/python-team/packages/autokey, https://github.com/autokey/autokey.git,5672.208819444444,14,35,0 -autolog,-0.458646695482971,0.523863618104121,-1.08434604225924,https://salsa.debian.org/pkg-security-team/autolog, https://github.com/JKDingwall/autolog.git,1891.041099537037,4,11,0 -automat,0.57973111859318,2.56516942056424,-0.0081655780065162,https://salsa.debian.org/python-team/packages/automat, https://github.com/glyph/Automat,3398.936238425926,12,27,0 -automx,-0.602057717962991,1.66065748723862,-1.37814875072612,https://github.com/wreiner/automx-debian.git,https://github.com/wreiner/automx-debian.git,38.18844907407407,1,1,0 -autopep8,-0.034679903300575,0.859752537921693,-0.311762502107219,https://salsa.debian.org/python-team/packages/autopep8, https://github.com/hhatto/autopep8.git,4684.442314814814,7,60,0 -autopostgresqlbackup,0.0717331465361871,1.17795098215516,-0.397378227547243,https://salsa.debian.org/kolter/autopostgresqlbackup, https://github.com/k0lter/autopostgresqlbackup,1670.5722222222223,8,3,0 -autopsy,0.267363629199221,1.48698131837389,-0.226335563528422,https://salsa.debian.org/debian/autopsy, https://github.com/sleuthkit/autopsy,5552.52337962963,24,149,0 -autorandr,-0.352715216459273,0.317126284596361,-0.518389331026041,https://salsa.debian.org/debian/autorandr, https://github.com/phillipberndt/autorandr.git,4779.707673611111,55,58,0 -autorenamer,-0.387619242637331,1.62524040114515,-0.886762447634072,https://github.com/porridge/autorenamer,https://github.com/porridge/autorenamer,3637.0090277777776,4,1,0 -autosuspend,-1.92504584282084,0.627810995762547,-2.46727081114522,https://salsa.debian.org/python-team/packages/autosuspend, https://github.com/languitar/autosuspend.git,3337.596284722222,6,9,0 -averell,-3.39170600349659,-0.26243257747773,-4.23121536245205,https://github.com/jeanparpaillon/averell,https://github.com/jeanparpaillon/averell,585.8797453703704,0,1,0 -avr-evtd,0.755271395491288,5.63934271407374,-0.829494080541009,https://github.com/rbrito/pkg-avr-evtd,https://github.com/rbrito/pkg-avr-evtd,3784.563078703704,0,1,0 -awesfx,0.870533101226705,2.21630178301874,0.156143202155603,https://salsa.debian.org/multimedia-team/awesfx, https://github.com/tiwai/awesfx.git,1324.8292592592593,0,1,0 -awesome,1.72937978927272,2.29903889018401,1.29895645198097,https://salsa.debian.org/reiner/awesome, https://github.com/awesomeWM/awesome.git,5762.697615740741,347,141,0 -awl,0.212738424160248,1.44732268299943,-0.283963228022918,https://gitlab.com/davical-project/awl, https://gitlab.com/davical-project/awl,5622.829930555556,8,27,0 -awscli,1.11701848843813,2.88442808693357,0.309492684550007,https://salsa.debian.org/cloud-team/awscli, https://github.com/aws/aws-cli,4045.383402777778,222,285,0 -axel,0.805964163823386,1.65801933012537,0.309925851705181,https://salsa.debian.org/debian/axel, https://github.com/axel-download-accelerator/axel.git,5432.066481481482,28,21,0 -backblaze-b2,-0.585646026414802,1.05613248809045,-0.982860590975837,https://salsa.debian.org/python-team/packages/backblaze-b2, https://github.com/Backblaze/B2_Command_Line_Tool,2942.6175925925927,21,71,0 -backbone,0.626839961686094,2.60121778854874,-0.0272691105681844,https://salsa.debian.org/js-team/backbone, https://github.com/jashkenas/backbone,4697.095173611111,30,344,2 -backintime,0.748612795567973,1.48571705075302,0.285720951621933,https://salsa.debian.org/jmw/pkg-backintime, https://github.com/bit-team/backintime,5520.9053125,17,50,3 -backuppc,0.439136867980086,0.738905733012293,0.213344842665476,https://salsa.debian.org/debian/backuppc, https://github.com/backuppc/backuppc,4883.167430555555,21,39,0 -backuppc-rsync,-2.95372652468636,0.233635531780002,-3.70623050600404,https://salsa.debian.org/debian/backuppc-rsync, https://github.com/backuppc/rsync-bpc,2751.3212037037038,2,9,0 -balsa,0.765309072825522,1.12243994511907,0.485050708400944,https://salsa.debian.org/gnome-team/balsa, https://gitlab.gnome.org/GNOME/balsa,5766.840208333333,67,84,0 -bambam,0.307093285057578,2.50759581723654,-0.341358645189873,https://github.com/porridge/bambam,https://github.com/porridge/bambam,5711.297395833333,24,13,0 -bamf,0.889085856365973,2.6238515703697,0.165247711334921,https://salsa.debian.org/debian-mate-team/bamf, https://git.launchpad.net/bamf,4608.038900462963,6,66,0 -baobab,1.40829573423258,2.99693128571174,0.651487689931474,https://salsa.debian.org/gnome-team/baobab, https://gitlab.gnome.org/GNOME/baobab.git,5757.9049537037035,199,211,0 -barclay,0.185180158756398,3.0141581767608,-0.602042434550918,https://salsa.debian.org/java-team/barclay, https://github.com/broadinstitute/barclay.git,2356.7614351851853,7,7,0 -bart,-0.177815138036834,2.12543736420799,-0.637214556515039,https://salsa.debian.org/med-team/bart, https://github.com/mrirecon/bart,3390.8110185185187,61,30,0 -bash-completion,3.04673319958774,3.56792044509047,2.62902783401384,https://salsa.debian.org/debian/bash-completion, https://github.com/scop/bash-completion,5698.983125,170,39,0 -batctl,-0.44637357804892,0.570372669607122,-0.616677377607984,https://salsa.debian.org/communitywlan-team/batctl, https://git.open-mesh.org/batctl.git,5724.537349537037,25,15,0 -batmand,-1.51506510931506,-0.306639490262926,-1.83985870088776,https://salsa.debian.org/communitywlan-team/batmand, https://git.open-mesh.org/batmand.git,5440.503356481481,1,12,0 -bbswitch,0.446167800268124,1.78840894178804,-0.0722161011810825,https://salsa.debian.org/nvidia-team/bbswitch, https://github.com/Bumblebee-Project/bbswitch,3680.6305555555555,2,16,1 -bcal,-0.76069743784758,1.25821441789707,-1.30485747484126,https://salsa.debian.org/debian/bcal, https://github.com/jarun/bcal.git,2530.8116435185184,8,4,0 -bchunk,1.39298301877137,3.62755081275134,0.431488685908172,https://salsa.debian.org/debian/bchunk, https://github.com/twojstaryzdomu/bchunk,1689.5562731481482,4,5,0 -bd,-0.570931406738078,1.76397108549389,-1.07177359635631,https://salsa.debian.org/debian/bd, https://github.com/vigneshwaranr/bd.git,3272.779247685185,3,12,0 -bear,-0.390018594071918,0.59549299969754,-0.597099729997488,https://salsa.debian.org/sramacher/bear, https://github.com/rizsotto/Bear,3987.655787037037,44,19,0 -beginend-el,-0.98120544742392,1.14756440927161,-1.47907570035627,https://salsa.debian.org/emacsen-team/beginend-el, https://github.com/DamienCassou/beginend.git,3077.310520833333,8,12,0 -beignet,-0.0858693474727698,0.150640955035062,-0.191846706591843,https://salsa.debian.org/opencl-team/beignet, https://gitlab.freedesktop.org/beignet/beignet.git,2200.3459027777776,82,10,0 -benchmark,-0.400741955214662,1.92211502933559,-1.20406228025166,https://salsa.debian.org/science-team/benchmark, https://github.com/google/benchmark,3640.584953703704,257,68,3 -berkeley-abc,-0.0691799172862805,1.15264186353368,-0.392688063221375,https://salsa.debian.org/science-team/berkeley-abc, https://github.com/berkeley-abc/abc.git,5782.911666666667,8,47,0 -bernhard,-3.82491382291294,-1.43294657373251,-4.33451811997754,https://salsa.debian.org/python-team/packages/bernhard, https://github.com/b20n/bernhard.git,2059.4699652777776,0,14,0 -berusky2,0.0431824403743055,1.29752167261577,-0.39858820857891,https://salsa.debian.org/games-team/berusky2, https://notabug.org/AsDaGo/berusky2,3400.716875,0,3,0 -betamax,-2.61867595034709,-1.71115444654894,-2.79296471637611,https://salsa.debian.org/python-team/packages/betamax, https://github.com/sigmavirus24/betamax,3448.4558796296296,7,33,2 -bfs,-1.11648899748412,-0.549895573103613,-1.19909841251411,https://salsa.debian.org/lamby/pkg-bfs, https://github.com/tavianator/bfs.git,2311.762627314815,11,10,0 -biber,0.0255972490490973,0.397529493523627,-0.113970940798544,https://github.com/debian-tex/biber,https://github.com/debian-tex/biber,5232.948425925926,2,17,0 -biblesync,0.325069114209177,3.36910240068842,-0.454746471221156,https://salsa.debian.org/pkg-crosswire-team/biblesync, https://github.com/karlkleinpaste/biblesync.git,2205.173877314815,0,6,0 -bibletime,0.832904867853053,1.62045226038533,0.301826653124195,https://salsa.debian.org/pkg-crosswire-team/bibletime, https://github.com/bibletime/bibletime.git,5560.0446875,4,19,0 -bibtool,0.67899184842312,1.77532496580043,0.129925599871968,https://salsa.debian.org/tex-team/bibtool, https://github.com/ge-ne/bibtool.git,4734.066354166666,1,5,0 -bijiben,1.61349372378808,3.79548983082324,0.647802192699546,https://salsa.debian.org/gnome-team/gnome-notes, https://gitlab.gnome.org/GNOME/gnome-notes,4086.3302314814814,192,113,0 -billiard,0.244106655450508,1.29061126498124,-0.113497180801368,https://salsa.debian.org/python-team/packages/billiard, https://github.com/celery/billiard,5102.575439814815,64,35,0 -binaryen,-1.22029933257713,0.314774513011918,-1.48512288844102,https://salsa.debian.org/debian/binaryen, https://github.com/WebAssembly/binaryen,2965.987847222222,143,38,0 -binfmt-support,2.1758267492697,3.76343471014382,1.31062422306792,https://salsa.debian.org/debian/binfmt-support, https://gitlab.com/cjwatson/binfmt-support.git,5677.401701388889,7,3,0 -binkd,-1.52911487316923,-0.720899386825205,-1.8984875134446,https://salsa.debian.org/md/binkd, https://github.com/pgul/binkd,5661.947349537037,4,23,0 -bino,0.195257650160866,1.88170602761767,-0.477460599883246,https://github.com/schaal/bino,https://github.com/schaal/bino,3762.7609490740742,0,4,0 -binwalk,0.223750881111973,1.33453734812974,-0.151364007244613,https://salsa.debian.org/pkg-security-team/binwalk, https://github.com/ReFirmLabs/binwalk,3364.812650462963,24,70,1 -biojava4-live,-1.57069139747092,-1.18805757454812,-1.65938073515717,https://salsa.debian.org/med-team/biojava4-live, https://github.com/biojava/biojava.git,5193.17375,13,133,0 -biometric-authentication,-0.485933223014382,1.53460316722766,-1.05540820789117,https://github.com/ukui/biometric-authentication,https://github.com/ukui/biometric-authentication,1286.1941203703705,2,8,0 -birdfont,0.15392158176408,1.52070719937222,-0.397131029435017,https://salsa.debian.org/fonts-team/birdfont, https://github.com/johanmattssonm/birdfont.git,4158.827222222222,6,15,0 -bisonc++,-0.346906257187492,0.19211504807292,-0.532691596963055,https://salsa.debian.org/debian/bisoncpp, https://gitlab.com/fbb-git/bisoncpp,5727.974699074074,1,2,0 -bitlbee,0.610414917036669,1.13341797451246,0.239033610311326,https://github.com/bitlbee/bitlbee,https://github.com/bitlbee/bitlbee,5775.524282407408,54,55,0 -bitstruct,-1.04221111689686,1.67587334368042,-1.74083643825012,https://salsa.debian.org/python-team/packages/bitstruct, https://github.com/eerimoq/bitstruct,3110.3722916666666,2,10,0 -black,-0.259858316466697,0.652655580647794,-0.48358049834747,https://salsa.debian.org/python-team/packages/black, https://github.com/psf/black.git,2098.4397453703705,441,11,0 -blackbox,0.924067069407153,1.54859497059993,0.49552529995811,https://salsa.debian.org/debian/blackbox, https://github.com/bbidulock/blackboxwm,5638.59306712963,4,7,0 -bladerf,0.248655998016964,1.40886764008124,-0.170338666248805,https://salsa.debian.org/debian-hamradio-team/bladerf, https://github.com/Nuand/bladeRF.git,3942.800648148148,48,43,0 -blahtexml,-0.848977997693807,1.48264420883758,-1.46630499643819,http://github.com/abhidg/pkg-blahtexml,http://github.com/abhidg/pkg-blahtexml,103.99862268518518,0,1,0 -blastem,0.184742756792411,3.26483269108914,-0.620286785625011,https://salsa.debian.org/games-team/blastem, https://gitlab.com/coringao/blastem,2957.0080787037036,0,8,0 -blinken,0.832473100001201,3.08463395922673,0.0518074456303542,https://salsa.debian.org/qt-kde-team/kde/blinken, https://anongit.kde.org/blinken.git,5781.8173611111115,2,45,0 -blitz++,0.0768120247270267,0.481108916453426,-0.151958180445178,https://salsa.debian.org/math-team/blitzxx, https://github.com/blitzpp/blitz,1587.5368287037038,16,14,0 -bluebird-gtk-theme,1.1380974192667,4.27679649907411,0.156297008688033,https://salsa.debian.org/desktop-themes-team/bluebird-gtk-theme, https://github.com/shimmerproject/Bluebird,2956.8580092592592,3,16,0 -bluedevil,1.5816359635216,2.93469572935427,0.839829091456055,https://salsa.debian.org/qt-kde-team/kde/bluedevil, https://invent.kde.org/plasma/bluedevil.git,4989.224108796297,10,87,0 -bmap-tools,-0.150405205584776,1.12527328019887,-0.487915123133271,https://salsa.debian.org/debian/bmap-tools, https://github.com/intel/bmap-tools,4042.210324074074,15,24,3 -boinctui,-0.143241370303535,1.42078631201341,-0.551211578534268,https://github.com/suleman1971/boinctui,https://github.com/suleman1971/boinctui,3939.3302893518517,1,7,0 -bolt,0.959535111552448,3.85135258977555,0.123619878061703,https://salsa.debian.org/freedesktop-team/bolt, https://gitlab.freedesktop.org/bolt/bolt,2279.929108796296,7,17,0 -bomber,0.412083242283786,2.93756936777485,-0.136552286781933,https://salsa.debian.org/qt-kde-team/kde/bomber, https://anongit.kde.org/bomber.git,5633.3196875,2,46,0 -boot-info-script,-0.380931310220602,1.1240423782693,-0.708241731837265,https://salsa.debian.org/debian/boot-info-script, https://github.com/arvidjaar/bootinfoscript,3172.7375,1,7,0 -booth,-2.58824334072441,-1.37680108542551,-2.95829241505189,https://salsa.debian.org/ha-team/booth, https://github.com/ClusterLabs/booth.git,4438.4447337962965,6,37,0 -bordeaux-threads,-0.131938030153011,2.29490506357594,-0.756389175678033,https://salsa.debian.org/common-lisp-team/bordeaux-threads, https://github.com/sionescu/bordeaux-threads,618.6993865740741,29,15,2 -borgbackup,-0.141651954534038,-0.0465534936694726,-0.179040806323505,https://salsa.debian.org/debian/borgbackup, https://github.com/borgbackup/borg.git,5039.137222222223,124,238,0 -bossa,0.0893999445646042,1.66122635928921,-0.416352452488754,https://salsa.debian.org/science-team/bossa, https://github.com/shumatech/BOSSA.git,3233.4649537037035,7,26,0 -bovo,0.197791842221217,1.76581130933561,-0.146862530808937,https://salsa.debian.org/qt-kde-team/kde/bovo, https://anongit.kde.org/bovo.git,5772.221747685186,5,52,0 -bowtie2,-0.41732141777028,-0.233072452009442,-0.469307515926621,https://salsa.debian.org/med-team/bowtie2, https://github.com/BenLangmead/bowtie2,4656.630277777777,6,51,0 -boxbackup,-0.837110011505577,0.0115481537928637,-1.326464815788,https://salsa.debian.org/debian/boxbackup, https://github.com/boxbackup/boxbackup.git,5737.3015625,2,18,0 -bpfcc,-0.333019326922335,0.00941862928579503,-0.463784820925323,https://salsa.debian.org/debian/bpfcc, https://github.com/iovisor/bcc.git,3150.8884143518517,486,219,0 -bpftrace,-0.0464948592723921,2.56209374041305,-0.659426701140891,https://salsa.debian.org/debian/bpftrace, https://github.com/iovisor/bpftrace,2557.1546412037037,188,54,5 -bppphyview,-0.322998697146323,1.68940048110285,-1.06946424019755,https://salsa.debian.org/med-team/bppphyview, https://github.com/BioPP/bppphyview,5024.941805555555,0,11,0 -bpython,-0.0434810994035848,0.644020757602584,-0.307087966803881,https://salsa.debian.org/sramacher/bpython, https://github.com/bpython/bpython.git,5358.551099537037,54,102,0 -braa,0.18857550913631,2.42325022699813,-0.363339702123432,https://salsa.debian.org/pkg-security-team/braa, https://github.com/mteg/braa,1136.4603125,1,3,0 -breathe,-0.991213500820718,-0.830938973718159,-1.0391354826844,https://salsa.debian.org/python-team/packages/breathe, https://github.com/michaeljones/breathe.git,5375.564594907408,34,85,0 -breeze,0.954536425847906,2.56322721308363,0.264790263741776,https://salsa.debian.org/qt-kde-team/kde/breeze, https://invent.kde.org/plasma/breeze.git,3513.291469907407,32,111,0 -breeze-gtk,0.899112026097312,3.31987427889671,0.109365246250756,https://salsa.debian.org/qt-kde-team/kde/breeze-gtk, https://invent.kde.org/plasma/breeze-gtk,3131.2482291666665,13,50,0 -breeze-plymouth,0.211180577233158,2.72054624164862,-0.383970554979043,https://salsa.debian.org/qt-kde-team/kde/breeze-plymouth, https://invent.kde.org/plasma/breeze-plymouth.git,2848.3399074074073,0,14,0 -brewtarget,0.484432121012412,2.85702008142999,-0.42658381895285,https://salsa.debian.org/debian/brewtarget, https://github.com/Brewtarget/brewtarget.git,5451.5742129629625,13,84,0 -brise,-0.308044257748576,1.03574501060784,-0.687368349200967,https://salsa.debian.org/debian/brise, https://github.com/rime/brise,2544.886261574074,5,23,0 -brlaser,0.40724322632136,2.15415528750924,-0.0102827942670847,https://salsa.debian.org/printing-team/brlaser, https://github.com/pdewacht/brlaser,3342.205983796296,4,11,0 -brotli,0.1260775006741,0.545442605177154,-0.00835996147527708,https://salsa.debian.org/debian/brotli, https://github.com/google/brotli,3713.0230555555554,77,45,0 -bruteforce-luks,0.450685726895421,3.93090609242965,-0.344105736549171,https://salsa.debian.org/pkg-security-team/bruteforce-luks, https://github.com/glv2/bruteforce-luks,1977.6153125,2,8,0 -brutespray,-0.00857447369969729,2.06226511956974,-0.445603786021027,https://salsa.debian.org/pkg-security-team/brutespray, https://github.com/x90skysn3k/brutespray,2174.873599537037,7,10,0 -bsdowl,-1.60198847164572,1.75769684398088,-2.51529282607367,https://github.com/michipili/bsdowl/tree/debian,https://github.com/michipili/bsdowl,3910.6843055555555,1,6,3 -btchip-python,-1.18126727565667,1.40233755830126,-1.74149210073441,https://salsa.debian.org/python-team/packages/btchip-python, https://github.com/LedgerHQ/btchip-python.git,3019.8821180555556,5,10,0 -btfs,-0.169232571549437,2.67737572993722,-0.890342282945852,https://salsa.debian.org/debian/btfs, https://github.com/johang/btfs,2774.3356481481483,11,11,0 -bti,-0.258899790920775,0.719543827742079,-0.728355222098141,https://git.toastfreeware.priv.at/debian/bti.git, https://github.com/gregkh/bti.git,3076.666469907407,14,25,0 -btrbk,0.115661714812478,2.28486375421134,-0.528665037688743,https://github.com/digint/btrbk-packaging,https://github.com/digint/btrbk-packaging,2807.8996064814814,1,3,0 -btrfs-compsize,0.105824084946372,2.80496949324477,-0.483145807159615,https://github.com/kilobyte/compsize/tree/debian,https://github.com/kilobyte/compsize,1814.023148148148,0,8,0 -budgie-desktop,-0.386390958459653,-0.105065504385218,-0.472234935184176,https://github.com/ubuntubudgie/budgie-desktop/tree/debian,https://github.com/ubuntubudgie/budgie-desktop,3652.4221643518517,35,69,1 -budgie-extras,-0.354986420486241,1.91887121098529,-0.884811147535145,https://github.com/UbuntuBudgie/budgie-extras/tree/debian,https://github.com/UbuntuBudgie/budgie-extras,2299.353599537037,13,15,6 -budgie-indicator-applet,-0.316571005570996,1.8644335275796,-0.771503970333106,https://github.com/UbuntuBudgie/budgie-indicator-applet/tree/debian,https://github.com/UbuntuBudgie/budgie-indicator-applet,2410.5153935185185,0,6,1 -bugwarrior,-0.880989484353049,0.263466512375845,-1.21053346891749,https://salsa.debian.org/tasktools-team/bugwarrior, https://github.com/ralphbean/bugwarrior,4376.963136574074,78,74,1 -bugz,-0.927700646295843,0.21157089130765,-1.31507232059743,https://salsa.debian.org/debian/bugz, https://github.com/williamh/pybugz,3185.246516203704,30,9,0 -buildapp,-0.63064476325835,1.6220492356019,-1.34203914519867,https://salsa.debian.org/common-lisp-team/buildapp, https://github.com/xach/buildapp,2095.158275462963,0,6,0 -buku,-0.274010691192327,1.89035893297151,-0.721377824853447,https://salsa.debian.org/debian/buku, https://github.com/jarun/buku.git,2958.704652777778,37,54,0 -bumblebee,0.376529066809866,1.0876582951625,0.00910916919229319,https://salsa.debian.org/nvidia-team/bumblebee, https://github.com/Bumblebee-Project/Bumblebee,3352.040601851852,5,32,2 -bumpversion,-0.660171191852264,1.36514343303696,-1.14636377768418,https://salsa.debian.org/debian/bumpversion, https://github.com/c4urself/bump2version,3866.5811574074073,20,43,3 -bundler,0.575011714962617,1.53924818982463,0.101033766915076,https://salsa.debian.org/ruby-team/bundler, https://github.com/carlhuda/bundler,4417.961099537037,292,766,15 -bwm-ng,1.40121922638423,3.17070056112281,0.556698761606925,https://salsa.debian.org/debian/bwm-ng, https://github.com/vgropp/bwm-ng,5022.657708333333,1,12,0 -bzflag,0.831912962618451,1.43007016887885,0.417821043007712,https://salsa.debian.org/games-team/bzflag, https://github.com/BZFlag-Dev/bzflag.git,5782.5434259259255,11,63,0 -c-ares,0.344129878059456,1.19164062844342,0.0308943147661174,https://salsa.debian.org/debian/c-ares, https://github.com/c-ares/c-ares.git,5778.617222222222,133,22,0 -c-blosc,0.0806218390417441,0.890051594998846,-0.098325224414899,https://salsa.debian.org/debian/c-blosc, https://github.com/Blosc/c-blosc,5250.661886574074,8,67,0 -cached-property,-0.0144008396077482,0.768841150603926,-0.147182200978449,https://salsa.debian.org/tryton-team/cached-property, https://github.com/pydanny/cached-property.git,3487.9884837962964,5,25,0 -cacti,0.00536007700240355,0.122346018729004,-0.0835443349093317,https://salsa.debian.org/debian/cacti, https://github.com/Cacti/cacti,5785.20011574074,136,51,4 -cafeobj,-1.81043132765264,-1.01537341316671,-2.04973002943085,https://github.com/CafeOBJ/cafeobj,https://github.com/CafeOBJ/cafeobj,3212.0939699074074,0,7,0 -cairo,2.44022006169417,3.02148476965641,1.96798322216617,https://salsa.debian.org/gnome-team/cairo, https://gitlab.freedesktop.org/cairo/cairo,5768.3455324074075,189,108,0 -cairocffi,0.84294401110687,3.06821858631603,-0.00077321186560916,https://salsa.debian.org/python-team/packages/cairocffi, https://github.com/Kozea/cairocffi.git,3860.887303240741,11,29,0 -cairomm,0.291580973786732,1.22301315397499,0.0127885432468999,https://salsa.debian.org/gnome-team/cairomm, https://gitlab.freedesktop.org/cairo/cairomm,5773.933125,19,12,0 -cairosvg,-0.169275519208199,0.827875339742961,-0.417449248764193,https://salsa.debian.org/python-team/packages/cairosvg, https://github.com/Kozea/CairoSVG,4844.462372685185,8,45,0 -caja,1.05706265403582,1.80903098756041,0.557893576640636,https://salsa.debian.org/debian-mate-team/caja, https://github.com/mate-desktop/caja.git,4392.040092592592,58,63,0 -caja-actions,0.19646613345428,2.0196315904513,-0.364011463949712,https://salsa.debian.org/debian-mate-team/caja-actions, https://github.com/mate-desktop/caja-actions,4195.368599537037,3,13,0 -caja-admin,0.340286316524602,2.91734447906536,-0.236688444902846,https://salsa.debian.org/debian-mate-team/caja-admin, https://github.com/infirit/caja-admin,2910.0051851851854,15,12,0 -caja-dropbox,1.41937986846204,4.6529613874587,0.236638033902288,https://salsa.debian.org/debian-mate-team/caja-dropbox, https://github.com/mate-desktop/caja-dropbox.git,4038.019699074074,13,26,0 -caja-extensions,0.991186000270137,3.12942899642606,0.149650662325303,https://salsa.debian.org/debian-mate-team/caja-extensions, https://github.com/mate-desktop/caja-extensions.git,3680.0453125,11,27,0 -caja-mediainfo,-0.634642768575629,1.49194857331788,-1.21697512170523,https://salsa.debian.org/debian-mate-team/caja-mediainfo, https://github.com/linux-man/caja-mediainfo-tab,1186.626701388889,1,3,0 -caja-rename,0.339533668061403,2.98506598246458,-0.243378943435302,https://salsa.debian.org/debian-mate-team/caja-rename, https://github.com/tari01/caja-rename,1145.7519328703704,25,4,0 -cakephp,-0.304322882573766,0.0640461085078946,-0.404177810794632,https://salsa.debian.org/debian/cakephp, https://github.com/cakephp/cakephp.git,5783.6353125,209,780,0 -calamares,-0.455652878363946,0.946310470889372,-0.911223035467483,https://salsa.debian.org/qt-kde-team/extras/calamares, https://github.com/calamares/calamares.git,3478.1256828703704,53,110,0 -caml-crush,-2.83911537156956,-0.439584928910544,-3.59558026662554,https://github.com/caml-pkcs11/caml-crush,https://github.com/caml-pkcs11/caml-crush,3062.2642708333333,0,13,0 -caml-mode,1.32986249831521,3.18554156195927,0.406473286475593,https://salsa.debian.org/ocaml-team/caml-mode, https://github.com/ocaml/caml-mode.git,5551.489988425926,7,24,0 -camlidl,-0.233754700378937,0.070983360778372,-0.316498297708785,https://salsa.debian.org/ocaml-team/camlidl, https://github.com/xavierleroy/camlidl,2560.0011689814814,6,6,0 -camlimages,-0.401087183624053,0.0604205610056053,-0.627154862074492,https://salsa.debian.org/ocaml-team/camlimages, https://gitlab.com/camlspotter/camlimages.git,4968.093263888889,0,9,0 -camlp4,0.171118733427445,1.42770838037044,-0.154556831791696,https://salsa.debian.org/ocaml-team/camlp4, https://github.com/ocaml/camlp4.git,5404.4002199074075,6,40,0 -camomile,-0.17496474143281,0.504631671983068,-0.411654885699695,https://salsa.debian.org/ocaml-team/camomile, https://github.com/yoriyuki/Camomile.git,3699.9040972222224,2,16,0 -camp,-0.0635736975894291,2.24226464768133,-0.867818518898671,https://salsa.debian.org/med-team/camp, https://github.com/IRCAD/camp.git,3917.821412037037,2,16,0 -can-utils,-0.315181842714809,1.05248108419277,-0.612842689675788,https://salsa.debian.org/debian/can-utils, https://github.com/linux-can/can-utils.git,5750.457291666667,42,46,0 -cantata,-0.0809605588480083,0.467733969588146,-0.298323322434278,https://salsa.debian.org/multimedia-team/cantata, https://github.com/CDrummond/cantata,3748.1966782407408,63,86,0 -capistrano,-0.0128603975759655,1.57199400935735,-0.718630647157042,https://salsa.debian.org/ruby-team/capistrano, https://github.com/capistrano/capistrano.git,5751.728206018519,85,387,0 -capnproto,0.268831217820633,0.976027409602492,-0.0981830891894599,https://github.com/thomaslee/capnproto-debian,https://github.com/thomaslee/capnproto-debian,3752.338587962963,3,4,0 -capstone,0.392091658238478,1.32309189376764,0.0241868852354586,https://salsa.debian.org/pkg-security-team/capstone, https://github.com/aquynh/capstone,3658.363263888889,170,182,0 -carbon-c-relay,-1.72067037974238,2.11869981422391,-2.79128175183474,https://salsa.debian.org/debian/carbon-c-relay, https://github.com/grobian/carbon-c-relay.git,3376.0489467592593,8,36,0 -care,-0.283623715441212,3.50380717493441,-1.34600107840302,https://github.com/ivoire/CARE-debian,https://github.com/ivoire/CARE-debian,2.7190856481481482,0,2,0 -caribou,3.59300481060791,7.24017168277409,2.14960650788183,https://salsa.debian.org/gnome-team/caribou, https://gitlab.gnome.org/GNOME/caribou.git,4787.5027199074075,115,137,0 -casacore-data-observatories,-0.193209856940157,1.24126511547144,-0.456590678476781,https://salsa.debian.org/debian-astro-team/casacore-data-observatories, https://github.com/casacore/observatories-table.git,766.9570138888889,1,3,0 -casparcg-server,-1.32267476908003,1.97344951352865,-2.34218840460277,https://salsa.debian.org/multimedia-team/casparcg-server/, https://github.com/CasparCG/server,4812.199074074074,35,54,0 -cassbeam,-0.259045108732969,0.99925176795752,-0.64497459970991,https://salsa.debian.org/debian-astro-team/cassbeam, https://github.com/ratt-ru/cassbeam,1099.9010185185184,0,5,0 -castle-game-engine,-0.13652506448966,2.18823366263936,-1.04099028707213,https://salsa.debian.org/pascal-team/castle-game-engine, https://github.com/castle-engine/castle-engine.git,5781.716412037037,3,36,0 -castxml,-0.51036920097599,0.0369337092396763,-0.648774761303187,https://salsa.debian.org/med-team/castxml, https://github.com/CastXML/CastXML.git,3541.982013888889,14,7,0 -casync,-1.01620040906362,-0.313916552001019,-1.22652686269664,https://salsa.debian.org/systemd-team/casync, https://github.com/systemd/casync,2466.7584606481482,38,15,0 -catch2,-2.71144008275834,-1.08275959657546,-3.01833866248281,https://salsa.debian.org/debian/catch2, https://github.com/catchorg/Catch2.git,4779.021990740741,332,92,0 -catcodec,-1.16856097988268,1.07727622127783,-1.61838805183779,https://salsa.debian.org/openttd-team/catcodec, https://github.com/OpenTTD/catcodec.git,4292.817731481481,2,4,0 -catimg,-0.095358226892815,2.16059280461038,-0.684470800131645,https://salsa.debian.org/debian/catimg, https://github.com/posva/catimg.git,3000.6790046296296,7,14,0 -caveexpress,-0.4341110970634,0.569471844099123,-0.596582894640061,https://salsa.debian.org/games-team/caveexpress, https://github.com/mgerhardy/caveexpress,2582.468125,2,6,0 -cavezofphear,0.0722256397124372,3.40949806890074,-0.719928552689934,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,23.047060185185185,0,1,0 -cbatticon,-0.663419875564642,2.03340349247728,-1.26388333093062,https://salsa.debian.org/debian/cbatticon, https://github.com/valr/cbatticon.git,4175.712280092593,3,25,0 -cbflib,0.93542859469883,4.35392030923547,-0.192952620584131,https://salsa.debian.org/science-team/cbflib, https://github.com/yayahjb/cbflib,5636.079074074074,1,18,0 -cbm,0.21754416509263,1.98271593846827,-0.387294516619196,https://salsa.debian.org/debian/cbm, https://github.com/resurrecting-open-source-projects/cbm,918.9922337962963,1,3,0 -ccbuild,-0.962946960309181,0.114636713661811,-1.38364630293163,https://salsa.debian.org/debian/ccbuild, https://github.com/bneijt/ccbuild.git,4764.88787037037,1,5,0 -cccc,1.16306556252959,3.77237240672707,0.0933849485786392,https://salsa.debian.org/debian/cccc, https://github.com/sarnold/cccc,2703.078263888889,1,7,0 -ccd2iso,0.361667663026416,2.3145122267346,-0.282934292614776,https://github.com/paulproteus/ccd2iso-debian,https://github.com/paulproteus/ccd2iso-debian,10.083055555555555,1,1,0 -ccdproc,-0.467491092045007,0.153693821401589,-0.61760691842397,https://salsa.debian.org/debian-astro-team/ccdproc, https://github.com/astropy/ccdproc.git,3686.110925925926,2,59,0 -cciss-vol-status,0.30521696521445,2.35844741982121,-0.341008269194019,https://salsa.debian.org/debian/cciss-vol-status, https://git.code.sf.net/p/cciss/web,4649.935173611111,0,6,0 -cclive,0.307502373439416,1.02460368794776,-0.0680117934195265,https://github.com/mogaal/cclive,https://github.com/mogaal/cclive,1632.909375,1,4,0 -ccsm,1.24194467635941,2.58137651751734,0.508953836800175,https://salsa.debian.org/compiz-team/ccsm, https://gitlab.com/compiz/ccsm.git,5486.819548611111,20,20,0 -cd-discid,0.692531699194494,3.31714740439398,-0.0825478540875517,https://github.com/taem/cd-discid/tree/deb,https://github.com/taem/cd-discid,2591.0086574074076,2,2,0 -cdist,-0.585050486202981,2.17594468971705,-1.41288579539026,https://salsa.debian.org/debian/cdist, https://code.ungleich.ch/ungleich-public/cdist,4573.481122685185,22,116,0 -cecilia,2.11941372654458,4.58891034831852,0.951719085649799,https://salsa.debian.org/multimedia-team/cecilia, https://github.com/belangeo/cecilia5.git,2818.905324074074,0,14,0 -cellwriter,1.0089121851132,3.16829611372249,-0.0123490019388128,https://salsa.debian.org/debian/cellwriter, https://github.com/risujin/cellwriter,1174.0054050925926,1,2,0 -cen64,-0.029911283215682,2.26144224386536,-0.656674834422946,https://github.com/dh4/cen64-debian/,https://github.com/dh4/cen64-debian,1926.2346064814815,0,5,0 -cen64-qt,-0.75249983700087,1.46037636686185,-1.3157313925883,https://github.com/dh4/cen64-qt-debian/,https://github.com/dh4/cen64-qt-debian,1637.485798611111,0,4,0 -centreon-clib,-3.28683340227343,-0.861496330752058,-3.74980450462126,https://salsa.debian.org/centreon-team/centreon-clib, https://github.com/centreon/centreon-clib.git,4179.851145833333,9,17,0 -ceres-solver,0.146007252238032,1.31912325385826,-0.329920750077309,https://salsa.debian.org/science-team/ceres-solver, https://github.com/ceres-solver/ceres-solver.git,4197.525416666666,26,96,0 -certspotter,-1.03336899144768,-0.0755768851187664,-1.23321678033423,https://salsa.debian.org/go-team/packages/certspotter, https://github.com/sslmate/certspotter,2838.790173611111,7,8,2 -cewl,-0.0142294381514053,1.81401970760581,-0.3642449143816,https://salsa.debian.org/pkg-security-team/cewl, https://github.com/digininja/CeWL.git,2751.2389351851853,7,13,0 -cffi,-0.0191807040781388,1.35391352063322,-0.541587320668192,https://salsa.debian.org/common-lisp-team/cffi, https://github.com/cffi/cffi.git,5610.822916666667,73,39,0 -cftime,-0.0539845669987312,2.13515685027106,-0.472688008644887,https://salsa.debian.org/debian-gis-team/cftime/, https://github.com/Unidata/cftime,5698.250347222222,7,40,1 -cgroupfs-mount,0.595007950900762,2.24623334497127,0.0389645238605131,https://github.com/tianon/cgroupfs-mount,https://github.com/tianon/cgroupfs-mount,2931.2437847222222,0,7,0 -chafa,0.272945474595222,2.52779998751645,-0.163744365589759,https://salsa.debian.org/debian/chafa, https://github.com/hpjansson/chafa.git,2095.0478819444443,25,6,0 -chaosreader,0.0512197310285199,1.96603100420262,-0.369285280047979,https://salsa.debian.org/pkg-security-team/chaosreader, https://github.com/brendangregg/Chaosreader,66.77311342592593,0,4,0 -charls,0.0895204965616005,0.743307844318276,-0.074607345455957,https://salsa.debian.org/med-team/charls, https://github.com/team-charls/charls.git,5412.763923611111,9,14,0 -charmtimetracker,-0.44413841179052,1.22308120427527,-0.879682995740352,https://salsa.debian.org/qt-kde-team/extras/charmtimetracker, https://github.com/KDAB/Charm,5169.286909722222,10,73,1 -chaussette,-2.39731325848858,0.107928752910017,-3.33529053776444,https://github.com/circus-tent/chaussette,https://github.com/circus-tent/chaussette,1782.677476851852,1,42,0 -checkpolicy,-0.0767985152455945,0.185810291123362,-0.173362009900664,https://salsa.debian.org/selinux-team/checkpolicy, https://github.com/SELinuxProject/selinux,5592.836342592593,179,30,0 -cheesecutter,-0.890992243560917,1.83461474605832,-1.50149644324579,https://salsa.debian.org/multimedia-team/cheesecutter, https://github.com/theyamo/CheeseCutter,2936.8167824074076,4,11,0 -cheetah,0.258075495611624,1.20984349450528,-0.0894485619358363,https://salsa.debian.org/python-team/packages/cheetah, https://github.com/CheetahTemplate3/cheetah3.git,5732.775115740741,17,23,0 -chemical-mime-data,0.933446796932344,3.30646333026514,0.103786539245329,https://salsa.debian.org/debichem-team/chemical-mime-data, https://github.com/dleidert/chemical-mime,3567.6745833333334,0,2,0 -chemps2,-1.03313848481112,-0.197981076201515,-1.31119061519628,https://salsa.debian.org/debichem-team/chemps2, https://github.com/SebWouters/CheMPS2,3010.6861342592592,0,9,0 -cherrypy3,0.989437466604577,2.54882088940002,0.294563086714629,https://salsa.debian.org/python-team/packages/cherrypy3, https://github.com/cherrypy/cherrypy.git,5747.003958333334,46,137,0 -chkboot,-0.699136888691687,1.72220095009199,-1.24498663476529,https://salsa.debian.org/debian/chkboot, https://github.com/grazzolini/chkboot,1967.5233564814814,3,7,1 -chmlib,-0.0246885056889141,0.140299694078738,-0.0912132643127262,https://salsa.debian.org/debian/chmlib, https://github.com/jedwing/CHMLib.git,40.661770833333335,0,1,0 -chocolate-doom,-0.196212940385903,0.410332976031546,-0.44464047975612,https://salsa.debian.org/games-team/chocolate-doom, https://github.com/chocolate-doom/chocolate-doom.git,5606.874756944444,24,81,0 -chromaprint,0.36003246255044,1.39366830627116,0.0316097074812693,https://salsa.debian.org/multimedia-team/chromaprint, https://github.com/acoustid/chromaprint,4607.495162037037,12,19,3 -chuck,1.06294006468148,3.5097730621169,-0.0355368922700332,https://salsa.debian.org/debian/chuck, https://github.com/ccrma/chuck,4777.866030092592,19,55,0 -ciderwebmail,-0.695259428174782,1.43904473196048,-1.4225189002861,https://salsa.debian.org/perl-team/modules/packages/ciderwebmail, https://github.com/CiderWebmail/CiderWebmail.git,5148.957199074074,1,13,0 -ciftilib,-2.23371141055036,-0.584429452977969,-2.60098026330442,https://salsa.debian.org/med-team/ciftilib, https://github.com/Washington-University/CiftiLib,3498.0756944444443,2,7,0 -cimg,-0.3086549748001,0.468251660623174,-0.689796512746111,https://salsa.debian.org/science-team/cimg, https://github.com/GreycLab/CImg.git,3104.373148148148,1,34,0 -cinnamon,0.673403338718231,1.02999248853982,0.409021920872131,https://salsa.debian.org/cinnamon-team/cinnamon, https://github.com/linuxmint/cinnamon.git,4384.654270833334,233,185,0 -cinnamon-control-center,0.2504784151215,0.929266303998142,-0.0203648631736492,https://salsa.debian.org/cinnamon-team/cinnamon-control-center, https://github.com/linuxmint/cinnamon-control-center.git,3966.129803240741,18,24,0 -cinnamon-desktop,0.0054443417185728,0.425688024535913,-0.0943315057548648,https://salsa.debian.org/cinnamon-team/cinnamon-desktop, https://github.com/linuxmint/cinnamon-desktop.git,3741.069247685185,26,27,0 -cinnamon-menus,0.357453896052093,2.08158010297003,-0.0748356792223503,https://salsa.debian.org/cinnamon-team/cinnamon-menus, https://github.com/linuxmint/cinnamon-menus.git,3589.8994560185183,11,10,0 -cinnamon-screensaver,0.881062204865947,2.24651496791001,0.246367822836216,https://salsa.debian.org/cinnamon-team/cinnamon-screensaver, https://github.com/linuxmint/cinnamon-screensaver.git,3984.1461689814814,25,25,0 -cinnamon-session,0.201972621088915,0.700320404303364,-0.0198993963271878,https://salsa.debian.org/cinnamon-team/cinnamon-session, https://github.com/linuxmint/cinnamon-session.git,3830.8484259259258,16,29,0 -cinnamon-settings-daemon,0.218651129272999,0.884576047958743,-0.032918010731944,https://salsa.debian.org/cinnamon-team/cinnamon-settings-daemon, https://github.com/linuxmint/cinnamon-settings-daemon.git,3830.709884259259,27,33,0 -citeproc-py,0.265073410877372,3.20040303204286,-0.537999364872632,https://salsa.debian.org/python-team/packages/citeproc-py, https://github.com/brechtm/citeproc-py,4168.381087962963,3,13,0 -cjk,0.96971045192412,1.67956459925518,0.507884270602392,https://github.com/debian-tex/cjk,https://github.com/debian-tex/cjk,4969.946932870371,1,7,0 -cjose,0.295403894225127,3.32408154360737,-0.620603569312427,https://salsa.debian.org/debian/cjose, https://github.com/zmartzone/cjose.git,2698.734525462963,9,16,0 -cjs,0.333425494754278,1.2158627920863,-0.00319316091891938,https://salsa.debian.org/cinnamon-team/cjs, https://github.com/linuxmint/cjs.git,3771.5652546296296,71,77,0 -cjson,-0.637830330419933,1.1377366915515,-1.08242956726138,https://salsa.debian.org/debian/cjson, https://github.com/DaveGamble/cJSON.git,4334.9435300925925,37,63,0 -ckbuilder,-1.34868158730321,1.76031609091417,-2.14728019209048,https://salsa.debian.org/js-team/ckbuilder, https://github.com/ckeditor/ckbuilder.git,3366.2307291666666,1,11,0 -ckeditor,-0.0433499999319708,0.873076770490152,-0.425362304658728,https://salsa.debian.org/js-team/ckeditor, https://github.com/ckeditor/ckeditor4,4183.881296296297,131,85,0 -cl-csv,-0.184313614747289,2.2825016420111,-0.96073562232821,https://salsa.debian.org/common-lisp-team/cl-csv, https://github.com/AccelerationNet/cl-csv,3373.8361342592593,0,10,0 -cl-fiveam,0.185488567318106,3.39476297326925,-0.685652618164102,https://salsa.debian.org/common-lisp-team/cl-fiveam, https://github.com/sionescu/fiveam.git,5674.287337962963,16,9,0 -cl-ftp,-0.620575027091736,2.04071728583489,-1.43486349328461,https://github.com/pinterface/cl-ftp,https://github.com/pinterface/cl-ftp,3252.967800925926,1,3,0 -cl-github-v3,-0.525886754158901,3.14869829126253,-1.57786858265274,https://github.com/hanshuebner/cl-github-v3,https://github.com/hanshuebner/cl-github-v3,2986.6350810185186,1,3,0 -cl-ironclad,-0.292619474112447,2.54629736188643,-0.922896652786111,https://salsa.debian.org/common-lisp-team/cl-ironclad, https://github.com/sharplispers/ironclad,5005.706145833334,20,31,0 -cl-local-time,-0.115573501850646,3.19884844019897,-1.05826046015465,http://github.com/dlowe-net/local-time,http://github.com/dlowe-net/local-time,5698.714988425926,7,50,0 -cl-lparallel,-0.321212710190555,2.53460680683082,-1.09783355160211,https://github.com/lmj/lparallel,https://github.com/lmj/lparallel,2019.918599537037,0,5,0 -cl-markdown,-0.704735027971642,1.45184776406069,-1.14067274074447,https://github.com/gwkkwg/cl-markdown,https://github.com/gwkkwg/cl-markdown,5675.890451388889,2,4,0 -cl-plus-ssl,-0.132484343986384,2.37515776230682,-0.86184444510575,https://salsa.debian.org/common-lisp-team/cl-plus-ssl, https://github.com/cl-plus-ssl/cl-plus-ssl,5623.322696759259,6,44,0 -cl-split-sequence,0.238456885453285,3.53632510820789,-0.67005654498848,https://salsa.debian.org/common-lisp-team/cl-split-sequence, https://github.com/sharplispers/split-sequence,3972.622002314815,4,5,0 -clasp,-0.300603783553555,-0.114725055374722,-0.342818063611809,https://salsa.debian.org/science-team/clasp, https://github.com/potassco/clasp,3296.926284722222,3,6,0 -classified-ads,-2.29836993425634,-0.0320591619046945,-2.77962788609786,https://github.com/operatornormal/classified-ads,https://github.com/operatornormal/classified-ads,3053.9196180555555,5,9,0 -clazy,0.140435946780402,2.50931653530424,-0.56915897935858,https://salsa.debian.org/qt-kde-team/extras/clazy, https://invent.kde.org/sdk/clazy,3105.167037037037,40,60,0 -cld2,0.604398126757303,3.03994564463887,-0.148179080166288,https://salsa.debian.org/debian/cld2, https://github.com/CLD2Owners/cld2,808.2021875,0,8,0 -clinfo,0.337264542210885,1.68911881776674,-0.140056084180369,https://salsa.debian.org/opencl-team/clinfo, https://github.com/Oblomov/clinfo,3809.378923611111,7,13,0 -clipit,1.49373928648145,3.43802835503106,0.607149544476265,https://salsa.debian.org/debian/clipit, https://github.com/CristianHenzel/ClipIt.git,3780.827673611111,15,24,0 -cloc,0.340719361849104,2.10591359477787,-0.184265895088211,https://salsa.debian.org/debian/cloc, https://github.com/AlDanial/cloc.git,3014.5104282407406,24,101,0 -clonezilla,0.965100012159333,3.16835291373235,0.100752730665293,https://salsa.debian.org/georgesk/clonezilla, https://gitlab.com/stevenshiau/clonezilla.git,4136.9575231481485,0,6,0 -cloudpickle,-0.135444704190854,0.227092764897738,-0.201763305714843,https://salsa.debian.org/python-team/packages/cloudpickle, https://github.com/cloudpipe/cloudpickle,3146.0455208333333,44,23,0 -cloudprint,-0.505823506968152,0.113680179435873,-0.719538990242667,https://github.com/davesteele/cloudprint-service,https://github.com/davesteele/cloudprint-service,3095.4250115740742,18,20,0 -cloudsql-proxy,-2.22480744528607,0.67035721276054,-2.9432212872527,https://salsa.debian.org/go-team/packages/cloudsql-proxy, https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,3012.7314930555553,90,36,0 -clp,0.265211570840681,1.13391031752389,0.00528428391451566,https://salsa.debian.org/science-team/clp, https://github.com/coin-or/Clp,5781.298009259259,3,20,0 -clustershell,0.192658709212344,2.91396435921751,-0.633817957101621,https://salsa.debian.org/python-team/packages/clustershell, https://github.com/cea-hpc/clustershell,5641.458611111111,20,15,3 -clutter-1.0,1.96670333195562,3.50521598607942,1.15262816844438,https://salsa.debian.org/gnome-team/clutter, https://gitlab.gnome.org/GNOME/clutter.git,5312.22630787037,208,178,0 -cm-super,0.509609811477283,1.56194645540575,0.0498213871364351,https://github.com/debian-tex/cm-super,https://github.com/debian-tex/cm-super,5018.368796296297,2,6,0 -cmake-extras,-0.0802626889631635,1.23971443789906,-0.450144941620931,https://salsa.debian.org/debian-ayatana-team/cmake-extras, https://gitlab.com/ubports/core/cmake-extras,3427.805173611111,6,25,0 -cmatrix,1.28236875791916,3.31539364949091,0.380501438269664,https://salsa.debian.org/debian/cmatrix, https://github.com/abishekvashok/cmatrix.git,2359.866400462963,20,18,0 -cmd2,0.133438303877503,1.20310771030179,-0.226359759540874,https://salsa.debian.org/debian/python-cmd2, https://github.com/python-cmd2/cmd2.git,5687.073969907407,21,45,0 -cmst,0.107988097404748,1.61439089943446,-0.251687859529411,https://salsa.debian.org/lxqt-team/cmst, https://github.com/andrew-bibb/cmst.git,3527.029722222222,56,29,0 -cmus,0.962281638422495,1.87490622176835,0.414647742529991,https://salsa.debian.org/multimedia-team/cmus, https://github.com/cmus/cmus,5733.64525462963,98,69,1 -coffeescript,0.754447923057675,2.32458702818753,0.114142487857081,https://salsa.debian.org/js-team/coffeescript, https://github.com/jashkenas/coffeescript,5027.744583333333,45,236,0 -cogl,3.25542054389083,5.87854255874958,1.98965807752281,https://salsa.debian.org/gnome-team/cogl, https://gitlab.gnome.org/GNOME/cogl,4994.825752314815,113,128,0 -coinor-cbc,0.969407246929146,2.54021423804853,0.291788466724214,https://salsa.debian.org/science-team/coinor-cbc, https://github.com/coin-or/cbc,5772.046377314815,7,31,1 -coinor-ipopt,0.583213862110971,1.84678405520125,-0.0234312409683467,https://github.com/ghorn/debian-coinor-ipopt.git,https://github.com/ghorn/debian-coinor-ipopt.git,39.845798611111114,1,2,0 -coinor-osi,0.413029290522895,2.04583406292565,0.000755822228810484,https://salsa.debian.org/science-team/coinor-osi, https://github.com/coin-or/Osi,5760.8763078703705,5,23,0 -coinst,-2.11911563959485,-0.175813398653396,-2.70071674016248,https://salsa.debian.org/ocaml-team/coinst, https://github.com/vouillon/coinst,2037.998599537037,0,10,0 -coinutils,0.517305852879183,1.72351671374194,0.0836708659931843,https://salsa.debian.org/science-team/coinutils, https://github.com/coin-or/CoinUtils,5778.888067129629,5,20,0 -collada-dom,0.691454203040474,3.66249206375898,-0.134321500846446,https://salsa.debian.org/science-team/collada-dom, https://github.com/rdiankov/collada-dom,2502.5084606481482,0,12,0 -colmap,-0.720678658268056,0.641272659768354,-1.21456089554561,https://salsa.debian.org/tar/colmap, https://github.com/colmap/colmap,2802.2067824074074,103,16,0 -colord-gtk,0.769755293149984,2.98266391249002,0.0770418790099909,https://salsa.debian.org/debian/colord-gtk, https://github.com/hughsie/colord-gtk.git,4151.426111111111,7,4,0 -colormake,0.495748907183494,1.69796875790221,-0.100333617807014,https://salsa.debian.org/debian/colormake, https://github.com/pagekite/Colormake,1830.1740162037038,0,12,0 -colorspacious,-0.582161446637875,2.00413195982339,-1.1596382364804,https://salsa.debian.org/python-team/packages/colorspacious, https://github.com/njsmith/colorspacious.git,1894.8289351851852,2,10,0 -colortest-python,-0.385784518377601,0.918857234529672,-0.806313357128645,https://salsa.debian.org/python-team/packages/colortest-python, https://github.com/eikenb/terminal-colors,4692.335277777778,1,2,0 -colpack,0.201786704303149,1.93022602918197,-0.369590338773087,https://salsa.debian.org/science-team/colpack, https://github.com/CSCsw/ColPack,1916.7757175925926,1,22,0 -comitup,-1.5220075039517,0.0892141487341842,-1.94802108454074,https://github.com/davesteele/comitup,https://github.com/davesteele/comitup,2830.005011574074,9,13,0 -commonmark-bkrs,-0.11416500838552,1.25116861936766,-0.370232748261099,https://salsa.debian.org/python-team/packages/commonmark-bkrs, https://github.com/rolandshoemaker/CommonMark-py,472.4580902777778,0,5,0 -compiz,0.841379553277834,1.17507980735035,0.576395159424153,https://salsa.debian.org/compiz-team/compiz-reloaded, https://gitlab.com/compiz/compiz-core.git,5514.135092592593,32,37,0 -compiz-bcop,-0.521441728208043,2.1812941739393,-1.17358409062619,https://salsa.debian.org/compiz-team/compiz-bcop, https://gitlab.com/compiz/compiz-bcop.git,4421.756550925926,2,10,0 -compiz-plugins-experimental,-0.327983267785209,1.66910692979803,-0.783418620084141,https://salsa.debian.org/compiz-team/compiz-plugins-experimental, https://gitlab.com/compiz/compiz-plugins-experimental.git,4636.166979166666,11,28,0 -compiz-plugins-extra,0.154298854472184,2.08928713749737,-0.301082133094652,https://salsa.debian.org/compiz-team/compiz-plugins-extra, https://gitlab.com/compiz/compiz-plugins-extra.git,5322.9094444444445,18,32,0 -compiz-plugins-main,0.209784859901679,2.27200434069756,-0.267188820820387,https://salsa.debian.org/compiz-team/compiz-plugins-main, https://gitlab.com/compiz/compiz-plugins-main.git,5322.905092592592,17,37,0 -compizconfig-python,1.42028686926146,4.27916453526598,0.351687402427692,https://salsa.debian.org/compiz-team/compizconfig-python, https://gitlab.com/compiz/compizconfig-python.git,4433.43650462963,4,9,0 -composer,-0.00175038336226489,0.47845191413179,-0.15429394605284,https://salsa.debian.org/php-team/pear/composer, https://github.com/composer/composer,4633.170462962963,391,890,8 -compton-conf,0.0365558037896281,2.33559959149864,-0.438569102324087,https://salsa.debian.org/lxqt-team/compton-conf, https://github.com/lxqt/compton-conf.git,3571.8171412037036,69,35,0 -comskip,-1.12921882299105,2.00928273935997,-1.92251715613048,https://salsa.debian.org/debian/comskip, https://github.com/erikkaashoek/Comskip.git,5415.403148148148,6,28,0 -concordance,-0.462505057253659,0.313950398378314,-0.757335484243348,https://salsa.debian.org/debian/concordance, https://github.com/jaymzh/concordance.git,5701.118645833333,1,3,0 -config-package-dev,-0.205622525599008,1.25227242344213,-0.663386036163591,https://github.com/sipb/config-package-dev,https://github.com/sipb/config-package-dev,3585.0969444444445,4,6,0 -conmon,0.0545451999772047,2.80569664861508,-0.724896405541572,https://salsa.debian.org/podman-team/conmon, https://github.com/containers/conmon,1950.1181597222221,27,41,0 -connect-proxy,0.663929963393126,3.49432697612261,-0.262388666763748,https://salsa.debian.org/debian/connect-proxy, https://github.com/gotoh/ssh-connect,3911.032627314815,0,6,0 -connectome-workbench,0.0811043258468287,2.67880223287002,-0.752864478646339,http://github.com/neurodebian/workbench,http://github.com/neurodebian/workbench,3495.7424652777777,3,16,0 -connman,0.337378757993952,0.888593974819819,0.0196191207911329,https://salsa.debian.org/debian/connman, https://git.kernel.org/pub/scm/network/connman/connman.git,5771.887986111111,290,8,0 -conserver,-0.552268878270219,0.057058802324775,-0.882189154355052,https://salsa.debian.org/debian/conserver, https://github.com/conserver/conserver.git,4671.668912037037,1,15,0 -constantly,0.850928447450448,3.76185287361888,0.0151388634103646,https://salsa.debian.org/python-team/packages/constantly, https://github.com/twisted/constantly.git,2708.6915162037035,2,14,0 -construct,0.0788197081922208,1.75175413461436,-0.46692804392728,https://salsa.debian.org/python-team/packages/construct, https://github.com/construct/construct.git,5194.628587962963,27,53,0 -context,0.344932688438594,0.843880747316441,0.0662940567739085,https://github.com/debian-tex/context,https://github.com/debian-tex/context,5666.629780092592,2,10,0 -context-modules,0.280565146336701,2.52001699963819,-0.144175883889574,https://github.com/debian-tex/context-modules,https://github.com/debian-tex/context-modules,4444.346076388889,3,7,0 -contextfree,-0.344235576793784,0.756294578766934,-0.832158475394757,https://github.com/MtnViewJohn/context-free,https://github.com/MtnViewJohn/context-free,2911.319537037037,1,9,0 -convertall,0.17718959925243,1.87090042227686,-0.385587912227108,https://salsa.debian.org/qt-kde-team/extras/convertall, https://github.com/doug-101/ConvertAll.git,72.02152777777778,1,2,0 -convertdate,-1.07797049264342,1.52635035805152,-1.637269668297,https://salsa.debian.org/python-team/packages/convertdate, https://github.com/fitnr/convertdate,2873.5651041666665,10,11,0 -cool-retro-term,-0.163806591736315,2.23383718279083,-0.670026222009651,https://salsa.debian.org/tar/cool-retro-term, https://github.com/Swordfish90/cool-retro-term,3050.803217592593,23,53,0 -copyright-update,-0.552197160511787,1.80663899291966,-1.14317611874124,https://salsa.debian.org/debian/copyright-update, https://github.com/jaalto/project--copyright-update,3367.86224537037,0,1,0 -coq,1.01124400636481,1.89922326666951,0.454048170432472,https://salsa.debian.org/ocaml-team/coq, https://github.com/coq/coq,5785.277534722222,56,228,4 -core-cache-clojure,-0.561021563903902,2.40885140581525,-1.30307388825199,https://salsa.debian.org/clojure-team/core-cache-clojure, https://github.com/clojure/core.cache,4284.517013888889,8,15,0 -corosync,0.807077033656562,1.50173170585558,0.389112156751187,https://salsa.debian.org/ha-team/corosync, https://github.com/corosync/corosync,5608.294513888889,81,22,0 -corsix-th,-0.456705322262331,1.18553786267971,-0.86791292157624,https://salsa.debian.org/games-team/corsix-th, https://github.com/CorsixTH/CorsixTH.git,5111.703321759259,36,117,0 -coturn,1.02847317193919,3.29681270616991,0.12311749631026,https://github.com/coturn/coturn/tree/debian/master,https://github.com/coturn/coturn,3518.6321412037037,69,102,2 -cpm,1.50030554593415,4.35291061073564,0.259076931680296,https://github.com/comotion/cpm,https://github.com/comotion/cpm,3307.608391203704,0,16,3 -cppad,-0.303003841456757,2.07759445361593,-0.851490117040843,https://salsa.debian.org/science-team/cppad, https://github.com/coin-or/CppAD,5756.998877314815,3,15,0 -cppo,-1.45624805146255,0.684153218765423,-1.96141831417266,https://salsa.debian.org/ocaml-team/cppo, https://github.com/mjambon/cppo.git,1459.7919444444444,3,28,0 -cppreference-doc,0.717486383735466,3.97515888375713,-0.311471505511598,https://github.com/p12tic/cppreference-doc-debian,https://github.com/p12tic/cppreference-doc-debian,3405.681574074074,2,6,0 -cpprest,0.516506619169389,2.15870804525428,-0.0954021916011262,https://salsa.debian.org/debian/cpprest, https://github.com/Microsoft/cpprestsdk,3391.4284606481483,72,133,0 -cpu-x,-0.183135151306391,2.26627747463429,-0.71776951866988,https://salsa.debian.org/debian/cpu-x, https://github.com/X0rg/CPU-X.git,2770.4909606481483,196,13,0 -cqrlib,-0.141136172388075,1.45445698339661,-0.426704083747725,https://salsa.debian.org/science-team/cqrlib, https://github.com/yayahjb/cqrlib.git,2926.9641203703704,0,1,0 -cqrlog,-0.27542801287245,0.466680289968303,-0.646305842308386,https://salsa.debian.org/debian-hamradio-team/cqrlog, https://github.com/ok2cqr/cqrlog.git,3907.9930208333335,3,34,0 -cracklib2,0.82215549876622,1.3380074207384,0.485069863399516,https://salsa.debian.org/debian/pkg-cracklib/, https://github.com/cracklib/cracklib.git,5758.123356481481,30,18,0 -cram,-1.55828146225479,0.404430784817172,-2.03735898499585,https://salsa.debian.org/python-team/packages/cram, https://github.com/brodie/cram,4115.669652777778,3,11,0 -crispy-doom,-0.774189957993927,0.0446191403759617,-0.920726853937846,https://salsa.debian.org/debian/crispy-doom, https://github.com/fabiangreffrath/crispy-doom.git,4757.087858796296,50,87,0 -critcl,0.168505042318547,4.74258824649327,-1.27354780604049,https://salsa.debian.org/tcltk-team/critcl, https://github.com/andreas-kupries/critcl,5635.58400462963,1,15,2 -criu,0.559328961919847,1.67258502606831,0.0643880749207982,https://salsa.debian.org/debian/criu, https://github.com/checkpoint-restore/criu.git,4462.43462962963,216,14,0 -crmsh,0.139486277030139,1.10408526496239,-0.299247601671652,https://salsa.debian.org/ha-team/crmsh, https://github.com/ClusterLabs/crmsh,5577.485416666666,18,71,1 -crudini,-0.0417948919541669,2.30247891333797,-0.729547201240333,https://salsa.debian.org/python-team/packages/crudini, https://github.com/pixelb/crudini,3928.4521064814817,7,8,0 -cruft,1.80166164497765,2.73609258052625,1.15018799751513,https://github.com/a-detiste/cruft,https://github.com/a-detiste/cruft,5211.506574074074,2,8,0 -cruft-ng,0.142059123983331,2.30970880347388,-0.517173950214686,https://github.com/a-detiste/cruft-ng,https://github.com/a-detiste/cruft-ng,3368.4031018518517,2,10,0 -cryfs,-0.132351299256985,0.869380622104774,-0.369453027315021,https://github.com/davesteele/cryfs,https://github.com/davesteele/cryfs,3180.9594560185187,28,15,0 -cryptsetup,0.249448503806834,0.326982244594751,0.187044728010558,https://salsa.debian.org/cryptsetup-team/cryptsetup, https://gitlab.com/cryptsetup/cryptsetup,5746.1947222222225,67,48,0 -csmith,-1.64827670115649,0.329702465046647,-2.189393160817,https://salsa.debian.org/debian/csmith, https://github.com/csmith-project/csmith.git,4565.639780092592,7,39,0 -csound,0.639035607311724,1.19950587572873,0.274369896551172,https://salsa.debian.org/multimedia-team/csound, https://github.com/csound/csound.git,5778.363206018518,14,113,0 -csound-manual,-0.0333628057853971,1.36342038521325,-0.499507679229331,https://salsa.debian.org/multimedia-team/csound-manual, https://github.com/csound/manual.git,3903.82181712963,12,56,0 -csoundqt,-0.414726718044123,0.495747209798159,-0.610187321807381,https://salsa.debian.org/multimedia-team/csoundqt, https://github.com/CsoundQt/CsoundQt,5612.117222222222,7,49,3 -ctdconverter,-2.85255153038538,-0.454986667446423,-3.32075962513198,https://salsa.debian.org/med-team/ctdconverter, https://github.com/WorkflowConversion/CTDConverter,2616.9146180555554,5,13,0 -ctemplate,0.225479085493309,1.27546962151228,-0.153307681876484,https://salsa.debian.org/qt-kde-team/3rdparty/ctemplate, https://github.com/OlafvdSpek/ctemplate.git,5604.690648148148,3,11,0 -cubicsdr,0.101846162483396,2.33889934118029,-0.498684536928727,https://salsa.debian.org/debian-hamradio-team/cubicsdr, https://github.com/cjcliffe/CubicSDR.git,3287.520497685185,11,22,0 -cups,1.42192506884973,1.64091489764042,1.23606161924884,https://salsa.debian.org/printing-team/cups, https://github.com/OpenPrinting/cups,5773.449953703704,32,89,2 -cups-filters,0.442732712429938,0.677465925736441,0.276928371347772,https://salsa.debian.org/printing-team/cups-filters, https://github.com/OpenPrinting/cups-filters,5780.773518518518,27,48,0 -cupt,-0.785166248865459,-0.741356000388487,-0.810209813689326,https://github.com/jackyf/cupt/tree/master,https://github.com/jackyf/cupt,3964.469525462963,4,7,0 -cura,-0.006627319906748,0.95286183759285,-0.300006167844107,https://salsa.debian.org/3dprinting-team/cura, https://github.com/Ultimaker/Cura,3319.0547916666665,268,483,10 -cura-engine,0.319279542412392,1.75381323027109,-0.221402906836426,https://salsa.debian.org/3dprinting-team/cura-engine, https://github.com/Ultimaker/CuraEngine,3986.9260648148147,46,121,2 -curl,0.490992521066274,0.657595942955624,0.36019711314476,https://salsa.debian.org/debian/curl, https://github.com/curl/curl.git,5786.950266203704,1220,58,0 -curvedns,-1.14617069868587,0.112741442647767,-1.37381298923115,https://salsa.debian.org/pkg-security-team/curvedns, https://github.com/curvedns/curvedns.git,3466.7757291666667,0,3,0 -custodia,-1.67512136212989,-0.0779781476120226,-2.22663354215109,https://salsa.debian.org/freeipa-team/custodia, https://github.com/latchset/custodia.git,2105.203113425926,10,5,0 -cvxopt,0.254425729557614,0.905978352626164,-0.0500804801056423,https://salsa.debian.org/science-team/cvxopt, https://github.com/cvxopt/cvxopt,3827.9446875,7,5,0 -cwm,-0.500204428130531,1.5042184567307,-0.935282538869387,https://github.com/jamesmcdonald/cwm,https://github.com/jamesmcdonald/cwm,5679.896053240741,1,30,0 -cycle,-0.313126048987607,0.695465190317994,-0.784417881760549,https://salsa.debian.org/med-team/cycle, https://github.com/metlov/cycle.git,229.95253472222223,0,1,0 -cyrus-sasl2,1.16770787467679,1.45679841902819,0.928724560915129,https://salsa.debian.org/debian/cyrus-sasl2, https://github.com/cyrusimap/cyrus-sasl.git,5510.163460648148,61,36,0 -czmq,-0.641116593575336,-0.175234803532255,-0.748362903162392,https://salsa.debian.org/debian/czmq, https://github.com/zeromq/czmq.git,4540.440902777777,31,247,0 -d-feet,0.299755124608078,1.32181815498468,-0.15708327912638,https://salsa.debian.org/utopia-team/d-feet, https://gitlab.gnome.org/GNOME/d-feet.git,5731.935995370371,60,55,0 -dacco,-1.6517270648148,-0.0658131651885215,-1.98050774533132,https://salsa.debian.org/debian/dacco, https://github.com/cpina/dacco.git,5643.417442129629,1,5,0 -daptup,-0.297234205369982,1.41550783151863,-0.977118213075922,http://github.com/jackyf/daptup,http://github.com/jackyf/daptup,3776.0019444444442,1,5,0 -darkradiant,-0.701322269539219,1.54912393315773,-1.48354318620531,https://salsa.debian.org/games-team/darkradiant, https://github.com/codereader/DarkRadiant.git,5740.520532407408,2,27,0 -dashel,-0.50706032069486,1.85560356606662,-1.05878944311749,https://salsa.debian.org/science-team/dashel.git, https://github.com/aseba-community/dashel.git,4686.226770833333,3,17,0 -dask,0.443388762391169,2.01873656410514,-0.153901230086097,https://salsa.debian.org/python-team/packages/dask, https://github.com/dask/dask,3277.906736111111,695,83,0 -datalad,-0.50293488110651,0.688665196431665,-0.938528699618575,https://github.com/datalad/datalad/,https://github.com/datalad/datalad,3855.2531018518516,30,56,3 -datapacker,-0.571528887250453,1.50298537385822,-1.27211417977024,https://github.com/jgoerzen/datapacker,https://github.com/jgoerzen/datapacker,4649.252650462963,0,4,0 -datatables-extensions,0.230564582356402,2.46359537854669,-0.363022743259498,https://salsa.debian.org/js-team/datatables-extensions, https://github.com/etd-framework/datatables-extensions,0.006759259259259259,0,2,0 -dateparser,-0.404455930397582,1.96559040272871,-1.01125862134157,https://salsa.debian.org/python-team/packages/dateparser, https://github.com/scrapinghub/dateparser,3385.644398148148,70,97,0 -dateutils,0.248966163964174,1.81561866580788,-0.335944677308192,https://salsa.debian.org/alteholz/dateutils, https://github.com/hroptatyr/dateutils,3585.0248032407408,6,16,2 -dbab,-1.99036509960834,-0.461747515428254,-2.50993560525614,https://salsa.debian.org/debian/dbab, https://github.com/suntong/dbab.git,3490.721203703704,1,6,0 -dbus,1.84712532173711,2.32039672392037,1.47696815499948,https://salsa.debian.org/utopia-team/dbus, https://gitlab.freedesktop.org/dbus/dbus,5762.196064814815,181,64,0 -dbus-cpp,-1.1700787805481,0.646597513770879,-1.75512931909025,https://salsa.debian.org/ubports-team/dbus-cpp, https://gitlab.com/ubports/development/core/lib-cpp/dbus-cpp.git,3718.3239351851853,1,27,0 -dbus-glib,0.216769684652713,0.650828714611177,0.0402586729143222,https://salsa.debian.org/debian/dbus-glib, https://gitlab.freedesktop.org/dbus/dbus-glib.git,4512.69375,43,13,0 -dbus-python,0.127363983388076,0.335673994150444,0.0278010882372731,https://salsa.debian.org/debian/dbus-python, https://gitlab.freedesktop.org/dbus/dbus-python,5525.142974537037,60,18,0 -dcfldd,0.243299675963987,1.51287155968922,-0.174203511671299,https://salsa.debian.org/debian/dcfldd, https://github.com/resurrecting-open-source-projects/dcfldd,1555.0382175925927,1,5,0 -dcmstack,-0.217906400328808,2.38437246160482,-1.15430745193441,https://salsa.debian.org/med-team/dcmstack, https://github.com/moloney/dcmstack.git,4236.057650462963,2,11,0 -dconf,1.10408718232879,2.51974648051787,0.44656006880584,https://salsa.debian.org/gnome-team/dconf, https://gitlab.gnome.org/GNOME/dconf.git,4904.826967592592,66,128,0 -dconf-editor,2.53057211458834,6.72623340235875,1.03244865551226,https://salsa.debian.org/gnome-team/dconf-editor, https://gitlab.gnome.org/GNOME/dconf-editor.git,4947.152407407408,141,132,0 -ddcci-driver-linux,-0.478354501947488,1.72703786989943,-0.913567744778091,https://salsa.debian.org/debian/ddcci-driver-linux, https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux.git,2965.6940277777776,0,8,0 -ddccontrol-db,0.537589927797963,3.04066639796367,-0.204049559847869,https://salsa.debian.org/debian/ddccontrol-db, https://github.com/ddccontrol/ddccontrol-db,5706.421354166667,83,21,0 -ddclient,2.2300979216872,3.00923862374744,1.66577565310454,https://salsa.debian.org/debian/ddclient, https://github.com/ddclient/ddclient.git,5769.115798611111,45,69,0 -dde-qt5integration,0.20084630370531,2.63946709221479,-0.31509034567938,https://salsa.debian.org/pkg-deepin-team/dde-qt5integration, https://github.com/linuxdeepin/qt5integration.git,2575.5595949074072,29,62,0 -ddir,-0.912637206116603,1.42468411057732,-1.47148394747172,https://salsa.debian.org/debian/ddir, https://github.com/jaalto/project--perl-ddir.git,3338.2834722222224,0,1,0 -ddnet,-0.964163291390815,0.151255788413683,-1.21536273905815,https://salsa.debian.org/games-team/ddnet, https://github.com/ddnet/ddnet,5784.7662152777775,123,275,0 -dds,-0.198981107742478,1.3473808449561,-0.715152296994495,https://salsa.debian.org/debian/dds, https://github.com/dds-bridge/dds.git,2069.005462962963,2,13,0 -ddskk,-0.873644530389024,-0.856685110343982,-0.879048032548738,https://salsa.debian.org/debian/ddskk, https://github.com/skk-dev/ddskk,5620.431747685185,2,28,0 -ddupdate,-0.529360471404009,2.17922114193529,-1.2645424523004,https://github.com/leamas/ddupdate/tree/debian,https://github.com/leamas/ddupdate,1855.611724537037,10,11,0 -debiman,-2.02050232319927,-0.369136826197118,-2.35298541633783,https://salsa.debian.org/go-team/packages/debiman, https://github.com/Debian/debiman.git,2469.6214583333335,11,3,0 -debomatic,-0.81580971969394,-0.137115679074174,-1.08219980726607,https://salsa.debian.org/python-team/packages/debomatic, https://github.com/debomatic/debomatic,5739.495,4,16,0 -debootstick,-0.508717038467695,0.838230754407855,-0.881558905514112,https://github.com/drakkar-lig/debootstick,https://github.com/drakkar-lig/debootstick,3036.077210648148,5,8,0 -debuerreotype,-1.06317343402172,1.46487811831655,-1.62978734955743,https://github.com/debuerreotype/debian-debuerreotype,https://github.com/debuerreotype/debian-debuerreotype,2712.8558217592595,0,4,0 -deepdiff,-0.600320759967683,1.99437730222334,-1.1853796170927,https://salsa.debian.org/python-team/packages/deepdiff, https://github.com/seperman/deepdiff.git,3349.8121875,21,67,0 -deepin-deb-installer,0.235096472547516,3.3411566752395,-0.606712927078838,https://salsa.debian.org/pkg-deepin-team/deepin-deb-installer, https://github.com/linuxdeepin/deepin-deb-installer,2369.9382291666666,18,36,0 -deepin-icon-theme,-0.0967445922779583,1.8002062207637,-0.52125591830002,https://salsa.debian.org/pkg-deepin-team/deepin-icon-theme, https://github.com/linuxdeepin/deepin-icon-theme.git,3289.739837962963,17,48,0 -deepin-image-viewer,-0.647152113746688,0.89861650602906,-0.925164027099073,https://salsa.debian.org/pkg-deepin-team/deepin-image-viewer, https://github.com/linuxdeepin/deepin-image-viewer,2848.197974537037,25,73,0 -deepin-menu,-0.25676719253409,2.09853203812819,-0.694675586813182,https://salsa.debian.org/pkg-deepin-team/deepin-menu, https://github.com/linuxdeepin/deepin-menu.git,2256.3108333333334,0,33,0 -deepin-movie-reborn,-0.460371285314103,1.34953013172939,-0.904304312036714,https://salsa.debian.org/pkg-deepin-team/deepin-movie-reborn, https://github.com/linuxdeepin/deepin-movie-reborn.git,2456.108865740741,32,78,0 -deepin-music,-0.501950024297026,1.17014254746904,-0.963795011371202,https://salsa.debian.org/pkg-deepin-team/deepin-music, https://github.com/linuxdeepin/deepin-music,4315.2377893518515,30,84,0 -deepin-notifications,0.34744427251328,3.65477856026676,-0.432180899283793,https://salsa.debian.org/pkg-deepin-team/deepin-notifications, https://github.com/linuxdeepin/deepin-notifications,2025.0469791666667,4,26,0 -deepin-picker,-0.185019932291571,2.74960037394165,-0.951983527337385,https://salsa.debian.org/pkg-deepin-team/deepin-picker, https://github.com/linuxdeepin/deepin-picker,2197.472685185185,10,32,0 -deepin-qt5dxcb-plugin,-0.125004220659685,0.71412139611783,-0.311717764592337,https://salsa.debian.org/pkg-deepin-team/deepin-qt5dxcb-plugin, https://github.com/linuxdeepin/qt5dxcb-plugin.git,2598.5358101851853,38,61,0 -deepin-screen-recorder,0.130405620372922,3.17900274707264,-0.711217201153205,https://salsa.debian.org/pkg-deepin-team/deepin-screen-recorder, https://github.com/linuxdeepin/deepin-screen-recorder,2445.6769328703704,25,45,0 -deepin-terminal,0.0463483860574777,2.19582159783835,-0.614131552621358,https://salsa.debian.org/pkg-deepin-team/deepin-terminal, https://github.com/linuxdeepin/deepin-terminal.git,1696.4612037037036,32,47,0 -dehydrated,0.294918832269304,1.27640080968387,-0.124374845002725,https://salsa.debian.org/letsencrypt-team/dehydrated, https://github.com/lukas2511/dehydrated,2922.003865740741,64,40,2 -dehydrated-hook-ddns-tsig,-1.14986881772355,0.323406778688977,-1.4723938377688,https://salsa.debian.org/letsencrypt-team/dehydrated-hook-ddns-tsig, https://github.com/eferdman/dehydrated-hook-ddns-tsig.git,613.6095601851852,3,7,0 -deken,-0.177399338159046,1.8798950336865,-0.612794853339411,https://salsa.debian.org/multimedia-team/pd/deken, https://github.com/pure-data/deken,3169.7776041666666,5,17,1 -derpconf,-2.16326613351292,-0.247952996571128,-2.7160545081398,https://salsa.debian.org/python-team/packages/derpconf, https://github.com/globocom/derpconf,4088.185949074074,0,19,0 -desktop-file-utils,2.24543160301247,3.81850468306151,1.39213256640807,https://salsa.debian.org/freedesktop-team/desktop-file-utils, https://gitlab.freedesktop.org/xdg/desktop-file-utils.git,5714.825925925926,15,16,0 -detachtty,0.728666866066461,3.79962020714491,-0.466342425704968,https://salsa.debian.org/debian/detachtty, https://github.com/cosmos72/detachtty.git,5063.038217592592,2,3,0 -detox,0.0760137718782932,1.24446097714097,-0.236573077041424,https://salsa.debian.org/debian/detox, https://github.com/dharple/detox,2472.5849305555557,3,6,0 -devede,1.09040353054376,2.59689572706055,0.339225209931599,https://salsa.debian.org/multimedia-team/devede, https://gitlab.com/rastersoft/devedeng,3052.8983333333335,1,18,0 -devtodo,-0.0964373600662017,0.523133728296973,-0.466757561707856,https://salsa.debian.org/debian/devtodo, https://github.com/alecthomas/devtodo,4517.700439814815,2,2,0 -dfc,0.624948273307755,2.69232463778837,-0.106015439650167,https://salsa.debian.org/debian/dfc, https://github.com/rolinh/dfc,3944.702615740741,10,7,0 -dfdatetime,0.278498855413978,2.52296562017357,-0.366173811592027,https://salsa.debian.org/pkg-security-team/dfdatetime, https://github.com/log2timeline/dfdatetime.git,2825.932951388889,4,3,0 -dfvfs,-0.0675084876668502,1.19001844105477,-0.428198544427879,https://salsa.debian.org/pkg-security-team/dfvfs, https://github.com/log2timeline/dfvfs.git,3796.4521875,5,5,0 -dfwinreg,-0.0527750481914423,1.07894690853713,-0.406796000050655,https://salsa.debian.org/pkg-security-team/dfwinreg, https://github.com/log2timeline/dfwinreg.git,2962.9065972222224,0,3,0 -dgedit,0.355744849392177,3.22765848058305,-0.518462629612379,https://salsa.debian.org/multimedia-team/dgedit, http://git.drumgizmo.org/dgedit.git,1818.5937847222222,2,2,0 -dh-dist-zilla,-1.00752199724441,0.589306650019709,-1.28293350578517,https://github.com/elmar/dh-dist-zilla,https://github.com/elmar/dh-dist-zilla,2392.1696064814814,0,4,0 -dh-make-golang,-0.307436391950757,0.770263115515491,-0.680055120465306,https://salsa.debian.org/go-team/packages/dh-make-golang, https://github.com/Debian/dh-make-golang.git,3064.970185185185,24,19,0 -dhcpcd-dbus,0.116885125991865,3.40899498109848,-0.793298493254465,https://salsa.debian.org/debian/dhcpcd-dbus, https://github.com/kobolabs/dhcpcd-dbus.git,4098.256655092592,2,6,0 -dhcpcd-ui,-0.012287241418141,2.56952838581004,-0.83673457548482,https://salsa.debian.org/debian/dhcpcd-ui, https://github.com/NetworkConfiguration/dhcpcd-ui,5203.8271875,4,2,0 -dhcpcd5,0.681585222663153,1.53741080004815,0.19698542490146,https://salsa.debian.org/debian/dhcpcd, https://github.com/NetworkConfiguration/dhcpcd.git,5784.385694444444,64,17,0 -dhcpdump,1.44907504119257,4.14563319111402,0.387240643786827,https://github.com/bbonev/dhcpdump,https://github.com/bbonev/dhcpdump,112.99480324074074,0,3,0 -dhcpig,-0.987243531635154,1.33241621278506,-1.52050387661082,https://salsa.debian.org/pkg-security-team/dhcpig, https://github.com/kamorin/DHCPig,1930.9329398148147,0,7,0 -dhcping,2.19178349739237,5.17946749361519,0.967259629747522,https://salsa.debian.org/debian/dhcping, https://salsa.debian.org/debian/dhcping.git,1035.2352314814814,5,2,0 -dhewm3,-0.290320314444538,1.91617380958565,-0.786358195850442,https://salsa.debian.org/games-team/dhewm3, https://github.com/dhewm/dhewm3.git,4378.332974537037,36,21,0 -dia,0.588052211784479,0.814436355545616,0.414333776107562,https://salsa.debian.org/debian/dia, https://gitlab.gnome.org/GNOME/dia,5733.3599652777775,117,118,0 -dianara,-0.818696773051658,0.919709497322199,-1.3473110534547,https://salsa.debian.org/debian/dianara, https://gitlab.com/dianara/dianara-dev.git,4113.032974537037,0,11,0 -dicteval,-2.95369863336871,-0.13208757085462,-3.68895558088223,https://salsa.debian.org/debian/dicteval, https://github.com/osantana/dicteval.git,1110.6433217592592,3,12,0 -diffuse,0.656999192761575,3.18252659255885,-0.125842285938798,https://salsa.debian.org/debian/diffuse, https://github.com/MightyCreak/diffuse.git,2779.093622685185,15,12,0 -dill,-0.0692957122056967,2.35942112767302,-0.50148903624562,https://salsa.debian.org/python-team/packages/dill, https://github.com/uqfoundation/dill,5216.862048611111,22,27,2 -ding-libs,0.383342255623489,2.49364247157588,-0.138147012901626,https://salsa.debian.org/sssd-team/ding-libs, https://github.com/SSSD/ding-libs,5249.620081018518,15,12,0 -dir2ogg,0.239694684529411,1.64152149103211,-0.319092918386963,https://github.com/julian-klode/dir2ogg,https://github.com/julian-klode/dir2ogg,1310.029988425926,1,5,1 -direnv,-0.00688483795293662,1.75857064726267,-0.451160585745145,https://github.com/direnv/direnv-deb,https://github.com/direnv/direnv-deb,3256.5212847222224,1,6,0 -direwolf,-0.143021690088079,1.37074306350961,-0.620027965556624,https://salsa.debian.org/debian-hamradio-team/direwolf, https://github.com/wb2osz/direwolf,2351.941261574074,7,18,1 -dirty.js,-0.890988573271716,2.62270164954084,-1.95121575670237,https://salsa.debian.org/js-team/dirty.js, https://github.com/felixge/node-dirty.git,4940.328217592592,7,21,0 -discus,1.17050209388181,3.7454601143753,0.0821077036260994,https://salsa.debian.org/debian/discus, https://github.com/ncarrier/discus.git,1119.0192592592593,0,4,0 -diskscan,-0.280844219583857,0.383638380054831,-0.419348469516611,https://salsa.debian.org/debian/diskscan, https://github.com/baruch/diskscan.git,1436.448587962963,0,3,0 -distorm3,0.242519587594854,2.0162179615907,-0.300785424821981,https://salsa.debian.org/debian/distorm3, https://github.com/gdabah/distorm.git,2464.690625,2,17,0 -ditaa,1.14456117412936,3.55385867527915,0.142833129763842,https://salsa.debian.org/java-team/ditaa, https://github.com/stathissideris/ditaa,4647.896041666667,3,17,0 -dizzy,0.520793755568244,2.80204550149747,-0.216143515141367,https://salsa.debian.org/perl-team/modules/packages/dizzy, https://github.com/penma/dizzy.git,1717.3470949074074,4,6,0 -django-ajax-selects,-1.80264125066177,-1.39892185878209,-1.87010146710181,https://salsa.debian.org/python-team/packages/django-ajax-selects, https://github.com/crucialfelix/django-ajax-selects,4299.027407407408,12,41,0 -django-anymail,-1.72984340815293,0.000790072373582018,-2.06522513421509,https://salsa.debian.org/python-team/packages/django-anymail, https://github.com/anymail/django-anymail,4340.058506944444,33,27,0 -django-assets,-1.2263795033072,0.878646501636517,-1.80454494183478,https://salsa.debian.org/python-team/packages/django-assets, https://github.com/miracle2k/django-assets.git,4511.067199074074,6,94,0 -django-auth-ldap,-0.735111360473221,0.589742958950815,-1.16200594701723,https://salsa.debian.org/python-team/packages/django-auth-ldap, https://github.com/django-auth-ldap/django-auth-ldap.git,5095.451655092593,18,22,0 -django-bitfield,-1.16477034913538,1.67677395120211,-1.90983423918484,https://salsa.debian.org/python-team/packages/django-bitfield, https://github.com/disqus/django-bitfield,4482.6217939814815,15,33,0 -django-cas-server,-1.30889605800658,2.22928155508197,-2.31585064165671,https://salsa.debian.org/python-team/packages/django-cas-server, https://github.com/nitmir/django-cas-server.git,3041.6335532407406,8,9,0 -django-classy-tags,-0.74018416345453,0.984861954708653,-1.39805318666733,https://salsa.debian.org/python-team/packages/django-classy-tags, https://github.com/django-cms/django-classy-tags,4877.167789351852,15,16,2 -django-compat,-1.3241602950543,-0.188608342685688,-1.76573419272312,https://github.com/Linaro/pkg-django-compat.git,https://github.com/Linaro/pkg-django-compat.git,1206.0878819444445,0,6,0 -django-cors-headers,-1.11394108758359,0.0671040287419646,-1.33673891031328,https://salsa.debian.org/python-team/packages/django-cors-headers, https://github.com/adamchainz/django-cors-headers,3979.5858333333335,47,28,0 -django-countries,-0.534708448628788,1.3547470964221,-1.2788572174765,https://salsa.debian.org/python-team/packages/django-countries, https://github.com/SmileyChris/django-countries,4972.680625,16,45,0 -django-fsm,-1.24559240491123,1.76848237769161,-1.95084265080011,https://salsa.debian.org/python-team/packages/django-fsm, https://github.com/viewflow/django-fsm,4622.176076388889,28,45,0 -django-guardian,-0.631840562330008,-0.175666538081989,-0.763973423985717,https://salsa.debian.org/python-team/packages/django-guardian, https://github.com/lukaszb/django-guardian,4311.9324074074075,74,100,0 -django-haystack,-0.366884596648278,1.45152548418967,-0.93180960897156,https://salsa.debian.org/python-team/packages/django-haystack, https://github.com/django-haystack/django-haystack,5440.265138888889,100,135,5 -django-hijack,-2.16222701756782,0.0257030994861546,-2.86575859572282,https://github.com/Linaro/pkg-django-hijack.git,https://github.com/Linaro/pkg-django-hijack.git,1013.9897106481482,0,2,0 -django-housekeeping,-0.869454572028372,1.94809022404127,-1.61534625748549,https://salsa.debian.org/python-team/packages/django-housekeeping, https://github.com/spanezz/django-housekeeping.git,2311.206608796296,0,4,0 -django-ipware,-0.186701026958641,3.47752777867521,-1.13641403705194,https://salsa.debian.org/python-team/packages/django-ipware, https://github.com/un33k/django-ipware,3876.7555324074074,23,8,0 -django-jinja,-1.35472993542178,0.150737424977885,-1.65759326053824,https://salsa.debian.org/python-team/packages/django-jinja, https://github.com/niwinz/django-jinja,4245.131724537037,30,48,0 -django-ldapdb,-1.01081417834882,2.55509597719961,-2.19427575428845,https://salsa.debian.org/python-team/packages/django-ldapdb, https://github.com/django-ldapdb/django-ldapdb,3058.5422222222223,5,21,0 -django-macaddress,-0.489614537071132,2.37369336544304,-1.53946280496386,https://salsa.debian.org/python-team/packages/django-macaddress, https://github.com/tubaman/django-macaddress.git,3439.070474537037,8,28,0 -django-markupfield,-1.07593773667785,0.286546187530354,-1.49972713566092,https://salsa.debian.org/python-team/packages/django-markupfield, https://github.com/jamesturk/django-markupfield,5316.459606481481,3,17,0 -django-model-utils,-1.1078826445842,-0.108748402698916,-1.40341896400618,https://salsa.debian.org/python-team/packages/django-model-utils, https://github.com/carljm/django-model-utils.git,5274.981608796296,49,101,0 -django-modeltranslation,-1.51333832692817,0.633284428887195,-2.21363375908789,https://salsa.debian.org/python-team/packages/django-modeltranslation, https://github.com/deschler/django-modeltranslation.git,5393.6289004629625,39,78,0 -django-notification,-1.02459676438974,1.6779675850615,-1.75778889852994,https://salsa.debian.org/python-team/packages/django-notification, https://github.com/pinax/pinax-notifications,4781.187002314815,7,34,2 -django-pagination,-1.21987228728206,1.65029394892811,-1.98430280233489,https://salsa.debian.org/python-team/packages/django-pagination, https://github.com/ericflo/django-pagination,3284.865787037037,6,18,0 -django-picklefield,-0.703580644380416,0.57934771567608,-1.05875420348665,https://salsa.debian.org/python-team/packages/django-picklefield, https://github.com/gintas/django-picklefield.git,4658.002905092592,2,16,0 -django-pipeline,-0.930876169721945,0.713745883165131,-1.5104447326527,https://salsa.debian.org/python-team/packages/django-pipeline, https://github.com/jazzband/django-pipeline,5696.7215625,55,133,0 -django-polymorphic,-0.986272527855104,0.726107765686916,-1.62148578748082,https://salsa.debian.org/python-team/packages/django-polymorphic, https://github.com/django-polymorphic/django-polymorphic,5078.609699074074,41,80,1 -django-prometheus,-2.26031605728522,-0.438134197353793,-2.74225273043366,https://salsa.debian.org/python-team/packages/django-prometheus, https://github.com/korfuri/django-prometheus,3173.3548148148147,32,30,0 -django-python3-ldap,-1.22069524101443,0.981610841910008,-1.71041484839619,https://salsa.debian.org/python-team/packages/django-python3-ldap, https://github.com/etianen/django-python3-ldap,3090.708425925926,4,28,0 -django-q,-0.676225936091092,1.3565065882819,-1.15441399963899,https://salsa.debian.org/python-team/packages/django-q, https://github.com/Koed00/django-q,2734.7205092592594,22,48,0 -django-recurrence,-1.32652293733886,0.884310932834965,-1.91637277755008,https://salsa.debian.org/python-team/packages/django-recurrence, https://github.com/jazzband/django-recurrence,5185.443993055555,18,46,1 -django-restricted-resource,-1.28697318749763,0.227913210920117,-1.75195429034595,https://github.com/Linaro/pkg-django-restricted-resource,https://github.com/Linaro/pkg-django-restricted-resource,3194.8619212962963,0,7,0 -django-reversion,-0.777150964031435,0.998338835547634,-1.41528755792732,https://salsa.debian.org/python-team/packages/django-reversion, https://github.com/etianen/django-reversion.git,5522.85568287037,31,173,0 -django-sekizai,-1.02624252790074,0.604143798803238,-1.58643353912969,https://salsa.debian.org/python-team/packages/django-sekizai, https://github.com/django-cms/django-sekizai.git,4878.868402777778,11,19,0 -django-session-security,-1.42883309128597,1.11396744897978,-1.91277981712212,https://salsa.debian.org/python-team/packages/django-session-security, https://github.com/yourlabs/django-session-security,4081.298287037037,19,40,0 -django-setuptest,-1.00398830268751,1.89173998079783,-1.73987964391938,https://salsa.debian.org/python-team/packages/django-setuptest, https://github.com/praekelt/django-setuptest.git,1589.0550810185184,0,22,0 -django-simple-captcha,-0.6733083767351,0.671791691422655,-1.00159967642875,https://salsa.debian.org/python-team/packages/django-simple-captcha, https://github.com/mbi/django-simple-captcha.git,4540.266365740741,7,61,0 -django-sitetree,-1.19701098610627,0.380527052172248,-1.67880198000405,https://salsa.debian.org/python-team/packages/django-sitetree, https://github.com/idlesign/django-sitetree,4549.666712962963,6,42,0 -django-sortedm2m,-2.34571982424945,-0.0825384392000747,-2.78657171549833,https://salsa.debian.org/python-team/packages/django-sortedm2m, https://github.com/jazzband/django-sortedm2m.git,4988.086828703704,13,51,0 -django-testproject,-0.799939510918389,1.64354352492061,-1.44945239463122,https://github.com/Linaro/pkg-django-testproject,https://github.com/Linaro/pkg-django-testproject,3196.2780324074074,0,5,0 -django-testscenarios,-1.32571469322239,-0.0322578005939973,-1.66580907161116,https://github.com/Linaro/pkg-django-testscenarios,https://github.com/Linaro/pkg-django-testscenarios,3196.290115740741,0,7,0 -django-uwsgi,-0.73526846099112,1.37916014606852,-1.34079821315274,https://salsa.debian.org/python-team/packages/django-uwsgi, https://github.com/unbit/django-uwsgi,4022.1891203703703,0,20,0 -django-xmlrpc,-1.05007079848215,0.674157923649932,-1.51575190788338,https://salsa.debian.org/python-team/packages/django-xmlrpc, https://github.com/Fantomas42/django-xmlrpc,2632.308738425926,1,5,0 -djangorestframework,-0.411867352663377,0.191530336379392,-0.656745645485991,https://salsa.debian.org/python-team/packages/djangorestframework, https://github.com/encode/django-rest-framework,4724.87974537037,676,770,1 -djangorestframework-api-key,-2.8977691007583,0.522103784059181,-3.69100268961243,https://salsa.debian.org/python-team/packages/djangorestframework-api-key, https://github.com/florimondmanca/djangorestframework-api-key,1908.8148263888888,20,6,2 -dkg-handwriting,0.189988635965469,2.80151752844477,-0.379017556616225,https://salsa.debian.org/fonts-team/dkg-handwriting, https://gitlab.com/dkg/dkg-handwriting,4767.438657407408,0,1,0 -dkms,2.37260127765776,3.21557281613004,1.78866272913875,https://salsa.debian.org/debian/dkms, https://github.com/dell/dkms,5777.8746412037035,70,65,1 -dlib,-0.167784850512731,1.17442956246559,-0.591412144971591,https://salsa.debian.org/science-team/dlib, https://github.com/davisking/dlib.git,5697.550277777777,155,59,0 -dma,0.925589785708236,2.13111206922311,0.261836560891848,https://salsa.debian.org/debian/dma, https://github.com/corecode/dma.git,4350.283657407407,26,18,0 -dmarc-cat,-0.148389439253667,3.37717563751846,-1.19012336227191,https://salsa.debian.org/go-team/packages/dmarc-cat, https://github.com/keltia/dmarc-cat.git,1521.780300925926,0,4,0 -dmrconfig,-4.41802982189972,-0.910639434214132,-5.37370027542711,https://salsa.debian.org/debian-hamradio-team/dmrconfig, https://github.com/OpenRTX/dmrconfig.git,1907.596412037037,5,9,0 -dms,-1.79235609405398,0.949013949455289,-3.00405896670681,https://github.com/grantma/dms,https://github.com/grantma/dms,1425.0333101851852,0,7,0 -dnspython,1.12750584981084,2.67426057070666,0.415853170864823,https://salsa.debian.org/python-team/packages/dnspython, https://github.com/rthalley/dnspython.git,5665.3041087962965,41,93,0 -dnsruby,-0.234176424021243,1.53908289021424,-0.678414813136556,https://salsa.debian.org/ruby-team/ruby-dnsruby, https://github.com/alexdalitz/dnsruby.git,5594.131446759259,4,31,0 -dnstap-ldns,-1.96300285476509,0.490838248116668,-2.57881243839486,https://salsa.debian.org/dns-team/dnstap-ldns, https://github.com/dnstap/dnstap-ldns.git,2977.030300925926,3,7,0 -dnswalk,1.90066134270794,5.30649558843814,0.587989273593071,https://salsa.debian.org/debian/dnswalk, https://github.com/davebarr/dnswalk.git,3790.913483796296,0,2,0 -docdiff,-0.363775606360358,0.689503034880956,-0.723612814035272,https://salsa.debian.org/debian/docdiff, https://github.com/hisashim/docdiff,3912.654814814815,0,6,1 -docker-compose,0.980095192465712,3.17745388400936,0.149572490410487,https://salsa.debian.org/docker-compose-team/docker-compose, https://github.com/docker/compose,3654.9232291666667,228,428,11 -docker-libkv,-1.32966285802604,0.913961856974489,-1.76220968018619,https://salsa.debian.org/go-team/packages/docker-libkv, https://github.com/docker/libkv.git,2411.621412037037,3,30,0 -doclifter,-0.0714788684222016,2.04863276382683,-0.951973664217526,https://salsa.debian.org/debian/doclifter, https://gitlab.com/esr/doclifter,4609.0202314814815,2,3,0 -dodgy,0.155741812664803,3.62095525465031,-0.792433561479021,https://salsa.debian.org/python-team/packages/dodgy, https://github.com/landscapeio/dodgy,2642.968425925926,4,14,0 -doona,0.0575012671817577,2.52116677544593,-0.439565640170492,https://salsa.debian.org/pkg-security-team/doona, https://github.com/wireghoul/doona,3578.8472569444443,1,4,0 -doris,-3.25146304156637,-2.75605148438427,-3.33298159978531,https://salsa.debian.org/debian-gis-team/doris, https://github.com/TUDelftGeodesy/Doris,371.94388888888886,0,6,0 -dosage,-0.786662315573154,0.161458147523314,-1.13139321583021,https://salsa.debian.org/debian/dosage, https://github.com/webcomics/dosage,4186.696018518519,22,40,1 -dose3,-0.207842185472844,0.0501799098303371,-0.368700599402969,https://salsa.debian.org/ocaml-team/dose3, https://gitlab.com/irill/dose3,4828.393587962963,6,21,0 -dosfstools,0.957669982874941,1.44642545416954,0.617023777334025,https://salsa.debian.org/debian/dosfstools, https://github.com/dosfstools/dosfstools.git,3911.408310185185,49,15,0 -dot2tex,0.346628308685279,1.93930306136597,-0.172604157583732,https://salsa.debian.org/python-team/packages/dot2tex, https://github.com/kjellmf/dot2tex,5058.779444444444,10,18,2 -dotenv-cli,-2.84119389854425,-0.490733966228282,-3.32075731236493,https://github.com/venthur/dotenv-cli,https://github.com/venthur/dotenv-cli,1883.5036574074074,2,5,0 -dothost,-0.823638539350845,1.67643607287626,-1.35414195393643,https://salsa.debian.org/debian/dothost, https://github.com/jwilk/dothost,4422.101539351852,1,1,0 -double-conversion,0.497121603525521,2.09701315218936,0.0241988450973749,https://salsa.debian.org/science-team/double-conversion, https://github.com/google/double-conversion.git,4286.659282407408,44,23,0 -doxygen,1.57285541920274,2.00663097629079,1.23570050367554,https://salsa.debian.org/debian/doxygen, https://github.com/doxygen/doxygen.git,5784.328518518519,59,259,0 -dpic,-1.13832050191715,2.20470302447854,-1.93222078365393,https://salsa.debian.org/debian/dpic, https://gitlab.com/aplevich/dpic,4904.149444444444,0,2,0 -dpmb,-0.669189830637777,1.51487679633521,-1.16595597871383,https://github.com/dpmb/dpmb,https://github.com/dpmb/dpmb,3025.1458101851854,5,11,1 -dq,-0.183429315399927,2.1580450192287,-0.749959267578792,https://salsa.debian.org/debian/dq, https://github.com/janmojzis/dq.git,2922.0256712962964,0,7,0 -drf-extensions,-1.57110742706504,0.582669345959193,-2.23342657631871,https://salsa.debian.org/python-team/packages/drf-extensions, https://github.com/chibisov/drf-extensions.git,3758.308101851852,37,33,0 -drf-generators,-1.07918415610289,1.91085359378585,-1.80155076486193,https://salsa.debian.org/python-team/packages/drf-generators, https://github.com/brobin/drf-generators,1981.457962962963,4,10,0 -driftnet,-0.302144137704238,0.458279698148053,-0.616098152418851,https://github.com/deiv/driftnet,https://github.com/deiv/driftnet,3936.065972222222,4,6,0 -drkonqi,0.694556504862393,3.28122289179673,-0.0030045563876691,https://salsa.debian.org/qt-kde-team/kde/drkonqi, https://invent.kde.org/plasma/drkonqi.git,3544.112766203704,36,158,0 -drmaa,-0.922986928228606,0.89435172791439,-1.53889233573297,https://salsa.debian.org/med-team/drmaa, https://github.com/pygridtools/drmaa-python,3564.105462962963,9,12,0 -drmips,-0.919047649267425,1.66859066241566,-1.64121232677346,https://github.com/brunonova/drmips/tree/debian,https://github.com/brunonova/drmips,3165.66125,3,3,0 -droopy,-0.89398694325989,1.3787169177303,-1.33370261042345,https://salsa.debian.org/debian/droopy, https://github.com/stackp/Droopy.git,5280.214768518518,0,7,0 -dropbear,0.48121755141985,0.975457664318655,0.154035465817107,https://salsa.debian.org/debian/dropbear, https://github.com/mkj/dropbear,5772.037037037037,39,54,0 -dropwatch,-1.19912626039836,1.52507087369756,-1.82854069407043,https://salsa.debian.org/debian/dropwatch, https://github.com/nhorman/dropwatch,5326.14962962963,3,24,0 -drumkv1,-0.195646303841167,1.07067209089277,-0.459428091573063,https://salsa.debian.org/multimedia-team/drumkv1, https://github.com/rncbc/drumkv1.git,4115.909027777778,1,13,0 -dtach,0.472092738388935,2.05322582228663,-0.0564635600433057,https://salsa.debian.org/voelkel-guest/dtach, https://github.com/crigler/dtach.git,1708.1544328703703,2,2,0 -dtfabric,0.0544342307870755,2.34172880310567,-0.479367618131588,https://salsa.debian.org/debian/dtfabric, https://github.com/libyal/dtfabric.git,2597.957638888889,0,1,0 -dtkwidget,-0.0475931280603003,1.679787993516,-0.328272591083286,https://salsa.debian.org/pkg-deepin-team/dtkwidget, https://github.com/linuxdeepin/dtkwidget.git,2854.338912037037,62,131,0 -duc,-0.195412930692594,1.29452216265911,-0.503904306372619,https://salsa.debian.org/debian/duc, https://github.com/zevv/duc,3420.8586226851853,5,34,1 -duma,1.88322745062046,4.99071599332732,0.523125064062316,https://salsa.debian.org/debian/duma, https://github.com/johnsonjh/duma.git,5743.537164351852,8,21,0 -dumb-jump-el,-1.00401612289515,1.38938396192979,-1.45538725397063,https://salsa.debian.org/emacsen-team/dumb-jump-el, https://github.com/jacktasia/dumb-jump.git,2796.8254398148147,82,16,0 -dumpet,0.811956716178272,4.83296464467065,-0.595687566980936,https://salsa.debian.org/debian/dumpet, https://github.com/rhboot/dumpet.git,4953.931909722222,2,5,0 -dune,-0.43481429102325,2.24561604798834,-1.11372262545526,https://salsa.debian.org/ocaml-team/jbuilder, https://github.com/ocaml/dune.git,2599.2439467592594,200,110,0 -dune-common,-0.139917929007262,0.951578808983954,-0.444055513231722,https://salsa.debian.org/science-team/dune-common, https://gitlab.dune-project.org/core/dune-common,5758.781203703704,24,91,0 -dune-functions,-1.31221220780505,0.718460962641577,-1.85911407759852,https://salsa.debian.org/science-team/dune-functions, https://gitlab.dune-project.org/staging/dune-functions,3750.594351851852,5,45,0 -dune-geometry,-0.0756221600056352,1.66083830603944,-0.461840546040547,https://salsa.debian.org/science-team/dune-geometry, https://gitlab.dune-project.org/core/dune-geometry,4564.476018518519,2,55,0 -dune-grid,0.0354884919128958,1.26578102937046,-0.390952180360479,https://salsa.debian.org/science-team/dune-grid, https://gitlab.dune-project.org/core/dune-grid,5743.035127314814,14,81,0 -dune-grid-glue,-1.86934432794611,0.514414988592386,-2.3457926456037,https://salsa.debian.org/science-team/dune-grid-glue, https://gitlab.dune-project.org/extensions/dune-grid-glue,4975.9977546296295,2,21,0 -dune-istl,-0.266824222320681,1.48014689374194,-0.79477271736619,https://salsa.debian.org/science-team/dune-istl, https://gitlab.dune-project.org/core/dune-istl,5747.200671296297,17,72,0 -dune-localfunctions,-0.448902210848601,1.64652555360451,-0.893223140626931,https://salsa.debian.org/science-team/dune-localfunctions, https://gitlab.dune-project.org/core/dune-localfunctions,5515.05150462963,10,53,0 -dune-typetree,-1.20801321499879,1.36351646984216,-1.82777229031688,https://salsa.debian.org/science-team/dune-typetree, https://gitlab.dune-project.org/staging/dune-typetree,5388.208055555556,5,29,0 -dune-uggrid,0.195223883368056,2.99962790807121,-0.506901527774429,https://salsa.debian.org/science-team/dune-uggrid, https://gitlab.dune-project.org/staging/dune-uggrid,5755.737870370371,3,35,0 -dunst,0.366998316293135,1.16378226146977,0.00706766044838692,https://salsa.debian.org/debian/dunst, https://github.com/dunst-project/dunst,4447.004560185185,43,111,1 -dustrac,0.173033014337768,3.12190825679454,-0.64114853157353,https://salsa.debian.org/pino/dustrac, https://github.com/juzzlin/DustRacing2D.git,4428.422685185185,8,9,0 -dvbcut,-0.140015948042476,0.399549472596794,-0.360309815738839,https://github.com/bernhardu/dvbcut-deb,https://github.com/bernhardu/dvbcut-deb,2301.5843402777778,21,3,0 -dvisvgm,0.171998282183947,1.55084136410994,-0.142662310021075,https://github.com/debian-tex/dvisvgm,https://github.com/debian-tex/dvisvgm,1541.3238194444446,1,6,0 -dwarves-dfsg,1.08391207840635,2.79265737451969,0.248757980659376,https://salsa.debian.org/debian/dwarves, git://git.kernel.org/pub/scm/devel/pahole/pahole.git,5735.191724537037,49,4,0 -dymo-cups-drivers,0.169549098118807,1.26534235036264,-0.0340436610527709,https://salsa.debian.org/printing-team/dymo-cups-drivers, https://github.com/matthiasbock/dymo-cups-drivers,4079.6409837962965,4,11,0 -e2guardian,-0.496204603349068,0.855927944909435,-0.884815036633468,https://salsa.debian.org/debian-edu-pkg-team/e2guardian, https://github.com/e2guardian/e2guardian,3743.851041666667,10,60,4 -e2tools,-0.31548264769242,0.572945917024269,-0.592896826629012,https://salsa.debian.org/debian/e2tools, https://github.com/e2tools/e2tools,1196.5083217592592,2,6,3 -earlyoom,-0.341183177493239,0.813051484006846,-0.602041086806007,https://salsa.debian.org/yangfl-guest/earlyoom, https://github.com/rfjakob/earlyoom,3559.298252314815,38,9,1 -easygit,0.383586011018572,3.59575944736992,-0.580757122704697,https://salsa.debian.org/debian/easygit, https://github.com/newren/easygit,3676.0657175925926,399,15,0 -easyloggingpp,-2.68656658050748,-0.925636594292393,-3.01590420575007,https://salsa.debian.org/debian/easyloggingpp, https://github.com/amrayn/easyloggingpp.git,3956.1497569444446,5,43,0 -easyprocess,-0.53799173320537,1.94599701982545,-1.02194320670944,https://salsa.debian.org/python-team/packages/easyprocess, https://github.com/ponty/easyprocess.git,4652.397800925926,3,9,0 -ecdsautils,-0.584218908434214,1.61127583977002,-1.01705206899644,https://salsa.debian.org/communitywlan-team/ecdsautils, https://github.com/freifunk-gluon/ecdsautils,3436.625625,1,8,0 -eclipselink,0.289924153049806,1.91832251188098,-0.244682373981204,https://salsa.debian.org/java-team/eclipselink, https://github.com/eclipse-ee4j/eclipselink.git,5753.949293981482,74,68,0 -edbrowse,0.370832211502124,1.58291273937709,-0.194120259542338,https://salsa.debian.org/a11y-team/edbrowse, https://github.com/CMB/edbrowse.git,5783.51974537037,9,22,0 -edgar,1.08839795492961,5.17314917307623,-0.286926227501431,https://salsa.debian.org/games-team/edgar, https://github.com/riksweeney/edgar,5461.022303240741,3,13,0 -editorconfig-core,1.58872816623417,4.60751801532545,0.480343298429884,https://salsa.debian.org/debian/editorconfig-core, https://github.com/editorconfig/editorconfig-core-c.git,4345.140486111111,23,19,0 -editra,-0.263335934885057,1.18599592584657,-0.739439848910042,https://github.com/mogaal/editra,https://github.com/mogaal/editra,1762.9254398148148,0,2,0 -efivar,1.23954728474232,3.14090846486121,0.436649078146059,https://salsa.debian.org/efi-team/efivar, https://github.com/rhinstaller/efivar.git,3854.906863425926,62,9,0 -eggdrop,0.690268776996146,1.69667660089826,0.0747126473210248,https://github.com/yastupin/eggdrop-debian,https://github.com/yastupin/eggdrop-debian,1023.9554166666667,0,1,0 -egl-wayland,0.0316178932027656,1.81596484490241,-0.353852698854025,https://salsa.debian.org/debian/egl-wayland, https://github.com/NVIDIA/egl-wayland.git,2464.5272800925927,13,9,0 -eiciel,-0.391393491150218,0.284553120568024,-0.622503649693577,https://salsa.debian.org/debian/eiciel, https://github.com/rofirrim/eiciel,4391.8161689814815,58,10,0 -eigen3,-0.00153893751059252,0.301408091092204,-0.128451767220359,https://salsa.debian.org/science-team/eigen3, https://gitlab.com/libeigen/eigen.git,5766.621956018518,146,433,0 -eiskaltdcpp,0.450565010716283,2.09734901934217,-0.288679308824885,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,3513.924236111111,0,2,0 -eja,-2.79252373942421,1.01540476237612,-3.99129208423818,https://github.com/ubaldus/eja,https://github.com/ubaldus/eja,3036.7696296296294,0,5,0 -elastalert,-2.74905221526943,-1.03824771626253,-3.25310775303483,https://salsa.debian.org/debian/elastalert, https://github.com/Yelp/elastalert.git,2822.080949074074,46,241,0 -elasticsearch-curator,0.0906487219488355,2.1237637356061,-0.674203282917645,https://salsa.debian.org/python-team/packages/elasticsearch-curator, https://github.com/elasticsearch/curator.git,4523.4816435185185,47,128,0 -electrum,0.644979414679762,1.63229633635466,0.0870509386464772,https://salsa.debian.org/cryptocoin-team/electrum, https://github.com/spesmilo/electrum.git,4420.969664351852,140,307,0 -elfeed,-0.417425355363371,2.51368858128419,-1.17645513355623,https://salsa.debian.org/emacsen-team/elfeed, https://github.com/skeeto/elfeed.git,3363.420949074074,15,41,0 -elvish,-0.835855020820387,0.926105004920507,-1.25667714434556,https://salsa.debian.org/go-team/packages/elvish, https://github.com/elves/elvish.git,3724.704976851852,74,20,0 -emacs-git-messenger,-0.739411095707097,1.34402556647165,-1.17594534115372,https://salsa.debian.org/emacsen-team/emacs-git-messenger, https://github.com/syohex/emacs-git-messenger.git,3062.6,2,8,0 -emacs-git-modes,-0.509569109537016,1.88187470906829,-0.945070825244811,https://salsa.debian.org/emacsen-team/emacs-git-modes, https://github.com/magit/git-modes.git,4898.459803240741,8,34,0 -emacs-jedi,-0.592556432624472,1.66859689627327,-1.06268041591691,https://salsa.debian.org/emacsen-team/emacs-jedi, https://github.com/tkf/emacs-jedi.git,3462.8411458333335,5,28,0 -emacs-python-environment,-0.649779646433018,0.888158589770637,-0.925484796949458,https://salsa.debian.org/emacsen-team/emacs-python-environment, https://github.com/tkf/emacs-python-environment.git,626.8352777777778,0,3,0 -emacspeak,-0.3098123338625,0.154967146047551,-0.60639494426453,https://salsa.debian.org/a11y-team/emacspeak, https://github.com/tvraman/emacspeak.git,5784.515497685185,1,16,0 -email-reminder,-0.847141389669189,0.554225750947024,-1.45581648061414,https://salsa.debian.org/debian/email-reminder, https://git.launchpad.net/email-reminder,5687.90599537037,0,4,0 -emerald,-0.0546495713741435,2.20829156533688,-0.512544323253641,https://salsa.debian.org/compiz-team/emerald, https://gitlab.com/compiz/emerald,5471.917094907408,17,22,0 -enchant-2,0.467123270126367,2.61384891691575,-0.0641062096631408,https://salsa.debian.org/gnome-team/enchant-2/, https://github.com/AbiWord/enchant.git,5773.218333333333,7,27,0 -engauge-digitizer,0.468318437833274,1.88446333899741,-0.132199812189396,https://github.com/winchen/engauge_debian,https://github.com/winchen/engauge_debian,3059.142997685185,0,6,0 -engrampa,0.336470722537852,1.20098013726039,-0.00181048282286332,https://salsa.debian.org/debian-mate-team/engrampa, https://github.com/mate-desktop/engrampa.git,4345.101631944444,27,39,0 -enjarify,0.427359644725641,3.15080798032506,-0.369092656100407,https://salsa.debian.org/android-tools-team/enjarify, https://github.com/Storyyeller/enjarify,1738.1109490740741,3,12,0 -ensmallen,-4.65186080484944,-1.20167735411521,-5.4243559792702,https://salsa.debian.org/science-team/ensmallen, https://github.com/mlpack/ensmallen,3267.113923611111,33,88,1 -entrypoints,0.857419697011272,4.10478343532811,0.0074721980594274,https://salsa.debian.org/python-team/packages/entrypoints, https://github.com/takluyver/entrypoints,2468.1372569444443,5,10,0 -enzyme,0.220928112203971,2.75082274669523,-0.536278177153044,https://salsa.debian.org/python-team/packages/enzyme, https://github.com/Diaoul/enzyme,665.1386111111111,0,3,0 -eog-plugins,0.8671201317765,3.34190895330027,-0.0322388687992575,https://salsa.debian.org/gnome-team/eog-plugins, https://gitlab.gnome.org/GNOME/eog-plugins.git,5728.98824074074,96,127,0 -eom,0.715092860786342,1.96179053680248,0.162373821058576,https://salsa.debian.org/debian-mate-team/eom, https://github.com/mate-desktop/eom.git,4406.35525462963,31,40,0 -epoptes,-0.542451972754831,0.373723502712433,-0.839677995870044,https://github.com/epoptes/epoptes,https://github.com/epoptes/epoptes,4351.406793981481,4,10,0 -epr-api,-0.18355944237455,2.54906287161903,-0.893126650478525,https://salsa.debian.org/debian-gis-team/epr-api, https://github.com/bcdev/epr-api,4843.189861111111,0,19,0 -eqonomize,-0.713530596761242,-0.228994478371221,-0.815920165653021,https://salsa.debian.org/debian/eqonomize, https://github.com/Eqonomize/eqonomize.git,2736.8790046296294,6,16,0 -erfa,0.262633232067465,2.31782689876188,-0.183508382360506,https://salsa.debian.org/debian-astro-team/erfa, https://github.com/liberfa/erfa,3687.085324074074,3,14,0 -eris,-0.632476632964692,0.613394085601497,-1.19935072425888,https://salsa.debian.org/games-team/eris, https://github.com/worldforge/eris,5633.240509259259,2,7,0 -erlang-bear,-1.55987070079877,0.774057185069086,-2.05495667348586,https://salsa.debian.org/erlang-team/packages/erlang-bear, https://github.com/boundary/bear.git,985.0124652777778,0,11,0 -erlang-bitcask,-1.63980554689103,0.184667076068673,-2.16430999587271,https://salsa.debian.org/erlang-team/packages/erlang-bitcask, https://github.com/basho/bitcask.git,4652.9643865740745,11,64,0 -erlang-cuttlefish,-1.15701693005491,1.40793711612312,-1.97224413027031,https://salsa.debian.org/erlang-team/packages/erlang-cuttlefish, https://github.com/Kyorai/cuttlefish.git,3504.207511574074,6,42,0 -erlang-erlware-commons,-1.87440958189652,0.878602384616867,-2.6652549431966,https://salsa.debian.org/erlang-team/packages/erlang-erlware-commons, https://github.com/erlware/erlware_commons.git,4657.953206018518,8,37,0 -erlang-folsom,-1.80038604201176,0.51813893541771,-2.33186478870304,https://salsa.debian.org/erlang-team/packages/erlang-folsom, https://github.com/boundary/folsom.git,1470.0027777777777,3,37,0 -erlang-getopt,-1.24640146881314,1.24055252773571,-1.75273510466258,https://salsa.debian.org/erlang-team/packages/erlang-getopt, https://github.com/jcomellas/getopt,5121.0564583333335,4,19,0 -erlang-jiffy,0.16685012027072,2.42553819307624,-0.375839419075433,https://salsa.debian.org/erlang-team/packages/erlang-jiffy, https://github.com/davisp/jiffy.git,3978.804988425926,23,14,0 -erlang-jose,-0.0923635531212964,2.33278579929421,-0.570549312467372,https://salsa.debian.org/ejabberd-packaging-team/erlang-jose, https://github.com/potatosalad/erlang-jose.git,3054.6266782407406,10,30,0 -erlang-lager,0.133025795806357,2.17059930408403,-0.38214359591097,https://salsa.debian.org/ejabberd-packaging-team/erlang-lager, https://github.com/erlang-lager/lager.git,4513.831643518519,17,130,0 -erlang-meck,-1.78476224853465,-0.628802298383138,-2.05903919755242,https://salsa.debian.org/erlang-team/packages/erlang-meck, https://github.com/eproxus/meck.git,4901.985833333333,34,45,0 -erlang-p1-eimp,0.113618380384015,3.10174992362404,-0.556281410260239,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-eimp, https://github.com/processone/eimp.git,1694.160462962963,2,10,0 -erlang-p1-pkix,-0.234474962955573,1.53100669979475,-0.593960523909424,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-pkix, https://github.com/processone/pkix.git,1315.7862615740742,2,8,0 -erlang-p1-sqlite3,-1.07473466575997,0.955064677192846,-1.52297568779908,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-sqlite3, https://github.com/processone/erlang-sqlite3.git,5341.557349537037,3,35,0 -erlang-p1-stun,0.0861728610565275,2.22776495360094,-0.507245346061424,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-stun, https://github.com/processone/stun.git,3846.888657407407,6,17,0 -erlang-p1-tls,-0.157152572959326,1.10952151950504,-0.410660716524691,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-tls, https://github.com/processone/fast_tls.git,3904.2279282407408,5,26,0 -erlang-redis-client,-0.985788696555104,1.21206138643424,-1.43124443697926,https://salsa.debian.org/ejabberd-packaging-team/erlang-redis-client, https://github.com/wooga/eredis.git,2851.9773842592595,2,48,0 -eshell-git-prompt,-0.960941172080987,1.69591949338281,-1.54240206821766,https://salsa.debian.org/emacsen-team/eshell-git-prompt, https://github.com/xuchunyang/eshell-git-prompt.git,2545.7433564814814,1,11,0 -eslint,-1.25643164062279,0.154229922269552,-1.57928441222656,https://salsa.debian.org/js-team/eslint, https://github.com/eslint/eslint,3817.9542592592593,734,428,0 -espeakup,-0.506078169625807,0.017914626037391,-0.74937633111245,https://salsa.debian.org/a11y-team/espeakup, https://github.com/williamh/espeakup,4725.758113425926,2,6,0 -ettercap,0.351699731807671,0.960477024162828,0.00545429201729745,https://salsa.debian.org/pkg-security-team/ettercap, https://github.com/Ettercap/ettercap.git,4364.942071759259,13,80,0 -evilwm,0.105835074907099,1.77091415019833,-0.588761379539172,https://github.com/mati75/evilwm.git,https://github.com/mati75/evilwm.git,3558.3624189814814,0,7,0 -evolution,2.55914461722164,2.78365049389724,2.35742321721504,https://salsa.debian.org/gnome-team/evolution, https://gitlab.gnome.org/GNOME/evolution,5777.833414351852,468,394,0 -evolution-data-server,1.9384187213271,2.47508258971204,1.5187005605528,https://salsa.debian.org/gnome-team/evolution-data-server, https://gitlab.gnome.org/GNOME/evolution-data-server.git,5775.809884259259,354,378,0 -evqueue-core,-3.80089043066106,0.00554018037561535,-5.03108949833089,https://github.com/coldsource/evqueue-core,https://github.com/coldsource/evqueue-core,3176.9503935185185,0,23,0 -exabgp,-0.566149632308673,0.414366627765843,-0.952971500024496,https://github.com/Exa-Networks/exabgp/tree/debian/sid,https://github.com/Exa-Networks/exabgp,5211.732222222222,28,135,5 -exam,-1.74031449710489,0.801961086566693,-2.40692408212893,https://salsa.debian.org/python-team/packages/exam, https://github.com/fluxx/exam,1312.6528125,0,12,0 -execnet,0.374111350089674,1.88895521784274,-0.187336673720349,https://salsa.debian.org/python-team/packages/execnet, https://github.com/pytest-dev/execnet,3112.8458564814814,7,41,0 -exiv2,2.00721799338912,2.82923170632669,1.44451109833252,https://salsa.debian.org/qt-kde-team/3rdparty/exiv2, https://github.com/Exiv2/exiv2.git,5776.624270833333,78,96,0 -extlib,-0.348114141550944,0.350425218393855,-0.564117168726424,https://salsa.debian.org/ocaml-team/extlib, https://github.com/ygrek/ocaml-extlib.git,5693.391643518518,9,11,0 -extrace,-0.716911995983522,1.64180015266931,-1.26212145910812,https://salsa.debian.org/debian/extrace, https://github.com/chneukirchen/extrace,3149.892662037037,4,2,0 -eyed3,1.23632208346383,2.32250673725634,0.591986174485483,https://github.com/gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian,2546.8571180555555,1,6,0 -eztrace,-2.68496925689074,-2.40203069489882,-2.78009463273141,https://salsa.debian.org/debian/eztrace, https://gitlab.com/eztrace/eztrace,4927.963518518519,3,31,0 -f2fs-tools,0.836614439987075,2.40827928775723,0.175028114286788,https://salsa.debian.org/debian/f2fs-tools, https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git,4029.310104166667,112,35,0 -f3,0.267941562478646,2.65348696062886,-0.29233767654254,https://salsa.debian.org/debian/f3, https://github.com/AltraMayor/f3.git,4281.923391203703,11,29,0 -faac,0.408637631433611,1.78820560884343,-0.0272312250909511,https://salsa.debian.org/multimedia-team/faac, https://github.com/knik0/faac,5409.507118055555,6,12,0 -faad2,1.05441750561477,2.23396241847788,0.471664053362126,https://salsa.debian.org/multimedia-team/faad2, https://github.com/knik0/faad2.git,5741.370833333333,16,14,0 -faba-icon-theme,0.891121238708099,4.43847406760927,-0.114244381250684,https://github.com/ubuntubudgie/faba-icon-theme/tree/debian,https://github.com/ubuntubudgie/faba-icon-theme,1592.9366782407408,0,6,0 -fabric,0.2361201884431,1.12244522648531,-0.239560475635602,https://salsa.debian.org/python-team/packages/fabric, https://github.com/fabric/fabric.git,5703.0252199074075,79,121,0 -fabulous,-1.900421627324,-0.0667224501676742,-2.49350299164384,https://salsa.debian.org/python-team/packages/fabulous, https://github.com/jart/fabulous.git,4223.1852546296295,4,8,0 -facter,0.772472390506617,1.48136041104696,0.341802029384561,https://salsa.debian.org/puppet-team/facter, https://github.com/puppetlabs/facter.git,5785.791805555556,166,333,0 -fadecut,-0.667350092463335,1.85383645777287,-1.13854409825705,https://github.com/fadecut/fadecut/tree/debian,https://github.com/fadecut/fadecut,2792.815474537037,1,14,5 -fades,-1.96895940124342,0.120922830155386,-2.55435477665345,https://salsa.debian.org/debian/fades, https://github.com/PyAr/fades.git,3294.596076388889,4,33,0 -fai,-0.141029003062567,-0.0834131887446058,-0.187507023426249,https://github.com/faiproject/fai,https://github.com/faiproject/fai,5773.004537037037,75,16,0 -fail2ban,1.13797820973197,1.51773502198369,0.845480074572128,https://salsa.debian.org/python-team/packages/fail2ban, https://github.com/fail2ban/fail2ban,5786.415497685185,103,199,4 -faker,-0.145280747483218,2.69425805512152,-1.09217364329954,https://salsa.debian.org/python-team/packages/faker, https://github.com/joke2k/faker,4045.7559953703703,333,259,1 -fakesleep,-2.48126536481237,0.0741874263754914,-3.00289319258141,https://salsa.debian.org/python-team/packages/fakesleep, https://github.com/wearpants/fakesleep,0.014490740740740742,0,1,0 -faketime,1.2716884133044,2.81491703927494,0.475753120949101,https://salsa.debian.org/debian/faketime, https://github.com/wolfcw/libfaketime.git,4505.66306712963,16,62,0 -fastd,0.333514221887181,3.12787150801173,-0.517000559553248,https://salsa.debian.org/communitywlan-team/fastd, https://github.com/NeoRaider/fastd.git,4199.101087962963,7,5,0 -fastkml,-1.15123918868783,1.63854293239259,-1.93659466695944,https://salsa.debian.org/python-team/packages/fastkml, https://github.com/cleder/fastkml,4190.952314814815,13,36,2 -fasttracker2,-1.40046242909984,1.30557026771413,-2.13381470047187,https://salsa.debian.org/multimedia-team/fasttracker2, https://github.com/8bitbubsy/ft2-clone,1461.1673958333333,1,7,0 -fastx-toolkit,-0.345788605712488,1.09299754636222,-0.780912212098643,https://salsa.debian.org/med-team/fastx-toolkit, https://github.com/agordon/fastx_toolkit.git,3133.6998726851853,1,6,0 -fatcat,0.484244234595616,3.27011211542871,-0.26926443972348,https://salsa.debian.org/pkg-security-team/fatcat, https://github.com/gregwar/fatcat,3248.5118981481482,2,7,0 -fatresize,1.78148207308487,4.9928976783678,0.533041051742402,https://salsa.debian.org/parted-team/fatresize, https://github.com/ya-mouse/fatresize,2189.5325,0,6,0 -fbpager,1.58823801856965,4.00012622311752,0.50196164463335,https://salsa.debian.org/debian/fbpager, https://github.com/fluxbox/fbpager,37.65318287037037,0,2,0 -fbset,1.31343177622143,2.3999244160546,0.655961770934684,https://github.com/sudipm-mukherjee/fbset.git,https://github.com/sudipm-mukherjee/fbset.git,5178.7434375,2,3,0 -fceux,3.13669420554879,8.47034613818339,1.47580172912887,https://salsa.debian.org/games-team/fceux, https://github.com/TASEmulators/fceux.git,5697.892361111111,20,74,0 -fcgiwrap,0.313457792128019,1.1712166292828,-0.0802338795231698,https://salsa.debian.org/debian/fcgiwrap, https://github.com/gnosek/fcgiwrap,2589.724513888889,5,10,0 -fcitx-kkc,-1.68336156933655,1.21242873706375,-2.4195782628194,https://salsa.debian.org/debian/fcitx-kkc, https://gitlab.com/fcitx/fcitx-kkc,1810.1008564814815,0,6,0 -fcitx-libpinyin,1.39043144689308,5.58305392877006,-0.0318276844096985,https://salsa.debian.org/input-method-team/fcitx-libpinyin, https://github.com/fcitx/fcitx-libpinyin,4359.651828703703,2,6,0 -fcitx5-gtk,-1.62248439620705,1.49857362471996,-2.41070662056622,https://salsa.debian.org/input-method-team/fcitx5-gtk, https://github.com/fcitx/fcitx5-gtk,2400.241712962963,8,2,0 -fdm,0.367216892864716,2.19386340439911,-0.462639406832624,https://github.com/ft/pkg-fdm/,https://github.com/ft/pkg-fdm,5107.6653125,0,3,0 -fdupes,0.797815849862048,1.8605336336169,0.244948931625336,https://salsa.debian.org/morph/fdupes, https://github.com/adrianlopezroche/fdupes.git,4776.116296296296,14,18,0 -feature-check,-1.67651475889661,0.946625175240862,-2.22506387769985,https://salsa.debian.org/roam/feature-check/, https://gitlab.com/ppentchev/feature-check,1961.6795023148147,0,4,0 -feedgnuplot,-0.0232006873358208,2.3192159355139,-0.475883411920573,https://salsa.debian.org/science-team/feedgnuplot, https://github.com/dkogan/feedgnuplot.git,4457.749803240741,3,11,0 -feedparser,0.329490030195573,0.887258506590834,0.0591644378455066,https://salsa.debian.org/python-team/packages/feedparser, https://github.com/kurtmckee/feedparser,5778.855555555556,18,42,0 -feh,1.21389057646133,2.03207040598424,0.696863505679508,https://salsa.debian.org/debian-phototools-team/feh, https://github.com/derf/feh.git,5050.149907407407,28,62,0 -fence-agents,-0.0526755775352836,0.730696078493805,-0.341365408236932,https://salsa.debian.org/ha-team/fence-agents, https://github.com/ClusterLabs/fence-agents,5742.9759722222225,67,106,0 -ferm,1.17557917057853,1.91549490133415,0.694476014070476,https://github.com/formorer/pkg-ferm,https://github.com/formorer/pkg-ferm,1766.192164351852,3,2,0 -ffcall,1.21635610147487,2.42062030555951,0.534283425262532,https://salsa.debian.org/common-lisp-team/ffcall, https://git.savannah.gnu.org/git/libffcall.git,5555.657754629629,1,5,0 -ffindex,-0.384194745848032,0.784874680619157,-0.725631771709728,https://salsa.debian.org/med-team/ffindex, https://github.com/ahcm/ffindex.git,4107.537777777778,1,9,0 -ffmpegthumbnailer,0.621833900023643,1.70260395310542,0.129933472915708,https://salsa.debian.org/multimedia-team/ffmpegthumbnailer, https://github.com/dirkvdb/ffmpegthumbnailer,5750.985289351852,2,26,0 -fftw3,0.560695784836072,1.05702599503968,0.264284079595815,https://salsa.debian.org/science-team/fftw3, https://github.com/FFTW/fftw3.git,5716.0486458333335,17,23,0 -fgallery,0.458012457996333,3.33966046562708,-0.370717995383411,https://salsa.debian.org/debian-phototools-team/fgallery, https://gitlab.com/wavexx/fgallery,4332.613657407407,1,12,0 -filetea,-1.48802911677377,-0.597610494268726,-1.68694265471388,https://salsa.debian.org/berto/filetea, https://github.com/elima/FileTea,2414.458611111111,4,1,0 -filtergen,-1.49005930206133,-0.252717041402296,-2.01618164947352,https://github.com/jaqx0r/filtergen/tree/debian,https://github.com/jaqx0r/filtergen,4988.9503125,3,6,0 -findimagedupes,0.157139725705101,1.01413071404843,-0.242838384248759,https://salsa.debian.org/science-team/findimagedupes, https://github.com/jhnc/findimagedupes.git,5609.298483796297,0,1,0 -fiona,-0.45182954892962,0.0316996688928317,-0.548290247008744,https://salsa.debian.org/debian-gis-team/fiona, https://github.com/Toblerity/Fiona.git,2732.0256712962964,42,33,0 -firehol,0.233747372311373,0.6567606394306,-0.0568826658718426,https://salsa.debian.org/debian/firehol, https://github.com/firehol/firehol,5475.348032407407,8,33,1 -firewalld,0.380288548595903,1.02011057760356,0.0198271674745881,https://salsa.debian.org/utopia-team/firewalld, https://github.com/firewalld/firewalld.git,4736.135462962963,181,38,0 -firmware-microbit-micropython,0.478410426544107,3.61766596813473,-0.405114305126869,https://salsa.debian.org/python-team/packages/firmware-microbit-micropython, https://github.com/bbcmicrobit/micropython.git,2774.686111111111,52,41,0 -fitscut,-0.461887466842085,0.810102280137207,-0.688120430418164,https://salsa.debian.org/debian-astro-team/fitscut, https://github.com/spacetelescope/fitscut,4.934247685185185,1,2,0 -five-or-more,1.68997991192023,4.47527292932312,0.597230046968088,https://salsa.debian.org/gnome-team/five-or-more, https://gitlab.gnome.org/gnome/five-or-more,5740.053067129629,139,122,0 -fizmo-ncursesw,-0.203260447661615,2.2028162183293,-0.777045143620456,https://github.com/chrender/fizmo-ncursesw,https://github.com/chrender/fizmo-ncursesw,4851.414270833333,0,5,0 -flake8-polyfill,-0.290509698927459,2.15006672717983,-0.831786942179057,https://salsa.debian.org/python-team/packages/flake8-polyfill, https://github.com/PyCQA/flake8-polyfill.git,2673.183090277778,0,6,0 -flam3,0.783107292468659,3.7427433820312,-0.265060915265368,https://salsa.debian.org/debian/flam3, https://github.com/scottdraves/flam3,1152.1052083333334,1,7,0 -flamerobin,-0.327866657694599,0.665010888077961,-0.57374430777908,https://salsa.debian.org/debian/flamerobin, https://github.com/mariuz/flamerobin,5771.75480324074,5,30,0 -flameshot,1.55107487532751,4.92439066853215,0.352696478229815,https://salsa.debian.org/debian/flameshot, https://github.com/flameshot-org/flameshot.git,2393.0218055555556,261,25,0 -flare-engine,0.197109594964029,2.36076868659175,-0.371471614527443,https://salsa.debian.org/games-team/flare-engine, https://github.com/flareteam/flare-engine,4571.459525462963,18,81,1 -flare-game,0.13581592220033,2.68837141164579,-0.419579888500682,https://salsa.debian.org/games-team/flare-game, https://github.com/flareteam/flare-game,4548.824502314815,15,65,1 -flask,0.2833230291285,1.29200960675611,-0.0619464215620129,https://salsa.debian.org/python-team/packages/flask, https://github.com/pallets/flask,4990.467743055556,414,463,2 -flask-babel,0.249235184378055,2.06363219384402,-0.142918840376056,https://salsa.debian.org/python-team/packages/flask-babel, https://github.com/python-babel/flask-babel,4873.4565625,14,34,1 -flask-jwt-simple,-3.74100421556996,-1.19160534497848,-4.32012170593659,https://salsa.debian.org/python-team/packages/flask-jwt-simple, https://github.com/vimalloc/flask-jwt-simple.git,1518.8651041666667,3,4,0 -flask-ldapconn,-1.08168170594019,1.85475959550756,-1.94217483827094,https://salsa.debian.org/python-team/packages/flask-ldapconn, https://github.com/rroemhild/flask-ldapconn,3190.6329976851853,4,10,0 -flask-limiter,-2.03410916447575,0.794966763544901,-2.86748401658856,https://salsa.debian.org/python-team/packages/flask-limiter, https://github.com/alisaifee/flask-limiter.git,3575.1041666666665,19,27,0 -flask-mongoengine,-1.28471432731324,1.67557096243642,-2.06784858010474,https://salsa.debian.org/python-team/packages/flask-mongoengine, https://github.com/mongoengine/flask-mongoengine,4513.283807870371,18,81,5 -flask-openid,0.228453383029625,2.65976098851716,-0.321308488807341,https://salsa.debian.org/python-team/packages/flask-openid, https://github.com/mitsuhiko/flask-openid.git,4219.235648148148,6,12,0 -flask-restful,0.347911319970928,1.67126298027459,-0.0854278524850452,https://salsa.debian.org/python-team/packages/flask-restful, https://github.com/flask-restful/flask-restful,3867.9860763888887,52,124,0 -flask-script,0.522022248701052,3.05310223602687,-0.272378137262781,https://salsa.debian.org/python-team/modules/flask-script, https://github.com/smurfix/flask-script,3536.342800925926,5,50,1 -flask-silk,-0.0747361696036186,1.01910654442886,-0.341329221279819,https://salsa.debian.org/python-team/packages/flask-silk, https://github.com/sublee/flask-silk.git,2842.474108796296,0,7,0 -flask-socketio,-0.828131323495982,2.2984873725242,-1.96207026781089,https://salsa.debian.org/debian/python-flask-socketio, https://github.com/miguelgrinberg/Flask-SocketIO.git,3545.4973032407406,41,32,0 -flask-sqlalchemy,0.998578611970873,4.11680605182797,-0.0240710393872945,https://salsa.debian.org/python-team/packages/flask-sqlalchemy, https://github.com/pallets-eco/flask-sqlalchemy,4934.184814814815,57,73,1 -flask-testing,-0.833397781767501,1.71297943297029,-1.3777911288909,https://salsa.debian.org/python-team/packages/flask-testing, https://github.com/jarus/flask-testing,3837.3830439814815,7,29,1 -flask-wtf,0.640384175173292,2.79250979467701,-0.0660212157872085,https://salsa.debian.org/python-team/packages/flask-wtf, https://github.com/wtforms/flask-wtf.git,4913.330497685185,22,86,0 -flatbuffers,-1.16044505695917,0.911266021231737,-1.58198853197473,https://salsa.debian.org/debian/flatbuffers, https://github.com/google/flatbuffers.git,3592.7395138888887,597,121,0 -flexc++,-0.040240577546904,1.97760005229477,-0.58580672193189,https://salsa.debian.org/debian/flexcpp, https://gitlab.com/fbb-git/flexcpp.git,4727.060081018519,1,1,0 -flim,0.76669612853376,1.95910735043277,0.161178758307351,https://salsa.debian.org/debian/flim, https://github.com/wanderlust/flim,5370.129212962963,4,13,0 -flint-arb,0.282849253055976,2.10640155716289,-0.265290145933072,https://salsa.debian.org/math-team/flint-arb, https://github.com/fredrik-johansson/arb,4241.291886574074,4,42,0 -flintqs,0.870532560714621,4.21844088759712,-0.122986381463619,https://salsa.debian.org/science-team/flintqs, https://github.com/sagemath/FlintQS,2671.360636574074,0,2,0 -flite,0.374408141316315,0.81572235949216,0.14041837283627,https://salsa.debian.org/a11y-team/flite, https://github.com/festvox/flite.git,1668.0555208333333,9,16,0 -flot,0.752906119786736,3.33965561007159,-0.0338526408921672,https://salsa.debian.org/js-team/flot, https://github.com/flot/flot,5632.038530092593,16,98,3 -flowblade,0.833276933180612,2.96387690967049,0.0346969010928973,https://salsa.debian.org/multimedia-team/flowblade, https://github.com/jliljebl/flowblade,3692.6985532407407,23,35,0 -flowgrind,-1.31886102961806,0.589273276608309,-1.75221055765387,https://github.com/flowgrind/flowgrind,https://github.com/flowgrind/flowgrind,4925.773356481482,2,23,4 -flufl.bounce,-0.37844734302125,2.39782491011575,-1.10210961009318,https://salsa.debian.org/python-team/packages/flufl.bounce, https://gitlab.com/warsaw/flufl.bounce.git,4446.021076388889,0,8,0 -flufl.i18n,-0.536689732891557,1.68149093184236,-1.06710327076295,https://salsa.debian.org/python-team/packages/flufl.i18n, https://gitlab.com/warsaw/flufl.i18n,4999.858668981481,0,1,0 -flufl.testing,-2.42083283025824,0.143507210053309,-2.99193163303102,https://salsa.debian.org/python-team/packages/flufl.testing, https://gitlab.com/warsaw/flufl.testing.git,1541.1081597222221,0,2,0 -fluidsynth,0.21850821664717,0.539975028755889,0.0588521012833301,https://salsa.debian.org/multimedia-team/fluidsynth, https://github.com/Fluidsynth/fluidsynth.git,5564.488715277777,68,41,0 -fmit,1.02888922507472,2.99656825420793,0.134553772804875,https://salsa.debian.org/debian/fmit, https://github.com/gillesdegottex/fmit.git,2966.0915162037036,22,10,0 -fntsample,-1.2332590184019,-0.596975610055257,-1.35617600598223,https://salsa.debian.org/debian/fntsample, https://github.com/eugmes/fntsample.git,4121.078946759259,2,4,0 -folks,0.57987376766559,1.474601727923,0.16856994844193,https://salsa.debian.org/gnome-team/folks, https://gitlab.gnome.org/GNOME/folks,4953.663240740741,100,137,0 -fomp,0.112593629121464,2.61848698404963,-0.478447995679126,https://salsa.debian.org/multimedia-team/fomp, https://gitlab.com/drobilla/fomp.git,4051.664236111111,0,1,0 -font-manager,0.501895495470448,1.598726148213,0.00857793587851484,https://salsa.debian.org/fonts-team/font-manager, https://github.com/FontManager/master,5185.326875,55,11,1 -fontmake,-0.933907560740207,1.27148861067808,-1.45600882337482,https://salsa.debian.org/fonts-team/fontmake, https://github.com/googlei18n/fontmake.git,2987.8108217592594,9,29,0 -fontmatrix,2.15994794748211,4.06554705657352,1.12759544137286,https://salsa.debian.org/fonts-team/fontmatrix, https://github.com/fontmatrix/fontmatrix,5474.399907407407,7,13,0 -fonts-cantarell,0.396295655299994,1.35859733724706,0.0462779969548894,https://salsa.debian.org/fonts-team/fonts-cantarell, https://gitlab.gnome.org/GNOME/cantarell-fonts.git,4785.5285185185185,59,28,0 -fonts-ebgaramond,0.578554648797247,2.35095927263312,0.00157235046370946,https://salsa.debian.org/fonts-team/fonts-ebgaramond, https://github.com/georgd/EB-Garamond.git,4689.2650462962965,5,28,0 -fonts-eeyek,0.0792668657662731,3.53412016347449,-0.69664216810038,https://salsa.debian.org/fonts-team/fonts-eeyek, https://github.com/silnrsi/font-eeyek.git,1465.390601851852,1,3,0 -fonts-firacode,0.0951660444004549,1.61743686799553,-0.234896755789368,https://salsa.debian.org/fonts-team/fonts-firacode, https://github.com/tonsky/FiraCode.git,3284.7463194444445,91,34,0 -fonts-hack,0.346570504509775,2.20819204870402,-0.0730912242677469,https://salsa.debian.org/fonts-team/fonts-hack, https://github.com/source-foundry/Hack,1976.7616666666668,7,26,5 -fonts-hosny-amiri,0.044894207599157,0.920180884246057,-0.130257972073322,https://salsa.debian.org/fonts-team/fonts-hosny-amiri, https://github.com/alif-type/amiri.git,5474.357893518519,5,10,0 -fonts-inter,0.0129835005388798,2.78580269899559,-0.656555460285987,https://salsa.debian.org/fonts-team/fonts-inter, https://github.com/rsms/inter,2281.2912847222224,23,7,3 -fonts-junicode,0.974912303527955,2.35283220785299,0.319530132515262,https://salsa.debian.org/fonts-team/fonts-junicode, https://github.com/psb1558/Junicode-font,1677.9374305555555,3,4,0 -fonts-sil-abyssinica,1.19124184578817,4.47035187308855,0.0766166907759292,https://salsa.debian.org/fonts-team/fonts-sil-abyssinica, https://github.com/silnrsi/font-abyssinica,1729.864050925926,1,8,0 -fonts-sil-andika,0.226819752990735,1.73023566653979,-0.152119962769353,https://salsa.debian.org/fonts-team/fonts-sil-andika, https://github.com/silnrsi/font-andika,2361.7046180555553,0,9,0 -fonttools,-0.120923652271792,0.405270130532214,-0.359991031242131,https://salsa.debian.org/fonts-team/fonttools, https://github.com/fonttools/fonttools.git,5774.704837962963,37,128,0 -foomatic-db,1.52097988119048,2.57857919950378,0.87665393025699,https://salsa.debian.org/printing-team/foomatic-db, https://github.com/OpenPrinting/foomatic-db.git,5681.190208333333,5,53,0 -forensic-artifacts,0.178548998110429,2.91820482422608,-0.386798789248772,https://salsa.debian.org/pkg-security-team/forensic-artifacts, https://github.com/ForensicArtifacts/artifacts.git,3293.833576388889,83,3,0 -formiko,0.162847167151378,3.12972432185322,-0.606131131317192,https://github.com/ondratu/formiko-debian,https://github.com/ondratu/formiko-debian,1770.974849537037,2,2,0 -fortunes-br,0.382603091861005,2.47263573506667,-0.423938387085185,https://github.com/leitao/fortunes-br.git,https://github.com/leitao/fortunes-br.git,0.005694444444444445,0,1,0 -fortunes-mario,0.274619658131346,1.87733323973623,-0.319371444076809,http://github.com/fike/fortunes-mario-deb,http://github.com/fike/fortunes-mario-deb,1606.775150462963,3,8,0 -fpgatools,0.263317733632337,3.62302416150927,-0.617914371101901,https://github.com/Wolfgang-Spraul/fpgatools,https://github.com/Wolfgang-Spraul/fpgatools,1132.0893287037038,1,6,0 -fpylll,0.0164017334898092,1.07111759127144,-0.322204879268169,https://salsa.debian.org/python-team/packages/fpylll, https://github.com/fplll/fpylll.git,2905.0817476851853,7,30,0 -fqterm,-1.47783361153791,-0.410002791422599,-1.88643834830968,https://salsa.debian.org/chinese-team/fqterm, https://github.com/mytbk/fqterm,3515.765625,5,7,0 -freealchemist,0.0594496950411277,2.2746437450724,-0.470758238747303,https://salsa.debian.org/python-team/packages/freealchemist, https://github.com/dakk/FreeAlchemist,3586.1830324074076,0,3,0 -freedict-tools,0.0533159837796709,3.77655540826837,-1.29913035007012,https://salsa.debian.org/freedict-team/freedict-tools, https://github.com/freedict/tools.git,2348.65375,1,10,0 -freedoom,0.210835778863243,1.51807520194526,-0.223316506619481,https://salsa.debian.org/games-team/freedoom, https://github.com/freedoom/freedoom,5775.941805555555,112,57,0 -freedroidrpg,0.121653082263302,0.813930246532221,-0.238670495830525,https://salsa.debian.org/games-team/freedroidrpg, https://codeberg.org/freedroid/freedroid-src.git,5650.96412037037,30,22,0 -freedv,-0.321380589116011,1.14269359486899,-0.737833311519897,https://salsa.debian.org/debian-hamradio-team/freedv, https://github.com/drowe67/freedv-gui,3043.6515972222223,1,33,0 -freelan,-0.313859047629364,2.04106354672551,-1.22880805749719,https://salsa.debian.org/debian/freelan, https://github.com/freelan-developers/freelan,3106.2727893518518,2,25,1 -freerdp2,0.535602671257156,1.36568297184434,0.143324601257681,https://salsa.debian.org/debian-remote-team/freerdp2, https://github.com/FreeRDP/FreeRDP,4547.9750347222225,206,376,4 -freespace2,0.671535420737727,4.12180788440419,-0.502713535389606,https://salsa.debian.org/onlyjob/freespace2, https://github.com/scp-fs2open/fs2open.github.com.git,5784.459675925926,28,131,0 -freespace2-launcher-wxlauncher,-0.338870131147895,1.6566638618811,-0.935585835018654,https://salsa.debian.org/games-team/freespace2-launcher-wxlauncher, https://github.com/scp-fs2open/wxlauncher,4804.2101041666665,7,12,2 -freewheeling,0.57929039917913,2.50716578190389,-0.253456796640715,https://salsa.debian.org/multimedia-team/freewheeling, https://github.com/free-wheeling/freewheeling,5218.87306712963,1,3,0 -freezegun,-0.225771285847041,0.707138926264838,-0.567657459714432,https://salsa.debian.org/debian/python-freezegun, https://github.com/spulec/freezegun.git,4013.156284722222,16,106,0 -fribidi,0.531714460283811,1.18672754036968,0.196001385598062,https://salsa.debian.org/debian/fribidi, https://github.com/fribidi/fribidi.git,5722.369756944445,10,31,0 -fritzing,0.523500731444384,1.2798335654218,0.0963446036215676,https://salsa.debian.org/georgesk/fritzing, https://github.com/fritzing/fritzing-app,3813.510150462963,42,60,10 -frogatto,0.231694633466328,1.76546888112621,-0.392777994560545,https://salsa.debian.org/games-team/frogatto, https://github.com/frogatto/frogatto.git,5646.032511574074,6,89,0 -frogr,-0.962130126337031,-0.400990924656511,-1.04385063710911,https://salsa.debian.org/berto/frogr, https://gitlab.gnome.org/GNOME/frogr,5249.963541666667,64,66,0 -frotz,0.712430722765905,2.51028398496406,-0.0396569122766407,https://salsa.debian.org/games-team/frotz, https://gitlab.com/DavidGriffith/frotz,4338.984340277778,8,42,0 -frozen-bubble,0.165035777228148,0.460197722494619,-0.0231433031569209,https://salsa.debian.org/perl-team/modules/packages/frozen-bubble, https://github.com/kthakore/frozen-bubble.git,3389.417650462963,4,17,0 -frozen-flask,-1.50524768055034,0.568186183807635,-1.96775331364021,https://github.com/SimonSapin/Frozen-Flask/,https://github.com/SimonSapin/Frozen-Flask,4711.306712962963,2,29,0 -frr,-0.132105194559059,1.65558033369781,-0.73504035508729,https://github.com/FRRouting/frr/tree/debian/master,https://github.com/FRRouting/frr,5771.604525462963,249,462,1 -fsarchiver,0.316270661796448,1.80359450168829,-0.202750316372565,https://salsa.debian.org/debian/fsarchiver, https://github.com/fdupoux/fsarchiver,4865.78880787037,5,11,0 -fscrypt,-0.118661142773488,2.07827724244262,-0.64621003179013,https://salsa.debian.org/go-team/packages/fscrypt, https://github.com/google/fscrypt,2602.2166782407407,17,13,2 -fsm-lite,-0.680671323777026,1.6544118072895,-1.11923848801064,https://salsa.debian.org/med-team/fsm-lite, https://github.com/nvalimak/fsm-lite.git,170.23428240740742,0,5,0 -fstl,-0.0638362026732831,2.70921948973698,-0.786070361319823,https://salsa.debian.org/sur5r/fstl, https://github.com/fstl-app/fstl,3488.4875231481483,10,13,0 -fsvs,-0.00882939757489389,2.35669331826595,-1.04677265942023,https://salsa.debian.org/debian/fsvs, https://github.com/phmarek/fsvs.git,2690.684097222222,8,4,0 -fswatch,0.0801114642346626,1.67664914848401,-0.571025077188002,https://salsa.debian.org/debian/fswatch, https://github.com/emcrisostomo/fswatch.git,4816.560706018518,6,27,0 -ftgl,1.21435994058272,2.19643555055912,0.619951290464078,https://salsa.debian.org/ftgl-team/ftgl, https://github.com/frankheckenbach/ftgl,5371.300497685185,3,17,0 -funcoeszz,1.01417730099499,3.12023393144998,0.102845799606955,https://salsa.debian.org/debian/funcoeszz, https://github.com//funcoeszz/funcoeszz,5372.299097222222,4,52,0 -fuse-posixovl,0.594304466630661,4.09048591976054,-0.438680331143816,https://salsa.debian.org/kkamagui-guest/fuse-posixovl, https://git.code.sf.net/p/posixovl/posixovl,5655.38380787037,0,3,0 -fusioninventory-agent,0.412742159377425,1.27566924157171,0.00427539376047119,https://salsa.debian.org/perl-team/modules/packages/fusioninventory-agent, https://github.com/fusioninventory/fusioninventory-agent.git,5660.849953703703,88,75,0 -fuzzylite,0.0236301475067224,2.05851568499672,-0.649107545131671,https://salsa.debian.org/debian/fuzzylite, https://github.com/fuzzylite/fuzzylite,3931.516064814815,3,20,0 -fuzzywuzzy,-0.439985822168461,1.32062263274672,-0.857053766838676,https://salsa.debian.org/python-team/packages/fuzzywuzzy, https://github.com/seatgeek/fuzzywuzzy,3716.0564236111113,14,64,0 -fvwm,0.30915260290702,0.469889524583975,0.181176490360975,https://github.com/somiaj/fvwm2-debian,https://github.com/somiaj/fvwm2-debian,699.9356018518519,1,3,0 -fw4spl,-0.173178577808159,1.26196025038516,-0.82118654463665,https://salsa.debian.org/med-team/fw4spl, https://github.com/IRCAD/sight,5192.848726851852,18,189,0 -fwbuilder,0.569210766786568,1.0021497205634,0.258994228948736,https://salsa.debian.org/debian/fwbuilder, https://github.com/fwbuilder/fwbuilder.git,5643.142071759259,7,40,0 -fwknop,-0.367325771342167,0.225654341723464,-0.670461964137789,https://salsa.debian.org/debian/fwknop, https://github.com/mrash/fwknop.git,5311.050532407407,2,37,0 -fwsnort,-0.733292803724229,0.47214127643951,-1.14490286833914,https://salsa.debian.org/debian/fwsnort, https://github.com/mrash/fwsnort.git,3934.757858796296,0,5,0 -fwupdate,0.0843853428047569,1.05891412017967,-0.244491351851707,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365740743,21,5,0 -fwupdate-amd64-signed,-0.0344756086035051,2.19669315710317,-0.471064343713256,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365740743,21,5,0 -fyba,0.475498625383177,2.62895458120477,-0.0402028003181061,https://salsa.debian.org/debian-gis-team/fyba, https://github.com/kartverket/fyba.git,1185.3266203703704,1,10,0 -fzy,-0.37620883355709,1.93997150653768,-0.864045944434253,https://salsa.debian.org/debian/fzy, https://github.com/jhawthorn/fzy,2752.1003125,14,25,0 -g2,-0.232798927583725,0.480081823717711,-0.573745503227334,https://salsa.debian.org/med-team/g2, https://github.com/danielrmeyer/g2,0.0,0,1,0 -g810-led,-0.884187428718168,0.579034937278941,-1.15033330711202,https://salsa.debian.org/debian/g810-led, https://github.com/MatMoul/g810-led.git,2361.9422453703705,17,31,0 -galera-3,0.767221636200971,1.82144092050012,0.242275822158759,https://salsa.debian.org/mariadb-team/galera-3, https://github.com/codership/galera,5691.742395833333,10,50,1 -galpy,-0.163144318703034,1.83168174338328,-0.640914183675681,https://salsa.debian.org/debian-astro-team/galpy, https://github.com/jobovy/galpy.git,4901.371655092593,10,36,0 -gambc,1.08040974044984,3.14129853288694,0.0766910930166644,https://salsa.debian.org/abdelq-guest/gambc, https://github.com/gambit/gambit,5777.729120370371,5,77,0 -gamemode,-0.337964804346439,0.508000219364432,-0.527899682848226,https://salsa.debian.org/games-team/gamemode, https://github.com/FeralInteractive/gamemode,2107.9380555555554,45,20,1 -gammu,-0.0411360174725263,0.212473241241945,-0.184442505030376,https://salsa.debian.org/debian/gammu, https://github.com/gammu/gammu.git,5760.423148148148,217,53,0 -ganeti-os-noop,-0.228103612944439,2.15469639223046,-0.852366861019704,https://salsa.debian.org/ganeti-team/ganeti-os-noop, https://github.com/grnet/ganeti-os-noop,677.1858449074074,0,6,0 -ganglia,1.94185942894961,3.11018706796909,1.22721752482509,https://salsa.debian.org/debian/ganglia, https://github.com/ganglia/monitor-core.git,5029.40037037037,5,128,0 -ganglia-modules-linux,0.0664199187930569,1.29560667255327,-0.272928032988035,https://salsa.debian.org/debian/ganglia-modules-linux, https://github.com/ganglia/ganglia-modules-linux.git,1617.3040972222223,0,6,0 -ganglia-web,2.98676770007383,5.9425493751254,1.6513889403306,https://salsa.debian.org/debian/ganglia-web, https://github.com/ganglia/ganglia-web,3989.746516203704,9,91,0 -ganv,0.67727563219768,3.22708221675914,-0.165276274759666,https://salsa.debian.org/multimedia-team/ganv, https://gitlab.com/drobilla/ganv.git,4309.0079166666665,0,1,0 -gap-sonata,-0.529426882518877,1.06124614808373,-0.831456731478739,https://salsa.debian.org/science-team/gap-sonata, https://github.com/gap-packages/sonata.git,4006.9744907407407,4,7,0 -gap-toric,-0.245145645400494,2.49491676474835,-0.818626096822567,https://salsa.debian.org/science-team/gap-toric, https://github.com/gap-packages/toric.git,3029.62,4,5,0 -gargoyle-free,0.349460027567795,1.57547869667954,-0.215202136183368,https://salsa.debian.org/games-team/gargoyle-free, https://github.com/garglk/garglk.git,5517.475613425926,6,35,0 -garmin-forerunner-tools,-0.21743425080625,0.536608891166221,-0.517674515044991,https://salsa.debian.org/debian/garmin-forerunner-tools, https://github.com/jorgesca/garmintools.git,2685.798298611111,0,5,0 -gatk-native-bindings,-0.100986588709375,2.46240098272391,-0.676296383991726,https://salsa.debian.org/java-team/gatk-native-bindings, https://github.com/broadinstitute/gatk-native-bindings,505.80189814814815,1,4,0 -gau2grid,-0.815898808955968,1.13429271732607,-1.40690475029843,https://salsa.debian.org/debichem-team/gau2grid, https://github.com/dgasmith/gau2grid,1166.9793981481482,4,10,0 -gaupol,0.450726842944742,1.41943890830119,0.000107577733748143,https://salsa.debian.org/python-team/packages/gaupol, https://github.com/otsaloma/gaupol,5574.441469907408,17,10,0 -gbrainy,0.421333804107902,1.71680262310766,-0.110191388091762,https://salsa.debian.org/gnome-team/gbrainy, https://gitlab.gnome.org/GNOME/gbrainy.git,5737.018217592593,96,103,0 -gcab,0.00896604795146256,0.247932642894322,-0.0507674557873823,https://salsa.debian.org/debian/gcab, https://gitlab.gnome.org/GNOME/gcab,3919.5894328703703,41,40,0 -gconjugue,-1.19339536101734,0.61341419506809,-1.71179876451413,https://salsa.debian.org/debian/gconjugue, https://github.com/jalvesaq/gconjugue,2752.153888888889,0,4,0 -gcr,0.834839987517638,1.79471223304992,0.345581065473906,https://salsa.debian.org/gnome-team/gcr, https://gitlab.gnome.org/GNOME/gcr.git,5613.780335648148,144,144,0 -gdk-pixbuf,1.16928338419458,1.77254049821562,0.744554607606194,https://salsa.debian.org/gnome-team/gdk-pixbuf, https://gitlab.gnome.org/GNOME/gdk-pixbuf,5703.882719907408,333,477,0 -gdm3,4.81053839784413,5.60082407401362,4.22104439391492,https://salsa.debian.org/gnome-team/gdm, https://gitlab.gnome.org/gnome/gdm.git,5764.032384259259,352,398,0 -gdnsd,-2.96783921653793,-0.39790549938739,-3.67190541100761,https://github.com/paravoid/gdnsd,https://github.com/paravoid/gdnsd,4241.3566550925925,2,11,0 -geary,1.32931695470074,3.21062377770649,0.434645494087813,https://salsa.debian.org/gnome-team/geary, https://gitlab.gnome.org/GNOME/geary.git,4622.415185185185,187,137,0 -gedit,2.66164502314243,3.31767274189972,2.15451165254161,https://salsa.debian.org/gnome-team/gedit, https://gitlab.gnome.org/GNOME/gedit.git,5774.60869212963,377,403,0 -gegl,0.384814528551841,0.865715448731318,0.124044053871958,https://salsa.debian.org/gnome-team/gegl, https://gitlab.gnome.org/GNOME/gegl.git,5778.9302777777775,173,134,0 -geki2,-0.258574180554736,1.13020964582534,-0.602596537838345,https://salsa.debian.org/games-team/geki2, https://github.com/Quipyowert2/geki2,1827.8569328703704,0,3,0 -gelemental,0.101871491885225,1.2000806540432,-0.308055090869883,https://salsa.debian.org/debichem-team/gelemental, https://github.com/ginggs/gelemental,1560.5809722222223,8,4,0 -gem,0.679446578745151,1.22502744459527,0.320237781232395,https://salsa.debian.org/multimedia-team/pd/gem, https://github.com/umlaeute/Gem,5620.098541666666,11,58,1 -gemmlowp,-0.914209861782336,0.992259106055519,-1.34025763160311,https://salsa.debian.org/science-team/gemmlowp, https://github.com/google/gemmlowp,3053.021979166667,34,42,0 -generator-scripting-language,-1.78734710744917,-0.17508623401531,-2.06894845508284,https://github.com/bluca/gsl,https://github.com/bluca/gsl,3538.601678240741,4,35,0 -genetic,0.270772615288209,2.70696739683723,-0.438075928444894,https://salsa.debian.org/science-team/genetic, https://github.com/skoblov-lab/genetic,1118.9616550925925,2,4,0 -genext2fs,-0.288257654556958,0.206342373917604,-0.5033680475232,https://salsa.debian.org/debian/genext2fs, https://github.com/bestouff/genext2fs,3682.290104166667,0,10,0 -genius,0.300498992398872,1.34272552126059,-0.17665128348282,https://salsa.debian.org/fsateler/genius, https://gitlab.gnome.org/GNOME/genius,5737.9909375,52,59,0 -genshi,0.98187746812558,2.31649507424025,0.288404295617294,https://salsa.debian.org/python-team/packages/genshi, https://github.com/edgewall/genshi.git,5693.595347222222,8,26,0 -geoalchemy2,-1.47910767167291,2.31738132188416,-2.45278157052798,https://salsa.debian.org/python-team/packages/geoalchemy2, https://github.com/geoalchemy/geoalchemy2,4123.10619212963,18,35,1 -geocode-glib,0.329562721178003,1.16510226048195,0.033979924652719,https://salsa.debian.org/gnome-team/geocode-glib, https://gitlab.gnome.org/GNOME/geocode-glib.git,4127.441828703703,10,34,0 -geographiclib,-0.270868261674655,0.421004430509194,-0.518838067735011,https://salsa.debian.org/debian-gis-team/geographiclib, https://github.com/geographiclib/geographiclib.git,5589.128333333333,0,17,0 -geoipupdate,0.00257174877883648,1.65000549432166,-0.358124043038636,https://salsa.debian.org/debian/geoipupdate, https://github.com/maxmind/geoipupdate,3751.8112615740743,25,42,0 -geolinks,-0.181262940992832,2.45502440287708,-0.744547490613071,https://salsa.debian.org/debian-gis-team/geolinks, https://github.com/geopython/geolinks.git,3405.864236111111,2,3,0 -geophar,-0.9414930320306,-0.217719553563348,-1.13124696774661,https://salsa.debian.org/georgesk/geophar, https://github.com/wxgeo/geophar,4439.4260185185185,0,6,0 -geopy,-0.198770964070923,1.33128282112022,-0.531297788298444,https://salsa.debian.org/python-team/packages/geopy, https://github.com/geopy/geopy,5485.118125,94,49,3 -geos,0.119087537206031,0.451175135157147,-0.0256104858871241,https://salsa.debian.org/debian-gis-team/geos, https://github.com/libgeos/geos.git,5683.094606481482,37,52,0 -gerbv,0.706574178653507,1.7421159159697,0.174017888639695,https://salsa.debian.org/electronics-team/gerbv, https://github.com/gerbv/gerbv.git,5724.390185185185,29,11,0 -gevent-websocket,0.603994569672865,3.374931381997,-0.297261214250478,https://salsa.debian.org/python-team/packages/gevent-websocket, https://gitlab.com/noppo/gevent-websocket.git,4346.587916666666,0,27,0 -gfal2,-1.36602501764202,-0.048560093997015,-1.72818666521044,https://salsa.debian.org/ellert/gfal2, https://gitlab.cern.ch/dmc/gfal2,4253.842650462963,3,31,0 -ghex,0.746123681428659,1.72826822083862,0.224382213511707,https://salsa.debian.org/gnome-team/ghex, https://gitlab.gnome.org/GNOME/ghex,5784.550115740741,81,105,0 -ghostwriter,-0.30406825289161,0.782309953148929,-0.477014247252448,https://salsa.debian.org/qt-kde-team/kde/ghostwriter, https://invent.kde.org/office/ghostwriter,3031.7841435185187,28,53,0 -ghp-import,-0.492974177402071,2.51337960666601,-1.27412233096087,https://salsa.debian.org/python-team/packages/ghp-import, https://github.com/c-w/ghp-import.git,4494.870509259259,15,11,0 -giada,-0.129962566979369,0.849716177894906,-0.437542037973018,https://salsa.debian.org/multimedia-team/giada, https://github.com/monocasual/giada.git,4048.8034953703705,16,22,0 -giflib,1.71124354893974,3.03820236355087,0.964732743205802,https://salsa.debian.org/debian/giflib, https://git.code.sf.net/p/giflib/code,3542.8980787037035,16,3,0 -gifsicle,0.0455075888689676,0.879737343783963,-0.207377891371828,https://salsa.debian.org/debian/gifsicle, https://github.com/kohler/gifsicle,5684.886840277778,4,17,0 -giggle,0.634548378958749,2.01709544355239,-0.00263279001544758,https://salsa.debian.org/debian/giggle, https://gitlab.gnome.org/GNOME/giggle.git,4962.740856481481,61,61,0 -gimagereader,-0.213911435643066,0.0353297888098082,-0.283353250959965,https://salsa.debian.org/debian/gimagereader, https://github.com/manisandro/gImageReader,3878.6116319444445,113,24,0 -gimp-texturize,0.155585557161129,1.26629801322369,-0.194566602740913,https://salsa.debian.org/debian/gimp-texturize, https://github.com/lmanul/gimp-texturize.git,3625.7350810185185,1,11,0 -ginga,-0.45776862772662,0.20216258955435,-0.583592752254381,https://salsa.debian.org/debian-astro-team/ginga, https://github.com/ejeschke/ginga.git,4188.922418981481,11,44,0 -ginkgocadx,-0.262848364130749,0.261946365484675,-0.473858603741579,https://salsa.debian.org/med-team/ginkgocadx, https://github.com/gerddie/ginkgocadx.git,2123.806111111111,1,5,0 -git-big-picture,0.351838790739633,3.3166834133231,-0.485341298936446,https://salsa.debian.org/python-team/packages/git-big-picture, https://github.com/git-big-picture/git-big-picture.git,5024.306909722222,14,10,0 -git-ftp,-0.178802712121011,1.74356040176882,-0.697392620849105,https://salsa.debian.org/debian/git-ftp, https://github.com/git-ftp/git-ftp,4532.203599537037,24,92,3 -git-lfs,0.10850806546047,1.28879399830704,-0.211778678166103,https://salsa.debian.org/go-team/packages/git-lfs, https://github.com/github/git-lfs.git,3479.309016203704,54,197,0 -git-remote-hg,1.38041870165709,3.90908821951378,0.287352123060667,https://salsa.debian.org/debian/git-remote-hg, https://github.com/mnauw/git-remote-hg/commits/master,5185.326875,55,11,0 -gitg,1.1505705694718,1.99339943559515,0.614429083533388,https://salsa.debian.org/gnome-team/gitg, https://gitlab.gnome.org/GNOME/gitg.git,5649.973854166667,179,135,0 -github-backup,-0.513550947087722,0.0361166657458587,-0.732066503862449,https://salsa.debian.org/debian/github-backup,https://salsa.debian.org/debian/github-backup,3299.6675694444443,9,13,0 -gitinspector,-0.540048109578866,0.210511755956547,-0.701223929521075,https://salsa.debian.org/python-team/packages/gitinspector, https://github.com/ejwa/gitinspector,3089.988923611111,14,6,3 -gitless,-1.01294721721959,1.17454442756473,-1.55328553128069,https://salsa.debian.org/python-team/packages/gitless, https://github.com/sdg-mit/gitless.git,1580.4098032407408,8,31,0 -gitmagic,0.00586267922529351,1.39680236467479,-0.411777383585704,https://salsa.debian.org/debian/gitmagic, https://github.com/blynn/gitmagic,4774.439953703703,12,73,0 -gitsome,-1.58676027107593,-1.19301285444769,-1.66240230042816,https://salsa.debian.org/debian/gitsome, https://github.com/donnemartin/gitsome,1294.222638888889,14,16,0 -givaro,0.511786564623252,1.62586507469076,-0.0135088130914325,https://salsa.debian.org/math-team/givaro, https://github.com/linbox-team/givaro,5710.734074074074,9,44,0 -giza,-0.0821548043704013,1.7697955981988,-0.433099872352207,https://salsa.debian.org/debian-astro-team/giza, https://github.com/danieljprice/giza,4755.9934837962965,2,14,0 -gjots2,0.494722277557668,2.20920550502522,-0.349273527502639,https://github.com/leggewie-DM/gjots2,https://github.com/leggewie-DM/gjots2,4231.040023148148,3,4,0 -gjs,1.65403498715864,2.84373475611748,0.943271158709141,https://salsa.debian.org/gnome-team/gjs, https://gitlab.gnome.org/GNOME/gjs.git,5531.009386574074,56,156,0 -gkl,0.0425756274348346,2.68870243498901,-0.634653099665766,https://salsa.debian.org/java-team/gkl, https://github.com/Intel-HLS/GKL.git,2649.0462268518518,12,14,0 -gkrellm2-cpufreq,0.520662810261337,3.09832773332327,-0.290811488089151,https://github.com/glaubitz/gkrellm-cpufreq-debian,https://github.com/glaubitz/gkrellm-cpufreq-debian,3039.7838657407406,1,2,0 -gkrelluim,-1.25246985745735,0.701045689976412,-1.62024310513475,https://salsa.debian.org/debian/gkrelluim, https://github.com/dai-vdr/gkrelluim.git,5001.253333333333,0,1,0 -gl2ps,-0.034660669384308,0.245352292507883,-0.0990212698427655,https://salsa.debian.org/science-team/gl2ps, https://gitlab.onelab.info/gl2ps/gl2ps.git,5128.49037037037,0,5,0 -glade,3.18554751807046,4.45230619776528,2.40108800565426,https://salsa.debian.org/gnome-team/glade, https://gitlab.gnome.org/GNOME/glade,5740.60730324074,214,249,0 -glances,0.32869797986114,1.11066923608376,-0.021893769093159,https://salsa.debian.org/debian/glances, https://github.com/nicolargo/glances,4176.140428240741,37,163,2 -glew,0.284934015363309,0.7975872058508,0.0502967111615606,https://salsa.debian.org/debian/glew, https://github.com/nigels-com/glew.git,5492.448078703704,48,41,0 -glewlwyd,0.169874762457818,1.3618403908651,-0.177364068753155,https://salsa.debian.org/debian-iot-team/oauth2/glewlwyd.git, https://github.com/babelouest/glewlwyd,2557.2033449074074,11,19,1 -glfw3,0.0977965010010051,1.68882091193038,-0.179650888637476,https://salsa.debian.org/games-team/glfw3, https://github.com/glfw/glfw.git,5186.868055555556,161,47,0 -glib-networking,1.04231175356158,2.55637231313141,0.356169860386349,https://salsa.debian.org/gnome-team/glib-networking, https://gitlab.gnome.org/GNOME/glib-networking,4818.753819444444,136,175,0 -glibmm2.4,0.79483905930508,1.91036332884172,0.262380033007912,https://salsa.debian.org/gnome-team/glibmm, https://gitlab.gnome.org/GNOME/glibmm.git,5785.981909722223,58,56,0 -glimpse,4.84219789067736,8.06243279158319,3.38459316763573,https://github.com/az143/glimpse,https://github.com/az143/glimpse,3292.5989583333335,0,6,0 -global,0.925106943891178,1.80298075221874,0.395670583842805,https://github.com/punitagrawal/global,https://github.com/punitagrawal/global,2253.924212962963,4,4,0 -gmailieer,-1.75202814614574,0.654977795002581,-2.40631413024426,https://salsa.debian.org/debian/lieer, https://github.com/gauteh/lieer,2464.2436689814813,23,14,0 -gmetric4j,-2.75986928766789,-0.590610246331083,-3.29509205415348,https://github.com/ganglia/gmetric4j,https://github.com/ganglia/gmetric4j,3040.700127314815,1,11,0 -gmp-ecm,-0.148086349957487,0.136346594801063,-0.263542404304583,https://salsa.debian.org/math-team/gmp-ecm, https://gitlab.inria.fr/zimmerma/ecm,5782.271041666667,1,22,0 -gmrender-resurrect,-0.688555560408279,0.43888123573676,-0.988624359104825,https://salsa.debian.org/debian/gmrender-resurrect, https://github.com/hzeller/gmrender-resurrect.git,3933.240740740741,9,14,0 -gmult,-0.546580651954071,0.245604642503839,-0.736771620060028,https://salsa.debian.org/games-team/gmult, https://git.launchpad.net/gmult,5492.322465277778,1,4,0 -gnarwl,-1.00912731780396,-0.119732536714327,-1.47832568928384,https://salsa.debian.org/debian/gnarwl, https://github.com/fln/gnarwl,2570.5118287037035,1,9,0 -gnome-applets,1.12843523619406,1.36937766890601,0.918011615343011,https://salsa.debian.org/gnome-team/gnome-applets, https://gitlab.gnome.org/GNOME/gnome-applets,5125.481273148148,161,262,0 -gnome-autoar,0.847598978793508,3.77868818243905,0.0522236493041316,https://salsa.debian.org/gnome-team/gnome-autoar, https://gitlab.gnome.org/GNOME/gnome-autoar,3764.8923726851854,8,18,0 -gnome-boxes,2.17611168348722,4.48736791937756,1.05021369219646,https://salsa.debian.org/gnome-team/gnome-boxes, https://gitlab.gnome.org/GNOME/gnome-boxes,4447.977662037037,280,199,0 -gnome-builder,0.238525169058604,1.1953742990707,-0.152249487007282,https://salsa.debian.org/gnome-team/gnome-builder, https://gitlab.gnome.org/GNOME/gnome-builder.git,3382.681261574074,257,224,0 -gnome-calculator,0.191482232206827,0.411509816400477,0.0619100385044555,https://salsa.debian.org/gnome-team/gnome-calculator, https://gitlab.gnome.org/GNOME/gnome-calculator.git,5770.7198148148145,318,356,0 -gnome-calendar,1.69962070129221,4.14094056858616,0.673038820052714,https://salsa.debian.org/gnome-team/gnome-calendar, https://gitlab.gnome.org/GNOME/gnome-calendar.git,4242.462962962963,239,151,0 -gnome-characters,0.266223208160081,1.6983596944543,-0.0446030090945528,https://salsa.debian.org/gnome-team/gnome-characters, https://gitlab.gnome.org/GNOME/gnome-characters.git,3895.2511805555555,156,91,0 -gnome-chess,1.35765935513307,2.26843468467731,0.795338273408725,https://salsa.debian.org/gnome-team/gnome-chess, https://gitlab.gnome.org/GNOME/gnome-chess.git,5778.989108796296,157,138,0 -gnome-clocks,1.89037163685741,4.91780174646313,0.689661809565749,https://salsa.debian.org/gnome-team/gnome-clocks, https://gitlab.gnome.org/GNOME/gnome-clocks.git,4242.182268518519,210,208,0 -gnome-color-manager,2.77281273347361,5.69394503489397,1.47004939184632,https://salsa.debian.org/gnome-team/gnome-color-manager, https://gitlab.gnome.org/GNOME/gnome-color-manager.git,5146.626631944445,143,162,0 -gnome-contacts,0.892823277552172,2.39263005844227,0.249639069173117,https://salsa.debian.org/gnome-team/gnome-contacts, https://gitlab.gnome.org/GNOME/gnome-contacts.git,4604.22855324074,223,208,0 -gnome-control-center,2.31763196401145,2.67795152649377,2.01872087459736,https://salsa.debian.org/gnome-team/gnome-control-center, https://gitlab.gnome.org/GNOME/gnome-control-center,5776.239189814814,534,544,0 -gnome-desktop-testing,-0.120007724390043,2.13504612283782,-0.583355293722768,https://salsa.debian.org/gnome-team/gnome-desktop-testing, https://gitlab.gnome.org/GNOME/gnome-desktop-testing,5324.465868055556,3,20,0 -gnome-desktop3,0.934658360382677,1.94010866535356,0.404083468478572,https://salsa.debian.org/gnome-team/gnome-desktop, https://gitlab.gnome.org/GNOME/gnome-desktop.git,5774.5479398148145,231,368,0 -gnome-dictionary,1.16324565946156,2.99175221768953,0.379113711940403,https://salsa.debian.org/gnome-team/gnome-dictionary, https://gitlab.gnome.org/GNOME/gnome-dictionary,5362.062199074074,151,152,0 -gnome-disk-utility,3.3117854972178,4.96957544785164,2.35812164150153,https://salsa.debian.org/gnome-team/gnome-disk-utility, https://gitlab.gnome.org/GNOME/gnome-disk-utility.git,5743.805069444445,247,208,0 -gnome-font-viewer,2.06595322897223,5.61660361952806,0.781873668116522,https://salsa.debian.org/gnome-team/gnome-font-viewer, https://gitlab.gnome.org/GNOME/gnome-font-viewer.git,4775.918043981482,143,148,0 -gnome-gmail,0.115256384051709,1.23775141318434,-0.313706832831908,https://github.com/davesteele/gnome-gmail/tree/debian,https://github.com/davesteele/gnome-gmail,5107.056574074074,6,30,0 -gnome-hwp-support,-0.152703941450815,2.63301641635732,-0.863606387086791,https://salsa.debian.org/l10n-korean-team/gnome-hwp-support, https://github.com/changwoo/gnome-hwp-support.git,4275.414629629629,1,2,0 -gnome-keysign,-0.631973154339824,0.867856441279995,-0.908545604568914,https://salsa.debian.org/debian/gnome-keysign, https://github.com/gnome-keysign/gnome-keysign,3520.800335648148,42,26,0 -gnome-logs,1.06028072738484,2.97404688502956,0.303590664632924,https://salsa.debian.org/gnome-team/gnome-logs, https://gitlab.gnome.org/GNOME/gnome-logs.git,3803.072835648148,153,93,0 -gnome-maps,1.41782163350405,3.31650193738767,0.545965998136698,https://salsa.debian.org/gnome-team/gnome-maps, https://gitlab.gnome.org/GNOME/gnome-maps.git,3936.972673611111,218,153,0 -gnome-mastermind,0.189663114172519,2.12499155712816,-0.40647331653126,https://salsa.debian.org/debian/gnome-mastermind, https://github.com/fargiolas/gnome-mastermind,5420.939548611111,1,6,0 -gnome-mines,1.1711895657516,3.36597358476095,0.329247414083289,https://salsa.debian.org/gnome-team/gnome-mines, https://gitlab.gnome.org/GNOME/gnome-mines.git,5732.151342592592,159,131,0 -gnome-mousetrap,-0.308078852272433,1.35052299369902,-0.929733383678818,https://salsa.debian.org/a11y-team/gnome-mousetrap, https://gitlab.gnome.org/Archive/mousetrap,2488.8372453703705,20,42,0 -gnome-multi-writer,0.329976379474411,2.47779441870421,-0.237405140287377,https://salsa.debian.org/gnome-team/gnome-multi-writer, https://gitlab.gnome.org/GNOME/gnome-multi-writer.git,3213.7822685185183,56,21,0 -gnome-music,0.731702597763786,1.82532193642856,0.208936720670211,https://salsa.debian.org/gnome-team/gnome-music, https://gitlab.gnome.org/GNOME/gnome-music,4153.424189814815,279,164,0 -gnome-nibbles,2.14489134019169,5.5007837688306,0.897967041434733,https://salsa.debian.org/gnome-team/gnome-nibbles, https://gitlab.gnome.org/gnome/gnome-nibbles.git,5783.477939814815,140,125,0 -gnome-online-accounts,3.38520156552785,5.75725250271673,2.20615653895773,https://salsa.debian.org/gnome-team/gnome-online-accounts, https://gitlab.gnome.org/GNOME/gnome-online-accounts.git,4620.0965625,230,181,0 -gnome-packagekit,1.72750486623233,2.44395375474468,1.20750175101288,https://salsa.debian.org/pkgutopia-team/gnome-packagekit, https://gitlab.gnome.org/GNOME/gnome-packagekit,5777.682962962963,208,224,0 -gnome-settings-daemon,3.58065578666174,4.38307580258928,2.98332152262279,https://salsa.debian.org/gnome-team/gnome-settings-daemon, https://gitlab.gnome.org/GNOME/gnome-settings-daemon.git,5763.948587962963,335,398,0 -gnome-shell,3.48582594415488,3.97461447923745,3.09994325368912,https://salsa.debian.org/gnome-team/gnome-shell, https://gitlab.gnome.org/gnome/gnome-shell.git,5520.521574074074,547,486,0 -gnome-shell-extension-appindicator,0.266480460884379,2.53393601179872,-0.304515496604215,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-appindicator, https://github.com/ubuntu/gnome-shell-extension-appindicator,3879.4440046296295,30,21,0 -gnome-shell-extension-arc-menu,-0.751748611047369,1.63723722779277,-1.25231110291594,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-arc-menu, https://gitlab.com/arcmenu/ArcMenu.git,1176.119861111111,5,48,0 -gnome-shell-extension-autohidetopbar,-0.298270522769291,0.629995714177131,-0.45187728571567,https://salsa.debian.org/debian/gnome-shell-extension-autohidetopbar, https://gitlab.gnome.org/tuxor1337/hidetopbar,3843.6346064814816,13,51,0 -gnome-shell-extension-caffeine,-0.039832887673346,1.75626767882921,-0.389078965927041,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-caffeine, https://github.com/eonpatapon/gnome-shell-extension-caffeine,4204.856111111111,22,56,0 -gnome-shell-extension-dash-to-panel,0.112497150565975,2.19074418636135,-0.424673425471541,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dash-to-panel, https://github.com/home-sweet-gnome/dash-to-panel.git,2629.753946759259,40,85,0 -gnome-shell-extension-dashtodock,-0.0287596469367206,0.983041172753154,-0.301129726005059,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dashtodock, https://github.com/micheleg/dash-to-dock.git,4172.053009259259,157,30,0 -gnome-shell-extension-easyscreencast,-0.247643057016812,1.72224379988039,-0.661567446375378,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-easyscreencast, https://github.com/EasyScreenCast/EasyScreenCast.git,3762.2703125,11,34,0 -gnome-shell-extension-multi-monitors,0.240334707409969,2.3856514137928,-0.357167869653307,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-multi-monitors, https://github.com/spin83/multi-monitors-add-on.git,2247.7516435185184,1,14,0 -golang-yaml.v2,-0.18283249946428,1.78793335186982,-0.599059673014276,https://salsa.debian.org/go-team/packages/golang-yaml.v2, https://github.com/go-yaml/yaml.git,4160.8565625,29,26,0 -goldeneye,0.291422342120509,3.23766478434891,-0.422802284339128,https://salsa.debian.org/pkg-security-team/goldeneye, https://github.com/jseidl/GoldenEye,3012.1110532407406,1,7,0 -goocanvas-2.0,0.366257825649323,2.0726017159333,-0.105979358987335,https://salsa.debian.org/debian/goocanvas-2.0, https://gitlab.gnome.org/GNOME/goocanvas,5671.0791782407405,18,30,0 -goodvibes,-0.194929379586229,2.27387264641312,-0.742525557112262,https://salsa.debian.org/debian/goodvibes, https://gitlab.com/goodvibes/goodvibes.git,2574.1305555555555,55,10,0 -google-perftools,1.39263853541408,2.43489921776048,0.762717314226128,https://salsa.debian.org/debian/google-perftools, https://github.com/gperftools/gperftools,5776.7960416666665,88,46,0 -googler,-0.368643140239746,0.628358092372874,-0.554272536420051,https://salsa.debian.org/debian/googler, https://github.com/jarun/googler.git,4778.910706018519,15,26,0 -googletest,-0.135869930459295,0.0194590755211467,-0.209319140749824,https://salsa.debian.org/debian/googletest, https://github.com/google/googletest.git,5640.1267708333335,169,368,0 -gopacket,-1.06288190141592,1.2277474396826,-1.80525057678666,https://salsa.debian.org/go-team/packages/gopacket, https://github.com/google/gopacket.git,3976.8553587962965,106,101,0 -gorm.app,0.379214595573564,1.50539380252219,-0.0975198397004308,https://salsa.debian.org/gnustep-team/gorm.app, https://github.com/gnustep/apps-gorm,5785.686678240741,3,22,0 -gosa,-0.3775685335741,-0.218913245151997,-0.490142989776367,https://salsa.debian.org/debian-edu-pkg-team/gosa, https://github.com/gosa-project/gosa-core,5676.765821759259,7,31,0 -gosa-plugin-mailaddress,-2.33839798824977,0.264356858694085,-2.98564755573703,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-mailaddress, https://github.com/gosa-project/gosa-plugins-mailaddress,2274.676365740741,0,4,0 -gosa-plugin-netgroups,-0.991400762891599,0.477737244370405,-1.38270096634839,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-netgroups, https://github.com/gosa-project/gosa-plugins-netgroups,1422.7270023148149,0,3,0 -gosa-plugin-pwreset,-1.35983377184844,0.287923337303386,-1.62929317992199,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-pwreset, https://github.com/gosa-project/gosa-plugins-pwreset,2184.168125,0,3,0 -gost-crypto,-2.36115638748562,-0.86455846759555,-2.62341468211892,https://salsa.debian.org/lumag/gost-crypto, https://github.com/GostCrypt/linux-crypto.git,1726.5372222222222,2,3,0 -gosu,-0.829319185294956,1.40651200013733,-1.25999977595269,https://salsa.debian.org/go-team/packages/gosu, https://github.com/tianon/gosu.git,3461.229861111111,6,8,0 -goxel,-0.452502788914954,1.39902110443508,-0.96333909647266,https://salsa.debian.org/debian/goxel, https://github.com/guillaumechereau/goxel.git,2988.2858564814815,12,26,0 -gpac,0.533001617836553,1.37255550044037,0.0989441408994632,https://salsa.debian.org/multimedia-team/gpac, https://github.com/gpac/gpac,5786.954548611111,14,105,1 -gpaste,-0.306042916386565,-0.251366894090626,-0.323026045119372,https://salsa.debian.org/debian/gpaste, https://github.com/Keruspe/GPaste,4709.643009259259,65,21,2 -gpg-remailer,-0.730795858067705,1.96170126939236,-1.46485943942182,https://salsa.debian.org/debian/gpg-remailer, https://gitlab.com/fbb-git/gpg-remailer,5278.862986111111,1,1,0 -gpick,0.328724414189861,1.92683494766077,-0.166165345925134,https://salsa.debian.org/elias/gpick, https://github.com/thezbyg/gpick.git,5237.0590625,5,6,0 -gpicview,2.07026716447993,4.21859764899317,1.05394216899283,https://salsa.debian.org/lxde-team/gpicview, https://github.com/lxde/gpicview,5713.732662037037,76,42,0 -gpodder,0.29604783565997,0.871818613884131,-0.0374135894238541,https://salsa.debian.org/debian/gpodder, https://github.com/gpodder/gpodder,5771.845787037037,167,86,1 -gpp,0.629564590648757,3.86571206671939,-0.308981221820961,https://salsa.debian.org/debian/gpp, https://github.com/logological/gpp/commits/master,5185.326875,55,11,0 -gpsd,0.329959081017952,0.544907167896321,0.175119310841179,https://salsa.debian.org/debian-gps-team/pkg-gpsd/, https://gitlab.com/gpsd/gpsd.git,5785.686215277778,179,74,0 -gpustat,-0.741403160392273,1.67386030509305,-1.1885003927339,https://salsa.debian.org/nvidia-team/gpustat, https://github.com/wookayin/gpustat,2769.873078703704,16,5,3 -gpyfft,-0.0412032188187653,3.09310643757917,-0.922104196637825,https://salsa.debian.org/science-team/gpyfft, https://github.com/geggo/gpyfft,2840.725300925926,4,10,0 -gr-hpsdr,0.400478366399521,3.87664593050706,-0.754843802936069,https://salsa.debian.org/debian-hamradio-team/gr-hpsdr, https://github.com/Tom-McDermott/gr-hpsdr,3221.8977430555556,2,8,0 -gr-limesdr,-0.922675285913836,0.882732455733595,-1.42385908319867,https://salsa.debian.org/debian-hamradio-team/gr-limesdr, https://github.com/myriadrf/gr-limesdr.git,1838.1773726851852,3,21,0 -grabc,0.259382871110102,3.26058073141346,-0.658534877421865,https://salsa.debian.org/debian/grabc, https://github.com/muquit/grabc.git,1019.1824189814815,0,3,0 -grabserial,-0.534268648960191,2.39024691399638,-1.29672446472184,https://salsa.debian.org/debian/grabserial, https://github.com/tbird20d/grabserial,3634.0012152777776,11,19,0 -granatier,0.468473230442468,2.59782007144176,-0.093915473471911,https://salsa.debian.org/qt-kde-team/kde/granatier, https://anongit.kde.org/granatier.git,5783.575960648148,4,56,0 -grantlee5,0.885091712187427,2.98199434735736,0.150645430522859,https://salsa.debian.org/qt-kde-team/extras/grantlee, https://github.com/steveire/grantlee.git,4939.975648148148,29,11,0 -graphite2,0.373380772575111,1.17793952421994,0.0796158428735937,https://salsa.debian.org/libreoffice-team/graphite2, https://github.com/silnrsi/graphite.git,4797.779131944444,6,20,0 -grass,0.250914651807853,0.526889236683279,0.0631058235209892,https://salsa.debian.org/debian-gis-team/grass, https://github.com/OSGeo/grass.git,5708.131168981481,83,60,0 -gravit,0.604558095656893,3.20290781714388,-0.299169242521338,https://salsa.debian.org/debian-astro-team/gravit, https://github.com/gak/gravit,4467.977326388889,1,15,2 -grcompiler,-0.203373151447185,1.65148057513329,-0.960443545697963,https://salsa.debian.org/fonts-team/grcompiler, https://github.com/silnrsi/grcompiler.git,4870.000092592592,3,20,0 -greenbone-security-assistant,0.417412477041899,2.96196815616776,-0.465679759760679,https://salsa.debian.org/pkg-security-team/greenbone-security-assistant, https://github.com/greenbone/gsa,5193.735740740741,22,54,0 -grepcidr,-0.000512137954185819,1.82310742256517,-0.469333182443001,https://github.com/rfinnie/grepcidr-pkg-debian,https://github.com/rfinnie/grepcidr-pkg-debian,3175.8474652777777,0,1,0 -greybird-gtk-theme,0.95816204306386,4.08429698271198,0.0735921107534857,https://salsa.debian.org/desktop-themes-team/greybird-gtk-theme, https://github.com/shimmerproject/Greybird,4402.072048611111,24,30,0 -grfcodec,-0.490563373333505,1.16974650769134,-0.99403605442651,https://salsa.debian.org/openttd-team/grfcodec, https://github.com/OpenTTD/grfcodec.git,5754.043796296296,6,15,0 -grilo,0.0711658596454307,0.564024639427743,-0.0426035529926767,https://salsa.debian.org/berto/grilo, https://gitlab.gnome.org/GNOME/grilo,5095.037083333334,101,96,0 -grilo-plugins,0.220926637137611,0.693041442338844,0.0184789903520529,https://salsa.debian.org/berto/grilo-plugins, https://gitlab.gnome.org/GNOME/grilo-plugins,5111.795706018518,141,95,0 -grml-debootstrap,-0.945933574329717,-0.551860296769336,-1.09233853366106,https://github.com/grml/grml-debootstrap,https://github.com/grml/grml-debootstrap,5733.818854166667,7,26,0 -grok,0.755503612433081,3.25495771392926,-0.294994865709912,https://salsa.debian.org/debian/grok, https://github.com/jordansissel/grok,2851.822326388889,0,12,0 -gromit-mpx,-0.136839263207372,2.39610826055996,-0.723685631624861,https://salsa.debian.org/debian/gromit-mpx, https://github.com/bk138/gromit-mpx.git,5287.537638888889,14,15,0 -grub-customizer,0.801087065467055,4.16732185289059,-0.126068709066662,https://salsa.debian.org/debian/grub-customizer, https://git.launchpad.net/grub-customizer,4117.026770833333,0,3,0 -grun,3.43147374519148,6.99143969921208,1.95124560287428,https://salsa.debian.org/debian/grun, https://github.com/lrgc/grun.git,1780.0517708333334,1,4,0 -gsettings-desktop-schemas,0.943289581912143,2.72406363428131,0.235945462613919,https://salsa.debian.org/gnome-team/gsettings-desktop-schemas, https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas.git,4907.43244212963,139,142,0 -gsettings-qt,0.787566525166276,3.34263205506356,-0.0531543493533161,https://salsa.debian.org/ubports-team/gsettings-qt, https://gitlab.com/ubports/development/core/gsettings-qt.git,3335.117152777778,0,27,0 -gsound,1.27815600445249,5.0714643083907,0.172036772823456,https://salsa.debian.org/gnome-team/gsound, https://gitlab.gnome.org/GNOME/gsound.git,3090.751886574074,4,9,0 -gss-ntlmssp,-1.07585140078542,0.718744628304251,-1.51478530983583,https://salsa.debian.org/freeipa-team/gss-ntlmssp, https://github.com/gssapi/gss-ntlmssp,3594.9212152777777,10,4,0 -gst-libav1.0,0.867787324169397,2.06560737510343,0.304636668755347,https://salsa.debian.org/gstreamer-team/gst-libav1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer,5787.821053240741,1809,559,0 -gst-plugins-bad1.0,0.502932208759892,1.15191706625587,0.169207027733413,https://salsa.debian.org/gstreamer-team/gst-plugins-bad1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.821053240741,1809,559,0 -gst-plugins-base1.0,0.978985111065131,2.15670361527013,0.386505431834247,https://salsa.debian.org/gstreamer-team/gst-plugins-base1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer,5787.821053240741,1809,559,0 -gst-plugins-good1.0,0.717542562202946,2.09575272181459,0.169823316270483,https://salsa.debian.org/gstreamer-team/gst-plugins-good1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.821053240741,1809,559,0 -gst-plugins-ugly1.0,0.945277770780277,3.13359387441374,0.164659273282977,https://salsa.debian.org/gstreamer-team/gst-plugins-ugly1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.821053240741,1809,559,0 -gst-python1.0,0.714856261770193,2.06707628583048,0.166971603485862,https://salsa.debian.org/gstreamer-team/gst-python1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.821053240741,1809,559,0 -gst123,0.254834273347464,2.37919201727039,-0.435845826100545,https://salsa.debian.org/gstreamer-team/gst123, http://space.twc.de/public/git/gst123.git,5110.325474537037,6,2,0 -gstreamer-editing-services1.0,0.249003411053596,2.1012071689463,-0.193529381872294,https://salsa.debian.org/gstreamer-team/gstreamer-editing-services1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.821053240741,1809,559,0 -gstreamer-vaapi,1.6982985802323,4.18251279204035,0.608820282113726,https://salsa.debian.org/gstreamer-team/gstreamer-vaapi/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.821053240741,1809,559,0 -gstreamer1.0,0.630965771193643,1.53274778485885,0.22143558420581,https://salsa.debian.org/gstreamer-team/gstreamer1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.821053240741,1809,559,0 -gtextfsm,-1.95927685598995,0.499811995849378,-2.46717998261428,https://salsa.debian.org/python-team/packages/gtextfsm, https://github.com/google/textfsm.git,4331.1065625,11,7,0 -gtimelog,-0.313150301149958,0.419592854220189,-0.646939699895798,https://salsa.debian.org/python-team/packages/gtimelog, https://github.com/gtimelog/gtimelog,5699.091412037037,18,41,2 -gtk+2.0,2.60390050698736,2.957776149282,2.30271228047434,https://salsa.debian.org/gnome-team/gtk2, https://gitlab.gnome.org/GNOME/gtk/commits/master,5185.326875,55,11,0 -gtk-doc,0.86154882592455,1.63532053263335,0.379837812447004,https://salsa.debian.org/gnome-team/gtk-doc, https://gitlab.gnome.org/GNOME/gtk-doc/commits/master,5185.326875,55,11,0 -gtkguitune,-0.249127738628021,0.382618678459193,-0.459149545237519,https://github.com/bobek/gtkguitune,https://github.com/bobek/gtkguitune,3186.2603587962963,1,3,0 -gtkhash,-0.04705497683068,0.381309166862997,-0.19595314429291,https://salsa.debian.org/debian/gtkhash, https://github.com/tristanheaven/gtkhash,4558.980844907407,79,10,0 -gtksourceview3,2.41933913217366,6.09234919335068,1.02509487776753,https://salsa.debian.org/gnome-team/gtksourceview3, https://gitlab.gnome.org/GNOME/gtksourceview,5775.086574074074,326,330,0 -gtksourceview4,0.979634493980655,4.02013402070576,0.0765985055676495,https://salsa.debian.org/gnome-team/gtksourceview4, https://gitlab.gnome.org/GNOME/gtksourceview.git,5775.086574074074,326,330,0 -gtkterm,1.66141581433244,3.22367868482496,0.801083568030018,https://salsa.debian.org/debian/gtkterm, https://github.com/Jeija/gtkterm.git,4575.4452083333335,6,17,0 -gtranscribe,-0.52598532093121,1.68552447049882,-0.950618828955398,https://salsa.debian.org/debian/gtranscribe, https://github.com/innir/gtranscribe,3558.9036921296297,0,5,1 -gtranslator,0.950617308214955,1.62564931636575,0.495191822493711,https://salsa.debian.org/gnome-team/gtranslator, https://gitlab.gnome.org/GNOME/gtranslator.git,5307.828796296296,147,180,0 -guake-indicator,0.225084840589738,2.50139112834453,-0.537897622387219,https://salsa.debian.org/debian/guake-indicator/, https://github.com/Ozzyboshi/guake-indicator,2489.141122685185,1,8,0 -gucharmap,1.2580835700878,2.13054020052183,0.717721201320586,https://salsa.debian.org/gnome-team/gucharmap, https://gitlab.gnome.org/GNOME/gucharmap.git,5722.184560185186,150,243,0 -guessit,0.50924339420609,2.43396963084859,-0.279203918651371,https://salsa.debian.org/python-team/packages/guessit, https://github.com/guessit-io/guessit.git,2993.2388078703702,14,29,0 -gui-ufw,1.82170657320495,4.36249019311549,0.73445987540299,https://salsa.debian.org/python-team/packages/gui-ufw, https://github.com/costales/gufw.git,1462.9175578703703,0,7,0 -guidata,0.22694372404459,2.76607965507246,-0.444547265017286,https://salsa.debian.org/science-team/guidata, https://github.com/Codra-Ingenierie-Informatique/guidata,4839.075289351852,0,24,0 -guidedog,-1.21278206618604,0.0904612736593897,-1.69262749618264,https://github.com/antocm/guidedog/tree/debian,https://github.com/antocm/guidedog,2480.661736111111,0,5,0 -guile-json,-0.447679014039198,2.31759801122916,-1.12840490687817,https://salsa.debian.org/debian/guile-json, https://github.com/aconchillo/guile-json.git,3764.830532407407,3,17,0 -guile-ssh,-0.898003176566419,3.15796707178121,-2.08007087259509,https://salsa.debian.org/debian/guile-ssh, https://github.com/artyom-poptsov/guile-ssh.git,3867.355983796296,0,10,0 -guiqwt,0.157404843369812,1.71348782473345,-0.39856695770398,https://salsa.debian.org/science-team/guiqwt, https://github.com/PierreRaybaut/guiqwt.git,4806.769652777778,1,21,0 -guitarix,-0.0389261924472309,0.343418930213187,-0.224774008814206,https://salsa.debian.org/multimedia-team/guitarix, https://git.code.sf.net/p/guitarix/git,4942.509212962963,5,40,0 -gumbo-parser,1.52574198957525,4.16188441887426,0.451382782523066,https://salsa.debian.org/debian/gumbo-parser, https://codeberg.org/grisha/gumbo-parser.git,3698.9385069444443,2,36,0 -gup,-5.16957026468003,-4.44854545374036,-5.42895905623184,https://github.com/rfc1036/gup,https://github.com/rfc1036/gup,3593.8147453703705,0,1,0 -gupnp,0.315292916967237,1.09907131524484,0.0331016783440246,https://salsa.debian.org/gnome-team/gupnp, https://gitlab.gnome.org/GNOME/gupnp.git,5782.833252314815,44,35,0 -gupnp-tools,2.02796411461607,4.15419087680673,0.959810923366263,https://salsa.debian.org/gnome-team/gupnp-tools, https://gitlab.gnome.org/GNOME/gupnp-tools.git,5784.080162037037,51,37,0 -guzzle-sphinx-theme,-0.870402263256846,0.681504728971643,-1.1374775257454,https://salsa.debian.org/python-team/packages/guzzle-sphinx-theme, https://github.com/guzzle/guzzle_sphinx_theme.git,2860.313402777778,3,11,0 -gvfs,3.71054710861484,4.60222191888303,3.07049299077625,https://salsa.debian.org/gnome-team/gvfs, https://gitlab.gnome.org/GNOME/gvfs.git,5759.999618055555,264,330,0 -gwaei,-0.241530181808764,1.20814974222975,-0.872223429611782,https://github.com/norbusan/debian-gwaei,https://github.com/norbusan/debian-gwaei,2765.6634375,2,2,0 -gwakeonlan,0.853516994065889,3.06274146318228,-0.0322068922641137,https://salsa.debian.org/debian/gwakeonlan, https://github.com/muflone/gwakeonlan.git,4933.515127314815,2,13,0 -gwc,0.608752042959984,1.62897330411708,0.0519069421770505,https://salsa.debian.org/multimedia-team/gwc, https://github.com/AlisterH/gwc.git,3165.1705324074073,1,5,0 -gwcs,0.0316107805669375,2.18314505613003,-0.645669238462784,https://salsa.debian.org/debian-astro-team/gwcs, https://github.com/spacetelescope/gwcs,3241.958078703704,13,31,3 -gxkb,0.378793618102741,4.06984648812116,-0.633487570844487,https://github.com/mati75/gxkb.git,https://github.com/mati75/gxkb.git,2732.567650462963,0,4,0 -gxtuner,1.26252365881053,4.75338294151494,0.0339744565712773,https://salsa.debian.org/multimedia-team/gxtuner, https://github.com/brummer10/gxtuner,1914.189201388889,3,6,0 -h2o,-0.732154034912123,0.815719717951388,-1.28127323117718,https://salsa.debian.org/debian/h2o, https://github.com/h2o/h2o,4716.585949074074,44,155,4 -h5utils,-0.0466394354620323,0.620050047907465,-0.315947352633772,https://salsa.debian.org/debian-gis-team/h5utils, https://github.com/NanoComp/h5utils.git,5379.830416666667,0,6,0 -hackrf,-0.00075725046151218,0.771002925066563,-0.224090809213788,https://salsa.debian.org/bottoms/pkg-hackrf, https://github.com/mossmann/hackrf.git,4292.961111111111,23,72,0 -hacktv,-2.00826730577902,0.152267044037194,-2.47275412010978,https://salsa.debian.org/debian-hamradio-team/hacktv, https://github.com/fsphil/hacktv,2394.7430787037038,3,7,0 -handbrake,1.390484339078,2.68514870700298,0.64515826171242,https://salsa.debian.org/multimedia-team/handbrake, https://github.com/HandBrake/HandBrake,5786.367523148148,105,51,3 -harfbuzz,0.171647692654905,0.542997292350876,0.0283701740987368,https://salsa.debian.org/freedesktop-team/harfbuzz, https://github.com/harfbuzz/harfbuzz.git,5645.164965277778,184,76,0 -harminv,-0.263332768167581,0.795999387871074,-0.562157638785097,https://salsa.debian.org/alteholz/harminv, https://github.com/NanoComp/harminv,2906.473171296296,1,5,0 -harvid,0.17245635503244,1.30378830652142,-0.173411649919732,https://salsa.debian.org/multimedia-team/harvid, https://github.com/x42/harvid.git,3621.9749189814816,0,4,0 -hashcat,0.656809925938578,2.91932732878813,-0.068868315364857,https://salsa.debian.org/pkg-security-team/hashcat, https://github.com/hashcat/hashcat.git,2915.0251851851854,48,153,0 -haskell-github,-2.20716868569166,-1.17698926643884,-2.46717998261428,https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-github,https://salsa.debian.org/haskell-team/DHG_packages,5779.414606481481,21,98,0 -haveged,0.960876909230577,1.92990048404984,0.423990452854281,https://salsa.debian.org/debian/haveged, https://github.com/jirka-h/haveged,1886.382650462963,9,23,0 -haxe,-0.520121199828189,0.291656629232862,-0.854365100683561,https://github.com/HaxeFoundation/haxe-debian,https://github.com/HaxeFoundation/haxe-debian,5039.159791666667,3,5,0 -hcxdumptool,0.111902239230355,3.64101561712374,-0.745534899889469,https://salsa.debian.org/pkg-security-team/hcxdumptool, https://github.com/ZerBea/hcxdumptool,2117.010613425926,10,18,0 -hdapsd,0.653899629129175,2.69423511493553,-0.123119309607183,https://salsa.debian.org/debian/hdapsd, https://github.com/evgeni/hdapsd.git,2619.501041666667,2,5,0 -hdmi2usb-mode-switch,-0.197998979551778,2.89423307436124,-1.00134107846442,https://salsa.debian.org/debian/hdmi2usb-mode-switch, https://github.com/timvideos/HDMI2USB-mode-switch.git,1539.4512152777777,3,11,0 -hebcal,0.138161090449786,2.8080865957014,-0.836907509155818,https://salsa.debian.org/debian/hebcal, https://github.com/hebcal/hebcal,5547.5039120370375,16,21,0 -hesiod,1.35207987719541,2.88204109904546,0.569829979549406,https://github.com/achernya/hesiod,https://github.com/achernya/hesiod,2444.8183564814813,0,5,0 -hexchat,0.411346363504554,1.07632257559057,0.0766285754645626,https://salsa.debian.org/debian/hexchat, https://github.com/hexchat/hexchat,4968.658645833333,146,71,1 -hexedit,1.48881421467303,3.48586859691273,0.561731376761798,https://salsa.debian.org/debian/hexedit, https://github.com/pixel/hexedit.git,5414.790706018519,8,14,0 -hexter,0.408060348118351,2.76030001415653,-0.344323176379156,https://salsa.debian.org/multimedia-team/hexter, https://github.com/smbolton/hexter.git ,4380.352847222222,0,6,0 -hfst-ospell,0.259192073708983,1.3643095913664,-0.0408851514528968,https://salsa.debian.org/science-team/hfst-ospell, https://github.com/hfst/hfst-ospell.git,4745.7576967592595,1,17,0 -hg-git,0.321128458005959,1.27013962899525,-0.189558695284581,https://salsa.debian.org/python-team/packages/hg-git, https://github.com/schacon/hg-git.git,2615.4964467592595,1,76,0 -hidapi,0.225542388999172,1.7475434274015,-0.111910545723205,https://salsa.debian.org/debian/hidapi, https://github.com/libusb/hidapi.git,4972.58207175926,120,14,0 -hiera-eyaml,0.31728685467597,4.44703567762882,-0.840765746330657,https://salsa.debian.org/ruby-team/hiera-eyaml, https://github.com/voxpupuli/hiera-eyaml,3753.1260185185183,15,52,1 -highlight.js,0.444540282986675,1.81354558811694,-0.0578940729206164,https://salsa.debian.org/js-team/highlight.js, https://github.com/highlightjs/highlight.js,5773.372569444445,432,361,3 -highwayhash,-0.820409593897258,1.5389936618825,-1.70356068391042,https://salsa.debian.org/science-team/highwayhash, https://github.com/google/highwayhash,2801.679363425926,5,22,0 -hijra,-1.15210447252993,0.901978485933006,-1.98964059526422,https://salsa.debian.org/islamic-team/hijra, https://github.com/ojuba-org/hijra.git,4311.288414351852,0,8,0 -hinawa-utils,-1.80364309063727,0.940925857099933,-2.44228018023471,https://salsa.debian.org/debian/hinawa-utils/, https://github.com/takaswie/hinawa-utils.git,2264.298796296296,1,2,0 -hippomocks,-1.88997873368073,1.96945665171523,-3.0475420798528,https://salsa.debian.org/debian-iot-team/hippomocks, https://github.com/dascandy/hippomocks,3806.1184837962965,0,35,0 -hiredis,0.389669258280221,1.3239835865359,-0.00410006459956858,https://salsa.debian.org/lamby/pkg-hiredis, https://github.com/redis/hiredis,4840.539074074074,94,104,1 -hiro,-3.12301135787983,-1.14023553381057,-3.69314465756504,https://salsa.debian.org/python-team/packages/hiro, https://github.com/alisaifee/hiro,3329.753263888889,1,3,0 -hitch,-0.528891278833222,2.18475913059215,-1.44385683941196,https://salsa.debian.org/debian/hitch, https://github.com/varnish/hitch,4466.179224537037,30,59,0 -hitori,0.324091325659046,1.76212137705116,-0.0254270381462511,https://salsa.debian.org/gnome-team/hitori, https://gitlab.gnome.org/GNOME/hitori.git,5346.570763888889,103,99,0 -hmat-oss,0.302795748495868,3.08224049554587,-0.630153054299577,https://salsa.debian.org/science-team/hmat-oss, https://github.com/jeromerobert/hmat-oss.git,3261.6730555555555,6,19,0 -hodie,-0.839827098753095,0.847259008084228,-1.20596126816846,https://salsa.debian.org/cts/hodie, https://github.com/michiexile/hodie,1318.6005671296296,0,5,0 -hoel,-2.62622621697402,-0.673459335408438,-3.01125437253336,https://salsa.debian.org/debian-iot-team/oauth2/hoel.git, https://github.com/babelouest/hoel,1340.3941203703703,3,9,0 -hol-light,0.674020845527557,3.32279514521599,-0.29139697731138,https://salsa.debian.org/ocaml-team/hol-light, https://github.com/jrh13/hol-light.git,2937.7842708333333,2,18,0 -homesick,-0.778889237497118,1.40989765916812,-1.42195488623994,https://salsa.debian.org/ruby-team/homesick, https://github.com/technicalpickles/homesick,3243.9596296296295,6,52,0 -horst,0.190478644121507,1.54695004141826,-0.282062690337637,https://salsa.debian.org/debian/horst, https://github.com/br101/horst.git,5016.211967592592,4,12,0 -hotspot,-0.279096434934121,2.33740367896778,-1.0457505747954,https://salsa.debian.org/debian/hotspot, https://github.com/KDAB/hotspot.git,2548.033148148148,38,24,0 -hovercraft,-0.745586220610179,0.886166848987427,-1.23328285354792,https://salsa.debian.org/python-team/packages/hovercraft, https://github.com/regebro/hovercraft,3363.2624305555555,11,27,0 -html2text,1.33403803979287,2.32152554452253,0.727545163261413,https://salsa.debian.org/debian/html2text, https://github.com/grobian/html2text,1388.0924421296297,5,7,0 -html5-parser,0.458800578494514,2.4674305886851,-0.0847285940270142,https://github.com/debian-calibre/html5-parser,https://github.com/debian-calibre/html5-parser,2309.525925925926,1,6,0 -htmldoc,0.75711657223212,1.64239469489179,0.276846482719605,https://salsa.debian.org/haava/htmldoc, https://github.com/michaelrsweet/htmldoc.git,5679.761041666667,3,12,0 -htmlmin,0.374983932562282,3.80096487960747,-0.406198962884855,https://salsa.debian.org/python-team/packages/htmlmin, https://github.com/mankyd/htmlmin,1758.1454050925927,0,22,0 -htop,0.382573775087302,0.680328449362217,0.193294889816435,https://salsa.debian.org/debian/htop, https://github.com/htop-dev/htop,5761.166342592593,100,121,1 -htpdate,-0.444541263600008,1.61940455160078,-0.918880230012669,https://salsa.debian.org/debian/htpdate, https://github.com/twekkel/htpdate,706.8257407407407,6,5,0 -htsjdk,-0.179295398836481,0.740127351088058,-0.461619926243365,https://salsa.debian.org/med-team/htsjdk, https://github.com/samtools/htsjdk.git,5326.17755787037,82,118,0 -httmock,-1.63670650820293,0.982025847905345,-2.21581024421151,https://salsa.debian.org/python-team/packages/httmock, https://github.com/patrys/httmock,2779.517060185185,4,27,0 -httpcode,-0.665917226132441,1.43278820521688,-1.12356826521724,https://salsa.debian.org/python-team/packages/httpcode, https://github.com/rspivak/httpcode,1929.8437152777778,0,9,0 -httpdirfs-fuse,-1.16031873285889,1.21522192578648,-1.64558239811084,https://salsa.debian.org/lavamind/httpdirfs-fuse, https://github.com/fangfufu/httpdirfs.git,1903.2805324074075,12,11,0 -httpie,0.384613935111809,1.36966665093416,-0.0739168255179186,https://salsa.debian.org/python-team/packages/httpie, https://github.com/httpie/httpie,4259.19712962963,96,74,0 -hubicfuse,-0.674391068352074,0.4155398958399,-0.970849683167389,https://salsa.debian.org/debian/hubicfuse, https://github.com/TurboGit/hubicfuse,4598.808229166667,5,42,0 -hugo,0.0671368853016907,1.14370944645474,-0.253101467629316,https://salsa.debian.org/go-team/packages/hugo, https://github.com/gohugoio/hugo.git,3813.722662037037,826,45,0 -humanfriendly,0.228381991068723,3.2095279019538,-0.554286794182616,https://salsa.debian.org/python-team/packages/humanfriendly, https://github.com/xolox/python-humanfriendly,3014.9542476851852,5,15,0 -hunchentoot,-0.781887054912999,1.42366033170894,-1.48023621267757,https://github.com/edicl/hunchentoot,https://github.com/edicl/hunchentoot,5414.600162037037,19,51,0 -hunspell,1.72820367101501,2.99171078870295,1.00684665792541,https://salsa.debian.org/libreoffice-team/hunspell, https://github.com/hunspell/hunspell,5038.281006944444,81,40,2 -hunspell-be,0.204668880304515,2.58922019654763,-0.352339032976241,https://github.com/375gnu/hunspell-be,https://github.com/375gnu/hunspell-be,4256.263668981482,1,3,0 -hunspell-kk,0.169979278904401,2.56860566866465,-0.353993453076674,http://github.com/taem/hunspell-kk/tree/master,http://github.com/taem/hunspell-kk,1009.254050925926,0,1,0 -hw-probe,-0.270539130885328,2.13663486623563,-0.803635087763185,https://salsa.debian.org/debian/hw-probe, https://github.com/linuxhw/hw-probe,2812.820763888889,5,13,0 -hwdata,0.249721813598503,0.867330973589817,-0.00339266629849209,https://salsa.debian.org/pino/hwdata, https://github.com/vcrhonek/hwdata.git,5761.123148148148,4,18,0 -hwinfo,1.03525834114766,1.87035720757828,0.528823536083506,https://salsa.debian.org/debian/hwinfo, https://github.com/openSUSE/hwinfo,5630.010034722222,11,25,0 -hwloc,0.0348531640399339,0.307399279262583,-0.0657896516031377,https://salsa.debian.org/debian/hwloc, https://github.com/open-mpi/hwloc.git,5420.947349537037,40,25,0 -hypercorn,-4.93316929455086,-2.53597432019767,-5.4677150691329,https://salsa.debian.org/python-team/packages/hypercorn, https://gitlab.com/pgjones/hypercorn,1552.1871064814816,17,28,0 -hyperlink,0.844118140951546,3.90404712001316,0.0109391917079671,https://salsa.debian.org/python-team/packages/hyperlink, https://github.com/python-hyper/hyperlink,1636.1480324074073,8,24,0 -hyperscan,-0.19399067963967,1.13231955266701,-0.506900136755405,https://salsa.debian.org/debian/hyperscan, https://github.com/intel/hyperscan.git,2738.472962962963,25,11,0 -hyphen,0.431472953444581,1.60395404929647,0.0503177928932619,https://salsa.debian.org/libreoffice-team/hyphen, https://github.com/hunspell/hyphen.git,2824.9621875,2,9,0 -hyphen-ru,1.36394021241656,5.60995268002231,0.017512985101694,http://github.com/Protagores/hyphen-ru,http://github.com/Protagores/hyphen-ru,3.0971875,0,1,0 -hypre,-0.116807516531962,0.329110116990632,-0.3077167067755,https://salsa.debian.org/science-team/hypre, https://github.com/hypre-space/hypre,3128.2668518518517,29,123,0 -i18nspector,-0.313015622769601,1.34702827047449,-0.821005946432485,https://salsa.debian.org/debian/i18nspector, https://github.com/jwilk/i18nspector,3956.4540162037038,0,2,0 -i2pd,-0.85878278022978,0.149294279481958,-1.15455770054614,https://salsa.debian.org/yangfl-guest/i2pd, https://github.com/PurpleI2P/i2pd,3747.1315856481483,37,139,2 -i3lock-fancy,0.141114795460248,2.51986399766619,-0.50663810778526,https://salsa.debian.org/debian/i3lock-fancy, https://github.com/meskarune/i3lock-fancy,2712.43375,14,38,0 -i7z,0.0808738408514938,1.26223617887634,-0.243091165882832,https://salsa.debian.org/debian/i7z, https://github.com/ajaiantilal/i7z,310.0352199074074,0,7,0 -iannix,-0.18807323044584,2.14869055414818,-0.87546624741016,https://salsa.debian.org/multimedia-team/iannix, https://github.com/buzzinglight/IanniX,4212.690243055556,7,14,0 -ibuffer-projectile,-0.722806195261783,1.81540772308371,-1.29214807400522,https://salsa.debian.org/emacsen-team/ibuffer-projectile, https://github.com/purcell/ibuffer-projectile.git,3152.389108796296,1,7,0 -ibus,0.326623663281174,0.544939356694411,0.171993095424817,https://salsa.debian.org/debian/ibus, https://github.com/ibus/ibus.git,5687.222881944444,128,34,0 -ibus-chewing,-0.312474713177748,0.450220248351619,-0.660434458654668,https://salsa.debian.org/debian/ibus-chewing, https://github.com/definite/ibus-chewing,5634.373240740741,3,22,2 -ibus-libpinyin,0.0745339719016965,1.49656855213419,-0.455214923387231,https://salsa.debian.org/debian/ibus-libpinyin, https://github.com/libpinyin/ibus-libpinyin,5637.836423611111,33,12,0 -icdiff,-0.143815292235167,1.93698232874315,-0.574052024000204,https://salsa.debian.org/debian/icdiff, https://github.com/jeffkaufman/icdiff.git,4767.043599537037,37,19,0 -ice-builder-gradle,-1.18494857071322,0.940607993180076,-1.63914293753475,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2370.9240625,0,3,0 -icebreaker,0.469225637128789,1.84119572041145,-0.176942105980292,https://salsa.debian.org/games-team/icebreaker, https://github.com/mattdm/icebreaker.git,3923.7699305555557,0,5,0 -icecc,0.306464283919501,1.12950175815159,-0.157389879894607,https://salsa.debian.org/qt-kde-team/extras/icecc, https://github.com/icecc/icecream,5413.471793981482,34,86,1 -icecc-monitor,0.703092293725719,3.58351003456912,-0.29590599853479,https://salsa.debian.org/qt-kde-team/extras/icemon, https://github.com/icecc/icemon.git,4527.72,9,27,0 -icecream-sundae,-1.03853764893726,1.81493250427221,-1.71495059042769,https://salsa.debian.org/debian/icecream-sundae, https://github.com/JPEWdev/icecream-sundae,638.2833796296296,3,6,0 -icinga2,0.217822760858541,0.67604110361389,-0.0314352077574833,https://salsa.debian.org/nagios-team/icinga2, https://github.com/Icinga/icinga2,4277.243831018519,173,135,3 -icingaweb2,-0.136907437426999,0.576729403991628,-0.369110656861031,https://salsa.debian.org/nagios-team/icingaweb2, https://github.com/Icinga/icingaweb2.git,3851.033611111111,92,60,0 -icmake,-1.07264206786276,-0.739390153180792,-1.19670424225268,https://salsa.debian.org/debian/icmake, https://gitlab.com/fbb-git/icmake.git,5712.032418981482,1,7,0 -id3,1.22319630475834,3.51521891234972,0.270055642115436,https://salsa.debian.org/debian/id3/, https://gitlab.com/ppentchev/id3,1362.3814467592592,0,1,0 -ideviceinstaller,0.568963109437017,2.74506542035172,-0.181779756008986,https://salsa.debian.org/imobiledevice-team/ideviceinstaller, https://github.com/libimobiledevice/ideviceinstaller.git,4944.718449074074,9,5,0 -ido-ubiquitous,-0.835851110638491,0.642816870988192,-1.16242953834539,https://salsa.debian.org/emacsen-team/ido-ubiquitous, https://github.com/DarwinAwardWinner/ido-completing-read-plus.git,3558.905173611111,5,15,0 -ifcplusplus,-4.71402050298953,-1.54668049295895,-5.44302502170614,https://salsa.debian.org/science-team/ifcplusplus, https://github.com/ifcquery/ifcplusplus,3159.9779050925927,3,29,0 -ifetch-tools,-1.77631166835684,-1.41794350156919,-1.86446506771438,https://github.com/unixabg/ifetch-tools,https://github.com/unixabg/ifetch-tools,5167.966319444445,0,4,0 -ifupdown-multi,-0.000891109304905083,3.57957149248289,-1.03563713495261,https://github.com/edmonds/ifupdown-multi,https://github.com/edmonds/ifupdown-multi,2598.182175925926,0,2,0 -ignition-cmake,-0.0672943202505403,2.4451918145376,-0.721188055934817,https://salsa.debian.org/science-team/ignition-cmake, https://github.com/ignitionrobotics/ign-cmake.git,2275.004699074074,21,38,0 -ignition-transport,-0.116350256286308,0.934543995234963,-0.536482098172557,https://salsa.debian.org/science-team/ignition-transport, https://github.com/gazebosim/gz-transport,3531.64162037037,21,77,0 -igraph,0.14710880764619,1.2967342488395,-0.341852782497227,https://salsa.debian.org/med-team/igraph, https://github.com/igraph/igraph,5787.088703703704,45,61,3 -igtf-policy-bundle,-3.40267963229103,-2.19817915323612,-3.72689988548223,https://github.com/dvandok/igtf-policy-bundle,https://github.com/dvandok/igtf-policy-bundle,4263.811400462963,0,3,0 -iio-sensor-proxy,0.295547781923516,1.1211416174015,0.0195917308937655,https://salsa.debian.org/debian/iio-sensor-proxy/, https://gitlab.freedesktop.org/hadess/iio-sensor-proxy,3422.284236111111,27,18,0 -im,-0.683203415227418,-0.468849532849079,-0.783434092773863,https://salsa.debian.org/debian/im, https://github.com/tats/im,1297.943900462963,1,2,0 -imagetooth,-1.56151804986896,1.02976558626745,-2.13055681311183,https://salsa.debian.org/ruby-team/imagetooth, https://github.com/gramos/imagetooth,163.81336805555554,0,1,0 -imbalanced-learn,-1.87049095287035,1.59545167045936,-2.83188962933758,https://salsa.debian.org/med-team/imbalanced-learn, https://github.com/scikit-learn-contrib/imbalanced-learn.git,3355.2317592592594,67,21,0 -imexam,-0.529120494597259,0.569301322069021,-0.771921667508731,https://salsa.debian.org/debian-astro-team/imexam, https://github.com/spacetelescope/imexam,3485.9386226851852,6,15,1 -imgp,-0.654831104674298,1.57229390630509,-1.08879484852796,https://salsa.debian.org/debian/imgp, https://github.com/jarun/imgp.git,2588.449178240741,7,6,0 -impacket,0.15808049135145,1.66891964742961,-0.288669068164663,https://salsa.debian.org/python-team/packages/impacket, https://github.com/SecureAuthCorp/impacket.git,5583.002974537037,71,193,0 -inadyn,1.24910264509236,3.27984786709163,0.280953404438953,https://salsa.debian.org/debian/inadyn, https://github.com/troglobit/inadyn,4734.416620370371,20,58,1 -incremental,0.285602329751221,1.75756103878,-0.0750684493122969,https://salsa.debian.org/python-team/packages/incremental, https://github.com/twisted/incremental.git,2511.779386574074,4,15,0 -indexed-gzip,0.246841981503055,2.69003927158436,-0.529583596722079,https://salsa.debian.org/python-team/packages/indexed-gzip, https://github.com/pauldmccarthy/indexed_gzip.git,2811.383310185185,1,15,0 -indicator-sensors,-0.55856548471668,1.87063137701197,-1.16667247934645,https://salsa.debian.org/debian/indicator-sensors, https://github.com/alexmurray/indicator-sensors.git,4448.051828703704,1,8,0 -influxdb-python,0.5184399777117,1.9994055881846,-0.0609733667770676,https://salsa.debian.org/python-team/packages/influxdb-python, https://github.com/influxdata/influxdb-python,3542.085324074074,64,90,1 -infnoise,-0.804300160334278,2.01021630793909,-1.78957995953479,https://salsa.debian.org/debian/infnoise, https://github.com/13-37-org/infnoise.git,3061.3638078703702,9,32,0 -inhomog,-0.435953666010228,1.72029840729266,-0.874269641144182,https://salsa.debian.org/debian-astro-team/inhomog, https://bitbucket.org/broukema/inhomog,2315.1452199074074,1,7,0 -ink,1.00576891654364,4.59938904850252,-0.135386863768239,https://salsa.debian.org/debian/ink, https://git.code.sf.net/p/ink/git,4942.509212962963,5,40,0 -inkscape-open-symbols,0.139916102322669,2.394699430087,-0.296432735971966,https://salsa.debian.org/felix-guest/inkscape-open-symbols, https://github.com/Xaviju/inkscape-open-symbols,2971.3217939814813,9,20,0 -inn2,-0.504610683048708,-0.419983646964629,-0.570339528426107,https://salsa.debian.org/md/inn2, https://github.com/InterNetNews/inn.git,5725.585011574074,6,6,0 -intel-compute-runtime,-0.335348828556532,2.5434327002209,-1.03806312411679,https://salsa.debian.org/opencl-team/intel-compute-runtime, https://github.com/intel/compute-runtime,2183.6453703703705,160,87,0 -intel-media-driver,0.664226000705799,2.71524920257984,0.0467333910468321,https://salsa.debian.org/multimedia-team/intel-media-driver, https://github.com/intel/media-driver.git,2204.022951388889,645,23,0 -intel-mediasdk,0.71151453013883,3.95189517591447,-0.0646178884943074,https://salsa.debian.org/debian/intel-mediasdk, https://github.com/Intel-Media-SDK/MediaSDK,2234.083888888889,221,19,0 -intel-opencl-clang,-0.602028957352482,1.72803249305746,-1.08199205792547,https://salsa.debian.org/opencl-team/intel-opencl-clang, https://github.com/intel/opencl-clang,2205.1366319444446,24,22,0 -intel-vaapi-driver-shaders,0.133644004636135,2.05457880030156,-0.352630979985593,https://salsa.debian.org/multimedia-team/intel-vaapi-driver-shaders, https://github.com/intel/intel-vaapi-driver.git,5083.222291666667,105,18,0 -intelhex,-0.718117487216948,1.53031949737623,-1.15580284325034,https://salsa.debian.org/python-team/packages/intelhex, https://github.com/bialix/intelhex.git,2882.7775578703704,4,21,0 -invesalius,-0.365553699037616,0.412659254993687,-0.658514878405484,https://salsa.debian.org/med-team/invesalius, https://github.com/invesalius/invesalius3.git,5269.8872106481485,20,33,0 -iodine,-0.272251022107355,-0.141218742848917,-0.33085250197786,https://git.toastfreeware.priv.at/debian/iodine.git/, https://github.com/yarrick/iodine.git,5593.126863425926,29,23,0 -ionit,-2.56769805015944,-0.998151936758215,-2.98444937682541,https://github.com/bdrung/ionit/tree/debian/unstable,https://github.com/bdrung/ionit,1307.9435069444444,2,5,0 -ioquake3,0.245752954100319,0.962699744636256,-0.0891553792241897,https://salsa.debian.org/games-team/ioquake3, https://github.com/ioquake/ioq3,5764.21568287037,42,58,0 -iortcw,-0.360913772214862,1.75407371724815,-0.899955248117116,https://salsa.debian.org/games-team/iortcw, https://github.com/iortcw/iortcw.git,3601.873576388889,5,20,0 -ip4r,-1.46327455556285,-0.46779578486403,-1.71199333845707,https://salsa.debian.org/postgresql/ip4r, https://github.com/RhodiumToad/ip4r.git,3711.2765972222223,1,6,0 -ipdb,-0.235014199235816,1.20234635062244,-0.566499343168247,https://salsa.debian.org/python-team/packages/ipdb, https://github.com/gotcha/ipdb,4846.997314814815,26,37,0 -ipheth,0.943090802667325,3.76382585272279,-0.13743487302787,https://github.com/pmcenery/ipheth-debian,https://github.com/pmcenery/ipheth-debian,4243.605381944444,0,4,0 -ipmctl,-1.80380628845051,-0.234444738513806,-2.06963966567453,https://github.com/kilobyte/ipmctl/tree/debian,https://github.com/kilobyte/ipmctl,1854.5950810185186,32,11,0 -ippusbxd,0.0111748533285641,2.66002786497703,-0.722026887945832,https://salsa.debian.org/printing-team/ippusbxd, https://github.com/OpenPrinting/ippusbxd,2327.077696759259,1,12,0 -iprange,0.648037588830882,3.95974953639138,-0.294516128273265,https://salsa.debian.org/debian/iprange, https://github.com/firehol/iprange.git,1873.7119328703704,0,7,0 -iprutils,-1.90302314060055,0.333968509203932,-2.44604336862968,https://salsa.debian.org/debian/iprutils, https://github.com/bjking1/iprutils,5119.04505787037,18,20,0 -iptux,-0.210941982489694,1.19286952955745,-0.685777144815563,https://salsa.debian.org/chinese-team/iptux, https://github.com/iptux-src/iptux,5548.864212962963,7,21,2 -iputils,2.06630957848551,2.71898078142615,1.59331072876177,https://salsa.debian.org/debian/iputils, https://github.com/iputils/iputils.git,5645.155682870371,103,41,0 -ipv6calc,0.543298857583,1.76348144592324,-0.00221906973733339,https://salsa.debian.org/debian/ipv6calc, https://github.com/pbiering/ipv6calc,5498.61324074074,2,10,5 -ipv6toolkit,0.155618378638467,2.6785840103418,-0.553670011158937,https://github.com/alvarezp/ipv6toolkit/tree/debian,https://github.com/alvarezp/ipv6toolkit,3020.5637962962965,1,17,0 -ipvsadm,1.61908553590761,2.78315854014052,0.905629891911793,https://github.com/formorer/pkg-ipvsadm,https://github.com/formorer/pkg-ipvsadm,3173.692650462963,1,2,0 -ipykernel,0.432571504464569,2.42138743486225,-0.0907405210212698,https://salsa.debian.org/python-team/packages/ipykernel, https://github.com/ipython/ipykernel.git,5666.264050925926,50,144,0 -ipython,0.761329928047858,1.1684254252827,0.443318812650296,https://salsa.debian.org/python-team/packages/ipython, https://github.com/ipython/ipython.git,5780.414803240741,231,812,0 -ipython-genutils,0.530177331159466,3.23732216372701,-0.0754853282825387,https://salsa.debian.org/python-team/packages/ipython-genutils, https://github.com/ipython/ipython_genutils,4920.52525462963,2,28,3 -ir.lv2,0.0482033804799324,1.80727862952251,-0.420434877989828,https://salsa.debian.org/multimedia-team/ir.lv2, https://github.com/tomszilagyi/ir.lv2.git,901.6371759259259,2,4,0 -iraf-sptable,-0.357289537612694,2.89104688412438,-1.14398316665318,https://salsa.debian.org/debian-astro-team/iraf-sptable, https://github.com/iraf-community/sptable,2001.9924189814815,2,4,0 -ircmarkers,-1.44359281417606,0.758311846290358,-1.91259895279885,https://github.com/df7cb/ircmarkers,https://github.com/df7cb/ircmarkers,5694.884652777778,1,3,0 -irker,-1.55783957974481,-0.496281369185576,-1.96446553077786,https://salsa.debian.org/python-team/packages/irker, https://gitlab.com/esr/irker.git,3952.2131018518517,14,23,0 -irssi,1.7592941850151,2.36258966284256,1.30521497990524,https://salsa.debian.org/rhonda/irssi, https://github.com/irssi/irssi.git,5749.014467592592,36,142,0 -irssi-plugin-xmpp,0.603569160068662,1.55579725815672,0.0980337917936148,https://salsa.debian.org/debian/irssi-plugin-xmpp, https://github.com/cdidier/irssi-xmpp,4266.862395833334,7,12,0 -irstlm,-0.569999834591859,2.5734688358658,-1.36212813878329,https://salsa.debian.org/science-team/irstlm, https://github.com/irstlm-team/irstlm.git,1268.8947337962964,1,9,0 -islamic-menus,-0.836040345722433,1.89276666455391,-1.52080141050059,https://salsa.debian.org/islamic-team/islamic-menus, https://github.com/ojuba-org/islamic-menus,1447.6479050925925,0,9,0 -ismrmrd,-0.421137503350785,0.87197185510192,-0.79291907700435,https://salsa.debian.org/med-team/ismrmrd, https://github.com/ismrmrd/ismrmrd.git,4121.918738425926,23,44,0 -iso-codes,0.0346353440669692,0.0655255276761535,0.0140224895247979,https://salsa.debian.org/debian/iso-codes, https://salsa.debian.org/iso-codes-team/iso-codes,5771.838854166666,209,46,0 -iso-flags-svg,1.04760743471767,4.84454262395884,0.0451502018135834,https://salsa.debian.org/cinnamon-team/iso-flags-svg, https://github.com/linuxmint/flags.git,563.1795833333333,0,2,0 -isodate,0.784410787167294,3.68595001694045,-0.0654948522770899,https://salsa.debian.org/python-team/packages/isodate, https://github.com/gweis/isodate,4815.188715277778,2,29,0 -isort,1.01133913475968,3.39883109938091,0.152870186103458,https://salsa.debian.org/python-team/packages/isort, https://github.com/timothycrosley/isort,3753.9250578703704,72,254,0 -ispell-lt,-0.323517661994141,-0.0990794107370836,-0.395388849737067,https://salsa.debian.org/debian/ispell-lt, https://github.com/ispell-lt/ispell-lt.git,5691.957118055556,0,11,0 -isrcsubmit,-0.0652487857983224,2.15673384117705,-0.609436100549815,https://salsa.debian.org/multimedia-team/isrcsubmit, https://github.com/JonnyJD/musicbrainz-isrcsubmit,4205.4764583333335,3,11,3 -itamae,-2.4298742882979,-0.139863998812457,-2.98002862830704,https://salsa.debian.org/ruby-team/itamae, https://github.com/itamae-kitchen/itamae,3570.7650925925927,12,71,0 -iverilog,0.428893521594545,1.29394584283642,-0.0384729203471916,https://salsa.debian.org/electronics-team/iverilog, https://github.com/steveicarus/iverilog,5784.215775462963,47,73,0 -ivtools,0.398801166895553,1.09231866511694,-0.0474693288687548,https://salsa.debian.org/debian/ivtools, https://github.com/vectaport/ivtools,4623.96693287037,2,10,0 -iw,0.931307095708094,2.28443283662736,0.298993295296065,https://salsa.debian.org/kernel-team/iw, https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git,5714.34181712963,150,3,0 -iwyu,0.293647013502257,1.77561586069386,-0.325605483422213,https://salsa.debian.org/pkg-llvm-team/iwyu, https://github.com/include-what-you-use/include-what-you-use,4692.870405092593,67,17,1 -jabberd2,-0.0340967947001949,0.912457651446875,-0.575441570052838,https://salsa.debian.org/xmpp-team/jabberd2, https://github.com/jabberd2/jabberd2,3913.918449074074,17,25,0 -jabref,0.0587466024486578,0.351648544816391,-0.106792030234282,https://salsa.debian.org/java-team/jabref, https://github.com/JabRef/jabref.git,3914.4709953703705,494,267,0 -jack-audio-connection-kit,0.670575673564546,1.18912514642088,0.335122338022462,https://salsa.debian.org/multimedia-team/jack-audio-connection-kit, https://github.com/jackaudio/jack1.git,5288.134444444445,9,36,0 -jack-midi-clock,0.311892005219808,2.95526744630425,-0.405657357283279,https://salsa.debian.org/multimedia-team/jack-midi-clock, https://github.com/x42/jack_midi_clock,4775.637094907407,0,4,0 -jackd2,1.93535784476822,3.05172484082871,1.24446685244072,https://salsa.debian.org/multimedia-team/jackd2, https://github.com/jackaudio/jack2.git,5783.187974537037,65,70,0 -jackson-core,0.769716649473881,3.89290775586173,-0.0559746496697867,https://salsa.debian.org/java-team/jackson-core, https://github.com/FasterXML/jackson-core,4373.97943287037,53,72,30 -jackson-dataformat-yaml,-0.305012260019323,2.80829889504518,-1.24553614944756,https://salsa.debian.org/java-team/jackson-dataformat-yaml, https://github.com/FasterXML/jackson-dataformat-yaml.git,2094.170972222222,1,22,0 -jag,0.0847246340649791,3.02010560893091,-0.753640065826268,https://salsa.debian.org/games-team/jag, https://gitlab.com/coringao/jag,1024.4477199074074,0,3,0 -jalv,0.824349083792725,3.37107551440949,-0.0899351142654888,https://salsa.debian.org/multimedia-team/jalv, https://gitlab.com/drobilla/jalv.git,4498.912719907407,6,4,0 -jansson,0.140702818261444,0.668384438014213,-0.00277996498275093,https://salsa.debian.org/debian/jansson, https://github.com/akheron/jansson.git,5159.4155902777775,29,84,0 -janus,-1.05337244986624,0.874433528925773,-1.67902934759249,https://salsa.debian.org/pkg-voip-team/janus, https://github.com/meetecho/janus-gateway,3591.8742708333334,192,158,0 -jaraco.itertools,-2.17707155845664,0.444418251427644,-2.90534259730026,https://salsa.debian.org/python-team/packages/jaraco.itertools, https://github.com/jaraco/jaraco.itertools.git,3229.339699074074,17,5,0 -java-atk-wrapper,0.561521276968394,1.24498345336031,0.204264214561703,https://salsa.debian.org/a11y-team/java-atk-wrapper, https://github.com/GNOME/java-atk-wrapper,5298.576481481481,11,11,0 -javaparser,0.543969630911005,3.85747124196409,-0.392411925360121,https://salsa.debian.org/java-team/javaparser, https://github.com/javaparser/javaparser.git,4427.078159722222,68,236,0 -jdim,-1.06254556293429,0.959946482851881,-1.47215937444498,https://salsa.debian.org/debian/jdim, https://github.com/JDimproved/JDim.git,5782.991446759259,2,15,0 -jemalloc,0.682407669367259,1.64473565781661,0.224104679356945,https://salsa.debian.org/debian/jemalloc, https://github.com/jemalloc/jemalloc,5237.929733796296,146,42,1 -jenkins-debian-glue,-0.965161404246595,1.48546073261439,-1.55782284279782,https://github.com/mika/jenkins-debian-glue,https://github.com/mika/jenkins-debian-glue,4282.449398148148,10,50,0 -jglobus,-0.601880292041699,1.32711245650901,-1.15166104136262,https://salsa.debian.org/ellert/jglobus, https://github.com/jglobus/JGlobus,4874.68375,3,36,0 -jhead,-0.104696216854107,0.0128556712069062,-0.161995278111666,https://salsa.debian.org/reichel/jhead, https://github.com/Matthias-Wandel/jhead,974.1013078703704,4,13,0 -jimfs,-0.383074555025862,1.37799350073055,-0.765782764482557,https://salsa.debian.org/java-team/jimfs, https://github.com/google/jimfs.git,3771.606712962963,24,17,0 -jimtcl,0.0276014570725816,0.470906450097132,-0.0432191952512908,https://salsa.debian.org/debian/jimtcl, https://github.com/msteveb/jimtcl.git,5640.229108796297,31,13,0 -jinja2-time,-0.469855593594599,1.15700255667956,-0.765624870746036,https://salsa.debian.org/python-team/packages/jinja2-time, https://github.com/hackebrot/jinja2-time,2112.113865740741,0,3,0 -jitterdebugger,-2.34850289021288,-0.153305583740891,-2.78597412958911,https://salsa.debian.org/debian/jitterdebugger, https://github.com/igaw/jitterdebugger.git,1214.2022916666667,8,3,0 -jitterentropy-rngd,-1.05689833744364,-0.269418208237385,-1.18678360666823,https://salsa.debian.org/debian/jitterentropy-rngd, https://github.com/smuellerDD/jitterentropy-rngd,2267.9794675925928,9,1,0 -jmxetric,-2.90173269580308,-0.736327467665169,-3.32435528351605,https://github.com/ganglia/jmxetric,https://github.com/ganglia/jmxetric,2292.7484027777778,0,9,0 -jool,-2.14357301313893,-0.0424378708533689,-2.61291193745228,https://github.com/NICMx/Jool,https://github.com/NICMx/Jool,4435.210405092593,8,57,3 -joptsimple,-0.255772200758675,1.10927309648234,-0.521059676282444,https://salsa.debian.org/java-team/joptsimple, https://github.com/jopt-simple/jopt-simple.git,3771.2237962962963,2,25,0 -jp2a,0.90449830665757,3.53924486148421,-0.035152028233776,https://salsa.debian.org/debian/jp2a, https://github.com/Talinx/jp2a,2190.7298032407407,3,4,0 -jpy,-0.233504770598713,1.55857120737112,-0.692158017596744,https://salsa.debian.org/python-team/packages/jpy, https://github.com/jpy-consortium/jpy,3656.2358564814813,16,28,3 -jpylyzer,-1.21847664304169,-0.429898584565786,-1.47171391073223,https://salsa.debian.org/python-team/packages/jpylyzer, https://github.com/openpreserve/jpylyzer.git,3586.5846064814814,2,28,0 -jq,0.907507756724108,2.07725813469889,0.337854602387109,https://salsa.debian.org/debian/jq, https://github.com/jqlang/jq,4164.99587962963,128,79,5 -jquery-i18n-properties,-0.842986287747477,1.00253012903002,-1.16109014727073,https://salsa.debian.org/js-team/jquery-i18n-properties/, https://github.com/jquery-i18n-properties/jquery-i18n-properties.git,2244.4631597222224,1,17,0 -jquery-minicolors,0.59706509988228,3.6140009204724,-0.292747445784508,https://salsa.debian.org/js-team/jquery-minicolors, https://github.com/claviska/jquery-minicolors,4034.234259259259,8,51,1 -jquery-tablesorter,0.780957035171974,3.78241785711794,-0.0251966700072976,https://salsa.debian.org/js-team/jquery-tablesorter, https://github.com/Mottie/tablesorter.git,4550.660960648148,28,67,0 -jruby-joni,-0.0743980965544175,1.63100768292646,-0.602777420889342,https://salsa.debian.org/java-team/jruby-joni, https://github.com/jruby/joni.git,5683.594571759259,3,29,0 -js-of-ocaml,-0.98829694323371,1.69983788725733,-1.76322785160844,https://salsa.debian.org/ocaml-team/js-of-ocaml, https://github.com/ocsigen/js_of_ocaml.git,5063.290347222222,71,115,0 -jsjac,-0.326591238398014,2.00496391218346,-1.15078662173429,https://salsa.debian.org/xmpp-team/jsjac, https://github.com/sstrigler/JSJaC.git,3682.6423958333335,1,21,0 -json-c,0.700023851880608,1.56841814860177,0.249756089878765,https://salsa.debian.org/debian/json-c, https://github.com/json-c/json-c,5592.294965277778,18,150,0 -json-glib,0.790090332693144,2.12521149400126,0.222475333177736,https://salsa.debian.org/gnome-team/json-glib, https://gitlab.gnome.org/GNOME/json-glib.git,5734.455486111111,90,124,0 -json-js,0.635854100922927,3.17069139656986,-0.086277690728619,https://salsa.debian.org/js-team/json-js, https://github.com/douglascrockford/JSON-js,4556.196423611111,1,4,0 -jsonlint,0.128379119258446,1.61363476419091,-0.161527963105581,https://salsa.debian.org/php-team/pear/jsonlint, https://github.com/Seldaek/jsonlint,4166.938888888889,11,28,0 -jsonpickle,-0.0589038511288834,1.65494774848196,-0.628847446436696,https://salsa.debian.org/python-team/packages/jsonpickle, https://github.com/jsonpickle/jsonpickle,5737.107546296296,18,67,1 -jsusfx,-0.481841545934975,1.46744712046148,-0.881581232912669,https://salsa.debian.org/multimedia-team/pd/jsusfx, https://github.com/asb2m10/jsusfx.git,2697.3649768518517,1,8,0 -jsxgraph,-0.803442260881298,0.493320688456796,-1.35621814804648,https://salsa.debian.org/georgesk/jsxgraph, https://github.com/jsxgraph/jsxgraph,5539.982337962963,12,60,4 -jts,-0.222108377482775,1.39404015676685,-0.500858953280863,https://salsa.debian.org/debian-gis-team/jts, https://github.com/locationtech/jts.git,5138.014918981481,54,13,0 -jumpnbump,0.147295536481519,0.782156067392592,-0.201723442416152,https://salsa.debian.org/games-team/jumpnbump, https://gitlab.com/LibreGames/jumpnbump,2024.9723263888889,4,8,0 -jupyter-client,0.473125849638323,2.6840214536575,-0.0943192886705109,https://salsa.debian.org/python-team/packages/jupyter-client, https://github.com/jupyter/jupyter_client,5666.10431712963,44,110,7 -jupyter-console,0.676556327932006,3.74644930593541,-0.15251507978975,https://salsa.debian.org/python-team/packages/jupyter-console, https://github.com/jupyter/jupyter_console,4679.652083333333,19,54,5 -jupyter-core,0.633180348693299,2.94422557445149,-0.0301160705213031,https://salsa.debian.org/python-team/packages/jupyter-core, https://github.com/jupyter/jupyter_core,3175.9166550925925,20,48,6 -jupyter-notebook,0.868524788116243,1.99524094622361,0.277946315894068,https://salsa.debian.org/python-team/packages/jupyter-notebook, https://github.com/jupyter/notebook.git,5779.28587962963,225,512,0 -jupyter-sphinx,-1.87611377864949,1.76672339106673,-2.88141549460941,https://salsa.debian.org/python-team/packages/jupyter-sphinx, https://github.com/jupyter/jupyter-sphinx.git,2558.9093171296295,11,25,0 -jupyter-sphinx-theme,-0.409104944658621,-0.0453166630361136,-0.489960530338634,https://salsa.debian.org/python-team/packages/jupyter-sphinx-theme, https://github.com/jupyter/jupyter-sphinx-theme,1834.3539467592593,2,32,0 -jwm,0.365548919088679,1.19996413376238,-0.115579756384329,https://salsa.debian.org/debian/jwm, https://github.com/joewing/jwm,5370.498564814815,13,37,2 -kactivitymanagerd,0.841632423238749,3.08429657061259,0.0951979877461172,https://salsa.debian.org/qt-kde-team/kde/kactivitymanagerd, https://invent.kde.org/plasma/kactivitymanagerd.git,4610.625347222222,3,90,0 -kafkacat,-0.424412698379665,1.19223533582362,-0.709409598211933,https://github.com/edenhill/kcat/tree/debian,https://github.com/edenhill/kcat,3514.9895486111113,24,19,1 -kajongg,0.544868149959051,2.4792730165985,-0.0672664134931703,https://salsa.debian.org/qt-kde-team/kde/kajongg, https://anongit.kde.org/kajongg.git,5482.003263888889,0,34,0 -kakoune,0.0719503484745991,2.88929409450919,-0.661851470002747,https://salsa.debian.org/debian/kakoune/, https://github.com/mawww/kakoune.git,4483.734849537037,77,350,0 -kalzium,0.89160273127726,2.19203671531169,0.274029730499704,https://salsa.debian.org/qt-kde-team/kde/kalzium, https://anongit.kde.org/kalzium.git,5785.293229166667,13,101,0 -kamcli,-4.77863888246194,-2.41825417083059,-5.41794032912643,https://salsa.debian.org/pkg-voip-team/kamcli/, https://github.com/kamailio/kamcli,3121.915613425926,1,5,0 -kamerka,0.874312432154536,3.7857646392802,-0.131221834186747,http://github.com/dos1/kamerka,http://github.com/dos1/kamerka,2873.9879282407405,7,12,1 -kapman,0.420958892144779,3.08534946270733,-0.131944032235111,https://salsa.debian.org/qt-kde-team/kde/kapman, https://anongit.kde.org/kapman.git,5786.5046875,5,58,0 -karlyriceditor,-0.114559294607774,2.74446814581886,-1.06888085948574,https://github.com/martin-steghoefer/debian-karlyriceditor,https://github.com/martin-steghoefer/debian-karlyriceditor,1746.032951388889,1,1,0 -katomic,0.173791223632268,1.13551481295441,-0.120683891910202,https://salsa.debian.org/qt-kde-team/kde/katomic, https://anongit.kde.org/katomic.git,5647.478541666666,2,47,0 -kblackbox,-0.0393616014217555,0.585464537764768,-0.159586099907693,https://salsa.debian.org/qt-kde-team/kde/kblackbox, https://anongit.kde.org/kblackbox.git,5762.384768518518,6,46,0 -kblocks,0.408211107312321,2.92038976647522,-0.136823506470622,https://salsa.debian.org/qt-kde-team/kde/kblocks, https://anongit.kde.org/kblocks.git,5777.214791666666,4,62,0 -kbounce,0.35798487815038,2.54052771157599,-0.131882260545633,https://salsa.debian.org/qt-kde-team/kde/kbounce, https://anongit.kde.org/kbounce.git,5648.439016203703,4,51,0 -kbreakout,0.523364828200842,2.48107497081913,-0.0633746417247703,https://salsa.debian.org/qt-kde-team/kde/kbreakout, https://anongit.kde.org/kbreakout.git,5776.761909722222,4,49,0 -kbtin,-0.288549712057774,1.24720454478505,-0.639846297022434,https://github.com/kilobyte/kbtin/tree/debian,https://github.com/kilobyte/kbtin,5761.034421296296,1,4,0 -kcemu,-1.54653182143857,-0.396554760130113,-1.84525690547919,https://github.com/glaubitz/kcemu-debian,https://github.com/glaubitz/kcemu-debian,4222.827384259259,2,2,0 -kchmviewer,0.93820662178197,2.37580504033689,0.261336739546184,https://salsa.debian.org/qt-kde-team/extras/kchmviewer, https://github.com/gyunaev/kchmviewer,2255.6306481481483,1,6,0 -kcm-fcitx5,-2.03824141746206,0.190061482311586,-2.47769717084343,https://salsa.debian.org/input-method-team/kcm-fcitx5, https://github.com/fcitx/fcitx5-configtool.git,4494.64150462963,8,8,0 -kde-cli-tools,1.33166602722054,3.68587148813877,0.398559651215963,https://salsa.debian.org/qt-kde-team/kde/kde-cli-tools, https://invent.kde.org/plasma/kde-cli-tools.git,5783.387523148148,11,139,0 -kde-config-systemd,0.759962900165511,3.93884947872597,-0.157727067888915,https://github.com/shsorbom/kcmsystemd-debian.git,https://github.com/shsorbom/kcmsystemd-debian.git,684.1522685185186,1,12,0 -kde-dev-utils,0.195417163315041,1.22145800670315,-0.135993735672287,https://salsa.debian.org/qt-kde-team/kde/kde-dev-utils, https://invent.kde.org/sdk/kde-dev-utils,5674.42125,0,30,0 -kde-gtk-config,0.401066936796499,2.00487998862495,-0.0367510985135288,https://salsa.debian.org/qt-kde-team/kde/kde-gtk-config, https://invent.kde.org/plasma/kde-gtk-config.git,4730.911550925926,12,61,0 -kdecoration,0.736347925354219,2.9165545865215,0.0638554170465388,https://salsa.debian.org/qt-kde-team/kde/kdecoration, https://invent.kde.org/plasma/kdecoration.git,3433.587488425926,1,40,0 -kdeedu-data,0.292274284811563,2.50333027446552,-0.151397696346942,https://salsa.debian.org/qt-kde-team/kde/kdeedu-data, https://invent.kde.org/education/kdeedu-data,3439.6598958333334,2,9,0 -kdegraphics-mobipocket,0.55881647932835,2.99528389890456,-0.0332305655358237,https://salsa.debian.org/qt-kde-team/kde/kdegraphics-mobipocket, https://invent.kde.org/graphics/kdegraphics-mobipocket,5487.785127314814,0,22,0 -kdegraphics-thumbnailers,0.395728950817062,2.81538483651842,-0.143229840730095,https://salsa.debian.org/qt-kde-team/kde/kdegraphics-thumbnailers, https://invent.kde.org/graphics/kdegraphics-thumbnailers,5411.185613425926,2,27,0 -kdepim-addons,0.363856661782553,1.99437640480855,-0.0523467660365563,https://salsa.debian.org/qt-kde-team/kde/kdepim-addons, https://invent.kde.org/pim/kdepim-addons,2937.368298611111,3,40,0 -kdepim-runtime,0.771843823689437,1.57647226943045,0.321026286041476,https://salsa.debian.org/qt-kde-team/kde/kdepim-runtime, https://invent.kde.org/pim/kdepim-runtime,5449.396319444444,14,224,0 -kdeplasma-addons,2.6480388182028,4.25375762821919,1.71429103059699,https://salsa.debian.org/qt-kde-team/kde/kdeplasma-addons, https://invent.kde.org/plasma/kdeplasma-addons.git,5787.703275462963,45,311,0 -kdesdk-kioslaves,0.687384456130528,3.47454244870733,-0.106455468585307,https://salsa.debian.org/qt-kde-team/kde/kdesdk-kioslaves, https://invent.kde.org/sdk/kdesdk-kioslaves,5778.544571759259,0,26,0 -kdesdk-thumbnailers,0.381403287711569,2.86953909315992,-0.160620453127885,https://salsa.debian.org/qt-kde-team/kde/kdesdk-thumbnailers, https://invent.kde.org/sdk/kdesdk-thumbnailers,4247.579594907407,0,13,0 -kdevelop,0.836335580646207,1.18903560059392,0.558573347456131,https://salsa.debian.org/qt-kde-team/kde/kdevelop, https://invent.kde.org/kdevelop/kdevelop.git,5786.496412037037,138,326,0 -kdiamond,0.410939055110765,3.03042985514231,-0.135616249159261,https://salsa.debian.org/qt-kde-team/kde/kdiamond, https://anongit.kde.org/kdiamond.git,5784.177824074074,3,49,0 -keepassxc,0.0775001359902233,0.766226275880649,-0.134443237606771,https://salsa.debian.org/debian/keepassxc, https://github.com/keepassxreboot/keepassxc.git,4876.4075,354,94,0 -keras,0.599945436863796,3.42323994413066,-0.32687543402159,https://salsa.debian.org/science-team/keras, https://github.com/keras-team/keras,3182.841226851852,1036,333,0 -keychain,1.09333931055728,2.27523860593191,0.436036226574602,https://salsa.debian.org/debian/keychain, https://github.com/funtoo/keychain,3125.510335648148,23,18,0 -keyrings.alt,0.695898248176847,2.43494736436868,0.0839750749574778,https://salsa.debian.org/python-team/packages/keyrings.alt, https://github.com/jaraco/keyrings.alt,2906.9172685185185,18,9,0 -kf5-kdepim-apps-libs,0.429665312188122,2.89357403337409,-0.0678658101056176,https://salsa.debian.org/qt-kde-team/kde/kdepim-apps-libs, https://invent.kde.org/pim/kdepim-apps-libs,1796.8098842592592,1,20,0 -kfourinline,0.406411805883285,2.97282532996993,-0.139301990644425,https://salsa.debian.org/qt-kde-team/kde/kfourinline, https://anongit.kde.org/kfourinline.git,5763.619097222222,4,46,0 -kgamma5,0.19063907793947,1.74928893609723,-0.0808636677847112,https://salsa.debian.org/qt-kde-team/kde/kgamma5, https://invent.kde.org/plasma/kgamma5.git,5781.53613425926,2,47,0 -kgoldrunner,1.20766559516652,4.46704668557977,0.133969326610865,https://salsa.debian.org/qt-kde-team/kde/kgoldrunner, https://anongit.kde.org/kgoldrunner.git,5648.478761574074,5,48,0 -khard,0.0842088928565309,2.53505362152663,-0.577783913713889,https://salsa.debian.org/python-team/packages/khard, https://github.com/lucc/khard,3364.343252314815,16,20,1 -khotkeys,1.31257996973927,3.83863248769179,0.369362853203845,https://salsa.debian.org/qt-kde-team/kde/khotkeys, https://invent.kde.org/plasma/khotkeys.git,5783.464513888889,1,94,0 -khronos-opencl-clhpp,0.688482001322418,3.39390300175028,-0.0690856925512116,https://salsa.debian.org/opencl-team/khronos-opencl-clhpp, https://github.com/KhronosGroup/OpenCL-CLHPP,2856.962511574074,37,22,0 -khronos-opencl-headers,0.0446421812888236,0.624329744253628,-0.13181183491432,https://salsa.debian.org/opencl-team/khronos-opencl-headers, https://github.com/KhronosGroup/OpenCL-Headers,3748.172939814815,39,24,0 -kigo,0.404145076794805,2.97119295511771,-0.137448383532025,https://salsa.debian.org/qt-kde-team/kde/kigo, https://anongit.kde.org/kigo.git,5618.402175925926,4,50,0 -killbots,0.409075383666369,2.99910195770109,-0.13794548165425,https://salsa.debian.org/qt-kde-team/kde/killbots, https://anongit.kde.org/killbots.git,5753.052546296296,3,41,0 -kim-api,-0.84238574718087,1.43936931025803,-1.29131340105252,https://salsa.debian.org/science-team/kim-api, https://github.com/openkim/kim-api,4210.4546527777775,1,26,1 -kindleclip,-0.897428336753415,0.95694298072959,-1.34493936657523,https://github.com/gwolf/kindleclip,https://github.com/gwolf/kindleclip,1841.0025925925927,0,1,0 -kinfocenter,0.641586107812461,2.27332695769744,0.0599240338285285,https://salsa.debian.org/qt-kde-team/kde/kinfocenter, https://invent.kde.org/plasma/kinfocenter.git,5783.387650462963,20,129,0 -king,-0.406165740995511,0.763204212274886,-0.700075074205343,https://salsa.debian.org/med-team/king, https://github.com/rlabduke/javadev.git,5017.593321759259,0,15,0 -kiriki,0.245785267365231,2.14068114525123,-0.149680525751714,https://salsa.debian.org/qt-kde-team/kde/kiriki, https://anongit.kde.org/kiriki.git,5766.687546296296,4,42,0 -kismet,1.93354168906184,2.95707792512029,1.27565983236249,https://github.com/andrikos/kismet-debian,https://github.com/andrikos/kismet-debian,1415.5860300925926,0,1,0 -kitchensink-clojure,-0.603912685759974,2.58491383360333,-1.56003564470341,https://salsa.debian.org/clojure-team/kitchensink-clojure, https://github.com/puppetlabs/clj-kitchensink.git,3697.849513888889,12,47,0 -kitinerary,0.730783792155907,3.36812484714472,0.00362223926196105,https://salsa.debian.org/qt-kde-team/kde/kitinerary, https://invent.kde.org/pim/kitinerary,2223.1792708333332,1,41,0 -kivy,0.133675532375421,1.46214452989306,-0.456955959504449,https://salsa.debian.org/python-team/packages/kivy, https://github.com/kivy/kivy,4786.864560185185,206,485,2 -kiwisolver,0.652096238308854,3.19874691913389,-0.0312231409796471,https://salsa.debian.org/python-team/packages/kiwisolver, https://github.com/nucleic/kiwi,3661.7752199074075,19,17,0 -kjots,1.01277446778246,3.83628719314318,0.0614439581237161,https://salsa.debian.org/qt-kde-team/extras/kjots, https://invent.kde.org/pim/kjots,5684.352233796296,3,61,0 -kjumpingcube,0.280818612381652,1.9462272843054,-0.136534483494732,https://salsa.debian.org/qt-kde-team/kde/kjumpingcube, https://anongit.kde.org/kjumpingcube.git,5646.509016203704,2,45,0 -klatexformula,-0.260216607100692,0.570546910004265,-0.533087067152199,https://github.com/TobiasWinchen/klatexformula_debian,https://github.com/TobiasWinchen/klatexformula_debian,3554.8463541666665,0,6,0 -klaus,-1.79637508963943,-1.14251823386389,-1.92444117218851,https://salsa.debian.org/jelmer/klaus, https://github.com/jonashaag/klaus,4576.8670717592595,13,28,0 -klickety,0.588752450671966,3.31347130309711,-0.0925845665349359,https://salsa.debian.org/qt-kde-team/kde/klickety, https://anongit.kde.org/klickety.git,5684.984756944445,2,37,0 -klines,0.948784765673059,3.81865517867983,0.0500985106198873,https://salsa.debian.org/qt-kde-team/kde/klines, https://anongit.kde.org/klines.git,5787.158391203704,4,46,0 -klystrack,-0.577519653167149,1.43344468736358,-1.09269072292416,https://salsa.debian.org/multimedia-team/klystrack, https://github.com/kometbomb/klystrack,3882.7988194444442,10,13,4 -kmahjongg,0.748411242519299,2.26377546141652,0.116350888668569,https://salsa.debian.org/qt-kde-team/kde/kmahjongg, https://anongit.kde.org/kmahjongg.git,5649.437037037037,5,55,0 -kmenuedit,1.45616636509176,3.51167764425868,0.542869287344571,https://salsa.debian.org/qt-kde-team/kde/kmenuedit, https://invent.kde.org/plasma/kmenuedit.git,5782.388993055555,7,65,0 -kmflcomp,0.238808206532626,3.15677749462872,-0.800769774858791,https://github.com/keymanapp/keyman/tree/master/linux/kmflcomp,https://github.com/keymanapp/keyman,3329.2593055555553,16,51,8 -kmines,0.325343900137423,1.77572605257805,-0.108315644852422,https://salsa.debian.org/qt-kde-team/kde/kmines, https://anongit.kde.org/kmines.git,5689.695833333333,7,52,0 -kmodpy,0.103061583299217,3.02134500352015,-0.817476379895481,https://github.com/cnanakos/kmodpy/tree/debian/debian,https://github.com/cnanakos/kmodpy,2086.959027777778,2,5,0 -knavalbattle,0.342282780529652,2.30725158327307,-0.129151944755021,https://salsa.debian.org/qt-kde-team/kde/knavalbattle, https://anongit.kde.org/knavalbattle.git,5722.456412037037,6,51,0 -knetwalk,2.51601122462774,5.82616099548312,1.2096912542411,https://salsa.debian.org/qt-kde-team/kde/knetwalk, https://anongit.kde.org/knetwalk.git,5646.509409722222,5,54,0 -knockd,3.53947787143712,6.45943486056754,2.16015145168608,https://salsa.debian.org/debian/knockd, https://github.com/jvinet/knock.git,3585.12005787037,3,18,0 -knowthelist,-0.592705519816779,1.05778457824536,-1.07494804228843,https://github.com/knowthelist/knowthelist,https://github.com/knowthelist/knowthelist,1682.080625,1,6,0 -knxd,-0.680568398353085,1.1892492423331,-1.15575302960075,https://github.com/knxd/knxd,https://github.com/knxd/knxd,3234.4639814814814,12,54,2 -kodi-pvr-dvbviewer,-0.261225505481806,1.73388352174729,-0.678503492892391,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-dvbviewer, https://github.com/kodi-pvr/pvr.dvbviewer.git,4026.1822916666665,9,44,0 -kodi-pvr-hdhomerun,0.566260134315537,3.97273055097904,-0.508973504123633,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-hdhomerun, https://github.com/kodi-pvr/pvr.hdhomerun.git,2925.247337962963,9,28,0 -kodi-pvr-iptvsimple,0.0810763451287061,2.1337559182885,-0.412242772110432,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-iptvsimple, https://github.com/kodi-pvr/pvr.iptvsimple.git,3805.758923611111,16,66,0 -kodi-pvr-njoy,-0.391946976625737,1.58828583512239,-0.794589893392134,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-njoy, https://github.com/kodi-pvr/pvr.njoy.git,4095.3650578703705,9,40,0 -kodi-pvr-vdr-vnsi,-0.27670881624424,1.16213179809073,-0.603691917778123,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-vdr-vnsi, https://github.com/kodi-pvr/pvr.vdr.vnsi.git,4099.290219907408,12,57,0 -kolf,1.7334912697968,5.27900041076803,0.469020022784898,https://salsa.debian.org/qt-kde-team/kde/kolf, https://anongit.kde.org/kolf.git,5649.4371875,4,55,0 -kollision,0.391592834526379,2.7609139597514,-0.136433707695465,https://salsa.debian.org/qt-kde-team/kde/kollision, https://anongit.kde.org/kollision.git,5784.516793981482,3,48,0 -kombu,0.35191766581425,1.42916559920809,-0.0557315990678068,https://salsa.debian.org/python-team/packages/kombu, https://github.com/celery/kombu,4921.720451388889,276,132,4 -konquest,0.326317066398306,1.81197806234747,-0.102082925614964,https://salsa.debian.org/qt-kde-team/kde/konquest, https://anongit.kde.org/konquest.git,5785.414224537037,4,49,0 -kopete,1.23223484570832,1.56734466966795,0.958630400216775,https://salsa.debian.org/qt-kde-team/kde/kopete, https://anongit.kde.org/kopete.git,5785.175335648149,13,186,0 -kpat,1.43853521029867,2.9317093868447,0.638451470065488,https://salsa.debian.org/qt-kde-team/kde/kpat, https://anongit.kde.org/kpat.git,5650.436851851852,9,77,0 -kpkpass,0.374929117236363,2.65719308494998,-0.0847242336633248,https://salsa.debian.org/qt-kde-team/kde/kpkpass, https://invent.kde.org/pim/kpkpass,2087.733865740741,1,13,0 -kraft,-0.394588203887087,1.04192321682085,-0.886784241235354,https://salsa.debian.org/qt-kde-team/extras/kraft, https://github.com/dragotin/kraft.git,3993.7869328703705,23,17,0 -kreversi,1.20312971680517,3.764512267209,0.237054001871053,https://salsa.debian.org/qt-kde-team/kde/kreversi, https://anongit.kde.org/kreversi.git,5649.437337962963,6,50,0 -kscreen,1.4806286380729,3.56676822665856,0.564212639299621,https://salsa.debian.org/qt-kde-team/kde/kscreen, https://invent.kde.org/plasma/kscreen.git,4047.6193055555555,15,94,0 -kscreenlocker,2.30382179435195,5.18535337790067,1.09894192618136,https://salsa.debian.org/qt-kde-team/kde/kscreenlocker, https://invent.kde.org/plasma/kscreenlocker.git,3544.0011805555555,20,84,0 -kshisen,0.782970512565365,2.88530359372269,0.0525227862891327,https://salsa.debian.org/qt-kde-team/kde/kshisen, https://anongit.kde.org/kshisen.git,5761.418414351851,2,45,0 -ksirk,0.274399754244065,2.10496204971219,-0.139782983415709,https://salsa.debian.org/qt-kde-team/kde/ksirk, https://anongit.kde.org/ksirk.git,5783.441793981481,4,69,0 -ksmtuned,0.646860672362004,3.79046478818789,-0.316952623223276,https://github.com/bzed/debian-ksmtuned,https://github.com/bzed/debian-ksmtuned,2027.7201157407408,1,1,0 -ksnakeduel,1.03354726745525,3.8440591888952,0.104940395060353,https://salsa.debian.org/qt-kde-team/kde/ksnakeduel, https://anongit.kde.org/ksnakeduel.git,5646.509988425926,3,49,0 -kspaceduel,0.523410503501968,2.95961983936187,-0.0894360899601055,https://salsa.debian.org/qt-kde-team/kde/kspaceduel, https://anongit.kde.org/kspaceduel.git,5761.418611111111,1,44,0 -ksquares,0.408081893016435,2.79343550382176,-0.139806416833368,https://salsa.debian.org/qt-kde-team/kde/ksquares, https://anongit.kde.org/ksquares.git,5776.21300925926,4,39,0 -ksshaskpass,3.01198340239337,6.24789407605566,1.69482047596824,https://salsa.debian.org/qt-kde-team/kde/ksshaskpass, https://invent.kde.org/plasma/ksshaskpass.git,3326.270625,4,30,0 -ksudoku,0.892649713565069,2.2440961808526,0.25549983968991,https://salsa.debian.org/qt-kde-team/kde/ksudoku, https://anongit.kde.org/ksudoku.git,5766.688773148148,2,74,0 -kthresher,-4.958210954192,-2.99433627197274,-5.44713855808826,https://salsa.debian.org/debian/kthresher, https://github.com/rackerlabs/kthresher,1564.7436342592594,5,6,1 -ktuberling,1.50126869470722,4.97048627946007,0.341467338628556,https://salsa.debian.org/qt-kde-team/kde/ktuberling, https://anongit.kde.org/ktuberling.git,5646.510243055555,6,58,0 -kubectx,-0.072520336816443,2.36123561832201,-0.74321242899393,https://salsa.debian.org/debian/kubectx, https://github.com/ahmetb/kubectx,2319.9031944444446,49,15,1 -kubrick,0.844269061069838,3.62087416609071,0.0174315107179846,https://salsa.debian.org/qt-kde-team/kde/kubrick, https://anongit.kde.org/kubrick.git,5773.892592592592,4,49,0 -kwallet-pam,0.511471172936921,2.30807540539047,-0.013907606913809,https://salsa.debian.org/qt-kde-team/kde/kwallet-pam, https://invent.kde.org/plasma/kwallet-pam.git,3618.9633680555557,2,35,0 -kwin,2.49683512943321,3.1966481254561,1.96290970847082,https://salsa.debian.org/qt-kde-team/kde/kwin, https://invent.kde.org/plasma/kwin.git,5787.691296296296,157,389,0 -kwstyle,-0.544368045908652,1.28865289872679,-0.997706727099012,https://salsa.debian.org/eikel/kwstyle, https://github.com/Kitware/KWStyle,2816.187662037037,4,44,0 -kxstitch,0.525879760088301,2.64224620026941,-0.475856583019576,https://salsa.debian.org/qt-kde-team/extras/kxstitch, https://invent.kde.org/graphics/kxstitch,4729.284652777777,2,16,0 -kylin-burner,0.589186392716584,3.70026389459128,-0.323169363713414,https://github.com/ukui/kylin-burner,https://github.com/ukui/kylin-burner,1294.0143055555557,2,9,0 -kylin-display-switch,-1.73669784855691,1.72525864535503,-2.55888479295058,https://github.com/ukui/kylin-display-switch,https://github.com/ukui/kylin-display-switch,1387.1396296296296,4,11,0 -lablgtk-extras,-0.875622819527657,2.0634481167041,-1.81863867107358,https://salsa.debian.org/ocaml-team/lablgtk-extras, https://github.com/zoggy/lablgtk-extras.git,3792.5139930555556,0,3,0 -lablgtk3,-0.551968323458823,1.02548296833125,-0.856650582909348,https://salsa.debian.org/ocaml-team/lablgtk3, https://github.com/garrigue/lablgtk.git,5750.371782407407,18,30,0 -labltk,-0.149699500232681,2.0785630826913,-0.594072233009189,https://salsa.debian.org/ocaml-team/labltk, https://github.com/garrigue/labltk.git,3339.163726851852,1,3,0 -labplot,-0.151283713204457,0.39075418142854,-0.415831440252938,https://salsa.debian.org/qt-kde-team/extras/labplot, https://invent.kde.org/education/labplot.git,5763.676643518518,12,52,0 -laby,1.66559486704987,5.31988652273022,0.363489103578681,https://salsa.debian.org/ocaml-team/laby, https://github.com/sgimenez/laby.git,2556.982488425926,11,12,0 -lastpass-cli,-0.0433153424555133,1.34166224648235,-0.586004167665418,https://salsa.debian.org/lamby/pkg-lastpass-cli, https://github.com/lastpass/lastpass-cli,3306.0089351851852,30,62,0 -latex-coffee-stains,-0.808406208185641,0.153961816122418,-0.967422887806145,https://salsa.debian.org/debian/latex-coffee-stains, https://github.com/Echsecutor/coffee,1954.8484027777777,1,7,0 -latexmk,2.31421691584301,4.88702496788656,1.18951476263909,https://github.com/debian-tex/latexmk,https://github.com/debian-tex/latexmk,1865.2669907407408,3,7,0 -latexml,0.54261846305742,2.96554000638401,-0.327187748398835,https://github.com/debian-tex/latexml,https://github.com/debian-tex/latexml,2055.920833333333,2,6,0 -lava-tool,-1.55531712907973,-0.409262776090778,-1.88250714100602,https://github.com/Linaro/pkg-lava-tool,https://github.com/Linaro/pkg-lava-tool,2892.9631481481483,0,21,0 -lavapdu,-1.36019013800191,0.657602704230426,-1.96606438025235,https://github.com/Linaro/pkg-lavapdu,https://github.com/Linaro/pkg-lavapdu,1898.0415972222222,9,22,0 -lazy-object-proxy,0.304361886266875,2.72331704069412,-0.170200544458025,https://salsa.debian.org/python-team/packages/lazy-object-proxy, https://github.com/ionelmc/python-lazy-object-proxy.git,3850.588252314815,8,10,0 -lazyarray,-1.69308762567003,1.50971549729651,-2.52626040435176,https://salsa.debian.org/science-team/lazyarray, https://github.com/NeuralEnsemble/lazyarray,3518.1808333333333,0,8,0 -lbzip2,0.455341312482129,1.92068726890908,-0.0826154573108765,https://github.com/kjn/lbzip2/tree/debian,https://github.com/kjn/lbzip2,2710.187037037037,0,3,0 -lcdf-typetools,0.58507577130595,1.66109971662088,0.0976153045151779,https://salsa.debian.org/fonts-team/lcdf-typetools, https://github.com/kohler/lcdf-typetools.git,5649.369733796297,4,5,0 -lcdproc,0.0416533252301885,0.598187026427743,-0.298289035087039,https://salsa.debian.org/debian/lcdproc, https://github.com/lcdproc/lcdproc,1977.3798148148148,39,20,0 -ldap-git-backup,-1.37378689802941,-0.356971386513325,-1.61718418357152,https://github.com/elmar/ldap-git-backup,https://github.com/elmar/ldap-git-backup,3900.949722222222,1,9,0 -ldap2dns,0.441066037920361,3.27303457513035,-0.818255810932132,https://salsa.debian.org/debian/ldap2dns, https://github.com/bklang/ldap2dns,1032.2710185185185,0,4,0 -ldapscripts,0.478946302626074,1.44486956614797,0.0155611926935095,https://github.com/gerasiov/ldapscripts,https://github.com/gerasiov/ldapscripts,4203.292164351852,3,5,0 -ldc,0.449994742034623,1.14627565787318,0.0523636210518291,https://salsa.debian.org/d-team/ldc, https://github.com/ldc-developers/ldc,5267.892326388889,145,503,17 -leaflet,0.235066081262458,1.5240758194322,-0.136157706337936,https://salsa.debian.org/js-team/leaflet, https://github.com/Leaflet/Leaflet,4848.929664351852,485,522,6 -leaflet-image,-3.01383828926066,-0.305655627112583,-3.69583702112544,https://salsa.debian.org/js-team/leaflet-image, https://github.com/mapbox/leaflet-image,1265.9471759259259,3,14,0 -leaflet-markercluster,-0.895652150494044,1.12585061383383,-1.52434956118809,https://salsa.debian.org/js-team/leaflet-markercluster, https://github.com/Leaflet/Leaflet.markercluster,3967.8092708333334,22,68,0 -ledger-autosync,-1.17929196110135,0.701069220772342,-1.60740830661068,https://salsa.debian.org/debian/ledger-autosync, https://gitlab.com/egh/ledger-autosync,3743.7800347222224,5,30,0 -ledger2beancount,-1.91392207571378,0.249499306425402,-2.34921511575316,https://salsa.debian.org/jelmer/ledger2beancount, https://github.com/beancount/ledger2beancount,2575.206886574074,7,3,2 -ledgersmb,-1.97689062412395,-1.2384100444554,-2.32818405996674,https://github.com/ledgersmb/pkg-ledgersmb,https://github.com/ledgersmb/pkg-ledgersmb,5388.1821643518515,1,9,0 -ledmon,-0.0267359745780104,1.69720993287525,-0.578723343507587,https://salsa.debian.org/debian/ledmon, https://github.com/intel/ledmon,4704.5067592592595,35,24,0 -legit,-1.3724471458847,-0.991411721847519,-1.47831608159445,https://salsa.debian.org/python-team/packages/legit, https://github.com/frostming/legit,4465.088402777777,8,56,0 -libaccounts-glib,1.85391171848089,5.88967068703673,0.564123596405919,https://salsa.debian.org/qt-kde-team/3rdparty/libaccounts-glib, https://gitlab.com/accounts-sso/libaccounts-glib.git,5306.098912037037,14,32,0 -libaccounts-qt,0.734985213038696,3.21869038212312,0.0319018640593609,https://salsa.debian.org/qt-kde-team/3rdparty/libaccounts-qt, https://gitlab.com/accounts-sso/libaccounts-qt.git,4531.174456018519,8,27,0 -libacme-poe-knee-perl,-1.84449687364852,-0.737744175866493,-2.06614662838924,https://salsa.debian.org/perl-team/modules/packages/libacme-poe-knee-perl, https://github.com/jib/acme-poe-knee.git,0.0,0,1,0 -libalien-sdl-perl,-0.0977796475509862,0.352980875093779,-0.196993100241036,https://salsa.debian.org/perl-team/modules/packages/libalien-sdl-perl, https://github.com/PerlGameDev/Alien-SDL.git,2024.7772222222222,0,15,0 -libambix,-0.289176138137127,1.59564396027712,-0.687016111902386,https://salsa.debian.org/multimedia-team/libambix, https://github.com/iem-projects/ambix.git,2332.8963194444445,2,15,0 -libapache-singleton-perl,-1.49187580345858,1.06305630921166,-2.24278252148668,https://salsa.debian.org/perl-team/modules/packages/libapache-singleton-perl, https://github.com/mschout/apache-singleton.git,2808.970277777778,2,1,0 -libapache2-mod-auth-openidc,0.233689192834307,2.15367312392255,-0.53433440558404,https://salsa.debian.org/debian/libapache2-mod-auth-openidc, https://github.com/zmartzone/mod_auth_openidc.git,3541.865763888889,12,50,0 -libapache2-mod-authnz-pam,-0.171493579444976,2.2098425672121,-0.807482786059824,https://salsa.debian.org/freeipa-team/mod-authnz-pam, https://github.com/adelton/mod_authnz_pam.git,3451.97412037037,6,1,0 -libapp-cpants-lint-perl,-0.210887319557571,3.00227103174808,-1.19316653911583,https://salsa.debian.org/perl-team/modules/packages/libapp-cpants-lint-perl, https://github.com/charsbar/App-CPANTS-Lint.git,177.50917824074074,0,3,0 -libapp-perlrdf-command-query-perl,-2.51957168210821,-0.172808532499257,-3.00600909784156,https://salsa.debian.org/perl-team/modules/packages/libapp-perlrdf-command-query-perl, https://github.com/tobyink/p5-app-perlrdf-command-query,786.4794675925926,0,1,0 -libappimage,-0.163205164932798,2.06577386190353,-0.665049391527397,https://salsa.debian.org/qt-kde-team/3rdparty/libappimage, https://github.com/AppImageCommunity/libappimage.git,1789.5842476851851,9,6,0 -libarchive-ar-perl,-0.71531738452492,1.42189925112464,-1.42620083593273,https://salsa.debian.org/perl-team/modules/packages/libarchive-ar-perl, https://github.com/jbazik/Archive-Ar.git,1734.3291435185185,1,5,0 -libaria,-0.428707675191208,2.53338676919594,-1.5521033494237,https://github.com/jksrecko/libaria,https://github.com/jksrecko/libaria,1255.0196875,1,2,0 -libarray-iterator-perl,-1.15205088514643,1.00621865951028,-1.58992109441508,https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl, https://github.com/perlancar/perl-Array-Iterator.git,4456.128819444444,1,16,0 -libassuan,0.463153723690461,1.55687719312107,0.0792778271469061,https://salsa.debian.org/debian/libassuan, https://dev.gnupg.org/source/libassuan.git,5699.291979166666,6,9,0 -libastro-fits-cfitsio-perl,-0.284600425980382,1.07282475745656,-0.745324073043926,https://salsa.debian.org/perl-team/modules/packages/libastro-fits-cfitsio-perl, https://github.com/pratzlaff/Astro-FITS-CFITSIO,41.81601851851852,1,3,0 -libatombus-perl,-2.91849755028402,-0.982392531095765,-3.31825175924226,https://salsa.debian.org/perl-team/modules/packages/libatombus-perl, https://github.com/ironcamel/AtomBus.git,574.4602777777778,0,2,0 -libattean-perl,-1.31432812587104,1.04915138867636,-1.76050239939074,https://salsa.debian.org/perl-team/modules/packages/libattean-perl, https://github.com/kasei/attean.git,3387.9902314814813,2,10,0 -libatteanx-compatibility-trine-perl,-5.22135593701404,-3.80318807546455,-5.48633171256616,https://salsa.debian.org/perl-team/modules/packages/libatteanx-compatibility-trine-perl, https://github.com/kjetilk/p5-atteanx-compatibility-trine.git,174.84822916666667,0,1,0 -libatteanx-endpoint-perl,-5.05245814008373,-2.96367698752262,-5.47981100244117,https://salsa.debian.org/perl-team/modules/packages/libatteanx-endpoint-perl, https://github.com/kasei/atteanx-endpoint.git,581.8788078703703,0,3,0 -libatteanx-store-sparql-perl,-3.65476325026021,-1.11409279227118,-4.30123236800764,https://salsa.debian.org/perl-team/modules/packages/libatteanx-store-sparql-perl, https://github.com/kjetilk/p5-atteanx-store-sparql.git,1578.1186458333334,1,3,0 -libauthen-captcha-perl,-0.818923462273046,0.262039817002478,-1.09025276036136,https://salsa.debian.org/perl-team/modules/packages/libauthen-captcha-perl, https://github.com/lkundrak/perl-Authen-Captcha.git,604.0063194444444,4,2,0 -libb-hooks-op-check-perl,0.626322505912957,3.42503431358663,-0.0183739613238044,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-op-check-perl, https://github.com/karenetheridge/B-Hooks-OP-Check,4225.852743055556,1,3,0 -libb-hooks-parser-perl,-1.17250550970678,-0.0976957026841385,-1.34187041612142,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-parser-perl, https://github.com/karenetheridge/B-Hooks-Parser.git,3844.972962962963,4,3,0 -libb-utils-perl,-0.223357706433193,1.28995519192297,-0.554196127235344,https://salsa.debian.org/perl-team/modules/packages/libb-utils-perl, https://github.com/jbenjore/b-utils.git,1697.3214351851852,0,9,0 -libb2,0.434492648437129,2.40595874241059,-0.0945466725319232,https://salsa.debian.org/debian/libb2, https://github.com/BLAKE2/libb2.git,2769.1435185185187,5,14,0 -libbackuppc-xs-perl,0.0682740706788018,4.01112170792808,-0.993297530938372,https://salsa.debian.org/debian/libbackuppc-xs-perl, https://github.com/backuppc/backuppc-xs.git,1496.3014004629629,2,5,0 -libbase58,-0.389939172071052,2.46800026126513,-1.14873224026754,https://salsa.debian.org/debian/libbase58, https://github.com/luke-jr/libbase58,2238.1648148148147,3,7,0 -libbde,0.371557995740405,2.35314653128062,-0.26791692513328,https://salsa.debian.org/pkg-security-team/libbde, https://github.com/libyal/libbde,2546.627939814815,2,1,0 -libberkeleydb-perl,0.0941918810204488,0.610418765724799,-0.0890236718572083,https://salsa.debian.org/md/libberkeleydb-perl, https://github.com/pmqs/BerkeleyDB.git,5644.912708333333,1,4,0 -libbio-alignio-stockholm-perl,-4.98359309327353,-2.63492488806894,-5.47134285585201,https://salsa.debian.org/med-team/libbio-alignio-stockholm-perl, https://github.com/bioperl/bio-alignio-stockholm.git,10.219930555555555,0,2,0 -libbio-cluster-perl,-0.799786679945149,1.44017702946909,-1.32146786939763,https://salsa.debian.org/med-team/libbio-cluster-perl, https://github.com/bioperl/bio-cluster.git,7.36181712962963,0,2,0 -libbio-db-embl-perl,-3.9031050099171,-1.61332024209617,-4.34259364321851,https://salsa.debian.org/med-team/libbio-db-embl-perl, https://github.com/bioperl/bio-db-embl.git,156.30994212962963,0,2,0 -libbioparser-dev,-1.08373202424909,1.81606023628075,-1.76182554973011,https://salsa.debian.org/med-team/libbioparser-dev, https://github.com/rvaser/bioparser,2526.044467592593,2,4,0 -libblockdev,0.398064848427432,1.47435226824187,0.0272422794856852,https://salsa.debian.org/utopia-team/libblockdev, https://github.com/storaged-project/libblockdev,3535.6746296296296,11,44,1 -libbot-training-perl,-3.27507453363212,-1.12810114994616,-3.74062506514963,https://salsa.debian.org/perl-team/modules/packages/libbot-training-perl, https://github.com/avar/bot-training.git,3166.8061805555553,0,2,0 -libbpp-core,-0.305508300184024,1.34277738657172,-0.926682080336262,https://salsa.debian.org/med-team/libbpp-core, https://github.com/BioPP/bpp-core,4797.182592592592,3,24,0 -libbpp-phyl,-0.690831866570964,0.510825623765991,-1.09879198049711,https://salsa.debian.org/med-team/libbpp-phyl, https://github.com/BioPP/bpp-phyl.git,5775.35337962963,2,40,0 -libbpp-phyl-omics,-0.359895885705015,2.06352724748729,-1.10739933873049,https://salsa.debian.org/med-team/libbpp-phyl-omics, https://github.com/BioPP/bpp-phyl-omics.git,4025.9415046296294,0,9,0 -libbpp-popgen,-0.52715335068207,1.12516828093041,-1.10423338211461,https://salsa.debian.org/med-team/libbpp-popgen, https://github.com/BioPP/bpp-popgen,5514.957303240741,1,13,0 -libbpp-qt,-0.0541983728834032,2.88651489322735,-1.0203907927126,https://salsa.debian.org/med-team/libbpp-qt, https://github.com/BioPP/bpp-qt,5024.875405092593,0,12,0 -libbpp-raa,-0.469533407646168,2.42360881452285,-1.43715046438339,https://salsa.debian.org/med-team/libbpp-raa, https://github.com/BioPP/bpp-raa,5066.236296296296,0,17,0 -libbpp-seq,-0.7192518957179,0.639487538052811,-1.12339073370082,https://salsa.debian.org/med-team/libbpp-seq, https://github.com/BioPP/bpp-seq,5747.750347222222,1,22,0 -libbpp-seq-omics,-0.456933536859396,1.1913544638617,-1.06020960411164,https://salsa.debian.org/med-team/libbpp-seq-omics, https://github.com/BioPP/bpp-seq-omics.git,4806.927708333334,0,14,0 -libbultitude-clojure,-1.47739279941611,1.11637729354484,-2.10734817800803,https://salsa.debian.org/clojure-team/libbultitude-clojure, https://github.com/TimoFreiberg/bultitude.git,2812.2660300925927,1,20,0 -libbusiness-edi-perl,-3.91445005775242,-1.66062729378522,-4.34443150895097,https://salsa.debian.org/perl-team/modules/packages/libbusiness-edi-perl, https://github.com/atz/Business-EDI.git,1031.8625925925926,0,2,0 -libbusiness-isbn-perl,0.445633593785377,2.26446843527189,-0.0741413599516852,https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl, https://github.com/briandfoy/business-isbn.git,5456.629849537037,2,8,0 -libbytesize,0.239837679686828,2.45429381468693,-0.193643235604176,https://salsa.debian.org/utopia-team/libbytesize, https://github.com/storaged-project/libbytesize,2946.148414351852,14,18,0 -libcaca,1.71582611475539,2.89520234793643,1.00943954206487,https://salsa.debian.org/multimedia-team/libcaca, https://github.com/cacalabs/libcaca.git,5032.472719907408,5,18,0 -libcache-historical-perl,-2.39546917813327,0.151997287990525,-2.98535466833354,https://salsa.debian.org/perl-team/modules/packages/libcache-historical-perl, https://github.com/mschilli/cache-historical-perl.git,1172.6421064814815,1,1,0 -libcache-memcached-fast-perl,0.499032957628515,3.91729136130268,-0.435081154087133,https://salsa.debian.org/perl-team/modules/packages/libcache-memcached-fast-perl, https://github.com/JRaspass/Cache-Memcached-Fast.git,5347.568032407407,1,11,0 -libcamera,-2.51670642731045,0.418497809427949,-3.25732553270818,https://salsa.debian.org/multimedia-team/libcamera, https://git.libcamera.org/libcamera/libcamera.git,1870.2762037037037,92,10,0 -libcap-ng,0.839670026529806,1.68148066895671,0.38961988470801,https://salsa.debian.org/debian/libcap-ng, https://github.com/stevegrubb/libcap-ng,2330.445636574074,16,5,0 -libcapi20-3,0.836881386149714,2.39310410592819,0.20317721975515,https://github.com/leggewie-DM/libcapi20,https://github.com/leggewie-DM/libcapi20,1469.2789236111112,0,1,0 -libcatalyst-authentication-credential-http-perl,-0.544586959051202,1.72372401732191,-0.984891698566424,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-authentication-credential-http-perl, https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,3862.908715277778,0,7,0 -libcatalyst-dispatchtype-regex-perl,-0.260617385620325,1.84559522516076,-0.690893343307126,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-dispatchtype-regex-perl, https://github.com/mvgrimes/catalyst-dispatch-regex.git,733.893287037037,0,2,0 -libcatalyst-model-dbic-schema-perl,0.0213319889022422,2.94093546704044,-0.716478592326738,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl, https://github.com/perl-catalyst/Catalyst-Model-DBIC-Schema,5560.308182870371,1,18,0 -libcatmandu-atom-perl,-2.04489225214707,-0.0901925189999215,-2.46895081507721,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-atom-perl, https://github.com/LibreCat/Catmandu-Atom.git,2313.0128472222223,0,6,0 -libcatmandu-filestore-perl,-4.67516034270954,-1.94167863581073,-5.40675422276224,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-filestore-perl, https://github.com/LibreCat/Catmandu-FileStore.git,1680.9195138888888,0,7,0 -libcatmandu-importer-getjson-perl,-1.1909213365812,1.10956530068731,-1.91384748855888,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-importer-getjson-perl, https://github.com/nichtich/Catmandu-Importer-getJSON.git,2053.850451388889,2,5,0 -libcatmandu-mab2-perl,-2.19951681724105,-0.597061273551498,-2.59576371835463,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-mab2-perl, https://github.com/jorol/Catmandu-MAB2.git,2364.960335648148,0,4,0 -libcatmandu-marc-perl,-1.43475360554894,0.171452316154227,-1.72515542651399,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-marc-perl, https://github.com/LibreCat/Catmandu-MARC.git,4085.058078703704,4,13,0 -libcatmandu-perl,-0.798052258453031,0.799830488289939,-1.20311402092756,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-perl, https://github.com/LibreCat/Catmandu.git,4871.935601851852,1,25,0 -libcatmandu-rdf-perl,-1.56740048472914,0.787312450154127,-2.11566994828594,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-rdf-perl, https://github.com/LibreCat/Catmandu-RDF.git,3436.103472222222,1,7,0 -libcatmandu-sru-perl,-1.63474446252057,0.78564739371543,-2.21316911400086,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-sru-perl, https://github.com/LibreCat/Catmandu-SRU.git,3182.483275462963,4,14,0 -libcatmandu-store-mongodb-perl,-2.1900265393602,0.0427518930586047,-2.61767130429254,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-store-mongodb-perl, https://github.com/LibreCat/Catmandu-Store-MongoDB.git,3318.004826388889,0,6,0 -libcatmandu-wikidata-perl,-1.87511712583925,0.710680555891489,-2.45456938930886,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-wikidata-perl, https://github.com/nichtich/Catmandu-Wikidata.git,3124.955462962963,0,3,0 -libcds,-5.04193868033675,-2.92091644361824,-5.47810809919715,https://salsa.debian.org/alteholz/libcds, https://github.com/khizmax/libcds,2721.1071759259257,3,23,1 -libcec,0.238272509353761,0.904107880102779,-0.0486730427124583,https://salsa.debian.org/debian/libcec, https://github.com/Pulse-Eight/libcec.git,3960.817928240741,30,52,0 -libcereal,-1.00948931819713,-0.435064898922173,-1.16539003296708,https://salsa.debian.org/med-team/libcereal, https://github.com/USCiLab/cereal,3631.1027546296295,36,60,3 -libcgi-application-dispatch-perl,0.204830766029697,4.19690787325887,-0.984702295312001,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-dispatch-perl, https://github.com/markstos/CGI--Application--Dispatch.git,1893.6213773148147,0,9,0 -libcgi-application-plugin-session-perl,-0.411967994731684,2.44107933184202,-1.16266299576573,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-plugin-session-perl, https://github.com/frioux/CGI-Application-Plugin-Session,1734.1852083333333,2,2,0 -libcgi-application-server-perl,-1.35036849249102,1.11634713627467,-2.06065945310525,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-server-perl, https://github.com/rjbs/cgi-application-server.git,2084.016111111111,0,3,0 -libcgi-expand-perl,-0.599511907686873,1.6030547825179,-1.08677298424467,https://salsa.debian.org/perl-team/modules/packages/libcgi-expand-perl, https://github.com/bowman/CGI-Expand.git,1724.5804629629629,2,5,0 -libcgi-session-expiresessions-perl,-2.14112586282376,-0.617520504117339,-2.47229079355589,https://salsa.debian.org/perl-team/modules/packages/libcgi-session-expiresessions-perl, https://github.com/ronsavage/CGI-Session-ExpireSessions,152.66833333333332,0,1,0 -libcgroup,0.890563346465203,1.74091885188584,0.369255314773436,https://salsa.debian.org/debian/libcgroup, https://github.com/libcgroup/libcgroup,5745.328993055556,43,20,2 -libchatbot-eliza-perl,-1.31449350426372,1.236256832299,-1.89655576545199,https://salsa.debian.org/perl-team/modules/packages/libchatbot-eliza-perl, https://github.com/ggruen/Chatbot-Eliza,2872.7296875,1,4,0 -libchi-driver-redis-perl,-1.05628319308502,1.25009921134522,-1.52730469888866,https://salsa.debian.org/perl-team/modules/packages/libchi-driver-redis-perl, https://github.com/rentrak/chi-driver-redis,2250.50630787037,1,6,0 -libchipcard,-0.313951628914917,0.0321689486475288,-0.481480199735988,https://salsa.debian.org/aqbanking-team/pkg-libchipcard, https://git.aquamaniac.de/git/libchipcard.git,5301.044236111111,4,8,0 -libcitygml,-1.08987563239087,0.0704593831664847,-1.42266032798209,https://salsa.debian.org/debian-gis-team/libcitygml, https://github.com/jklimke/libcitygml.git,4063.004247685185,3,34,0 -libclass-c3-adopt-next-perl,-0.163979536958511,2.01506094104541,-0.601255754329458,https://salsa.debian.org/perl-team/modules/packages/libclass-c3-adopt-next-perl, https://github.com/rafl/class-c3-adopt-next.git,539.1778587962963,0,4,0 -libclass-container-perl,-0.0506280246429037,1.66438436343495,-0.403669563546539,https://salsa.debian.org/perl-team/modules/packages/libclass-container-perl, https://github.com/kenahoo/Class-Container.git,1.6649189814814815,1,3,0 -libclass-insideout-perl,-0.678352344690154,1.04541323920504,-0.97115967310205,https://salsa.debian.org/perl-team/modules/packages/libclass-insideout-perl, https://github.com/dagolden/class-insideout.git,3195.8285300925927,0,3,0 -libclass-meta-perl,-2.15881558350204,0.14075896482123,-2.6165631942791,https://salsa.debian.org/perl-team/modules/packages/libclass-meta-perl, https://github.com/theory/class-meta.git,2689.2590856481484,0,3,0 -libclass-refresh-perl,-1.6945342202961,0.520783525916502,-2.14753434399534,https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl, https://github.com/doy/class-refresh.git,1057.1042708333334,0,3,0 -libcleri,-2.6428568290907,0.0499127530635172,-3.28649977004622,https://salsa.debian.org/siridb-team/libcleri, https://github.com/cesbit/libcleri.git,2711.969259259259,2,9,0 -libcompizconfig,2.48989398055848,6.25760772019022,1.09901050001581,https://salsa.debian.org/compiz-team/libcompizconfig, https://gitlab.com/compiz/libcompizconfig.git,5552.218460648148,4,16,0 -libconfig-auto-perl,0.233385477718996,2.06610472361022,-0.239618471601792,https://salsa.debian.org/perl-team/modules/packages/libconfig-auto-perl, https://github.com/jib/config-auto.git,2192.3712731481482,2,3,0 -libconfig-identity-perl,-1.129265412311,1.04574522231088,-1.56242377687895,https://salsa.debian.org/perl-team/modules/packages/libconfig-identity-perl, https://github.com/dagolden/Config-Identity.git,2902.57318287037,0,4,0 -libconvert-asn1-perl,0.419794898053812,1.94729964801752,-0.0317401556640202,https://salsa.debian.org/perl-team/modules/packages/libconvert-asn1-perl, https://github.com/gbarr/perl-Convert-ASN1.git,5538.404745370371,6,11,0 -libconvert-binhex-perl,0.529709039060214,2.61582830552676,-0.0231792705203415,https://salsa.debian.org/perl-team/modules/packages/libconvert-binhex-perl, https://github.com/stephenenelson/convert-binhex.git,816.5657407407407,0,2,0 -libcpan-distnameinfo-perl,0.252239952864869,2.02125361505163,-0.171465155423167,https://salsa.debian.org/perl-team/modules/packages/libcpan-distnameinfo-perl, https://github.com/gbarr/CPAN-DistnameInfo.git,2596.9826157407406,4,4,0 -libcrypt-cracklib-perl,-0.65435420358181,2.05698864183903,-1.41052925856148,https://salsa.debian.org/perl-team/modules/packages/libcrypt-cracklib-perl, https://github.com/dsully/perl-crypt-cracklib.git,1122.6671643518519,0,2,0 -libcrypt-dh-gmp-perl,-0.252110483547694,0.859231572492236,-0.460005687711896,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-gmp-perl, https://github.com/lestrrat/Crypt-DH-GMP.git,1507.2044791666667,0,3,0 -libcrypt-dh-perl,-0.350596725004508,1.42268759936621,-0.742243187014457,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-perl, https://github.com/wchristian/crypt-dh.git,6.734872685185185,0,3,0 -libcrypt-openssl-bignum-perl,0.573671133014678,2.81767307204475,-0.0231679045971852,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-bignum-perl, https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git,1031.4781134259258,1,6,0 -libcrypt-openssl-pkcs10-perl,-0.343109822890731,2.50779094362159,-1.11358892422623,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-pkcs10-perl, https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git,84.9646875,1,2,0 -libcrypt-openssl-rsa-perl,0.468502078925036,2.48091743646101,-0.0400198202668383,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-rsa-perl, https://github.com/toddr/Crypt-OpenSSL-RSA.git,4592.847384259259,12,12,0 -libcrypt-saltedhash-perl,-0.4905719307211,1.64024676105544,-0.934415329371285,https://salsa.debian.org/perl-team/modules/packages/libcrypt-saltedhash-perl, https://github.com/campus-explorer/crypt-saltedhash,137.03401620370371,2,4,0 -libcsfml,-0.667070174435817,0.577858977709228,-1.0144102488716,https://salsa.debian.org/games-team/libcsfml, https://github.com/SFML/CSFML.git,4518.65537037037,15,26,0 -libcss-tiny-perl,-0.218715773814563,2.05468986638088,-0.96146265117124,https://salsa.debian.org/perl-team/modules/packages/libcss-tiny-perl, https://github.com/chorny/CSS-Tiny.git,2896.0719791666666,1,2,0 -libcue,1.32805273658989,4.56460981557363,0.252853490660642,https://salsa.debian.org/debian/libcue, https://github.com/lipnitsk/libcue,5295.136643518518,10,5,0 -libcyaml,-3.78593878951197,-1.29285188544817,-4.32778424511207,https://salsa.debian.org/sudip/libcyaml, https://github.com/tlsa/libcyaml.git,2058.331886574074,4,8,0 -libcypher-parser,-0.512286836062366,1.70433584305484,-0.950571479404257,https://github.com/cleishm/libcypher-parser,https://github.com/cleishm/libcypher-parser,2052.113113425926,4,8,0 -libdancer-plugin-rest-perl,-1.33219354498241,1.34672558198526,-1.94826239209436,https://salsa.debian.org/perl-team/modules/packages/libdancer-plugin-rest-perl, https://github.com/perldancer/Dancer-Plugin-REST.git,1451.9472800925926,1,5,0 -libdata-alias-perl,0.13786050485189,2.14863540110046,-0.59774663848673,https://salsa.debian.org/perl-team/modules/packages/libdata-alias-perl, https://github.com/mvduin/perl-Data-Alias,610.4551041666666,0,2,0 -libdata-dumper-concise-perl,0.266376219738567,2.5519999594901,-0.214468320591165,https://salsa.debian.org/perl-team/modules/packages/libdata-dumper-concise-perl, https://github.com/p5sagit/Data-Dumper-Concise,2778.042824074074,1,3,0 -libdata-formvalidator-perl,-0.45258754497388,1.18338314982585,-0.804155609034666,https://salsa.debian.org/perl-team/modules/packages/libdata-formvalidator-perl, https://github.com/dnmfarrell/Data-FormValidator.git,2189.7575578703704,3,6,0 -libdata-hal-perl,-0.770858799752407,2.2387120211772,-1.72989030653014,https://salsa.debian.org/perl-team/modules/packages/libdata-hal-perl, https://github.com/sipwise/data-hal.git,3620.849722222222,0,13,0 -libdata-optlist-perl,0.475207897773845,2.78157274811564,-0.0271116591451956,https://salsa.debian.org/perl-team/modules/packages/libdata-optlist-perl, https://github.com/rjbs/Data-OptList.git,5253.301597222222,0,2,0 -libdata-phrasebook-perl,-2.01734551847377,0.505391897753403,-2.5982578959812,https://salsa.debian.org/perl-team/modules/packages/libdata-phrasebook-perl, https://github.com/barbie/data-phrasebook.git,3782.0208333333335,0,1,0 -libdatabase-dumptruck-perl,-2.63547120163211,-0.0532919359770311,-3.28003114864831,https://salsa.debian.org/perl-team/modules/packages/libdatabase-dumptruck-perl, https://github.com/lkundrak/perl-database-dumptruck.git,85.85665509259259,0,1,0 -libdatetime-format-mail-perl,0.384147121548033,2.86153098635143,-0.176516925774215,https://salsa.debian.org/perl-team/modules/packages/libdatetime-format-mail-perl, https://github.com/book/DateTime-Format-Mail.git,809.9546875,2,1,0 -libdbd-odbc-perl,-0.449258658863497,-0.364703919915002,-0.460569682754974,https://salsa.debian.org/perl-team/modules/packages/libdbd-odbc-perl, https://github.com/perl5-dbi/DBD-ODBC.git,4357.050034722222,1,12,0 -libdbd-sqlite2-perl,-0.224262645662366,0.859942918234476,-0.439189710062929,https://salsa.debian.org/perl-team/modules/packages/libdbd-sqlite2-perl, https://github.com/rurban/DBD-SQLite2,1683.3107175925925,3,5,0 -libdbix-abstract-perl,-0.766399669130522,0.986002005750937,-1.21681199680077,https://salsa.debian.org/perl-team/modules/packages/libdbix-abstract-perl, https://github.com/iarna/DBIx-Abstract.git,3028.229884259259,1,6,0 -libdbix-class-perl,0.577215499352654,1.69489941290488,0.0601666449235969,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-perl, https://github.com/Perl5/DBIx-Class.git,5209.720451388889,61,96,0 -libdbix-class-schema-loader-perl,0.89990218704414,3.27432627136939,-0.0171547790581848,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-schema-loader-perl, https://github.com/dbsrgits/dbix-class-schema-loader,5369.710428240741,13,29,0 -libdebian-copyright-perl,0.00360033974218436,1.98259658529217,-0.556601221378198,https://salsa.debian.org/perl-team/modules/packages/libdebian-copyright-perl, https://github.com/periapt/Debian-Copyright.git,467.6439236111111,0,1,0 -libdeflate,0.159594288490245,2.49779397201029,-0.279894853335666,https://salsa.debian.org/med-team/libdeflate, https://github.com/ebiggers/libdeflate.git,3254.7726851851853,29,5,0 -libdevel-bt-perl,-0.592688876556296,2.1164194626675,-1.63740000907631,https://salsa.debian.org/perl-team/modules/packages/libdevel-bt-perl, http://github.com/rafl/Devel-bt,563.5733796296296,0,1,0 -libdevel-cycle-perl,0.297571705512991,2.36286761372623,-0.168993723239249,https://salsa.debian.org/perl-team/modules/packages/libdevel-cycle-perl, https://github.com/lstein/Devel-Cycle.git,24.43947916666667,1,2,0 -libdevel-symdump-perl,0.199576191193946,1.34056313934649,-0.0953876401382176,https://salsa.debian.org/debian/libdevel-symdump-perl, https://github.com/andk/devel-symdump,2899.582337962963,0,6,0 -libdevice-cdio-perl,-1.37044892859906,-0.77266816598082,-1.56986386541455,https://salsa.debian.org/perl-team/modules/packages/libdevice-cdio-perl, https://github.com/rocky/Perl-Device-Cdio.git,3711.3743287037037,0,4,0 -libdirectory-scratch-perl,-0.357823412563771,3.29365450830587,-1.41078954620383,https://salsa.debian.org/perl-team/modules/packages/libdirectory-scratch-perl, https://github.com/bobtfish/directory-scratch.git,1951.3868981481482,1,5,0 -libdist-inkt-perl,-1.65279023959925,0.791052072723341,-2.14105439365199,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-perl, https://github.com/tobyink/p5-dist-inkt,2915.0334953703705,0,1,0 -libdist-inkt-role-test-perl,-1.59420052729208,1.67834253175514,-2.40986098895479,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-role-test-perl, https://github.com/tobyink/p5-dist-inkt-role-test,0.07394675925925925,0,1,0 -libdist-zilla-plugins-cjm-perl,-0.713512093421909,1.91378513486864,-1.4906069541154,https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-plugins-cjm-perl, https://github.com/madsen/dist-zilla-plugins-cjm,3005.914583333333,0,4,0 -libdivsufsort,0.380281967565474,3.16393071678085,-0.250352894348317,https://salsa.debian.org/med-team/libdivsufsort, https://github.com/y-256/libdivsufsort.git,2687.775405092593,0,6,0 -libdogleg,-0.266710118406638,1.72454983506092,-0.671141966061006,https://salsa.debian.org/science-team/libdogleg, https://github.com/dkogan/libdogleg.git,4490.860775462963,0,5,0 -libdumbnet,0.644763880424894,1.86458845362707,0.130309881524516,https://salsa.debian.org/debian/libdumbnet, https://github.com/ofalk/libdnet,3068.484803240741,6,20,0 -libeatmydata,0.37630008167934,1.13756083942558,0.0117248362272004,https://salsa.debian.org/debian/libeatmydata, https://github.com/stewartsmith/libeatmydata.git,5640.288402777778,11,12,0 -libebur128,0.40088008585891,2.50978233964462,-0.0483144637496186,https://salsa.debian.org/multimedia-team/libebur128, https://github.com/jiixyj/libebur128,3690.6439930555557,1,22,0 -libejml-java,-1.614551829387,1.09368603757853,-2.21089769246366,https://salsa.debian.org/java-team/libejml-java, https://github.com/lessthanoptimal/ejml,5141.135856481482,14,15,0 -libemail-mime-createhtml-perl,-0.598597254011203,0.939646451821147,-0.986646924334629,https://salsa.debian.org/perl-team/modules/packages/libemail-mime-createhtml-perl, https://github.com/vanstyn/Email-MIME-CreateHTML.git,1257.2075810185186,1,3,0 -libencode-perl,0.0933708638701565,1.25595256859913,-0.193781545898838,https://salsa.debian.org/perl-team/modules/packages/libencode-perl, https://github.com/dankogai/p5-encode.git,5752.78,4,51,0 -libend-perl,-1.69522310014399,0.28599806094986,-2.1369126329462,https://salsa.debian.org/perl-team/modules/packages/libend-perl, https://github.com/Abigail/end.git,519.9620023148149,0,1,0 -libeot,0.423161778651438,2.67505498459498,-0.0161024184366224,https://salsa.debian.org/fonts-team/libeot, https://github.com/umanwizard/libeot.git,3660.845810185185,1,5,0 -libepoxy,0.31005074551136,1.19263793455666,0.0363222284258477,https://salsa.debian.org/xorg-team/lib/libepoxy, https://github.com/anholt/libepoxy.git,3236.6618981481483,11,45,0 -liberasurecode,-0.483967518841599,1.19708723767758,-0.869480434759469,https://salsa.debian.org/openstack-team/libs/liberasurecode, https://github.com/openstack/liberasurecode.git,3370.5594560185186,7,23,0 -liberror-perl,1.25353236081262,3.33517180196268,0.439783519414469,https://salsa.debian.org/perl-team/modules/packages/liberror-perl, https://github.com/shlomif/perl-error.pm.git,4521.312569444444,0,3,0 -libesedb,-0.00385403035534723,1.3424306864521,-0.377785911088543,https://salsa.debian.org/pkg-security-team/libesedb, https://github.com/libyal/libesedb,2793.913912037037,0,1,0 -libesmtp,0.267762178156602,0.838808560887104,-0.0156401267251184,https://github.com/jbouse-debian/libesmtp,https://github.com/jbouse-debian/libesmtp,4730.760798611111,1,4,0 -libestr,0.258332628879804,1.27342555165452,0.0106705211624453,https://salsa.debian.org/debian/libestr, https://github.com/rsyslog/libestr.git,2916.183923611111,6,7,0 -libeval-closure-perl,0.372593106926558,2.60258253063066,-0.0711445028701896,https://salsa.debian.org/perl-team/modules/packages/libeval-closure-perl, https://github.com/doy/eval-closure.git,2047.9688310185186,1,4,0 -libevent,0.767458330101706,1.67437273850519,0.314106765989667,https://salsa.debian.org/debian/libevent, https://github.com/libevent/libevent,5769.201643518519,214,125,1 -libevt,0.323158064550001,2.93880386185079,-0.346454351849185,https://salsa.debian.org/pkg-security-team/libevt, https://github.com/libyal/libevt,2794.588125,1,2,0 -libevtx,0.467904020555896,3.39412035752315,-0.312819654242962,https://salsa.debian.org/pkg-security-team/libevtx, https://github.com/libyal/libevtx,2794.5568055555555,0,1,0 -libewf,0.365307443623008,1.66927475771815,-0.0534853824861015,https://salsa.debian.org/pkg-security-team/libewf, https://github.com/libyal/libewf-legacy.git,2892.993159722222,0,1,0 -libexadrums,-1.5757657499677,0.465583492343728,-2.04715858021389,https://github.com/SpintroniK/libeXaDrums/tree/debian,https://github.com/SpintroniK/libeXaDrums,2888.0486342592594,2,6,0 -libexif-gtk,0.689902820789787,2.40945855479862,0.0374998073843081,https://salsa.debian.org/debian-phototools-team/libexif-gtk, https://github.com/libexif/libexif-gtk.git,5131.870740740741,2,5,0 -libextractor,-0.181103209030868,0.0282538068709411,-0.291900026481894,https://git.progress-linux.org/users/daniel.baumann/debian/packages/libextractor, https://git.gnunet.org/libextractor.git,5775.1042824074075,0,13,0 -libextutils-cbuilder-perl,-0.503646513449252,1.03449994745768,-0.986378757811456,https://salsa.debian.org/perl-team/modules/packages/libextutils-cbuilder-perl, https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder.git,4657.334675925926,8,12,0 -libextutils-modulemaker-perl,-1.62871770525338,0.494975147829164,-2.0632435210871,https://salsa.debian.org/perl-team/modules/packages/libextutils-modulemaker-perl, https://github.com/jkeenan/extutils-modulemaker.git,3844.1565972222224,0,2,0 -libfann,-0.00213831459618332,0.879988747443919,-0.291835552265589,https://salsa.debian.org/science-team/libfann, https://github.com/libfann/fann,2643.8556828703704,4,34,0 -libfcgi,2.40257909492813,4.86016916774602,1.24157296748068,https://github.com/tehnick/libfcgi-debian,https://github.com/tehnick/libfcgi-debian,1176.160451388889,0,1,0 -libfile-mimeinfo-perl,1.31465824728545,3.14462338384238,0.477590629243755,https://salsa.debian.org/perl-team/modules/packages/libfile-mimeinfo-perl, https://github.com/mbeijen/File-MimeInfo.git,3834.7099189814817,10,12,0 -libfile-modified-perl,-0.14543119621438,1.40115857614676,-0.504112448898396,https://salsa.debian.org/perl-team/modules/packages/libfile-modified-perl, https://github.com/neilb/File-Modified,2145.0378472222224,1,2,0 -libfile-save-home-perl,-1.80078184282679,0.360448766779334,-2.23762980034239,https://salsa.debian.org/perl-team/modules/packages/libfile-save-home-perl, https://github.com/jkeenan/file-save-home,1776.9554861111112,0,2,0 -libfile-touch-perl,0.0982847029607248,1.83362628207572,-0.256095919435532,https://salsa.debian.org/perl-team/modules/packages/libfile-touch-perl, https://github.com/neilb/File-Touch,4116.4970486111115,1,3,0 -libfile-write-rotate-perl,-1.02965565727428,1.34590846292153,-1.50055666713275,https://salsa.debian.org/perl-team/modules/packages/libfile-write-rotate-perl, https://github.com/sharyanto/perl-File-Write-Rotate.git,3146.811388888889,0,17,0 -libfilehandle-unget-perl,0.00638238846179609,1.59403727039346,-0.275660120132887,https://salsa.debian.org/perl-team/modules/packages/libfilehandle-unget-perl, https://github.com/coppit/filehandle-unget.git,3647.0964930555556,0,3,0 -libfilesys-notify-simple-perl,0.192457779636544,2.72358801313718,-0.246444055582868,https://salsa.debian.org/perl-team/modules/packages/libfilesys-notify-simple-perl, https://github.com/miyagawa/Filesys-Notify-Simple.git,4730.416481481481,0,13,0 -libfilter-perl,-0.255535639743574,0.0318054425186413,-0.307743574225788,https://salsa.debian.org/debian/libfilter-perl, https://github.com/rurban/Filter,4868.305486111111,5,12,0 -libfilter-template-perl,-1.0581574356645,1.19033145952756,-1.57732486605528,https://salsa.debian.org/perl-team/modules/packages/libfilter-template-perl, https://github.com/rcaputo/filter-template,1475.562013888889,0,1,0 -libfixposix,-0.420611457701383,2.08913962281545,-0.980646791686086,https://salsa.debian.org/common-lisp-team/libfixposix, https://github.com/sionescu/libfixposix.git,4611.074537037037,9,4,0 -libfizmo,0.627328452133396,4.56921020590766,-0.487828541567491,https://github.com/chrender/libfizmo,https://github.com/chrender/libfizmo,4850.527395833334,1,7,0 -libfprint,0.452730586786889,1.38619198447613,-0.0092079805093638,https://salsa.debian.org/debian/libfprint, https://gitlab.freedesktop.org/libfprint/libfprint,5757.163287037037,55,37,0 -libfsapfs,0.437495179302885,3.34854687751725,-0.332201760322797,https://salsa.debian.org/pkg-security-team/libfsapfs, https://github.com/libyal/libfsapfs,1901.9622916666667,0,1,0 -libfsntfs,0.331790789788397,2.82328509978561,-0.275189207603366,https://salsa.debian.org/pkg-security-team/libfsntfs, https://github.com/libyal/libfsntfs.git,3331.7044212962965,0,1,0 -libfte,-1.92682557271572,0.482897517427581,-2.55573996881726,https://github.com/kpdyer/libfte/tree/debian/unstable,https://github.com/kpdyer/libfte,519.2035763888889,0,6,1 -libfurl-perl,-0.0521562012113455,2.26786469649234,-0.682608363282686,https://salsa.debian.org/perl-team/modules/packages/libfurl-perl, https://github.com/tokuhirom/Furl.git,4162.7404166666665,2,34,0 -libfvde,0.956903500165177,4.51034102255231,-0.136541327675116,https://salsa.debian.org/pkg-security-team/libfvde, https://github.com/libyal/libfvde.git,3327.7584953703704,0,1,0 -libfwnt,0.467849319478135,3.45031754421071,-0.315591020305446,https://salsa.debian.org/pkg-security-team/libfwnt, https://github.com/libyal/libfwnt,3707.8170833333334,2,1,0 -libfwsi,0.476745135518984,3.28246115681856,-0.324451907406893,https://salsa.debian.org/pkg-security-team/libfwsi, https://github.com/libyal/libfwsi.git,3356.517939814815,0,1,0 -libgclib,-1.2540063751135,1.23935064340759,-1.79397930397421,https://salsa.debian.org/med-team/libgclib, https://github.com/gpertea/gclib,2782.2130555555555,2,2,0 -libgda5,2.11892244885149,4.35724287209614,1.0509095891917,https://salsa.debian.org/gnome-team/libgda5, https://gitlab.gnome.org/GNOME/libgda,5761.463263888889,81,119,0 -libgdal-grass,0.178547049625118,2.12292907891647,-0.469838334134553,https://salsa.debian.org/debian-gis-team/gdal-grass, https://github.com/OSGeo/gdal-grass.git,695.4440625,6,4,0 -libgdata,1.03482900544494,3.21426318372362,0.238376095309633,https://salsa.debian.org/gnome-team/libgdata, https://gitlab.gnome.org/GNOME/libgdata.git,5321.563194444445,134,163,0 -libgeo-google-mapobject-perl,-0.873636438099119,1.4566987693908,-1.31398698076915,https://salsa.debian.org/perl-team/modules/packages/libgeo-google-mapobject-perl, https://github.com/periapt/geo-google-mapobject.git,50.641099537037036,0,1,0 -libgeo-ip-perl,-0.133611196143978,0.522308388905415,-0.297696092577808,https://salsa.debian.org/perl-team/modules/packages/libgeo-ip-perl, https://github.com/maxmind/geoip-api-perl.git,4739.876516203703,5,12,0 -libgeotiff,0.396940251688871,2.10765394818867,-0.0842600623047565,https://salsa.debian.org/debian-gis-team/libgeotiff, https://github.com/OSGeo/libgeotiff.git,5753.8535763888885,6,17,0 -libgfshare,-0.500459308498413,0.986953722589262,-0.975447738409632,https://salsa.debian.org/debian/libgfshare, https://git.gitano.org.uk/libgfshare.git,2020.8313310185185,1,2,0 -libgit-pureperl-perl,-0.927053139470002,0.744963626975721,-1.39019653031615,https://salsa.debian.org/perl-team/modules/packages/libgit-pureperl-perl, https://github.com/broquaint/git-pureperl.git,2866.3317824074074,3,22,0 -libgit2,0.742684346702617,1.48996278809533,0.311843826472492,https://salsa.debian.org/debian/libgit2, https://github.com/libgit2/libgit2.git,5520.89537037037,104,508,0 -libgit2-glib,0.141283381732853,0.698857686010301,-0.0253117591925196,https://salsa.debian.org/gnome-team/libgit2-glib, https://gitlab.gnome.org/GNOME/libgit2-glib.git,4410.600706018518,12,44,0 -libglvnd,0.374276465436635,1.22328243606087,0.0505144955337469,https://salsa.debian.org/xorg-team/lib/libglvnd.git, https://github.com/NVIDIA/libglvnd.git,3760.105162037037,9,47,0 -libgnome-games-support,0.399505585972284,2.60182854787726,-0.0413246856618092,https://salsa.debian.org/gnome-team/libgnome-games-support, https://gitlab.gnome.org/GNOME/libgnome-games-support.git,3197.712384259259,63,46,0 -libgnomekbd,2.5710619524574,5.22411066107463,1.3638818849288,https://salsa.debian.org/gnome-team/libgnomekbd, https://gitlab.gnome.org/GNOME/libgnomekbd.git,5733.097025462963,92,199,0 -libgnupg-interface-perl,0.161583038884558,0.739184756002484,-0.110459047620561,https://salsa.debian.org/perl-team/modules/packages/libgnupg-interface-perl, https://github.com/bestpractical/gnupg-interface.git,5505.203530092593,4,10,0 -libgom,0.42467548434904,2.01982609073197,0.00172919508071226,https://salsa.debian.org/gnome-team/libgom, https://gitlab.gnome.org/GNOME/gom.git,4156.085231481481,23,27,0 -libgpg-error,0.143707314563631,0.339658939931245,0.04736579961251,https://salsa.debian.org/debian/libgpg-error, https://dev.gnupg.org/source/libgpg-error.git,5604.669930555556,37,12,0 -libgpiod,-0.792107911247677,0.0875204939539131,-1.05097376910654,https://salsa.debian.org/debian/libgpiod, https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git,2514.2013541666665,33,4,0 -libgraph-d3-perl,-2.01038793657804,0.581517663859652,-2.59231812459341,https://salsa.debian.org/perl-team/modules/packages/libgraph-d3-perl, https://github.com/shoheik/Graph-D3.git,1331.9675925925926,1,3,0 -libgraph-readwrite-perl,0.00139282956585173,2.59587383646985,-0.736153594207741,https://salsa.debian.org/perl-team/modules/packages/libgraph-readwrite-perl, https://github.com/neilb/Graph-ReadWrite.git,2428.8532986111113,0,5,0 -libgraph-writer-dsm-perl,-2.83596805730607,-0.700752628701255,-3.30757825947649,https://salsa.debian.org/perl-team/modules/packages/libgraph-writer-dsm-perl, https://github.com/joenio/p5-graph-writer-dsm.git,1743.0827777777777,0,2,0 -libgraphics-colornames-www-perl,-0.88460985143656,1.11849009005437,-1.36747130387901,https://salsa.debian.org/perl-team/modules/packages/libgraphics-colornames-www-perl, https://github.com/cfaerber/Graphics-ColorNames-WWW,3881.265960648148,0,3,0 -libgraphviz-perl,-0.0292832904495931,0.874891106216712,-0.213177080658366,https://salsa.debian.org/perl-team/modules/packages/libgraphviz-perl, https://github.com/ronsavage/GraphViz.git,4149.564768518519,0,8,0 -libgroove,-0.571777135741541,0.938666961634202,-0.96571380352992,https://salsa.debian.org/multimedia-team/libgroove, https://github.com/andrewrk/libgroove,3739.9100810185187,3,10,1 -libgsf,0.380029387822806,1.07024076830425,0.0808530228892369,https://salsa.debian.org/debian/libgsf, https://gitlab.gnome.org/GNOME/libgsf,5746.944351851852,72,86,0 -libgtextutils,0.18107998983877,2.31422265375572,-0.633302611667991,https://salsa.debian.org/med-team/libgtextutils, https://github.com/agordon/libgtextutils.git,1379.9043171296296,1,2,0 -libgtop2,0.466927505459337,0.871253678566551,0.227227001284839,https://salsa.debian.org/gnome-team/libgtop, https://gitlab.gnome.org/GNOME/libgtop.git,5734.80556712963,84,100,0 -libgudev,1.55500468907486,3.92032035960677,0.578424223205279,https://salsa.debian.org/gnome-team/libgudev, https://gitlab.gnome.org/GNOME/libgudev,3057.7906828703703,6,9,0 -libgweather,2.30407811946791,4.72748297071774,1.19715735731444,https://salsa.debian.org/gnome-team/libgweather, https://gitlab.gnome.org/GNOME/libgweather.git,5779.368923611111,272,341,0 -libgwenhywfar,0.249827833227156,0.933202867351392,-0.0464898413785602,https://salsa.debian.org/aqbanking-team/pkg-libgwenhywfar, https://git.aquamaniac.de/git/gwenhywfar.git,5750.2394675925925,12,11,0 -libgxps,0.321013864676685,1.38185393569223,0.0138318722682625,https://salsa.debian.org/gnome-team/libgxps, https://gitlab.gnome.org/GNOME/libgxps.git,4834.057361111111,14,21,0 -libgzstream,-0.460427174775033,1.0639003315321,-0.728042296265996,https://salsa.debian.org/med-team/libgzstream, https://github.com/kanedo/gzstream.git,1271.815011574074,0,2,0 -libhdf4,0.748239383063639,1.34197987839209,0.370485811228284,https://salsa.debian.org/debian-gis-team/hdf4, https://github.com/HDFGroup/hdf4.git,5770.081041666666,9,27,0 -libheif,0.775613399528957,3.75621067137824,0.0328408591685893,https://salsa.debian.org/multimedia-team/libheif, https://github.com/strukturag/libheif.git,2185.1827314814814,30,67,0 -libhinawa,-1.12578329016442,1.2849883243996,-1.64269134473912,https://salsa.debian.org/debian/libhinawa/, https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git,3345.5964583333334,2,10,0 -libhpptools,-2.87665838630104,-0.677760524729012,-3.31950647836083,https://salsa.debian.org/med-team/libhpptools, https://github.com/mateidavid/hpptools.git,498.7340625,0,2,0 -libhtml-clean-perl,-0.102478302417404,1.25521046434256,-0.471169751009437,https://salsa.debian.org/perl-team/modules/packages/libhtml-clean-perl, https://github.com/poizon/HTML-Clean.git,1155.8983796296295,1,3,0 -libhtml-embedded-turtle-perl,-2.17541433283968,0.112298262489958,-2.61526788273261,https://salsa.debian.org/perl-team/modules/packages/libhtml-embedded-turtle-perl, https://github.com/tobyink/p5-html-embedded-turtle,1183.7536805555555,0,1,0 -libhtml-formhandler-model-dbic-perl,-1.4203781466224,0.792742287387889,-1.85958552896419,https://salsa.debian.org/perl-team/modules/packages/libhtml-formhandler-model-dbic-perl, http://github.com/gshank/html-formhandler-model-dbic,1856.354710648148,2,11,0 -libhtml-html5-entities-perl,-0.393461804149147,1.02420811720216,-0.653725064658302,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-entities-perl, https://github.com/tobyink/p5-html-html5-entities.git,1072.6158333333333,0,1,0 -libhtml-html5-parser-perl,0.813759283796088,4.38318191495781,-0.351559014318549,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-parser-perl, https://github.com/tobyink/p5-html-html5-parser,4302.972141203703,1,7,0 -libhtml-stripscripts-perl,-0.360680107455353,1.79508020243341,-0.787087963735414,https://salsa.debian.org/perl-team/modules/packages/libhtml-stripscripts-perl, https://github.com/clintongormley/perl-html-stripscripts.git,634.9694444444444,1,1,0 -libhtml-template-perl,0.262399831160294,1.27876100434538,-0.0168521747450782,https://salsa.debian.org/perl-team/modules/packages/libhtml-template-perl, https://github.com/mpeters/html-template.git,2360.5546296296297,1,10,0 -libhtml-tiny-perl,-0.274204964539277,2.11584952732761,-0.803423421637951,https://salsa.debian.org/perl-team/modules/packages/libhtml-tiny-perl, https://github.com/ap/HTML-Tiny.git,5143.924953703704,0,2,0 -libhtp,0.266072693967969,2.57287542273396,-0.563805921662291,https://salsa.debian.org/pkg-suricata-team/pkg-libhtp, https://github.com/OISF/libhtp,5122.073622685185,15,26,2 -libhttp-message-perl,1.22405742344076,4.08227207317498,0.277166760595612,https://salsa.debian.org/perl-team/modules/packages/libhttp-message-perl, https://github.com/libwww-perl/HTTP-Message.git,5655.126851851852,76,18,0 -libhttp-proxy-perl,-0.0949217120593665,1.2455203169444,-0.635012392432945,https://salsa.debian.org/perl-team/modules/packages/libhttp-proxy-perl, https://github.com/book/HTTP-Proxy.git,4041.041539351852,7,1,0 -libhttp-server-simple-perl,0.823119522613044,2.85274649929505,0.0853932498155173,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-perl, https://github.com/bestpractical/http-server-simple,2910.7674074074075,4,11,0 -libhttp-server-simple-psgi-perl,-0.197712609482771,1.91803650261317,-0.628530926125277,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-psgi-perl, https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git,1409.5210763888888,0,2,0 -libhugetlbfs,-0.658388726093722,1.40818106083284,-1.17912709896999,https://github.com/punitagrawal/libhugetlbfs.git,https://github.com/punitagrawal/libhugetlbfs.git,2039.1172800925926,1,1,0 -libical3,0.617622962032282,2.0765416434888,0.10158973905849,https://salsa.debian.org/debian/libical3, https://github.com/libical/libical,3453.073877314815,14,46,3 -libics,-1.54875714770234,-0.797716011379056,-1.72373430156596,https://salsa.debian.org/med-team/libics, https://github.com/svi-opensource/libics,4511.101527777778,4,15,0 -libidn2,0.4464065554396,1.38883307789341,0.0869765930908833,https://salsa.debian.org/debian/libidn2, https://gitlab.com/libidn/libidn2,4708.252766203704,3,10,0 -libidna-punycode-perl,0.0249334358955235,3.97227604118717,-1.06592890954293,https://salsa.debian.org/perl-team/modules/packages/libidna-punycode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.6395949074076,6,7,0 -libiio,-0.142427274524689,1.27258840139096,-0.575053213487526,https://salsa.debian.org/debian/libiio, https://github.com/analogdevicesinc/libiio.git,3584.8073032407406,30,77,0 -libiksemel,1.40567067167507,3.301003501109,0.531380273002264,https://salsa.debian.org/debian/libiksemel, https://github.com/meduketto/iksemel,2285.3264351851853,0,3,0 -libimage-exif-perl,-0.356621075413228,0.802761541852296,-0.610345556971281,https://salsa.debian.org/perl-team/modules/packages/libimage-exif-perl, https://github.com/arc/p5-image-exif.git,101.2955787037037,2,2,0 -libimage-metadata-jpeg-perl,0.178247493087967,2.80157895707243,-0.571723996659595,https://salsa.debian.org/perl-team/modules/packages/libimage-metadata-jpeg-perl, https://github.com/rjbs/Image-MetaData-JPEG.git,1915.8586921296296,1,3,0 -libimage-size-perl,0.272891509746704,1.59419369349031,-0.145996324790789,https://salsa.debian.org/perl-team/modules/packages/libimage-size-perl, https://github.com/rjray/image-size.git,4527.537858796296,0,12,0 -libimagequant,1.17452392447814,4.60436014139135,0.183704913801359,https://salsa.debian.org/debian-phototools-team/libimagequant, https://github.com/ImageOptim/libimagequant.git,4336.732037037037,22,42,0 -libimobiledevice,0.746151295528314,1.40294621384222,0.360607293845247,https://salsa.debian.org/imobiledevice-team/libimobiledevice, https://github.com/libimobiledevice/libimobiledevice.git,5614.085370370371,61,26,0 -libinih,-0.0499418301621886,1.97896398632524,-0.475270570503976,https://salsa.debian.org/yangfl-guest/inih, https://github.com/benhoyt/inih,5140.454861111111,30,8,0 -libinput,0.46913301883174,1.10576274550916,0.156594630860651,https://salsa.debian.org/xorg-team/lib/libinput, https://gitlab.freedesktop.org/libinput/libinput,5537.931307870371,137,119,0 -libinstpatch,0.306371504286247,2.06827310595229,-0.0894533027777747,https://salsa.debian.org/multimedia-team/libinstpatch, https://github.com/swami/libinstpatch,4470.764583333334,4,11,0 -libio-callback-perl,-2.02122954763607,0.669477436474041,-2.72119693576599,https://salsa.debian.org/perl-team/modules/packages/libio-callback-perl, https://github.com/tobyink/p5-io-callback.git,2909.5988078703704,0,1,0 -libio-digest-perl,-0.176999858307328,2.43534422389143,-0.855332929595617,https://salsa.debian.org/perl-team/modules/packages/libio-digest-perl, https://github.com/clkao/IO-Digest.git,1863.0997106481482,1,4,0 -libio-event-perl,0.217024179697917,2.8246432585759,-0.63601674251534,https://salsa.debian.org/perl-team/modules/packages/libio-event-perl, https://github.com/muir/File-Flock.git,474.8396990740741,0,4,0 -libio-interface-perl,1.0184295464928,4.14764748469928,0.0508969183914208,https://salsa.debian.org/perl-team/modules/packages/libio-interface-perl, https://github.com/lstein/LibIO-Interface-Perl.git,2278.4801041666665,0,2,0 -libio-socket-inet6-perl,1.05361058182567,2.55415908896728,0.360368514702543,https://salsa.debian.org/perl-team/modules/packages/libio-socket-inet6-perl, https://github.com/shlomif/perl-io-socket-inet6.git,5052.830706018519,0,3,0 -libipc-run3-perl,0.563072317431629,3.20249246798755,-0.0863000735851595,https://salsa.debian.org/perl-team/modules/packages/libipc-run3-perl, https://github.com/rjbs/IPC-Run3.git,1899.0353819444445,8,2,0 -libipc-system-simple-perl,0.702506806357814,3.37307823313289,0.0378027177660786,https://salsa.debian.org/perl-team/modules/packages/libipc-system-simple-perl, https://github.com/pjf/ipc-system-simple.git,5306.457638888889,4,11,0 -libisal,-0.653394048788407,1.70112376762176,-1.06942987879745,https://salsa.debian.org/openstack-team/third-party/libisal, https://github.com/01org/isa-l.git,2846.483761574074,29,18,0 -libitl,0.0254308756570228,1.55467054599278,-0.427459048128751,https://salsa.debian.org/islamic-team/libitl, https://github.com/arabeyes-org/ITL,3251.473090277778,2,13,0 -libitl-gobject,-0.743991329234141,1.48353017572794,-1.36908980309503,https://salsa.debian.org/islamic-team/libitl-gobject, https://github.com/aelmahmoudy/libitl-gobject.git,2211.2291898148146,0,2,0 -libixion,-0.927444361971977,0.32590715643203,-1.24503345014884,https://salsa.debian.org/libreoffice-team/libixion, https://gitlab.com/ixion/ixion.git,4997.019560185186,5,14,0 -libjbzip2-java,-0.111762555314467,1.76451539915625,-0.553204654470051,https://salsa.debian.org/java-team/libjbzip2-java, https://github.com/routeKIT/jbzip2.git,1394.2040046296297,0,2,0 -libjcat,-2.96652961883189,-1.13865549089184,-3.32297511016998,https://salsa.debian.org/efi-team/libjcat, https://github.com/hughsie/libjcat.git,1373.0888425925925,7,5,0 -libjifty-dbi-perl,-1.61466795584401,0.785230687618362,-2.27076034379016,https://salsa.debian.org/perl-team/modules/packages/libjifty-dbi-perl, https://github.com/bestpractical/jifty-dbi.git,2518.146388888889,1,16,0 -libjpeg-turbo,0.820859482621495,1.66788641122997,0.371400398641128,https://salsa.debian.org/debian/libjpeg-turbo/, https://github.com/libjpeg-turbo/libjpeg-turbo,5541.39431712963,44,10,2 -libjs-jquery-selectize.js,0.373422298359385,2.90606863917875,-0.221183987231074,https://salsa.debian.org/js-team/libjs-jquery-selectize.js, https://github.com/selectize/selectize.js,4120.888414351852,55,93,2 -libjs-mousetrap,-0.254446102134282,3.19704700715741,-1.21618941140347,https://salsa.debian.org/js-team/libjs-mousetrap, https://github.com/ccampbell/mousetrap,2488.8372453703705,20,42,0 -libjs-qunit,-0.495189173969768,2.51535578340839,-1.26544130284773,https://salsa.debian.org/js-team/libjs-qunit, https://github.com/jquery/qunit.git,5676.067743055555,143,47,0 -libjs-term.js,1.11365294616395,4.90507282646749,0.0258351053031645,https://salsa.debian.org/js-team/libjs-term.js, https://github.com/chjj/term.js,1033.320011574074,0,13,0 -libjs-webrtc-adapter,-1.25366727846092,0.490745267783702,-1.69256388020005,https://salsa.debian.org/js-team/libjs-webrtc-adapter, https://github.com/webrtchacks/adapter,3650.9905902777778,24,105,1 -libjson-webtoken-perl,-0.164458058090736,1.95655131027631,-0.587354272850704,https://salsa.debian.org/perl-team/modules/packages/libjson-webtoken-perl, https://github.com/xaicron/p5-JSON-WebToken.git,993.7868981481481,0,6,0 -libkavorka-perl,-1.11585996763189,1.8699475451297,-1.89199456930478,https://salsa.debian.org/perl-team/modules/packages/libkavorka-perl, https://github.com/tobyink/p5-kavorka,2218.7228703703704,0,8,0 -libkdegames,0.689267237591026,2.58549197338141,0.0373061904369534,https://salsa.debian.org/qt-kde-team/kde/libkdegames, https://invent.kde.org/games/libkdegames.git,5719.715428240741,6,80,0 -libkf5grantleetheme,0.667208058314997,3.38767681482364,-0.0238595109633009,https://salsa.debian.org/qt-kde-team/kde/grantleetheme, https://invent.kde.org/pim/grantleetheme,2926.047974537037,1,21,0 -libkf5kmahjongg,0.396793124316723,3.00616272180117,-0.140989229522307,https://salsa.debian.org/qt-kde-team/kde/libkmahjongg, https://anongit.kde.org/libkmahjongg.git,5766.6890277777775,1,28,0 -libkf5libkdepim,0.675725003495042,3.25098718331484,0.000594526641235028,https://salsa.debian.org/qt-kde-team/kde/libkdepim, https://invent.kde.org/pim/libkdepim,2925.8803819444443,1,32,0 -libkf5libkleo,0.84557737195652,3.90212193444543,0.0232520772766808,https://salsa.debian.org/qt-kde-team/kde/libkleo, https://invent.kde.org/pim/libkleo,2925.050173611111,4,41,0 -libkf5mailcommon,0.586919892697749,3.24833401336582,-0.0437537494728002,https://salsa.debian.org/qt-kde-team/kde/mailcommon, https://invent.kde.org/pim/mailcommon,2926.0488310185187,1,40,0 -libkf5mailimporter,0.594634502469299,3.33105940537257,-0.0431927995545707,https://salsa.debian.org/qt-kde-team/kde/mailimporter, https://invent.kde.org/pim/mailimporter,2925.879837962963,1,21,0 -libkf5pimcommon,0.684980288883194,3.1218742673751,0.00623768810098696,https://salsa.debian.org/qt-kde-team/kde/pimcommon, https://invent.kde.org/pim/pimcommon,2927.047962962963,3,35,0 -libkiwix,-1.30106522312188,1.93253554139278,-2.14016023603644,https://salsa.debian.org/debian/libkiwix, https://github.com/kiwix/libkiwix.git,5139.843240740741,16,47,0 -libkmfl,0.0696291333184762,2.79229655676917,-0.953167609708968,https://github.com/keymanapp/keyman/tree/master/linux/libkmfl,https://github.com/keymanapp/keyman,3329.4431944444445,16,51,8 -libkml,0.309589131218135,0.952815852611561,0.0255269839648045,https://salsa.debian.org/debian-gis-team/libkml, https://github.com/libkml/libkml.git,3335.96974537037,3,16,0 -libkqueue,0.379168644648058,1.99990849421274,-0.376087627692435,https://github.com/mheily/debian-packages/tree/libkqueue,https://github.com/mheily/debian-packages,3042.231712962963,0,4,0 -libkryo-java,0.439138637122569,2.47532888106887,-0.129178564193754,https://salsa.debian.org/java-team/libkryo-java, https://github.com/EsotericSoftware/kryo.git,5184.608009259259,31,73,0 -libksysguard,0.382508393832626,1.66888508476367,-0.0134784863057611,https://salsa.debian.org/qt-kde-team/kde/libksysguard, https://invent.kde.org/plasma/libksysguard.git,5764.187199074074,14,198,0 -liblatex-table-perl,-0.702086297129157,0.799707357714388,-0.984846791567085,https://salsa.debian.org/perl-team/modules/packages/liblatex-table-perl, https://github.com/lima1/p5-latex-table.git,556.2399421296296,0,2,0 -liblbfgs,-0.145960614894419,2.02556666116268,-0.619470975215262,https://salsa.debian.org/science-team/liblbfgs, https://github.com/chokkan/liblbfgs,5534.061076388889,8,10,0 -liblexical-underscore-perl,-0.120859387545148,2.79686256168409,-0.887693708969588,https://salsa.debian.org/perl-team/modules/packages/liblexical-underscore-perl, https://github.com/tobyink/p5-lexical-underscore,2933.2191203703705,0,1,0 -liblingua-en-inflect-number-perl,0.128032689867242,2.5007020447864,-0.401786300359941,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-inflect-number-perl, https://github.com/neilbowers/Lingua-EN-Inflect-Number,2030.0671527777777,1,2,0 -liblingua-en-numbers-ordinate-perl,-0.528739698770259,1.71367679038345,-0.95685749031336,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-numbers-ordinate-perl, https://github.com/neilb/Lingua-EN-Numbers-Ordinate,4119.229085648148,1,2,0 -liblingua-en-words2nums-perl,-0.170469508628788,1.1540444170842,-0.450116013526917,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-words2nums-perl, git://git.kitenet.net/words2nums,1862.903738425926,0,5,0 -liblingua-pt-stemmer-perl,-0.0370378021163652,1.75560599769747,-0.405294301299482,https://salsa.debian.org/perl-team/modules/packages/liblingua-pt-stemmer-perl, https://github.com/neilb/Lingua-PT-Stemmer.git,472.71435185185186,1,2,0 -liblist-compare-perl,0.391313448822763,2.69306808066932,-0.0910990526566794,https://salsa.debian.org/perl-team/modules/packages/liblist-compare-perl, https://github.com/jkeenan/list-compare.git,5186.55181712963,4,4,0 -liblnk,0.906466398540114,4.56476620602956,-0.0956276860224603,https://salsa.debian.org/pkg-security-team/liblnk, https://github.com/libyal/liblnk,2793.956076388889,2,1,0 -liblocale-maketext-gettext-perl,-0.498869475594542,1.13023375711277,-0.82798089589324,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-gettext-perl, https://github.com/imacat/Locale-Maketext-Gettext.git,519.6569444444444,0,2,0 -liblocale-maketext-lexicon-perl,0.161275632049051,1.89696025323471,-0.284099785121201,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-lexicon-perl, https://github.com/clintongormley/locale-maketext-lexicon.git,1951.7074074074073,1,9,0 -liblocales-perl,-1.04391245581118,1.14085517175161,-1.47854564563719,https://salsa.debian.org/perl-team/modules/packages/liblocales-perl, https://github.com/drmuey/p5-Locales.git,1740.6568287037037,0,3,0 -liblockfile,1.34528048506525,2.16203178683404,0.834960494457955,https://github.com/miquels/liblockfile-debian,https://github.com/miquels/liblockfile-debian,1484.1868055555556,0,2,0 -liblog-message-simple-perl,0.207617298002529,1.66317485535803,-0.0635138373050909,https://salsa.debian.org/perl-team/modules/packages/liblog-message-simple-perl, https://github.com/jib/log-message-simple.git,1230.0807175925927,0,3,0 -liblognorm,0.901258510213782,2.3010415095011,0.305197545078125,https://salsa.debian.org/debian/liblognorm, https://github.com/rsyslog/liblognorm.git,4686.832627314815,7,31,0 -liblouis,0.0312246658642851,0.180567306916734,-0.017300933991181,https://salsa.debian.org/a11y-team/liblouis, https://github.com/liblouis/liblouis.git,5775.5753125,86,83,0 -libltc,0.25462320273444,2.48146198812678,-0.195451051854273,https://salsa.debian.org/multimedia-team/libltc, https://github.com/x42/libltc,3674.491215277778,2,8,0 -liblwp-useragent-chicaching-perl,-0.794221914108557,1.51789164766528,-1.22722810427765,https://salsa.debian.org/perl-team/modules/packages/liblwp-useragent-chicaching-perl, https://github.com/kjetilk/p5-lwp-useragent-chicaching.git,1283.769074074074,0,1,0 -liblxqt,0.855926507380185,3.68695031042015,0.0207143469979873,https://salsa.debian.org/lxqt-team/liblxqt, https://github.com/lxqt/liblxqt.git,4353.7531944444445,86,64,0 -libmagpie-perl,-1.71586351135262,1.1978848249893,-2.52089829827459,https://salsa.debian.org/perl-team/modules/packages/libmagpie-perl, https://github.com/tamarou/magpie.git,2275.6417824074074,0,6,0 -libmail-mbox-messageparser-perl,-0.0992180028765262,0.383308459256174,-0.254928133610786,https://salsa.debian.org/perl-team/modules/packages/libmail-mbox-messageparser-perl, https://github.com/coppit/mail-mbox-messageparser.git,3258.3029513888887,0,3,0 -libmailtools-perl,1.05296856677644,2.15207135791342,0.469020884464135,https://salsa.debian.org/perl-team/modules/packages/libmailtools-perl, https://github.com/markov2/perl5-MailTools,1648.7267013888888,0,2,0 -libmarpa-r2-perl,-0.484505322412779,2.31252733527863,-1.41687896517219,https://salsa.debian.org/perl-team/modules/packages/libmarpa-r2-perl, https://github.com/jeffreykegler/Marpa--R2.git,4342.804988425926,0,18,0 -libmatekbd,0.21033194873341,1.29153022803098,-0.0706815197064093,https://salsa.debian.org/debian-mate-team/libmatekbd, https://github.com/mate-desktop/libmatekbd.git,4348.546365740741,8,31,0 -libmatemixer,0.519077651770942,2.87142669869048,-0.0439618763861113,https://salsa.debian.org/debian-mate-team/libmatemixer, https://github.com/mate-desktop/libmatemixer.git,3404.5255092592593,7,20,0 -libmateweather,0.128483049500496,0.843121277026433,-0.0753011191462626,https://salsa.debian.org/debian-mate-team/libmateweather, https://github.com/mate-desktop/libmateweather.git,4345.310983796297,19,32,0 -libmath-basecalc-perl,-1.04929713915701,0.776247486414709,-1.60691357416815,https://salsa.debian.org/perl-team/modules/packages/libmath-basecalc-perl, https://github.com/kenahoo/perl-math-basecalc.git,3269.0290740740743,0,8,0 -libmath-gmp-perl,-0.497770031800226,1.2717897116415,-0.979192756759848,https://salsa.debian.org/perl-team/modules/packages/libmath-gmp-perl, https://github.com/turnstep/Math-GMP.git,2969.082974537037,1,6,0 -libmath-random-isaac-perl,0.647713767893043,3.36094723709202,-0.0377506361166474,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-perl, https://github.com/jawnsy/Math-Random-ISAAC,2416.3080324074076,0,1,0 -libmath-random-isaac-xs-perl,0.420044115350087,2.42617679498187,-0.0688144674619528,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-xs-perl, https://github.com/jawnsy/Math-Random-ISAAC-XS.git,2412.8853703703703,0,1,0 -libmath-random-oo-perl,-1.35187489411529,0.998777142068624,-1.80721660160684,https://salsa.debian.org/perl-team/modules/packages/libmath-random-oo-perl, https://github.com/dagolden/math-random-oo.git,1499.3150694444444,0,1,0 -libmaxminddb,0.507537573132591,2.42545832102211,-0.0148146150229747,https://salsa.debian.org/debian/libmaxminddb, https://github.com/maxmind/libmaxminddb,3984.239363425926,21,43,0 -libmbim,0.666716984783341,2.31288966691943,0.104016661117424,https://salsa.debian.org/DebianOnMobile-team/libmbim, https://gitlab.freedesktop.org/mobile-broadband/libmbim.git,3987.954965277778,29,19,0 -libmce-perl,-0.240648845381619,2.07944154167984,-0.673322484241476,https://salsa.debian.org/perl-team/modules/packages/libmce-perl, https://github.com/marioroy/mce-perl.git,2944.7772337962965,1,6,0 -libmediaart,0.379827526490558,2.01330472983397,-0.0227924256271836,https://salsa.debian.org/gnome-team/libmediaart, https://gitlab.gnome.org/GNOME/libmediaart.git,3213.824050925926,15,19,0 -libmemoize-expirelru-perl,0.193651801444528,2.93098175326362,-0.401914517363021,https://salsa.debian.org/perl-team/modules/packages/libmemoize-expirelru-perl, https://github.com/neilb/Memoize-ExpireLRU,624.640474537037,1,2,0 -libmessage-passing-perl,-1.57217074451121,-0.58317998885584,-1.7635460332697,https://salsa.debian.org/perl-team/modules/packages/libmessage-passing-perl, https://github.com/suretec/Message-Passing.git,2987.778923611111,1,15,0 -libmethod-signatures-perl,-1.14136491139725,1.16679643969596,-1.64399707809497,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-perl, https://github.com/evalEmpire/method-signatures.git,4206.615393518518,3,21,0 -libmethod-signatures-simple-perl,-0.505171814610598,2.28798951395145,-1.1367149384271,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-simple-perl, https://github.com/rhesa/method-signatures-simple.git,4262.9309953703705,0,6,0 -libmicrohttpd,0.338271565211338,1.07169754356072,0.0123838787046614,https://git.progress-linux.org/users/daniel.baumann/debian/packages/libmicrohttpd, https://git.gnunet.org/libmicrohttpd.git,5772.6606134259255,10,21,0 -libmiglayout-java,0.0140581374771789,1.09613156382052,-0.220031450088049,https://salsa.debian.org/java-team/libmiglayout-java, https://github.com/mikaelgrev/miglayout,3114.6859375,4,24,0 -libminc,-0.243119939861725,0.955874211783971,-0.587717590228797,https://salsa.debian.org/med-team/libminc, https://github.com/BIC-MNI/libminc.git,5746.54113425926,3,34,0 -libminini,-0.45273006696408,0.830257974649423,-0.745676424048719,https://salsa.debian.org/yangfl-guest/minIni, https://github.com/compuphase/minIni,2280.3336342592593,2,6,0 -libmldbm-perl,0.255685088884825,2.21713282261784,-0.141370053434749,https://salsa.debian.org/perl-team/modules/packages/libmldbm-perl, https://github.com/chorny/MLDBM.git,1906.0319791666666,3,2,0 -libmodbus,0.408134893807505,2.01019673867031,-0.0931762570860086,https://salsa.debian.org/debian/libmodbus, https://github.com/stephane/libmodbus.git,5746.532118055556,58,15,0 -libmodule-cpants-analyse-perl,0.609245808655205,3.47889052553453,-0.468888102677164,https://salsa.debian.org/perl-team/modules/packages/libmodule-cpants-analyse-perl, https://github.com/cpants/Module-CPANTS-Analyse.git,5647.731215277778,8,20,0 -libmodule-extract-use-perl,-1.42148872513497,0.722346225431496,-1.86166140766187,https://salsa.debian.org/perl-team/modules/packages/libmodule-extract-use-perl, https://github.com/briandfoy/module-extract-use.git,2918.7995717592594,0,7,0 -libmodule-find-perl,0.530689072476863,2.96191107462692,-0.0631954530758141,https://salsa.debian.org/perl-team/modules/packages/libmodule-find-perl, https://github.com/crenz/Module-Find.git,4710.686875,2,8,0 -libmodule-install-readmefrompod-perl,-1.83121316421891,-0.803308246618474,-2.06158147084299,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-readmefrompod-perl, https://github.com/bingos/module-install-readmefrompod.git,2847.0250694444444,0,7,0 -libmodule-install-xsutil-perl,-1.95286814843256,-0.416199022673938,-2.2440219120537,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-xsutil-perl, https://github.com/gfx/Perl-Module-Install-XSUtil.git,1649.8556828703704,0,9,0 -libmodule-manifest-perl,-0.275080980203051,2.04126647656298,-0.707206931063704,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-perl, https://github.com/karenetheridge/Module-Manifest,3547.1878935185186,0,3,0 -libmodule-manifest-skip-perl,-0.331104704504746,2.08964832134239,-0.861124086399516,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-skip-perl, https://github.com/ingydotnet/module-manifest-skip-pm.git,1169.1213194444445,0,5,0 -libmodule-package-rdf-perl,-1.9996964424579,0.808957985695429,-2.72477826606109,https://salsa.debian.org/perl-team/modules/packages/libmodule-package-rdf-perl, https://github.com/tobyink/p5-module-package-rdf,668.6822106481482,0,1,0 -libmodule-signature-perl,0.615393347672838,2.30814388681991,0.0588548984962523,https://salsa.debian.org/perl-team/modules/packages/libmodule-signature-perl, https://github.com/audreyt/module-signature.git,4414.52917824074,0,17,0 -libmodule-starter-plugin-cgiapp-perl,-1.0772217684868,1.77744216289853,-2.03621850623778,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,4024.0661921296296,0,7,0 -libmoops-perl,-2.01602412276297,0.184857935561608,-2.57476905541738,https://salsa.debian.org/perl-team/modules/packages/libmoops-perl, https://github.com/tobyink/p5-moops,2419.9678819444443,0,3,0 -libmoosex-attributetags-perl,-1.48444699100229,0.712280225199573,-1.91694570169781,https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributetags-perl, https://github.com/tobyink/p5-moosex-attributetags,2042.2449074074075,0,1,0 -libmoosex-compiletime-traits-perl,-1.56539634235995,0.993312289213515,-2.19979313657871,https://salsa.debian.org/perl-team/modules/packages/libmoosex-compiletime-traits-perl, https://github.com/nperez/moosex-compiletime-traits.git,0.0730787037037037,0,1,0 -libmoosex-multiinitarg-perl,-1.07075403800779,1.08359021531156,-1.50429883320762,https://salsa.debian.org/perl-team/modules/packages/libmoosex-multiinitarg-perl, https://github.com/frodwith/MooseX-MultiInitArg.git,0.06287037037037037,0,1,0 -libmoosex-mungehas-perl,-1.70546876689832,0.655108435501916,-2.14891721186836,https://salsa.debian.org/perl-team/modules/packages/libmoosex-mungehas-perl, https://github.com/tobyink/p5-moosex-mungehas,2044.5397800925925,1,6,0 -libmoosex-runnable-perl,-1.57702227549819,1.133906618023,-2.34984169515277,https://salsa.debian.org/perl-team/modules/packages/libmoosex-runnable-perl, https://github.com/moose/MooseX-Runnable,3541.979409722222,1,4,0 -libmoosex-xsaccessor-perl,-1.79699308442664,0.622199589416262,-2.23744643503494,https://salsa.debian.org/perl-team/modules/packages/libmoosex-xsaccessor-perl, https://github.com/tobyink/p5-moosex-xsaccessor,3461.6608333333334,0,1,0 -libmoox-cmd-perl,-1.7714724432288,0.738963510092576,-2.32872240205211,https://salsa.debian.org/perl-team/modules/packages/libmoox-cmd-perl, https://github.com/Getty/p5-moox-cmd,2141.9085532407407,4,4,0 -libmoox-struct-perl,1.10039987401157,4.72686382350317,0.0231138941776421,https://salsa.debian.org/perl-team/modules/packages/libmoox-struct-perl, https://github.com/tobyink/p5-moox-struct,3679.9237037037037,1,2,0 -libmoox-types-mooselike-perl,0.218848728689155,2.42762361856221,-0.234182987751775,https://salsa.debian.org/perl-team/modules/packages/libmoox-types-mooselike-perl, https://github.com/mateu/MooX-Types-MooseLike.git,1382.058888888889,0,16,0 -libmousex-nativetraits-perl,0.451797091997329,3.5585079183273,-0.263225295656509,https://salsa.debian.org/perl-team/modules/packages/libmousex-nativetraits-perl, https://github.com/gfx/p5-MouseX-NativeTraits.git,1010.1283101851852,1,4,0 -libmousex-types-perl,-0.900205922839208,2.42810979063714,-1.61943954243828,https://salsa.debian.org/perl-team/modules/packages/libmousex-types-perl, https://github.com/yappo/p5-mousex-types.git,984.7711226851852,0,8,0 -libmp3-info-perl,0.972200522358068,3.06359046848305,0.14597462639865,https://salsa.debian.org/perl-team/modules/packages/libmp3-info-perl, https://github.com/JJ/perl-mp3-info.git,3267.4327777777776,1,4,0 -libmpdclient,0.208556036170561,1.35645743401925,-0.117616723392847,https://salsa.debian.org/mpd-team/libmpdclient, https://github.com/MusicPlayerDaemon/libmpdclient,5726.394375,18,26,0 -libmseed,-0.305694068825484,2.72844036486311,-1.08523155660157,https://salsa.debian.org/science-team/libmseed, https://github.com/iris-edu/libmseed,4208.878819444444,8,11,2 -libmsiecf,0.46552312906009,3.43022127806562,-0.320200298445252,https://salsa.debian.org/pkg-security-team/libmsiecf, https://github.com/libyal/libmsiecf.git,3548.1866898148146,0,1,0 -libmtp,0.96052243305368,1.57224865025681,0.558797722548477,https://salsa.debian.org/debian/libmtp, https://github.com/libmtp/libmtp,5765.780787037037,44,49,0 -libmultidimensional-perl,0.637848870853986,3.40591300570569,-0.108805795385123,https://salsa.debian.org/perl-team/modules/packages/libmultidimensional-perl, https://github.com/ilmari/multidimensional,4293.3777314814815,1,3,0 -libmurmurhash,-1.16067502145436,1.24196568505228,-1.59222127523527,https://salsa.debian.org/med-team/libmurmurhash, https://github.com/kloetzl/libmurmurhash.git,1568.0675578703704,0,1,0 -libmypaint,0.798752723283649,2.72248880018829,0.120666988660567,https://salsa.debian.org/multimedia-team/libmypaint, https://github.com/mypaint/libmypaint,4528.350925925926,157,32,0 -libnagios-object-perl,-0.0287280625874169,2.41658250392272,-0.514503755554881,https://salsa.debian.org/perl-team/modules/packages/libnagios-object-perl, https://github.com/duncs/perl-nagios-object.git,4719.336793981482,1,14,0 -libnatpmp,0.254340902214523,1.1083518392238,4.5219738185424e-05,https://salsa.debian.org/miniupnp-team/libnatpmp, https://github.com/miniupnp/libnatpmp,3832.098252314815,3,20,0 -libnbcompat,-5.04706956390868,-2.61580162813559,-5.47995498785397,https://github.com/jgoerzen/libnbcompat,https://github.com/jgoerzen/libnbcompat,3888.0046759259258,0,19,0 -libndp,0.413875636023979,2.26088219753132,0.00183143129663564,https://salsa.debian.org/debian/libndp, https://github.com/jpirko/libndp.git,3924.0402314814814,9,4,0 -libneo4j-client,-0.44200445507635,1.82260432303787,-1.19625097352374,https://github.com/cleishm/libneo4j-client,https://github.com/cleishm/libneo4j-client,1826.3064351851851,2,5,0 -libnet-dbus-perl,2.26906647589744,4.58526799899232,1.17306845694811,https://salsa.debian.org/perl-team/modules/packages/libnet-dbus-perl, https://gitlab.com/berrange/perl-net-dbus,4510.877638888889,9,9,0 -libnet-dns-lite-perl,-0.388600875739514,1.73875559764193,-0.810307744985523,https://salsa.debian.org/perl-team/modules/packages/libnet-dns-lite-perl, https://github.com/kazuho/p5-Net-DNS-Lite.git,2215.071388888889,0,7,0 -libnet-duo-perl,-2.21529597787308,-0.682214489259754,-2.48412838619205,https://salsa.debian.org/perl-team/modules/packages/libnet-duo-perl, https://git.eyrie.org/git/perl/net-duo.git,2033.875625,0,3,0 -libnet-idn-encode-perl,0.202120296662982,2.48699815996222,-0.240749262969265,https://salsa.debian.org/perl-team/modules/packages/libnet-idn-encode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.6395949074076,6,7,0 -libnet-jabber-bot-perl,-1.40647099245218,2.21383625500312,-2.3398369660299,https://salsa.debian.org/perl-team/modules/packages/libnet-jabber-bot-perl, https://github.com/toddr/perl-net-jabber-bot.git,4656.943171296296,0,12,0 -libnet-ldap-filterbuilder-perl,-1.03116738256461,1.31644249513134,-1.55059074652219,https://salsa.debian.org/perl-team/modules/packages/libnet-ldap-filterbuilder-perl, https://github.com/ollyg/Net-LDAP-FilterBuilder.git,3727.993148148148,1,4,0 -libnet-ldapapi-perl,0.329801233060665,4.21712292515636,-0.93758425895926,https://github.com/whm/libnet-ldapapi-perl,https://github.com/whm/libnet-ldapapi-perl,2319.3761458333333,0,8,0 -libnet-netmask-perl,0.194909018374484,1.29739745595377,-0.0893189593134,https://salsa.debian.org/perl-team/modules/packages/libnet-netmask-perl, https://github.com/jmaslak/Net-Netmask.git,4478.38675925926,1,7,0 -libnet-openid-server-perl,-1.09555440281624,0.684539371669913,-1.53725150822958,https://salsa.debian.org/perl-team/modules/packages/libnet-openid-server-perl, https://github.com/robn/Net-OpenID-Server.git,848.2155092592593,2,3,0 -libnet-smtp-tls-butmaintained-perl,-0.113211376060407,2.6114896609769,-0.702491846232613,https://salsa.debian.org/perl-team/modules/packages/libnet-smtp-tls-butmaintained-perl, https://github.com/fayland/Net-SMTP-TLS,3215.150324074074,2,5,0 -libnfo,-1.67562099042326,0.120641287739072,-2.18697726172515,https://salsa.debian.org/debian/libnfo, https://github.com/GeeXboX/libnfo,1108.031238425926,0,6,0 -libnids,1.48070068944423,2.86889934498414,0.725429802558325,https://salsa.debian.org/pkg-security-team/libnids, https://github.com/MITRECND/libnids.git,3593.0894791666665,1,9,0 -libnitrokey,-0.378733719591922,1.09710022263717,-0.745668218103499,https://salsa.debian.org/patryk/libnitrokey, https://github.com/nitrokey/libnitrokey.git,2855.7609722222223,7,21,0 -libntlm,0.534190053675325,2.23351727494635,0.0304523027629636,https://salsa.debian.org/auth-team/libntlm, https://gitlab.com/jas/libntlm,5374.189259259259,0,1,0 -libnumber-fraction-perl,-1.54009992200597,1.00799051030491,-2.12164752767652,https://salsa.debian.org/perl-team/modules/packages/libnumber-fraction-perl, https://github.com/p5-number-fraction/number-fraction.git,5664.8216203703705,3,11,0 -libofa,0.47335821093708,1.43356884961668,0.0963115974952011,https://salsa.debian.org/debian/libofa, https://github.com/tanob/libofa.git,2279.4909837962964,1,2,0 -libofx,0.203415025551932,0.653272225742778,-0.0343613081078379,https://salsa.debian.org/debian/libofx, https://github.com/libofx/libofx,5174.00625,8,16,0 -libolecf,0.462165542271876,3.32672178633661,-0.317708482986411,https://salsa.debian.org/pkg-security-team/libolecf, https://github.com/libyal/libolecf.git,3351.053310185185,0,1,0 -libopenaptx,-1.76978937147399,0.402104648829942,-2.23189383047556,https://salsa.debian.org/debian/libopenaptx, https://github.com/pali/libopenaptx,1024.2505671296296,0,2,0 -libopengl-perl,0.695512514665193,1.89656744244965,0.126566809659114,https://salsa.debian.org/perl-team/modules/packages/libopengl-perl, git://pogl.git.sourceforge.net/gitroot/pogl/pogl,2689.0655787037035,3,9,0 -libopenhmd,0.112794501368179,1.85484744498208,-0.282535510006274,https://salsa.debian.org/debian/libopenhmd, https://github.com/OpenHMD/OpenHMD,3515.7873958333334,18,41,1 -libopenshot,1.59705016960086,4.44511771966597,0.483397878999995,https://salsa.debian.org/multimedia-team/libopenshot, https://github.com/OpenShot/libopenshot.git,4380.466377314815,15,39,0 -libopenshot-audio,1.78148981829828,5.65661789503906,0.43567244792518,https://salsa.debian.org/multimedia-team/libopenshot-audio, https://github.com/OpenShot/libopenshot-audio.git,4098.038888888889,5,7,0 -liboping,0.956728204329271,2.48051547581799,0.239930171556677,https://salsa.debian.org/debian/liboping, https://github.com/octo/liboping,4300.975243055555,12,18,0 -liborcus,0.162463190445123,0.696167450313856,-0.0191305365036251,https://salsa.debian.org/libreoffice-team/liborcus, https://gitlab.com/orcus/orcus,4985.895983796297,9,19,0 -libosinfo,0.408163111658693,1.21685099500101,0.0757070817467147,https://salsa.debian.org/libvirt-team/libosinfo, https://gitlab.com/libosinfo/libosinfo.git,5133.728680555556,65,26,0 -libosmium,-0.889903113983476,-0.0753612425734251,-1.03455267249135,https://salsa.debian.org/debian-gis-team/libosmium/, https://github.com/osmcode/libosmium.git,3645.6736805555556,6,31,0 -libp11,0.153802184454702,0.960470203933491,-0.234975685610349,https://salsa.debian.org/opensc-team/libp11, https://github.com/OpenSC/libp11.git,5687.994131944444,67,27,0 -libpal-java,-0.743616408890405,0.798812895611161,-1.02496439640612,https://salsa.debian.org/med-team/libpal-java, https://github.com/tamuri/pal,382.9409953703704,0,2,0 -libpalm-perl,0.0204029609200805,1.21979890093133,-0.348294954995836,https://salsa.debian.org/perl-team/modules/packages/libpalm-perl, https://github.com/madsen/p5-Palm,2036.3955092592594,2,5,0 -libpam-encfs,-0.0672752006332246,1.03918901778327,-0.551441000800444,https://salsa.debian.org/debian/libpam-encfs, https://github.com/tinti/pam-encfs,2773.2122222222224,0,4,0 -libpam-pwdfile,-0.106743202581158,0.500255871782442,-0.322631680806691,https://github.com/tiwe-de/libpam-pwdfile/tree/debian,https://github.com/tiwe-de/libpam-pwdfile,923.3027546296296,2,2,0 -libpandoc-elements-perl,-1.21783057618553,1.30668908266884,-1.79049682798129,https://salsa.debian.org/perl-team/modules/packages/libpandoc-elements-perl, https://github.com/nichtich/Pandoc-Elements.git,2600.5557175925924,2,3,0 -libpandoc-wrapper-perl,-1.19135788130824,0.89729950689738,-1.72623996968284,https://salsa.debian.org/perl-team/modules/packages/libpandoc-wrapper-perl, https://github.com/nichtich/Pandoc-Wrapper.git,1879.2412037037036,2,4,0 -libpango-perl,0.154884414490533,1.23256053349614,-0.0340352944090457,https://salsa.debian.org/perl-team/modules/packages/libpango-perl, https://gitlab.gnome.org/GNOME/perl-pango,4393.401840277777,1,4,0 -libparams-callbackrequest-perl,-1.31550870573202,0.99706337577361,-1.76036509087965,https://salsa.debian.org/perl-team/modules/packages/libparams-callbackrequest-perl, https://github.com/theory/params-callbackrequest.git,1199.2313657407408,0,2,0 -libparams-util-perl,0.566955724813384,2.70954090245678,0.0183304164838642,https://salsa.debian.org/perl-team/modules/packages/libparams-util-perl, https://github.com/perl5-utils/Params-Util,4635.891793981482,2,6,0 -libparse-cpan-packages-perl,-1.31626232375911,0.055729797966772,-1.59309729542018,https://salsa.debian.org/perl-team/modules/packages/libparse-cpan-packages-perl, https://github.com/wchristian/parse-cpan-packages,2213.1126273148147,1,3,0 -libparse-method-signatures-perl,-0.309867542069825,2.15208921006351,-0.785793049099757,https://salsa.debian.org/perl-team/modules/packages/libparse-method-signatures-perl, https://github.com/ashb/Parse-Method-Signatures.git,3028.8479166666666,2,10,0 -libparse-netstat-perl,-1.29015063053148,0.970774796110696,-1.71793362412929,https://salsa.debian.org/perl-team/modules/packages/libparse-netstat-perl, https://github.com/perlancar/perl-Parse-Netstat.git,4083.673275462963,0,11,0 -libparse-recdescent-perl,-0.0286467306167016,0.222989520591922,-0.100758265549273,https://salsa.debian.org/perl-team/modules/packages/libparse-recdescent-perl, https://github.com/jtbraun/Parse-RecDescent.git,2082.355324074074,1,5,0 -libpdf-report-perl,-1.14074757109425,-0.731778311715835,-1.23468142917503,https://salsa.debian.org/perl-team/modules/packages/libpdf-report-perl, https://github.com/hashbangperl/perl-pdf-report.git,159.71844907407407,0,1,0 -libpdl-io-matlab-perl,-1.81228967460159,0.355857099453331,-2.23707614220522,https://salsa.debian.org/perl-team/modules/packages/libpdl-io-matlab-perl, https://github.com/jlapeyre/PDL-IO-Matlab.git,3358.4244907407406,1,2,0 -libpeas,0.395429656826691,0.983891256977885,0.113211078640467,https://salsa.debian.org/gnome-team/libpeas, https://gitlab.gnome.org/GNOME/libpeas.git,5163.897256944444,118,143,0 -libperinci-sub-normalize-perl,-2.93277311063399,-0.9162267093382,-3.32015234012257,https://salsa.debian.org/perl-team/modules/packages/libperinci-sub-normalize-perl, https://github.com/perlancar/perl-Perinci-Sub-Normalize.git,3147.5333564814814,0,11,0 -libperlx-assert-perl,-1.01934466047357,1.54250325326684,-1.83623953186436,https://salsa.debian.org/perl-team/modules/packages/libperlx-assert-perl, https://github.com/tobyink/p5-perlx-assert,1111.6440162037038,0,1,0 -libperlx-define-perl,-2.16783373442172,0.0459215724713869,-2.61318748907828,https://salsa.debian.org/perl-team/modules/packages/libperlx-define-perl, https://github.com/tobyink/p5-perlx-define,0.010925925925925926,0,1,0 -libpgobject-type-datetime-perl,-1.48153978983064,0.670943023248935,-1.915973171553,https://salsa.debian.org/perl-team/modules/packages/libpgobject-type-datetime-perl, https://github.com/ledgersmb/PGObject-Type-DateTime.git,3652.6989467592593,0,8,0 -libpgobject-util-dbadmin-perl,-1.54489086293298,0.601409032824626,-1.98253889024086,https://salsa.debian.org/perl-team/modules/packages/libpgobject-util-dbadmin-perl, https://github.com/ledgersmb/PGObject-Util-DBAdmin.git,2615.949641203704,0,5,0 -libpgp-sign-perl,-0.503791011658959,2.24402219243158,-1.33246533923206,https://salsa.debian.org/rra/libpgp-sign-perl, https://github.com/rra/pgp-sign,2555.095613425926,1,5,0 -libpgplot-perl,-0.198681417470982,1.80326443154908,-0.928918103160525,https://salsa.debian.org/perl-team/modules/packages/libpgplot-perl, https://github.com/PDLPorters/perl5-PGPLOT.git,2564.25125,4,7,0 -libphp-swiftmailer,0.261410233514471,3.27591767293832,-0.67906287861903,https://salsa.debian.org/php-team/pear/php-swiftmailer, https://github.com/swiftmailer/swiftmailer,5008.197685185185,58,138,0 -libpipeline,0.296863323424409,1.69107076137744,0.00487664954691927,https://salsa.debian.org/debian/libpipeline, https://gitlab.com/libpipeline/libpipeline.git,5772.97855324074,5,1,0 -libplack-middleware-csrfblock-perl,-2.88989675535782,-0.719836486790939,-3.32408331985609,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-csrfblock-perl, https://github.com/mattp-/Plack-Middleware-CSRFBlock,1436.9725347222222,1,7,0 -libplack-middleware-deflater-perl,-0.868604600480895,1.4026303205951,-1.34095502952361,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl, https://github.com/miyagawa/Plack-Middleware-Deflater.git,4308.662222222222,0,5,0 -libplack-middleware-file-sass-perl,-3.74262183296797,-1.21094665420884,-4.32021382111369,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-file-sass-perl, https://github.com/miyagawa/Plack-Middleware-File-Sass.git,372.7359490740741,0,1,0 -libplack-test-anyevent-perl,-2.2481916187177,0.456054424993921,-2.95550062704452,https://salsa.debian.org/perl-team/modules/packages/libplack-test-anyevent-perl, https://github.com/hoelzro/plack-test-anyevent.git,2226.702013888889,0,6,0 -libplist,0.289015166776717,0.775133036116656,0.068106780994937,https://salsa.debian.org/imobiledevice-team/libplist, https://github.com/libimobiledevice/libplist.git,5614.0678125,41,20,0 -libpng1.6,0.167799069543427,0.425794845256693,0.0473446326901783,https://salsa.debian.org/debian/libpng1.6, https://github.com/glennrp/libpng,5354.109710648148,66,26,0 -libpod-2-docbook-perl,-2.18584394371273,0.12252816735333,-2.61706839567257,https://salsa.debian.org/perl-team/modules/packages/libpod-2-docbook-perl, https://github.com/jozef/pod-2-docbook,1292.6652546296295,0,6,0 -libpod-webserver-perl,-0.420499708143128,2.37146990894034,-1.53685095216261,https://github.com/mogaal/libpod-webserver-perl,https://github.com/mogaal/libpod-webserver-perl,801.0357291666667,1,1,0 -libpod-wordlist-hanekomu-perl,-2.35247628682149,-0.0387599898094948,-2.78606413640892,https://salsa.debian.org/perl-team/modules/packages/libpod-wordlist-hanekomu-perl, https://github.com/dagolden/Pod-Wordlist-hanekomu,1571.103576388889,0,3,0 -libpoe-component-client-http-perl,-1.05015036849306,-0.26446186447687,-1.32838779114614,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-http-perl, https://github.com/rcaputo/poe-component-client-http,2297.0143402777776,1,4,0 -libpoe-component-client-ident-perl,-2.74078918210574,-1.39695331454504,-3.01424759559606,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-ident-perl, https://github.com/bingos/poe-component-client-ident.git,49.70814814814815,0,1,0 -libpoe-component-client-keepalive-perl,-0.912307219691627,1.38958661839801,-1.34891728809416,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-keepalive-perl, https://github.com/rcaputo/poe-component-client-keepalive.git,2357.5085300925925,2,4,0 -libpoe-component-server-jsonrpc-perl,-1.88184035515996,0.626911171810223,-2.45923323992619,https://salsa.debian.org/debian/libpoe-component-server-jsonrpc-perl, https://gitlab.fusiondirectory.org/argonaut/libpoe-component-server-jsonrpc,1087.2308449074073,0,6,0 -libpoe-filter-ircd-perl,-0.374557942849074,1.93583892146358,-0.831515046781277,https://salsa.debian.org/perl-team/modules/packages/libpoe-filter-ircd-perl, https://github.com/bingos/poe-filter-ircd.git,1552.6868865740742,0,4,0 -libpoe-loop-tk-perl,-0.195847077988649,2.02375545200345,-0.755381301293398,https://salsa.debian.org/perl-team/modules/packages/libpoe-loop-tk-perl, https://github.com/rcaputo/poe-loop-tk,2011.4116435185185,0,7,0 -libprobe-perl-perl,-0.120869478301789,2.68264316932431,-0.746852827696491,https://salsa.debian.org/perl-team/modules/packages/libprobe-perl-perl, https://github.com/kenahoo/Probe-Perl,112.02817129629629,0,2,0 -libproc-processtable-perl,0.0374994029564422,0.48248435291711,-0.0771518619204283,https://salsa.debian.org/perl-team/modules/packages/libproc-processtable-perl, https://github.com/jwbargsten/perl-proc-processtable,3896.7371180555556,1,25,0 -libpsl,0.294836161824795,1.00169805776819,0.0400725674176116,https://salsa.debian.org/debian/libpsl, https://github.com/rockdaboot/libpsl.git,3466.446226851852,10,37,0 -libpuzzle,-0.668014026669582,0.652955703084538,-1.12433312368326,https://salsa.debian.org/debian-phototools-team/libpuzzle, https://github.com/jedisct1/libpuzzle,2324.9386458333333,1,8,0 -libpwquality,0.510351431411485,1.87787850612544,0.0684762008403447,https://salsa.debian.org/gnome-team/libpwquality, https://github.com/libpwquality/libpwquality.git,4429.906377314815,51,15,0 -libqaccessibilityclient,0.567619399995573,2.57767911840755,-0.0264868673940444,https://salsa.debian.org/qt-kde-team/extras/libqaccessibilityclient, https://invent.kde.org/libraries/libqaccessibilityclient.git,4267.150081018519,2,25,0 -libqb,0.4165321199254,1.3497414760195,0.00492375687001047,https://salsa.debian.org/ha-team/libqb, https://github.com/ClusterLabs/libqb,5002.372013888889,27,39,2 -libqcow,0.434557263537964,3.15015521965935,-0.291421202425118,https://salsa.debian.org/pkg-security-team/libqcow, https://github.com/libyal/libqcow.git,3715.767152777778,0,1,0 -libqmi,0.68470094836584,2.01590535060376,0.170158760281624,https://salsa.debian.org/DebianOnMobile-team/libqmi, https://gitlab.freedesktop.org/mobile-broadband/libqmi.git,4537.393703703704,48,38,0 -libqtxdg,-0.0973226644284822,0.210942497187502,-0.138573205798122,https://salsa.debian.org/lxqt-team/libqtxdg, https://github.com/lxqt/libqtxdg.git,4353.740578703703,12,29,0 -libquartz2-java,-2.43906848860376,-0.610390503887099,-2.95935193585794,https://salsa.debian.org/java-team/libquartz2-java, https://github.com/quartz-scheduler/quartz,5552.904293981482,23,73,2 -libquazip,0.214683832263677,0.928495304943016,-0.0650262980618335,https://salsa.debian.org/debian/libquazip, https://github.com/stachenov/quazip.git,5295.494409722222,19,25,0 -librabbitmq,0.593745062359984,2.32387036057243,-0.00945131926958313,https://salsa.debian.org/debian/librabbitmq, https://github.com/alanxz/rabbitmq-c.git,5294.536018518518,63,49,0 -librarian-puppet,-1.4485786469275,-0.125606368535378,-1.8632545720475,https://salsa.debian.org/ruby-team/librarian-puppet, https://github.com/voxpupuli/librarian-puppet.git,4114.136493055556,12,65,0 -libratbag,-0.00561410392495978,1.78132571047255,-0.552581796518418,https://salsa.debian.org/debian/libratbag, https://github.com/libratbag/libratbag.git,3025.6003935185186,108,44,0 -librdf-acl-perl,-2.0654979490634,1.28090823759533,-3.07339107233876,https://salsa.debian.org/perl-team/modules/packages/librdf-acl-perl, https://github.com/tobyink/p5-rdf-acl,1688.9962731481482,0,1,0 -librdf-aref-perl,-1.63216559742988,0.51267312940242,-2.0632435210871,https://salsa.debian.org/perl-team/modules/packages/librdf-aref-perl, https://github.com/nichtich/RDF-aREF.git,2565.8667708333332,2,8,0 -librdf-generator-void-perl,-1.63319542972363,0.625956949556484,-2.06342802293264,https://salsa.debian.org/perl-team/modules/packages/librdf-generator-void-perl, https://github.com/kjetilk/RDF-Generator-Void.git,1725.5093171296296,0,6,0 -librdf-helper-properties-perl,-1.4850797676548,1.07499452260591,-2.1065327244584,https://salsa.debian.org/perl-team/modules/packages/librdf-helper-properties-perl, https://github.com/kjetilk/RDF-Helper-Properties.git,2324.5435416666664,0,5,0 -librdf-linkeddata-perl,-1.52971899967862,-0.067842436919694,-2.08400212272878,https://salsa.debian.org/perl-team/modules/packages/librdf-linkeddata-perl, https://github.com/kjetilk/RDF-LinkedData.git,4060.5603472222224,0,7,0 -librdf-ns-curated-perl,-1.18462978482918,1.01719315039781,-1.62134295307884,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-curated-perl, https://github.com/kjetilk/p5-rdf-ns-curated.git,2949.0642245370373,0,4,0 -librdf-ns-perl,-0.52501600994773,1.01221794001187,-0.872083603299781,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-perl, https://github.com/nichtich/RDF-NS.git,4253.416851851852,2,5,0 -librdf-query-client-perl,-1.19131397245775,0.750204607793778,-1.75482893581306,https://salsa.debian.org/perl-team/modules/packages/librdf-query-client-perl, https://github.com/tobyink/p5-rdf-query-client,1767.4564930555555,0,1,0 -librdf-query-perl,-0.42201298662304,2.00095213155501,-1.06531294448896,https://salsa.debian.org/perl-team/modules/packages/librdf-query-perl, https://github.com/kasei/perlrdf.git,4701.621956018518,1,41,0 -librdf-trine-perl,-0.431139851129121,0.79209348427866,-0.784215821148872,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-perl, https://github.com/kasei/perlrdf.git,4701.621956018518,1,41,0 -librdf-trine-serializer-rdfa-perl,-1.57467206932518,1.22541687467132,-2.28632560166161,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-serializer-rdfa-perl, https://github.com/kjetilk/p5-rdf-trine-serializer-rdfa.git,1268.0197569444445,0,1,0 -librdf-trinex-functions-perl,-0.315431914346714,2.33788799662413,-0.970401834060701,https://salsa.debian.org/perl-team/modules/packages/librdf-trinex-functions-perl, https://github.com/tobyink/p5-rdf-trinex-functions,833.4788657407407,0,1,0 -librdf-vcard-perl,-1.15066512586346,1.24412369110821,-1.59125342283554,https://salsa.debian.org/perl-team/modules/packages/librdf-vcard-perl, https://github.com/tobyink/p5-rdf-vcard,1350.944537037037,0,1,0 -libre-engine-re2-perl,0.0664274847396321,1.55193350010968,-0.198667675011369,https://salsa.debian.org/perl-team/modules/packages/libre-engine-re2-perl, https://github.com/dgl/re-engine-RE2.git,4711.615763888889,4,2,0 -libregexp-assemble-perl,0.195651968063539,1.19755563449001,-0.0657051087984686,https://salsa.debian.org/perl-team/modules/packages/libregexp-assemble-perl, https://github.com/ronsavage/Regexp-Assemble.git,3022.017534722222,1,7,0 -libregexp-common-perl,0.42540296397963,2.68468982073041,-0.0434398168509383,https://salsa.debian.org/perl-team/modules/packages/libregexp-common-perl, https://github.com/Abigail/Regexp--Common.git,2712.181608796296,4,1,0 -libregexp-pattern-license-perl,0.299865829057144,1.94230090362017,-0.0934250453274103,https://salsa.debian.org/perl-team/modules/packages/libregexp-pattern-license-perl, https://salsa.debian.org/build-common-team/regexp-pattern-license,2183.5973958333334,0,1,0 -libregf,0.481511040301647,3.42738106553395,-0.319252191121083,https://salsa.debian.org/pkg-security-team/libregf, https://github.com/libyal/libregf,3351.514375,0,1,0 -librelp,0.331461248363428,2.04719168057569,-0.184877794774594,https://salsa.debian.org/debian/librelp, https://github.com/rsyslog/librelp,5591.54369212963,9,32,1 -libreswan,-0.468528979949208,0.17905881692428,-0.73359880118435,https://salsa.debian.org/debian/libreswan, https://github.com/libreswan/libreswan.git,5780.147326388889,145,62,0 -librose-db-object-perl,-0.590179077630734,0.761308719744224,-0.8838877592536,https://salsa.debian.org/perl-team/modules/packages/librose-db-object-perl, https://github.com/siracusa/rose.git,5666.525416666666,1,13,0 -librouteros,-2.16301529626701,0.422440336565631,-2.75850469569176,https://salsa.debian.org/python-team/packages/librouteros, https://github.com/luqasz/librouteros,4024.615208333333,4,7,3 -librsvg,1.70430484258557,2.42606456400645,1.19706671544533,https://salsa.debian.org/gnome-team/librsvg, https://gitlab.gnome.org/GNOME/librsvg.git,5765.845219907407,76,125,0 -librsync,1.05364499118674,2.25312785926588,0.417288831582171,https://salsa.debian.org/wrar/librsync, https://github.com/librsync/librsync,3224.9778472222224,6,27,0 -libsamplerate,1.12937689080289,2.27007675196493,0.518954842209819,https://salsa.debian.org/multimedia-team/libsamplerate, https://github.com/libsndfile/libsamplerate,5747.222685185186,38,5,1 -libsass-python,-0.269652251690511,0.827170955232116,-0.602722913780549,https://salsa.debian.org/debian/libsass-python, https://github.com/dahlia/libsass-python.git,4268.975092592593,7,93,0 -libsavitar,-0.0624513387530921,1.31074037796173,-0.382634692042406,https://salsa.debian.org/3dprinting-team/libsavitar, https://github.com/Ultimaker/libSavitar.git,2417.888148148148,12,19,0 -libsbsms,0.167875397062312,1.64214052262321,-0.131354146421564,https://salsa.debian.org/multimedia-team/libsbsms, https://github.com/claytonotey/libsbsms.git,571.9734837962963,2,6,0 -libscalar-does-perl,-0.53666515553433,1.22778989488429,-0.950471364107704,https://salsa.debian.org/perl-team/modules/packages/libscalar-does-perl, https://github.com/tobyink/p5-scalar-does,1614.181099537037,0,3,0 -libscca,0.46368276972707,3.52041926177531,-0.331124382950878,https://salsa.debian.org/pkg-security-team/libscca, https://github.com/libyal/libscca,3348.012650462963,1,1,0 -libsdl2-image,0.3933982404481,1.83134872415426,-0.0473641175524412,https://salsa.debian.org/sdl-team/libsdl2-image, https://github.com/libsdl-org/SDL_image.git,5518.743368055556,29,27,0 -libsdl2-mixer,0.211946373986496,1.27646268826839,-0.0961356390498847,https://salsa.debian.org/sdl-team/libsdl2-mixer, https://github.com/libsdl-org/SDL_mixer.git,5768.719791666666,38,29,0 -libsdl2-net,0.287925601835457,2.70482829766967,-0.176557931964796,https://salsa.debian.org/sdl-team/libsdl2-net, https://github.com/libsdl-org/SDL_net.git,5565.033611111111,10,12,0 -libsdl2-ttf,0.669269988223153,2.76464448660864,0.00979276254706905,https://salsa.debian.org/sdl-team/libsdl2-ttf, https://github.com/libsdl-org/SDL_ttf.git,5447.693391203704,17,21,0 -libseccomp,0.138136934743396,0.416274215040392,0.0228352342733521,https://salsa.debian.org/debian/libseccomp, https://github.com/seccomp/libseccomp,4323.21394675926,71,4,2 -libsecret,1.29341210108456,2.99007835173566,0.518451332193695,https://salsa.debian.org/gnome-team/libsecret, https://gitlab.gnome.org/GNOME/libsecret.git,4508.884780092592,81,101,0 -libserial,-1.10101782832275,1.68672096291128,-1.69819267118978,https://salsa.debian.org/debian/libserial, https://github.com/crayzeewulf/libserial.git,5587.681122685185,3,17,0 -libsharyanto-utils-perl,-2.34414656253823,-0.0852227274110705,-2.78556091741264,https://salsa.debian.org/perl-team/modules/packages/libsharyanto-utils-perl, https://github.com/perlancar/perl-SHARYANTO-Utils.git,2945.5977546296294,0,13,0 -libsigc++-2.0,1.03968231597484,2.0456143836956,0.511724918345553,https://salsa.debian.org/gnome-team/libsigcplusplus, https://github.com/libsigcplusplus/libsigcplusplus.git,5770.937280092593,22,19,0 -libsignon-glib,0.107604882254465,1.86575361309009,-0.334856808217216,https://salsa.debian.org/qt-kde-team/3rdparty/libsignon-glib, https://gitlab.com/accounts-sso/libsignon-glib.git,4303.899166666667,4,20,0 -libsimpleini,-3.1256993278502,-0.524309938879686,-3.72794076397833,https://salsa.debian.org/yangfl-guest/simpleini, https://github.com/brofield/simpleini,5767.129050925926,12,11,0 -libsis-jhdf5-java,-0.494313434523966,2.18766892903782,-1.43725639761486,https://salsa.debian.org/med-team/libsis-jhdf5-java, https://sissource.ethz.ch/sispub/jhdf5.git,1609.4798263888888,0,12,0 -libsmali-java,0.0513698279716944,1.85684354094995,-0.330648560215714,https://salsa.debian.org/android-tools-team/libsmali-java, https://github.com/JesusFreke/smali,4709.844421296296,28,24,0 -libsmbios,1.07959557534433,2.06198498006541,0.538211352169583,https://salsa.debian.org/efi-team/libsmbios, https://github.com/dell/libsmbios,5712.851053240741,17,21,3 -libsmdev,0.490191263592225,3.54730228444253,-0.318165930819659,https://salsa.debian.org/pkg-security-team/libsmdev, https://github.com/libyal/libsmdev,2801.6257060185185,0,1,0 -libsml,-2.55837529881451,0.0607386648107673,-3.2378106609148,https://github.com/volkszaehler/libsml/tree/debian,https://github.com/volkszaehler/libsml,4561.306574074074,12,15,0 -libsmraw,0.47410590340377,3.39663211123058,-0.321025674201182,https://salsa.debian.org/pkg-security-team/libsmraw, https://github.com/libyal/libsmraw.git,2800.5750925925927,0,1,0 -libsndfile,0.687122416198427,1.17425366378522,0.365871003046805,https://salsa.debian.org/multimedia-team/libsndfile, https://github.com/erikd/libsndfile,5766.237048611111,102,11,2 -libsnmp-extension-passpersist-perl,0.122684641538774,3.08053336090536,-0.739812883216525,https://salsa.debian.org/perl-team/modules/packages/libsnmp-extension-passpersist-perl, https://github.com/maddingue/SNMP-Extension-PassPersist.git,1526.080787037037,0,1,0 -libsoap-wsdl-perl,0.24944731263946,2.22137007210412,-0.215176538120953,https://salsa.debian.org/perl-team/modules/packages/libsoap-wsdl-perl, https://github.com/scrottie/SOAP-WSDL,3956.848634259259,2,7,0 -libsodium,0.765244085135836,2.64803550783215,0.125530797539089,https://github.com/gcsideal/debian-libsodium,https://github.com/gcsideal/debian-libsodium,2198.6639814814816,0,2,0 -libsoftware-license-perl,0.113385916335523,1.22207896035628,-0.0630717224638151,https://salsa.debian.org/perl-team/modules/packages/libsoftware-license-perl, https://github.com/Perl-Toolchain-Gang/Software-License.git,5727.028865740741,23,19,0 -libsolv,-0.0271499375535117,1.67319279960735,-0.710820292525023,https://salsa.debian.org/debian/libsolv/, https://github.com/openSUSE/libsolv,5784.8469444444445,12,80,1 -libsort-naturally-perl,0.734479252349759,3.73541621778303,-0.0108935716486266,https://salsa.debian.org/perl-team/modules/packages/libsort-naturally-perl, https://github.com/bingos/sort-naturally.git,681.4402893518519,0,3,0 -libsoundio,0.710235067583084,3.66504485327093,-0.205080147087698,https://salsa.debian.org/debian-hamradio-team/libsoundio, https://github.com/andrewrk/libsoundio.git,3080.119837962963,16,23,0 -libsoup2.4,2.82918144692368,4.40311161201946,1.94619997220726,https://salsa.debian.org/gnome-team/libsoup, https://gitlab.gnome.org/GNOME/libsoup,5770.812824074074,187,229,0 -libspiro,0.13157913198492,1.39927804826189,-0.190686667372893,https://salsa.debian.org/fonts-team/libspiro, https://github.com/fontforge/libspiro.git,4925.179953703704,1,10,0 -libspreadsheet-parseexcel-perl,0.039004450407711,0.809471237179452,-0.182726847126768,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-parseexcel-perl, https://github.com/runrig/spreadsheet-parseexcel.git,1902.0376851851852,1,6,0 -libspreadsheet-writeexcel-perl,-0.0847103731517616,0.31001256224266,-0.187134263215803,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-writeexcel-perl, https://github.com/jmcnamara/spreadsheet-writeexcel,5025.7453819444445,1,5,0 -libssh2,0.476244074845198,1.24659429011417,0.144224777926035,https://salsa.debian.org/debian/libssh2, https://github.com/libssh2/libssh2,5758.776932870371,166,33,1 -libstatgen,-0.975335451044937,0.482042938887889,-1.32090801317275,https://salsa.debian.org/med-team/libstatgen, https://github.com/statgen/libStatGen,3791.9891319444446,4,17,0 -libstatistics-basic-perl,-0.339509547993508,1.39607587169907,-0.630362081510994,https://salsa.debian.org/perl-team/modules/packages/libstatistics-basic-perl, https://github.com/jettero/statistics--basic,2331.8967939814816,1,4,0 -libstb,0.0260953724531321,0.614834906953147,-0.133211897146833,https://salsa.debian.org/yangfl-guest/stb, https://github.com/nothings/stb,3489.7656944444443,45,185,0 -libstring-diff-perl,-1.34559518707804,1.09068337241926,-1.899896390879,https://salsa.debian.org/perl-team/modules/packages/libstring-diff-perl, https://github.com/yappo/p5-String-Diff.git,2495.2807060185187,0,3,0 -libstring-mkpasswd-perl,-0.490179702199432,1.40583395094041,-0.857343824637964,https://salsa.debian.org/perl-team/modules/packages/libstring-mkpasswd-perl, https://github.com/sirhc/string-mkpasswd.git,1997.6768055555556,0,4,0 -libswitch-perl,1.12202729103399,3.28760878753767,0.290994220711003,https://salsa.debian.org/perl-team/modules/packages/libswitch-perl, https://github.com/chorny/Switch.git,4065.2442592592593,3,4,0 -libsys-filesystem-perl,-1.11204170749058,0.37036832353233,-1.54934801292139,https://salsa.debian.org/perl-team/modules/packages/libsys-filesystem-perl, https://github.com/rehsack/Sys-Filesystem,4021.0829050925927,2,3,0 -libsys-info-base-perl,-1.16573546354465,0.246937597250091,-1.45478961359389,https://salsa.debian.org/perl-team/modules/packages/libsys-info-base-perl, https://github.com/burak/CPAN-Sys-Info-Base.git,4472.814664351852,0,2,0 -libtabixpp,-0.560941827851746,1.56818648992766,-0.9903141087334,https://salsa.debian.org/med-team/libtabixpp, https://github.com/ekg/tabixpp.git,4263.766006944445,1,12,0 -libtasn1-6,0.0846618227528877,0.318809012324182,0.00599328703736889,https://salsa.debian.org/gnutls-team/libtasn1, https://gitlab.com/gnutls/libtasn1,5754.714618055556,14,14,0 -libteam,0.314611539581196,1.31197435368163,0.0101461880627549,https://salsa.debian.org/debian/libteam, https://github.com/jpirko/libteam,4358.826863425926,40,5,0 -libterm-readkey-perl,0.64417573125593,1.67251344948729,0.175743137768552,https://salsa.debian.org/perl-team/modules/packages/libterm-readkey-perl, https://github.com/jonathanstowe/TermReadKey.git,4734.95707175926,8,17,0 -libterm-table-perl,-0.950532737222555,1.40377640957523,-1.39063712096877,https://salsa.debian.org/perl-team/modules/packages/libterm-table-perl, https://github.com/exodist/Term-Table.git,2498.9135185185187,1,5,0 -libterm-ui-perl,0.398065193240985,2.59889297858378,-0.0533124700759042,https://salsa.debian.org/perl-team/modules/packages/libterm-ui-perl, https://github.com/jib/term-ui.git,4487.122407407407,4,10,0 -libtest-cmd-perl,-1.4068778672912,-0.243767507585069,-1.62828796025182,https://salsa.debian.org/perl-team/modules/packages/libtest-cmd-perl, https://github.com/neilb/Test-Cmd.git,4572.228310185185,1,7,0 -libtest-compile-perl,-0.175779081431813,2.26305679363941,-0.803073855123069,https://salsa.debian.org/perl-team/modules/packages/libtest-compile-perl, https://github.com/egiles/test-compile,5567.375601851852,2,14,0 -libtest-corpus-audio-mpd-perl,-2.74135833573926,-1.39926735845413,-3.01594906527937,https://salsa.debian.org/perl-team/modules/packages/libtest-corpus-audio-mpd-perl, http://github.com/jquelin/test-corpus-audio-mpd,904.9165856481482,0,2,0 -libtest-database-perl,-1.83380913497229,0.613327463187255,-2.34008679884277,https://salsa.debian.org/perl-team/modules/packages/libtest-database-perl, https://github.com/book/Test-Database.git,2702.254953703704,3,2,0 -libtest-file-contents-perl,-1.18096229775599,0.434377868320852,-1.48264698647843,https://salsa.debian.org/perl-team/modules/packages/libtest-file-contents-perl, https://github.com/ap/Test-File-Contents.git,4644.347511574074,2,4,0 -libtest-harness-perl,-1.5063742806525,-0.254147939098168,-1.8715013961377,https://salsa.debian.org/perl-team/modules/packages/libtest-harness-perl, https://github.com/Perl-Toolchain-Gang/Test-Harness.git,5734.110335648148,27,47,0 -libtest-perl-critic-perl,0.264206027251901,2.90168344557812,-0.523782562876993,https://salsa.debian.org/perl-team/modules/packages/libtest-perl-critic-perl, https://github.com/Perl-Critic/Test-Perl-Critic.git,4634.745844907407,0,9,0 -libtest-pod-coverage-perl,-0.201777392019441,1.08314758829641,-0.432747700797595,https://salsa.debian.org/perl-team/modules/packages/libtest-pod-coverage-perl, https://github.com/neilbowers/Test-Pod-Coverage,1677.1204166666666,1,2,0 -libtest-prereq-perl,-1.88960570834042,-0.367653369623538,-2.15461171930815,https://salsa.debian.org/perl-team/modules/packages/libtest-prereq-perl, https://github.com/briandfoy/test-prereq.git,2918.7659375,4,8,0 -libtest-rdf-perl,-1.52737405933553,1.1507063443416,-2.12297090884194,https://salsa.debian.org/perl-team/modules/packages/libtest-rdf-perl, https://github.com/kjetilk/Test-RDF.git,2744.08443287037,0,3,0 -libtest-redisserver-perl,-2.94083493267149,-0.0880954322803377,-3.66851510228242,https://salsa.debian.org/perl-team/modules/packages/libtest-redisserver-perl, https://github.com/typester/Test-RedisServer.git,3497.317025462963,0,12,0 -libtest-strict-perl,0.0413930214920238,1.971000323689,-0.491725485595185,https://salsa.debian.org/perl-team/modules/packages/libtest-strict-perl, https://github.com/manwar/Test-Strict.git,2362.520509259259,1,15,0 -libtest-xpath-perl,-1.69700412757212,0.582725427839162,-2.14674756098572,https://salsa.debian.org/perl-team/modules/packages/libtest-xpath-perl, https://github.com/manwar/Test-XPath.git,4673.896469907408,1,7,0 -libtext-csv-xs-perl,0.321044338398603,2.30356481785881,-0.0928202392731093,https://salsa.debian.org/perl-team/modules/packages/libtext-csv-xs-perl, https://github.com/Tux/Text-CSV_XS.git,5755.1094907407405,9,17,0 -libtext-diff-perl,0.318625038543993,2.49178187060109,-0.168554791579662,https://salsa.debian.org/perl-team/modules/packages/libtext-diff-perl, https://github.com/neilb/Text-Diff,2314.185601851852,0,6,0 -libtext-findindent-perl,-0.555513183475546,1.67112528991827,-1.00832526739478,https://salsa.debian.org/perl-team/modules/packages/libtext-findindent-perl, https://github.com/tsee/p5-Text-FindIndent.git,3337.1243287037037,0,6,0 -libtext-markdown-perl,0.934319761936114,4.33297705496069,-0.166685437504858,https://salsa.debian.org/perl-team/modules/packages/libtext-markdown-perl, https://github.com/bobtfish/text-markdown.git,2874.5088194444443,0,12,0 -libtext-multimarkdown-perl,0.251726289263937,2.93013200166338,-0.554049890835888,https://salsa.debian.org/perl-team/modules/packages/libtext-multimarkdown-perl, https://github.com/bobtfish/text-multimarkdown.git,2348.7609953703704,0,10,0 -libtext-soundex-perl,0.813169646070408,4.20540820560788,0.00817369893363091,https://salsa.debian.org/perl-team/modules/packages/libtext-soundex-perl, https://github.com/rjbs/Text-Soundex,1152.2136342592592,3,2,0 -libtext-sprintfn-perl,-0.817958965788847,2.15007124945723,-1.60695349482585,https://salsa.debian.org/perl-team/modules/packages/libtext-sprintfn-perl, https://github.com/perlancar/perl-Text-sprintfn,2949.61625,0,11,0 -libtheora,0.639097241121881,1.22745532729131,0.305963603523608,https://salsa.debian.org/multimedia-team/libtheora, https://gitlab.xiph.org/xiph/theora.git,4626.117118055556,6,25,0 -libthread-pool,-0.540663626276791,1.50526353603252,-1.07288308787208,https://salsa.debian.org/med-team/libthread-pool, https://github.com/rvaser/thread_pool,1629.2300810185186,1,4,0 -libthrust,0.105459471536297,1.03283463007426,-0.164795588948125,https://salsa.debian.org/nvidia-team/libthrust, https://github.com/NVIDIA/thrust,5364.755462962963,64,84,3 -libthumbor,-3.09799425599102,-0.437018346915755,-3.71717021447499,https://salsa.debian.org/python-team/packages/libthumbor, https://github.com/thumbor/libthumbor,4029.2128125,6,18,0 -libtie-ixhash-perl,0.730873545729144,3.27475066745528,0.0615000077631298,https://salsa.debian.org/perl-team/modules/packages/libtie-ixhash-perl, https://github.com/chorny/Tie-IxHash.git,1314.8113773148148,1,4,0 -libtins,-0.250313744007394,1.97330047594095,-0.934305068114994,https://salsa.debian.org/debian/libtins, https://github.com/mfontanini/libtins.git,4422.967256944445,38,54,0 -libtomcrypt,0.481089702177077,1.47609543958715,0.0746011361914949,https://salsa.debian.org/debian/libtomcrypt, https://github.com/libtom/libtomcrypt,4891.575775462963,34,37,2 -libtools-logging-clojure,-0.0293820524135521,2.73352207490157,-0.667351571787989,https://salsa.debian.org/clojure-team/libtools-logging-clojure, https://github.com/clojure/tools.logging.git,4541.119618055555,3,16,0 -libtorrent,0.605470632306201,1.79563815924903,0.0408663558283295,https://salsa.debian.org/debian/libtorrent, https://github.com/rakshasa/libtorrent.git,5501.292025462963,10,26,0 -libtoxcore,0.32011151482097,3.03136567313186,-0.386100723985601,https://salsa.debian.org/yangfl-guest/c-toxcore, https://github.com/TokTok/c-toxcore,3824.9777662037036,28,278,6 -libtypes-datetime-perl,-1.22242531036125,1.1350772402848,-1.71343703820229,https://salsa.debian.org/perl-team/modules/packages/libtypes-datetime-perl, https://github.com/tobyink/p5-types-datetime,1190.8059837962962,1,4,0 -libunibreak,0.391070731401678,2.53841337301907,-0.123480715889143,https://salsa.debian.org/qt-kde-team/3rdparty/libunibreak, https://github.com/adah1972/libunibreak.git,5748.020740740741,6,11,0 -libuninameslist,0.487513273800329,2.48630016931597,-0.0941545187032333,https://salsa.debian.org/fonts-team/libuninameslist, https://github.com/fontforge/libuninameslist,5640.186574074074,5,13,0 -liburcu,0.185196387813715,0.788832393535324,-0.0767619135942802,https://salsa.debian.org/debian/liburcu, git://git.lttng.org/userspace-rcu.git,5386.596886574074,69,5,0 -liburi-perl,0.158952991942081,0.48321946010236,0.0298109636995746,https://salsa.debian.org/perl-team/modules/packages/liburi-perl, https://github.com/libwww-perl/URI.git,5620.904293981482,27,14,0 -libusbauth-configparser,-0.601487574640931,1.9320845324868,-1.22518035577705,https://salsa.debian.org/debian/libusbauth-configparser, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0 -libusbmuxd,0.728920628416698,2.70868070142804,0.107294524138199,https://salsa.debian.org/imobiledevice-team/libusbmuxd, https://github.com/libimobiledevice/libusbmuxd.git,3636.013275462963,9,9,0 -libva,0.0494940690257993,0.170001330935645,-0.00249322168569096,https://salsa.debian.org/multimedia-team/libva, https://github.com/intel/libva.git,5773.8606712962965,171,41,0 -libvcs-lite-perl,-0.854288642725774,1.46043999521999,-1.32941773389118,https://salsa.debian.org/perl-team/modules/packages/libvcs-lite-perl, http://github.com/barbie/vcs-lite,1975.3471527777779,0,1,0 -libvdpau,0.618357617580532,1.66067983878063,0.169297426195514,https://salsa.debian.org/nvidia-team/libvdpau, https://gitlab.freedesktop.org/vdpau/libvdpau,4888.215601851852,16,6,0 -libverto,2.41895367773709,5.94720677902277,1.01589189254594,https://salsa.debian.org/debian/libverto, https://github.com/latchset/libverto,3721.9244907407406,8,2,0 -libvhdi,0.648102145419946,3.13520528751691,-0.167154547293664,https://salsa.debian.org/pkg-security-team/libvhdi, https://github.com/libyal/libvhdi.git,3717.6224074074075,1,1,0 -libvirt-glib,0.515586010617463,1.76457303736923,0.049122250554012,https://salsa.debian.org/libvirt-team/libvirt-glib, https://gitlab.com/libvirt/libvirt-glib.git,5518.034652777777,28,20,0 -libvirt-python,0.0558059504342531,0.454058188927305,-0.0847307318977644,https://salsa.debian.org/libvirt-team/libvirt-python, https://gitlab.com/libvirt/libvirt-python.git,5762.999039351852,53,42,0 -libvisual,0.424705113073563,1.19342259343078,0.0990434826262076,https://salsa.debian.org/debian/libvisual, https://github.com/Libvisual/libvisual.git,5044.523402777778,19,14,0 -libvisual-plugins,1.19936146778029,2.93331151942495,0.443027153461634,https://salsa.debian.org/debian/libvisual-plugins, https://github.com/Libvisual/libvisual,5044.523402777778,19,14,4 -libvitacilina-perl,-3.60211801359306,-0.769754564008352,-4.29247813265034,https://salsa.debian.org/perl-team/modules/packages/libvitacilina-perl, https://github.com/damog/vitacilina.git,2796.749988425926,1,5,0 -libvmdk,0.96647885593189,4.38842861799146,-0.0908861019951137,https://salsa.debian.org/pkg-security-team/libvmdk, https://github.com/libyal/libvmdk.git,2936.766087962963,2,1,0 -libvmime,-0.592445266781496,0.08930958459966,-0.923967776311259,https://salsa.debian.org/giraffe-team/libvmime, https://github.com/kisli/vmime.git,5686.971053240741,3,26,0 -libvorbis,1.18726459670285,1.82863925834097,0.755754253318583,https://salsa.debian.org/multimedia-team/libvorbis, https://gitlab.xiph.org/xiph/vorbis.git,4789.252337962963,17,23,0 -libvshadow,0.27430347501286,2.65303740771095,-0.35126524914681,https://salsa.debian.org/pkg-security-team/libvshadow, https://github.com/libyal/libvshadow.git,3860.9818171296297,1,1,0 -libvslvm,0.497213218161358,3.57527486868103,-0.306518703278772,https://salsa.debian.org/pkg-security-team/libvslvm, https://github.com/libyal/libvslvm,3338.937025462963,0,1,0 -libweb-id-perl,-1.7090564745837,0.894193684686225,-2.3119612886226,https://salsa.debian.org/perl-team/modules/packages/libweb-id-perl, https://github.com/tobyink/p5-web-id,743.3495023148148,0,1,0 -libwfut,-0.372293282701199,1.18246535899408,-1.03733165160998,https://salsa.debian.org/games-team/libwfut, https://github.com/worldforge/libwfut,5568.697824074074,0,9,0 -libwmf,1.63753191040568,2.69003305309751,0.986051196992878,https://salsa.debian.org/yangfl-guest/libwmf, https://github.com/caolanm/libwmf,1783.8275231481482,5,6,0 -libwnck,0.971475690392017,1.99302217891584,0.405572484667965,https://salsa.debian.org/debian/libwnck, https://gitlab.gnome.org/GNOME/libwnck,5770.07787037037,90,187,0 -libwnck3,0.247473145901933,1.13716039494225,-0.00122706167010001,https://salsa.debian.org/gnome-team/libwnck3, https://gitlab.gnome.org/GNOME/libwnck.git,5770.07787037037,90,187,0 -libwww-facebook-api-perl,-1.3338913452864,0.342460716630254,-1.62814934844314,https://salsa.debian.org/perl-team/modules/packages/libwww-facebook-api-perl, https://github.com/unobe/perl-wfa.git,3078.4910185185186,2,7,0 -libwww-finger-perl,-1.96923567900972,0.395689920654101,-2.56874456647902,https://salsa.debian.org/perl-team/modules/packages/libwww-finger-perl, https://github.com/tobyink/p5-www-finger,1316.1418171296295,0,1,0 -libwww-google-calculator-perl,-1.99576703095823,-0.963482599047058,-2.15653356267234,https://salsa.debian.org/perl-team/modules/packages/libwww-google-calculator-perl, https://github.com/typester/www-google-calculator-perl.git,8.980289351851852,0,2,0 -libx86emu,0.288262171315658,2.15102947652694,-0.118770099396324,https://salsa.debian.org/debian/libx86emu, https://github.com/wfeldt/libx86emu,5028.251597222222,1,8,0 -libxc,-0.110516237152931,1.76557059909145,-0.496710234608533,https://salsa.debian.org/debichem-team/libxc, https://gitlab.com/libxc/libxc/tree/master,5185.326875,55,11,0 -libxcrypt,0.62943363014046,1.89179728992148,0.11007174185628,https://salsa.debian.org/md/libxcrypt, https://github.com/besser82/libxcrypt.git,2976.005405092593,9,14,0 -libxext,0.691716190789809,2.41859553296657,0.11730908121992,https://salsa.debian.org/xorg-team/lib/libxext, https://gitlab.freedesktop.org/xorg/lib/libxext.git,5730.833668981481,17,16,0 -libxi,0.972803738358812,1.98730701315062,0.448995717512291,https://salsa.debian.org/xorg-team/lib/libxi, https://gitlab.freedesktop.org/xorg/lib/libxi.git,5720.8112037037035,30,24,0 -libxml-compile-wsdl11-perl,-1.43102862157411,0.741938827310165,-1.85944467446204,https://salsa.debian.org/perl-team/modules/packages/libxml-compile-wsdl11-perl, https://github.com/markov2/perl5-XML-Compile-WSDL11,1204.3164351851851,0,2,0 -libxml-encoding-perl,-0.709322274153065,1.48980743096261,-1.18751789181575,https://salsa.debian.org/perl-team/modules/packages/libxml-encoding-perl, https://github.com/steve-m-hay/XML-Encoding.git,2428.8622685185187,1,1,0 -libxml-generator-perl,-0.485968992312904,1.02798418665572,-0.830160727545501,https://salsa.debian.org/perl-team/modules/packages/libxml-generator-perl, https://github.com/timlegge/perl-XML-Generator,442.04068287037035,0,3,0 -libxml-sax-expat-perl,0.708441292515007,2.92271712476809,0.0786452436347989,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-expat-perl, https://github.com/hoehrmann/XML-SAX-Expat,2544.4844675925924,0,4,0 -libxml-sax-machines-perl,-0.962860473725603,0.425340458563971,-1.26975404899833,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-machines-perl, https://github.com/perigrin/xml-sax-machines.git,1529.9486111111112,1,2,0 -libxml-sax-perl,0.996402311975507,2.25773121479724,0.391482823766641,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-perl, https://github.com/grantm/xml-sax,3966.257372685185,0,6,0 -libxml-saxon-xslt2-perl,-1.00661250511358,2.28472673392841,-1.86458025649904,https://salsa.debian.org/perl-team/modules/packages/libxml-saxon-xslt2-perl, https://github.com/tobyink/p5-xml-saxon-xslt2,1518.5208564814816,0,1,0 -libxml2,1.45482701887955,1.79014587347841,1.17406965056138,https://salsa.debian.org/xml-sgml-team/libxml2, https://gitlab.gnome.org/gnome/libxml2,5788.119872685185,255,40,0 -libxmlb,0.650849534492999,3.3286264453169,-0.0130638591028841,https://salsa.debian.org/efi-team/libxmlb, https://github.com/hughsie/libxmlb.git,1900.0449074074074,20,6,0 -libxmlbird,0.392931324098745,3.14776528674364,-0.438139231609347,https://salsa.debian.org/fonts-team/libxmlbird, https://github.com/johanmattssonm/xmlbird.git,3048.260277777778,1,7,0 -libxrandr,0.826643806766099,2.31139960066686,0.226934632166586,https://salsa.debian.org/xorg-team/lib/libxrandr, https://gitlab.freedesktop.org/xorg/lib/libxrandr.git,5687.639756944444,12,18,0 -libxsmm,-0.234662432578352,4.55837802448133,-1.79577149510859,https://salsa.debian.org/science-team/libxsmm, https://github.com/libxsmm/libxsmm,2814.5005324074073,23,91,3 -libxstream-java,0.340048724522918,1.45089929987566,-0.0600865184240221,https://salsa.debian.org/java-team/libxstream-java, https://github.com/x-stream/xstream.git,5706.99619212963,29,7,0 -libyami,-0.771853912708587,1.47227022176057,-1.20090383110924,https://salsa.debian.org/multimedia-team/libyami, https://github.com/01org/libyami.git,3727.7229398148147,38,42,0 -libyami-utils,-0.833959478652975,1.16869196238062,-1.28243891938561,https://salsa.debian.org/multimedia-team/libyami-utils, https://github.com/intel/libyami-utils,3282.9452314814816,13,12,0 -libyaml,0.362024879495468,1.37780811236272,0.0360856455789989,https://salsa.debian.org/debian/libyaml, https://github.com/yaml/libyaml.git,4849.859988425926,25,16,0 -libyaml-appconfig-perl,-0.280666544672343,2.15384258713683,-0.99668897545926,https://salsa.debian.org/perl-team/modules/packages/libyaml-appconfig-perl, https://github.com/Xaerxess/YAML-AppConfig,1551.237361111111,5,2,0 -libyang,0.128394798208912,3.05066072280012,-0.773108869181388,https://github.com/CESNET/libyang/tree/debian/master,https://github.com/CESNET/libyang,1297.9920949074074,60,69,3 -libydpdict,-1.33679122898043,0.311079451576597,-1.74074276078311,https://github.com/porridge/libydpdict,https://github.com/porridge/libydpdict,5005.956967592592,1,3,0 -libzeep,-1.52790920901661,-0.646859418196531,-1.75485723290627,https://salsa.debian.org/med-team/libzeep, https://github.com/mhekkel/libzeep.git,5502.828634259259,2,5,0 -libzypp,0.638390685204771,2.73362440473488,-0.37497026957532,https://salsa.debian.org/debian/libzypp, https://github.com/openSUSE/libzypp.git,5782.022939814815,146,51,0 -licensecheck,2.38847032342601,4.26628928285515,1.38376158074449,https://salsa.debian.org/perl-team/modules/packages/licensecheck, https://salsa.debian.org/build-common-team/licensecheck,2569.8996527777776,32,2,0 -light,0.503298554569783,2.41968846307355,-0.311547499433087,https://salsa.debian.org/debian/light, https://github.com/haikarainen/light.git,3160.160011574074,4,28,0 -light-locker,2.03026908755181,3.66409652897077,1.14287825499577,https://salsa.debian.org/xfce-extras-team/light-locker, https://github.com/the-cavalry/light-locker,4227.149664351852,82,214,2 -lightdm,2.24439750372144,2.94460105712629,1.73977769640998,https://salsa.debian.org/xfce-extras-team/lightdm, https://github.com/canonical/lightdm.git,4834.544722222222,52,64,0 -lightdm-gtk-greeter,2.36446228509234,3.68227308224801,1.57381673865143,https://salsa.debian.org/xfce-extras-team/lightdm-gtk-greeter, https://github.com/Xubuntu/lightdm-gtk-greeter.git,4390.526238425926,8,28,0 -lighttpd,0.34506857349347,0.530238909020136,0.201812230576413,https://salsa.debian.org/debian/lighttpd, https://git.lighttpd.net/lighttpd/lighttpd1.4.git,5785.019583333334,35,9,0 -lightyears,1.43422348850863,4.37833833439974,0.266715256234677,https://salsa.debian.org/python-team/packages/lightyears, https://github.com/20kly/20kly.git,4073.732349537037,0,3,0 -lilv,0.373195495390768,1.17831410260903,0.0585307699086615,https://salsa.debian.org/multimedia-team/lilv, https://github.com/lv2/lilv.git ,5733.844351851852,8,1,0 -limereg,0.236071407499813,2.90928891702837,-0.724726085369987,https://salsa.debian.org/science-team/limereg, https://github.com/RoelofBerg/limereg.git,1172.0418171296296,0,3,0 -limesuite,0.168900137605749,1.88113034967185,-0.235237004793903,https://salsa.debian.org/debian-hamradio-team/limesuite, https://github.com/myriadrf/LimeSuite.git,3078.197789351852,23,45,0 -link-grammar,0.0438861551405477,0.406336489608999,-0.116191013815743,https://salsa.debian.org/debian/link-grammar, https://github.com/opencog/link-grammar.git,5603.448819444445,8,39,0 -linkchecker,0.272313856521349,0.708744107404942,-0.0259388475172617,https://salsa.debian.org/python-team/packages/linkchecker, https://github.com/linkcheck/linkchecker.git,5785.38494212963,19,50,0 -linux-minidisc,-0.963187260401244,1.83871334132017,-1.63781202078042,https://github.com/glaubitz/linux-minidisc,https://github.com/glaubitz/linux-minidisc,4847.712349537037,36,17,0 -linuxdoc-tools,0.251990546513247,0.794710072783013,-0.0753946293960988,https://salsa.debian.org/xml-sgml-team/linuxdoc-tools, https://gitlab.com/agmartin/linuxdoc-tools,1218.9397800925926,6,3,0 -linuxlogo,3.61684272086543,4.85023829471809,2.81240573249716,https://salsa.debian.org/debian/linuxlogo, https://github.com/deater/linux_logo.git,3761.5540393518518,1,11,0 -liquidprompt,-0.00551072569591398,1.66741221943402,-0.447121835313994,https://salsa.debian.org/debian/pkg-liquidprompt, https://github.com/nojhan/liquidprompt.git,4694.937534722222,59,60,0 -litl,-1.91266501331196,-1.56715868838349,-1.99003495396425,https://salsa.debian.org/debian/litl, https://github.com/trahay/LiTL.git,3099.00931712963,0,7,0 -lksctp-tools,0.0452198517664519,0.369575017349271,-0.0618537573973216,https://salsa.debian.org/debian/lksctp-tools, https://github.com/sctp/lksctp-tools,5515.8208912037035,27,6,1 -llgal,-0.387269262559881,0.415121675912753,-0.684317591398372,https://github.com/bgoglin/llgal,https://github.com/bgoglin/llgal,4534.944421296296,2,4,0 -lltag,0.0467559810024722,1.49042156652433,-0.450526954857352,https://github.com/bgoglin/lltag,https://github.com/bgoglin/lltag,4379.026932870371,3,3,0 -llvmlite,0.247097539496233,1.96216788713643,-0.403002110236034,https://salsa.debian.org/pkg-llvm-team/llvmlite/, https://github.com/numba/llvmlite.git,3423.0569560185186,27,90,0 -lmfit-py,0.336338332355777,2.00246319428889,-0.264824786229074,https://salsa.debian.org/science-team/lmfit-py, https://github.com/lmfit/lmfit-py,4505.563969907407,24,74,2 -lmms,0.886997528817454,1.65443188643573,0.418658339395773,https://salsa.debian.org/multimedia-team/lmms, https://github.com/LMMS/lmms.git,5780.812037037037,191,143,0 -lmod,-0.616736049761727,1.80649861349029,-1.2865290478465,https://salsa.debian.org/hpc-team/lmod, https://github.com/TACC/Lmod,4671.945439814815,18,55,0 -lmodern,0.188486638396719,0.551045642136008,0.018815822262696,https://github.com/debian-tex/lmodern,https://github.com/debian-tex/lmodern,5129.20318287037,1,7,0 -lnav,0.535366725615169,1.93420819992393,-0.0323395042149713,https://salsa.debian.org/carnil/lnav, https://github.com/tstack/lnav,5194.156064814815,17,59,0 -log4cxx,0.434636355818473,1.60025020268066,-0.0917843487399783,https://salsa.debian.org/debian/log4cxx, https://github.com/apache/logging-log4cxx.git,3632.702222222222,22,27,0 -logbook,-0.489632469534676,1.33039798258088,-1.05130674142605,https://salsa.debian.org/debian/logbook, https://github.com/getlogbook/logbook.git,4893.891782407408,11,77,0 -logging-tree,-1.64142645592676,0.777789823714024,-2.28134788645632,https://salsa.debian.org/debian/python-logging-tree, https://github.com/brandon-rhodes/logging_tree.git,3349.126053240741,5,7,0 -logtop,0.349809666203344,3.71453083438433,-0.528348008657722,https://github.com/JulienPalard/logtop,https://github.com/JulienPalard/logtop,3192.2077430555555,0,9,0 -lolcat,0.672126293491262,3.17654320523077,-0.108840544461704,https://salsa.debian.org/ruby-team/lolcat, https://github.com/busyloop/lolcat.git,3767.915451388889,1,19,0 -lollypop,-0.592629944002431,-0.200766751174538,-0.656469174836575,https://salsa.debian.org/python-team/packages/lollypop, https://gitlab.gnome.org/World/lollypop.git,3225.2413541666665,23,86,0 -loqui,-1.70079847884635,0.603996740702985,-2.14647400312162,https://salsa.debian.org/debian/loqui, https://github.com/sunnyone/loqui.git,4178.25380787037,1,9,0 -lskat,0.662855262627446,2.91532181779614,-0.0395644481093843,https://salsa.debian.org/qt-kde-team/kde/lskat, https://anongit.kde.org/lskat.git,5684.984976851852,4,57,0 -lsmount,0.241790672994827,3.2370471304323,-0.615190830342454,https://github.com/Llandon/lsmount,https://github.com/Llandon/lsmount,2894.883425925926,1,4,0 -lsp-mode,-0.304460429096048,2.33892777531683,-0.944712106774873,https://salsa.debian.org/emacsen-team/lsp-mode, https://github.com/emacs-lsp/lsp-mode.git,2556.5827430555555,551,96,0 -lsyncd,1.5424991618737,4.03399134765391,0.479974475913151,https://salsa.debian.org/debian/lsyncd, https://github.com/lsyncd/lsyncd,5322.023402777778,11,42,0 -ltsp,-0.260538969092853,-0.12702304328263,-0.357622790045197,https://github.com/ltsp/ltsp/,https://github.com/ltsp/ltsp,1481.8791782407407,11,5,0 -lua-cliargs,-0.547918670790067,1.20110819383126,-0.925218602795718,https://salsa.debian.org/lua-team/lua-cliargs, https://github.com/amireh/lua_cliargs,4184.137916666667,0,9,0 -lua-dbi,0.15858131476338,2.68635146603853,-0.494955321624535,https://salsa.debian.org/lua-team/lua-dbi, https://github.com/mwild1/luadbi,2870.1189699074075,1,15,0 -lua-expat,0.0739779285984903,0.731738421595142,-0.042551661594947,https://salsa.debian.org/lua-team/lua-expat, https://github.com/lunarmodules/luaexpat,4256.833136574074,4,6,0 -lua-inotify,-0.577989098351131,2.14392695201471,-1.22384955006102,https://salsa.debian.org/lua-team/lua-inotify, https://github.com/hoelzro/linotify.git,2964.312476851852,3,9,0 -lua-ldap,0.0504029107376684,1.73492235969394,-0.442531212295876,https://salsa.debian.org/lua-team/lua-ldap, https://github.com/lualdap/lualdap.git,4408.706979166666,7,12,0 -lua-lgi,0.0796701927291182,0.817172695284798,-0.167463962063516,https://salsa.debian.org/lua-team/lua-lgi, https://github.com/lgi-devs/lgi,4786.879918981482,15,37,0 -lua-luv,0.391431800295549,2.57846041354865,-0.201597373537871,https://salsa.debian.org/lua-team/lua-luv, https://github.com/luvit/luv,4034.9445949074075,25,59,0 -lua-penlight,0.0639746775887271,2.17352467029109,-0.482388013478804,https://salsa.debian.org/lua-team/lua-penlight, https://github.com/lunarmodules/penlight,4944.065208333333,27,64,2 -lua-redis,-0.399556283887543,2.3401321655893,-1.06790409637091,https://salsa.debian.org/lua-team/lua-redis, https://github.com/nrk/redis-lua,2064.011689814815,2,10,0 -lua-say,0.0600475564933599,3.43550606394514,-0.826292348408664,https://salsa.debian.org/lua-team/lua-say, https://github.com/lunarmodules/say.git,4008.0407638888887,1,11,0 -lua-sec,0.463205231509781,1.77718549119632,-0.0421545142801361,https://salsa.debian.org/lua-team/lua-sec, https://github.com/brunoos/luasec,4110.113344907408,4,36,0 -lua-sql,0.246848441635591,2.08758291007947,-0.373214963402349,https://salsa.debian.org/lua-team/lua-sql, https://github.com/lunarmodules/luasql,5630.505844907408,7,40,0 -lua-yaml,-0.345498399406386,1.95837097623919,-0.798092863642857,https://salsa.debian.org/lua-team/lua-yaml/, https://github.com/gvvaughan/lyaml,3607.291111111111,1,7,1 -luakit,0.309977718500391,1.19936402482918,-0.167379545497754,https://salsa.debian.org/debian/luakit, https://github.com/luakit/luakit,4157.771076388889,75,51,2 -lucene++,0.166368469581524,1.96604916916922,-0.267810462946104,https://salsa.debian.org/debian/luceneplusplus, https://github.com/luceneplusplus/LucenePlusPlus.git,4584.765231481481,3,40,0 -lugaru,-0.313635578079523,1.12004911508537,-0.633356084321523,https://salsa.debian.org/games-team/lugaru, https://gitlab.com/osslugaru/lugaru,4314.219988425926,2,25,0 -lunar-date,-1.09013250659012,-0.0609883227276274,-1.37419240455209,https://salsa.debian.org/chinese-team/lunar-date, https://github.com/yetist/lunar-date,5400.152511574074,1,8,0 -luola,-0.273628043096639,0.455422113672505,-0.570925483236996,https://salsa.debian.org/debian/luola, https://github.com/callaa/luola.git,0.009537037037037037,0,1,0 -lv2,0.228928854296114,2.24238536076862,-0.280197366302975,https://salsa.debian.org/multimedia-team/lv2, https://github.com/lv2/lv2.git ,4741.717118055555,18,5,0 -lv2file,0.62671181749622,3.5316112472614,-0.33646141639388,https://salsa.debian.org/multimedia-team/lv2file, https://github.com/jeremysalwen/lv2file.git,4139.535844907407,2,9,0 -lwt,-0.134408788950251,0.913721687429713,-0.525463939625241,https://salsa.debian.org/ocaml-team/lwt, https://github.com/ocsigen/lwt.git,5681.656030092593,82,99,0 -lxappearance,2.81897548079455,5.13075810379885,1.6743807598685,https://salsa.debian.org/lxde-team/lxappearance, https://github.com/lxde/lxappearance.git,4801.901712962963,111,38,0 -lxc,-0.027168934320616,0.029595009427975,-0.0680905702749467,https://salsa.debian.org/lxc-team/lxc, https://github.com/lxc/lxc.git,5607.156944444445,269,336,0 -lxcfs,1.38676130732793,4.43841435229823,0.348973908727663,https://salsa.debian.org/lxc-team/lxcfs, https://github.com/lxc/lxcfs.git,3289.0780671296297,17,72,0 -lxctl,1.45646558604501,5.0051312043978,0.180488606033576,https://salsa.debian.org/debian/lxctl, https://github.com/lxctl/lxctl,2540.4811342592593,0,29,1 -lxde-icon-theme,0.342003694645246,2.55208710000447,-0.0935522829292904,https://salsa.debian.org/lxde-team/lxde-icon-theme, https://github.com/lxde/lxde-icon-theme,1739.474375,0,4,0 -lxhotkey,1.14102919115354,4.81449105540165,0.0876782474082915,https://salsa.debian.org/lxde-team/lxhotkey, https://github.com/lxde/lxhotkey.git,2759.3632291666668,8,4,0 -lxinput,0.755510666725437,3.03386810336789,0.062981082023255,https://salsa.debian.org/lxde-team/lxinput, https://github.com/lxde/lxinput.git,5254.87707175926,78,26,0 -lxpanel,0.859289142576819,1.40809179120531,0.502431475961268,https://salsa.debian.org/lxde-team/lxpanel, https://github.com/lxde/lxpanel.git,5700.776701388889,151,48,0 -lxqt-about,0.287331633224624,2.55760434409222,-0.156113298358622,https://salsa.debian.org/lxqt-team/lxqt-about, https://github.com/lxqt/lxqt-about.git,4149.16412037037,94,45,0 -lxqt-admin,0.109860838176109,1.6180664209049,-0.162930004360484,https://salsa.debian.org/lxqt-team/lxqt-admin, https://github.com/lxqt/lxqt-admin.git,3455.429861111111,80,41,0 -lxqt-config,-0.108142141623944,0.0337544190033268,-0.146389008866361,https://salsa.debian.org/lxqt-team/lxqt-config, https://github.com/lxqt/lxqt-config.git,4495.379548611111,137,74,0 -lxqt-globalkeys,0.234799198637964,1.82045556065656,-0.142166441910379,https://salsa.debian.org/lxqt-team/lxqt-globalkeys, https://github.com/lxqt/lxqt-globalkeys.git,4146.0372916666665,56,46,0 -lxqt-notificationd,0.308607776113874,2.55364218141083,-0.139083228218541,https://salsa.debian.org/lxqt-team/lxqt-notificationd, https://github.com/lxqt/lxqt-notificationd.git,4167.649930555555,85,48,0 -lxqt-openssh-askpass,0.263970158559498,2.05588498205914,-0.140326344539553,https://salsa.debian.org/lxqt-team/lxqt-openssh-askpass, https://github.com/lxqt/lxqt-openssh-askpass.git,4154.121712962963,34,30,0 -lxqt-panel,0.0467863632751567,0.641006504236492,-0.135009396264991,https://salsa.debian.org/lxqt-team/lxqt-panel, https://github.com/lxqt/lxqt-panel.git,4797.16994212963,187,111,0 -lxqt-policykit,0.849725532046253,4.03000539693702,-0.00381213271558405,https://salsa.debian.org/lxqt-team/lxqt-policykit, https://github.com/lxqt/lxqt-policykit.git,4324.8308449074075,48,36,0 -lxqt-powermanagement,0.067990475996623,1.19644354347445,-0.145591595765742,https://salsa.debian.org/lxqt-team/lxqt-powermanagement, https://github.com/lxqt/lxqt-powermanagement.git,4140.606550925926,76,51,0 -lxqt-runner,0.0124283056612465,1.1138238755934,-0.164796166466519,https://salsa.debian.org/lxqt-team/lxqt-runner, https://github.com/lxqt/lxqt-runner.git,4515.7259722222225,56,49,0 -lxqt-sudo,0.140114655965918,1.77834366071532,-0.145434791953686,https://salsa.debian.org/lxqt-team/lxqt-sudo, https://github.com/lxqt/lxqt-sudo.git,3089.1817824074074,82,29,0 -lxsession,1.21161126131848,1.94330642054952,0.730043207292079,https://salsa.debian.org/lxde-team/lxsession, https://github.com/lxde/lxsession.git,5699.888217592593,92,44,0 -lz4,0.214060043897775,0.695442545279082,0.0384684269486966,https://salsa.debian.org/debian/lz4, https://github.com/lz4/lz4,3549.3137037037036,30,172,0 -lz4json,-0.449253717062924,1.9714794784722,-0.963936688317348,https://github.com/kilobyte/lz4json/tree/debian,https://github.com/kilobyte/lz4json,1639.7853125,4,5,0 -m2crypto,1.7080325406587,2.98105600811063,0.944255638033226,https://salsa.debian.org/python-team/packages/m2crypto, https://gitlab.com/m2crypto/m2crypto,5773.2309259259255,39,30,0 -mac-fdisk,2.78807804405186,5.78644617890451,1.44607483621445,https://github.com/glaubitz/mac-fdisk-debian,https://github.com/glaubitz/mac-fdisk-debian,0.02613425925925926,1,1,0 -mactelnet,0.225958933485464,2.9645776480681,-0.541025290810861,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,1885.9548726851851,0,3,0 -madwimax,0.538681645395499,4.84334308584582,-0.945045842558766,http://github.com/ago/madwimax,http://github.com/ago/madwimax,1040.9560532407406,1,3,0 -magic-wormhole,0.630470294038575,2.9447916755338,-0.175661086638104,https://salsa.debian.org/debian/magic-wormhole, https://github.com/warner/magic-wormhole.git,3185.569988425926,24,44,0 -magicrescue,0.563858891668318,1.90926582030483,-0.0393062112510008,https://salsa.debian.org/pkg-security-team/magicrescue, https://github.com/jbj/magicrescue,1064.0338194444444,1,3,0 -magit-popup,0.257126882140113,2.50851860032197,-0.226004161916933,https://salsa.debian.org/emacsen-team/magit-popup, https://github.com/magit/magit-popup.git,3610.5775925925927,17,32,0 -magit-todos,-1.91650425955266,0.339840220758372,-2.34856593167861,https://salsa.debian.org/emacsen-team/magit-todos, https://github.com/alphapapa/magit-todos.git,1955.3700925925925,9,7,0 -magithub,-0.915348517808773,0.287860470390552,-1.14845336720673,https://salsa.debian.org/emacsen-team/magithub,https://salsa.debian.org/emacsen-team/magithub,1074.2872569444444,13,18,0 -mahimahi,-2.33837407127916,-0.956873824620217,-2.86647075938754,https://github.com/ravinet/mahimahi,https://github.com/ravinet/mahimahi,3537.8831712962965,7,10,3 -maildir-utils,-0.107046255843769,0.217105647172141,-0.278251203721323,https://salsa.debian.org/emacsen-team/maildir-utils, https://github.com/djcb/mu,5121.831759259259,35,231,0 -mailutils,1.58765043219156,2.0823992145742,1.20769532504566,https://salsa.debian.org/debian/mailutils, https://git.savannah.gnu.org/git/mailutils.git,5563.942094907407,7,3,0 -maim,0.113711053696173,1.6107062353379,-0.377100307812184,https://salsa.debian.org/debian/maim, https://github.com/naelstrof/maim.git,3690.030474537037,19,40,0 -mako,0.960719582397292,2.31529039889597,0.33001258469853,https://salsa.debian.org/python-team/packages/mako, https://github.com/sqlalchemy/mako,5744.8817476851855,23,45,7 -man-db,0.610908949421056,0.748134714592246,0.493796687876534,https://salsa.debian.org/debian/man-db, https://gitlab.com/man-db/man-db.git,5772.989814814815,74,8,0 -mando,-0.846804438538855,1.21547677845818,-1.3465386927714,https://salsa.debian.org/python-team/packages/mando, https://github.com/rubik/mando.git,3495.724976851852,7,5,0 -manpages-zh,0.301386440943916,1.48017485509722,-0.136667326869418,https://salsa.debian.org/chinese-team/manpages-zh, https://github.com/man-pages-zh/manpages-zh,5615.642997685185,2,12,2 -manuel,-1.81889274764173,0.917080683728173,-2.54909100406239,https://salsa.debian.org/python-team/packages/manuel, https://github.com/benji-york/manuel,5520.68181712963,2,23,0 -mapbox-variant,0.159782488028084,3.73150235766917,-0.683023326646699,https://salsa.debian.org/debian-gis-team/mapbox-variant/, https://github.com/mapbox/variant.git,2484.9211689814815,4,25,0 -mapcache,-0.684949705198006,1.47757934778588,-1.11970494702512,https://salsa.debian.org/debian-gis-team/mapcache, https://github.com/mapserver/mapcache.git,4429.841377314815,24,38,0 -mapnik,-0.138316251984017,0.0607934227552709,-0.234384663686358,https://salsa.debian.org/debian-gis-team/mapnik, https://github.com/mapnik/mapnik.git,5729.814201388889,14,143,0 -mapnik-vector-tile,-1.40056502691077,-0.44800985874745,-1.66548086006116,https://salsa.debian.org/debian-gis-team/mapnik-vector-tile, https://github.com/mapbox/mapnik-vector-tile.git,3418.254965277778,3,30,0 -mapproxy,-0.792226021871458,1.55926433951406,-1.27114969028082,https://salsa.debian.org/debian-gis-team/mapproxy, https://github.com/mapproxy/mapproxy.git,5031.888773148148,37,77,0 -marco,0.413529935272547,1.24370974086475,0.0623433654435128,https://salsa.debian.org/debian-mate-team/marco, https://github.com/mate-desktop/marco.git,4344.2543981481485,52,52,0 -marisa,-0.277005958138721,0.413076227789777,-0.552378814436184,https://salsa.debian.org/input-method-team/marisa, https://github.com/s-yata/marisa-trie.git,1648.6119675925927,1,9,0 -mate-applets,0.685312818310517,1.65579894255224,0.197072359062679,https://salsa.debian.org/debian-mate-team/mate-applets, https://github.com/mate-desktop/mate-applets.git,4346.088425925926,32,41,0 -mate-backgrounds,0.515935631539252,3.13814567556382,-0.0659273195942037,https://salsa.debian.org/debian-mate-team/mate-backgrounds, https://github.com/mate-desktop/mate-backgrounds.git,4154.560983796297,7,18,0 -mate-common,0.223678176507707,1.54414536153937,-0.293694110246264,https://salsa.debian.org/debian-mate-team/mate-common, https://github.com/mate-desktop/mate-common.git,4289.534803240741,4,19,0 -mate-control-center,0.442807421980527,1.12679136221291,0.0858727450082411,https://salsa.debian.org/debian-mate-team/mate-control-center, https://github.com/mate-desktop/mate-control-center.git,4382.2688194444445,31,51,0 -mate-desktop,1.44296788737532,2.80037997597155,0.70486245484052,https://salsa.debian.org/debian-mate-team/mate-desktop, https://github.com/mate-desktop/mate-desktop.git,4339.321481481482,30,45,0 -mate-dock-applet,0.388198243486174,2.24017612378218,-0.168832256910442,https://salsa.debian.org/debian-mate-team/mate-dock-applet, https://github.com/robint99/dock-applet.git,2711.5333680555555,9,12,0 -mate-icon-theme,0.408788959650741,2.4988457725781,-0.0552126550202363,https://salsa.debian.org/debian-mate-team/mate-icon-theme, https://github.com/mate-desktop/mate-icon-theme.git,3997.7458217592593,7,25,0 -mate-icon-theme-faenza,0.514243119126678,2.382927977142,-0.0287099151335426,https://salsa.debian.org/debian-mate-team/mate-icon-theme-faenza, https://github.com/mate-desktop/mate-icon-theme-faenza.git,2081.9641898148147,2,15,0 -mate-indicator-applet,0.389285510133603,2.3140656244469,-0.142261145082011,https://salsa.debian.org/debian-mate-team/mate-indicator-applet, https://github.com/mate-desktop/mate-indicator-applet.git,4284.618043981482,7,23,0 -mate-media,0.74284359002758,2.24515029021923,0.136847291522436,https://salsa.debian.org/debian-mate-team/mate-media, https://github.com/mate-desktop/mate-media.git,4372.300138888889,17,36,0 -mate-menu,0.11925451568534,1.15107782342472,-0.196137869031471,https://salsa.debian.org/debian-mate-team/mate-menu, https://github.com/ubuntu-mate/mate-menu.git,4623.490590277778,11,39,0 -mate-menus,0.291699225666982,1.55977593208731,-0.060469425970051,https://salsa.debian.org/debian-mate-team/mate-menus, https://github.com/mate-desktop/mate-menus.git,4292.575694444445,15,28,0 -mate-netbook,-0.199073949842394,0.92545310996885,-0.554797791463361,https://salsa.debian.org/debian-mate-team/mate-netbook, https://github.com/mate-desktop/mate-netbook.git,4033.464398148148,4,20,0 -mate-notification-daemon,0.294431484031301,1.24436807189306,-0.0375475363387423,https://salsa.debian.org/debian-mate-team/mate-notification-daemon, https://github.com/mate-desktop/mate-notification-daemon.git,4376.807546296296,19,34,0 -mate-panel,0.586344184798469,1.16823464148057,0.256468475170852,https://salsa.debian.org/debian-mate-team/mate-panel, https://github.com/mate-desktop/mate-panel.git,4378.381157407407,53,62,0 -mate-polkit,0.0844204987337219,0.713992810816739,-0.078912061978415,https://salsa.debian.org/debian-mate-team/mate-polkit, https://github.com/mate-desktop/mate-polkit.git,4293.10457175926,9,23,0 -mate-power-manager,0.646216818492194,1.46969020880882,0.21493344301007,https://salsa.debian.org/debian-mate-team/mate-power-manager, https://github.com/mate-desktop/mate-power-manager.git,4348.006087962963,20,47,0 -mate-screensaver,1.60900331743067,3.35454847646224,0.754555565023901,https://salsa.debian.org/debian-mate-team/mate-screensaver, https://github.com/mate-desktop/mate-screensaver.git,4208.470706018518,19,41,0 -mate-sensors-applet,0.0789010650303653,1.28695911302141,-0.189639983679343,https://salsa.debian.org/debian-mate-team/mate-sensors-applet, https://github.com/mate-desktop/mate-sensors-applet.git,4304.766782407408,15,25,0 -mate-session-manager,0.339482463152461,0.890109503727652,0.0687723318826919,https://salsa.debian.org/debian-mate-team/mate-session-manager, https://github.com/mate-desktop/mate-session-manager.git,4323.574768518519,19,47,0 -mate-settings-daemon,0.181564698272329,0.720310989304527,-0.0328315734046171,https://salsa.debian.org/debian-mate-team/mate-settings-daemon, https://github.com/mate-desktop/mate-settings-daemon.git,4342.233842592593,28,45,0 -mate-system-monitor,0.908477175067457,3.09736210844844,0.140735386609494,https://salsa.debian.org/debian-mate-team/mate-system-monitor, https://github.com/mate-desktop/mate-system-monitor.git,4413.035046296296,20,34,0 -mate-terminal,0.447764562362355,1.21010106258202,0.0838703586843141,https://salsa.debian.org/debian-mate-team/mate-terminal, https://github.com/mate-desktop/mate-terminal.git,4416.904756944445,30,38,0 -mate-themes,0.41185941052175,1.21467965152458,0.0545952307512877,https://salsa.debian.org/debian-mate-team/mate-themes, https://github.com/mate-desktop/mate-themes.git,4238.432928240741,20,27,0 -mate-tweak,1.1711824322115,3.54816538207856,0.224799834784113,https://salsa.debian.org/debian-mate-team/mate-tweak, https://github.com/ubuntu-mate/mate-tweak.git,4804.19712962963,11,22,0 -mate-user-guide,0.509453660333917,3.34014863452368,-0.0704353392956133,https://salsa.debian.org/debian-mate-team/mate-user-guide, https://github.com/mate-desktop/mate-user-guide.git,2933.2399768518517,5,16,0 -mate-user-share,-0.0144878954693426,0.728790486575383,-0.214296600445842,https://salsa.debian.org/debian-mate-team/mate-user-share, https://github.com/mate-desktop/mate-user-share.git,4144.689560185185,7,22,0 -mate-utils,0.650673023548227,2.12071689103357,0.0811905556164031,https://salsa.debian.org/debian-mate-team/mate-utils, https://github.com/mate-desktop/mate-utils.git,4329.978993055555,19,36,0 -mate-window-applets,-0.186625862006892,1.9636663587303,-0.631316052138279,https://salsa.debian.org/debian-mate-team/mate-window-applets, https://github.com/ubuntu-mate/mate-window-applets.git,1140.5334375,6,3,0 -materia-gtk-theme,0.104523439166075,1.98911237952869,-0.322056337075137,https://salsa.debian.org/desktop-themes-team/materia-gtk-theme, https://github.com/nana-4/materia-theme/commits/master,5185.326875,55,11,0 -mathjax,0.37201527148047,1.71298288973846,-0.0183695942167912,https://salsa.debian.org/js-team/mathjax, https://github.com/mathjax/MathJax,4869.816678240741,7,40,5 -matlab2tikz,-0.265169374211736,1.36603249890101,-0.573402683893463,https://salsa.debian.org/pkg-octave-team/matlab2tikz, https://github.com/matlab2tikz/matlab2tikz,5208.030023148148,12,52,8 -matrix-synapse,0.0402603462083996,1.00217389642657,-0.42106650350649,https://salsa.debian.org/matrix-team/matrix-synapse, https://github.com/matrix-org/synapse.git,3410.0313078703703,429,223,0 -matrix-synapse-ldap3,-1.3045245673587,0.263658546475836,-1.56972662582371,https://salsa.debian.org/matrix-team/matrix-synapse-ldap3, https://github.com/matrix-org/matrix-synapse-ldap3,2539.7550694444444,27,18,0 -mayavi2,0.521287375529472,1.16875683191281,0.131027399700343,https://salsa.debian.org/python-team/packages/mayavi2, https://github.com/enthought/mayavi.git,5733.273587962963,13,100,0 -maybe,-0.652177660962719,1.93149932274197,-1.16866022133638,https://salsa.debian.org/debian/maybe, https://github.com/p-e-w/maybe,363.71996527777776,0,2,1 -mbpfan,-0.826638580717436,1.32200483447778,-1.26064062281453,https://salsa.debian.org/debian/mbpfan, https://github.com/linux-on-mac/mbpfan.git,4208.33974537037,28,30,0 -mcollective,0.217220103404235,1.72252198514271,-0.431550566565911,https://salsa.debian.org/puppet-team/mcollective, https://github.com/puppetlabs/marionette-collective,3620.6848148148147,74,101,0 -mcstrans,-1.91818820413407,-0.141660999188383,-2.3390148470373,https://salsa.debian.org/selinux-team/mcstrans, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0 -mda-lv2,0.416356429727064,3.22724079005658,-0.275501486249178,https://salsa.debian.org/multimedia-team/mda-lv2, https://gitlab.com/drobilla/mda-lv2.git,5537.005960648148,1,1,0 -mdbtools,0.616187103930455,1.18076583165645,0.230286418237037,https://salsa.debian.org/debian/mdbtools, https://github.com/mdbtools/mdbtools,4863.403715277777,30,60,0 -mdk4,-0.0590321421912508,2.24456697700196,-0.680856667184963,https://salsa.debian.org/pkg-security-team/mdk4, https://github.com/aircrack-ng/mdk4,1545.4045949074075,4,9,0 -meanwhile,1.62254944680273,3.58133278579298,0.721415453862569,https://salsa.debian.org/debian/meanwhile, https://github.com/obriencj/meanwhile.git,352.0019560185185,1,1,0 -mediaelement,1.10619713774531,4.44370380902716,-0.00809260469732355,https://salsa.debian.org/debian/mediaelement, https://github.com/johndyer/mediaelement.git,4857.302546296296,68,266,0 -medicalterms,0.651428235199608,3.07586240241192,-0.150084541497307,https://salsa.debian.org/med-team/medicalterms, https://codeberg.org/toddy/medicalterms,5666.914155092592,0,4,0 -mednaffe,0.0695788651301977,1.6947766540162,-0.285905097545065,https://salsa.debian.org/games-team/mednaffe, https://github.com/AmatCoder/mednaffe,3528.2947337962964,2,17,0 -medusa,0.741883479621951,1.84163370329508,0.147300046663789,https://salsa.debian.org/pkg-security-team/medusa, https://github.com/jmk-foofus/medusa,2618.444803240741,4,10,0 -megatools,-0.142154869426595,0.87084358457303,-0.414747725692217,https://salsa.debian.org/berto/megatools, https://megous.com/git/megatools,3594.0475347222223,14,18,0 -meld,0.384519828236194,0.659883487462868,0.189905857470584,https://salsa.debian.org/gnome-team/meld, https://gitlab.gnome.org/GNOME/meld.git,5746.14744212963,187,124,0 -memkind,-2.33387552471405,-0.433038043535726,-2.77548730545927,https://github.com/kilobyte/memkind/tree/debian,https://github.com/kilobyte/memkind,3438.6727199074076,30,85,0 -memtest86+,2.26018528628274,3.30212897485253,1.55769243684764,https://salsa.debian.org/debian/memtest86plus, https://github.com/memtest86plus/memtest86plus.git,663.5358564814815,15,10,0 -mercator,-0.234086840652156,1.6571874231603,-0.993372483998148,https://salsa.debian.org/games-team/mercator, https://github.com/worldforge/mercator,5633.239039351852,0,7,0 -mergerfs,-0.13162641651592,1.22344946115143,-0.449179607707853,https://salsa.debian.org/debian/mergerfs, https://github.com/trapexit/mergerfs,3539.2512962962965,13,11,0 -merkaartor,0.328936858849458,1.04066802017082,-0.0908270010416584,https://salsa.debian.org/debian-gis-team/merkaartor, https://github.com/openstreetmap/merkaartor.git,5700.415300925926,8,63,0 -metamonger,-0.690090623756796,2.00757265175974,-1.57213701574257,https://github.com/RichiH/metamonger,https://github.com/RichiH/metamonger,3300.768483796296,1,7,0 -metapixel,1.79702344778106,4.41782598994729,0.563322363384867,https://salsa.debian.org/debian/metapixel, https://github.com/schani/metapixel.git,3264.7618171296294,2,6,0 -metastore,-0.459726172690202,0.646632395611397,-0.810779207195689,https://salsa.debian.org/rfrancoise/metastore, https://github.com/przemoc/metastore,5431.933668981482,7,2,1 -meteo-qt,0.869889977667463,3.6161721459482,0.00400742023958277,https://salsa.debian.org/lxqt-team/meteo-qt, https://github.com/dglent/meteo-qt.git,3275.9305092592595,3,17,0 -mew,-0.487761537022205,-0.351401006093774,-0.554001035971023,https://salsa.debian.org/debian/mew, https://github.com/kazu-yamamoto/Mew,5007.02537037037,7,24,0 -mew-beta,-0.838883032339622,-0.126045926352852,-1.02709151030907,https://salsa.debian.org/debian/mew-beta, https://github.com/kazu-yamamoto/Mew,5007.02537037037,7,24,0 -mg,0.862684228253274,2.0640170713542,0.214871894355539,https://salsa.debian.org/debian/mg, https://github.com/hboetes/mg.git,2838.9768518518517,3,9,0 -mhc,-0.88840004575251,-0.359527401389474,-1.1575003779866,https://salsa.debian.org/debian/mhc, https://github.com/yoshinari-nomura/mhc,4808.16199074074,0,12,0 -mhwaveedit,-0.0845847669306184,0.951786472716011,-0.420069015469674,https://salsa.debian.org/multimedia-team/mhwaveedit, https://github.com/magnush/mhwaveedit,4171.932430555556,3,7,0 -micro-httpd,-0.330007447411277,1.11607346113566,-0.930828308402008,https://github.com/sudipm-mukherjee/micro-httpd.git,https://github.com/sudipm-mukherjee/micro-httpd.git,4120.394328703704,0,4,0 -milkytracker,0.29279524758236,1.35912696404642,-0.166143774088807,https://salsa.debian.org/multimedia-team/milkytracker, https://github.com/milkytracker/MilkyTracker,5764.145347222222,35,32,1 -miller,-0.648596299880895,1.14533731304417,-1.02246180627076,https://salsa.debian.org/debian/miller, https://github.com/johnkerl/miller.git,3146.11875,32,28,0 -mimetic,-1.05697671413754,-0.895264369818561,-1.09637233893038,https://git.toastfreeware.priv.at/debian/mimetic.git, https://github.com/tat/mimetic.git,2612.777962962963,3,10,0 -minder,-0.419716825135906,2.10055622351027,-0.963291941351267,https://salsa.debian.org/yangfl-guest/Minder, https://github.com/phase1geo/Minder.git,2148.0431712962964,20,27,0 -minidb,-0.45256841907941,1.7891094238408,-0.901882065554934,https://salsa.debian.org/mwerlen/minidb, https://github.com/thp/minidb.git,4339.298495370371,2,5,0 -minieigen,-0.209769675603415,0.786065492510597,-0.499567475024185,https://salsa.debian.org/science-team/minieigen, https://github.com/eudoxos/minieigen,4093.450752314815,0,12,0 -minimodem,-0.325041577254677,2.13601189316823,-0.85629761692059,https://github.com/kamalmostafa/minimodem,https://github.com/kamalmostafa/minimodem,3742.1687037037036,10,6,0 -mininet,-0.586251106977904,1.26930234292827,-1.22593537457966,https://salsa.debian.org/debian/mininet, https://github.com/mininet/mininet,5029.987777777777,22,77,1 -minisat2,0.0818650829524057,0.863791765665042,-0.15323867669451,http://github.com/niklasso/minisat,http://github.com/niklasso/minisat,2028.9114699074073,1,5,0 -minissdpd,0.567764962572609,1.22227461099736,0.208817498397338,https://salsa.debian.org/miniupnp-team/minissdpd, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3 -miniupnpc,0.896028584634377,2.20959817825551,0.296824471039593,https://salsa.debian.org/miniupnp-team/miniupnpc, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3 -miniupnpd,-0.320866962830269,0.471153498205093,-0.701062424054327,https://salsa.debian.org/miniupnp-team/miniupnpd, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3 -miscfiles,0.277264003990998,0.77919942475126,-0.0181377865584708,https://salsa.debian.org/debian/miscfiles, https://git.savannah.gnu.org/git/miscfiles.git,2466.2185069444445,0,3,0 -mistune,0.149354521348081,1.579805043926,-0.145517628501817,https://salsa.debian.org/python-team/packages/mistune, https://github.com/lepture/mistune,3515.880914351852,27,24,1 -mkalias,-0.740847515735731,2.3071375002201,-1.57621282814895,https://salsa.debian.org/ruby-team/mkalias, https://github.com/LucianoPC/mkalias,68.21174768518519,0,3,0 -mkchromecast,0.898973076051445,3.26116210403962,-0.0281715966974308,https://salsa.debian.org/debian/mkchromecast, https://github.com/muammar/mkchromecast.git,2825.8958217592594,15,30,0 -mktorrent,0.271181439442618,1.91015156083863,-0.315832001818897,https://salsa.debian.org/debian/mktorrent, https://github.com/pobrn/mktorrent,4360.041099537037,6,10,1 -mlpack,0.208186762290017,1.67632549322701,-0.396051562238476,https://salsa.debian.org/science-team/mlpack, https://github.com/mlpack/mlpack,4436.560208333333,135,282,0 -mm-common,0.36896957353115,3.2512774055882,-0.55574386734311,https://salsa.debian.org/gnome-team/mm-common, https://gitlab.gnome.org/GNOME/mm-common.git,5241.517592592592,3,13,0 -mmtf-java,-5.03760231596504,-2.85148861820668,-5.47815425531561,https://salsa.debian.org/debichem-team/mmtf-java, https://github.com/rcsb/mmtf-java.git,2412.847696759259,1,12,0 -mmv,1.55973476794188,2.94192603962731,0.773988539168809,https://salsa.debian.org/debian/mmv, https://github.com/rrthomas/mmv.git,971.7580902777778,1,1,0 -moarvm,0.133398110105717,1.27276149646847,-0.22499348714293,https://salsa.debian.org/perl6-team/moarvm, https://github.com/MoarVM/MoarVM.git,4245.810335648148,33,154,0 -mobile-broadband-provider-info,0.665810807396465,2.1265095054775,0.123107925533849,https://salsa.debian.org/debian/mobile-broadband-provider-info, https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info,5572.254988425926,183,33,0 -mod-proxy-msrpc,-0.468677179433164,2.40360308588261,-1.24270834324212,https://github.com/bombadil/mod_proxy_msrpc/tree/debian/unstable,https://github.com/bombadil/mod_proxy_msrpc,805.3717013888889,0,4,0 -mod-wsgi,2.44545597158657,4.11249510841382,1.49325747108676,https://salsa.debian.org/python-team/packages/mod-wsgi, https://github.com/GrahamDumpleton/mod_wsgi,5754.130150462963,20,15,0 -modem-cmd,-0.605289894259069,1.75550138408221,-1.15870302120442,https://salsa.debian.org/debian/modem-cmd, https://github.com/imZack/modem-cmd.git,939.0309143518518,1,4,0 -modemmanager,3.5427656086242,5.12569663571722,2.57899266924935,https://salsa.debian.org/DebianOnMobile-team/modemmanager, https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git,5613.175335648149,183,106,0 -modplugtools,0.463298821112483,2.94935695533041,-0.471250617669065,https://salsa.debian.org/multimedia-team/modplugtools, https://github.com/alexmyczko/modplug-tools,1743.9280324074075,2,5,0 -modsecurity-crs,0.306291316105847,1.62418549338249,-0.150439267735069,https://salsa.debian.org/debian/modsecurity-crs, https://github.com/coreruleset/coreruleset.git,4151.087673611111,58,142,0 -mom,-0.677784916058875,1.9853085783476,-1.50728694118819,https://salsa.debian.org/debian/mom, https://github.com/oVirt/mom,4972.782615740741,31,16,1 -mongo-c-driver,0.391595473477886,1.65193424172172,-0.0863313882600918,https://github.com/mongodb/mongo-c-driver/tree/master,https://github.com/mongodb/mongo-c-driver,5226.526793981481,106,124,0 -monit,-0.00515095483703301,0.0796625204296894,-0.0600172228550467,https://salsa.debian.org/debian/monit, https://bitbucket.org/tildeslash/monit,3579.5902546296297,10,52,0 -monitoring-plugins,0.0693351107061865,0.127325692568001,0.023942211772923,https://salsa.debian.org/nagios-team/monitoring-plugins, https://github.com/monitoring-plugins/monitoring-plugins.git,5784.322592592593,121,104,0 -montage-wrapper,-0.386527472910265,1.18098125307059,-0.668011703348263,https://salsa.debian.org/debian-astro-team/montage-wrapper, https://github.com/astropy/montage-wrapper,3566.7960416666665,2,16,3 -mootools,0.74718931277172,2.85606058592291,0.0458469775404697,https://salsa.debian.org/js-team/mootools, https://github.com/mootools/mootools-core.git,2900.1052662037036,27,88,0 -mopidy,0.0462147178046179,1.12381455883043,-0.335643504533803,https://salsa.debian.org/mopidy-team/mopidy, https://github.com/mopidy/mopidy,5076.749699074074,37,109,4 -mopidy-alsamixer,-0.09870874302379,2.93036560441422,-0.881097199259371,https://salsa.debian.org/mopidy-team/mopidy-alsamixer, https://github.com/mopidy/mopidy-alsamixer,3286.4480439814815,1,5,0 -mopidy-beets,-0.60468876716376,2.36764996189768,-1.39229735541233,https://salsa.debian.org/mopidy-team/mopidy-beets, https://github.com/mopidy/mopidy-beets,3887.541516203704,2,10,0 -mopidy-dleyna,-0.615038725844887,1.86266196394951,-1.27641626402764,https://salsa.debian.org/mopidy-team/mopidy-dleyna, https://github.com/tkem/mopidy-dleyna.git,2554.961435185185,1,6,0 -mopidy-internetarchive,-0.218733779096679,2.30887033545798,-0.80281001259213,https://salsa.debian.org/mopidy-team/mopidy-internetarchive, https://github.com/tkem/mopidy-internetarchive,2991.6193171296295,0,3,1 -mopidy-mpris,-0.211044614538665,2.46194017804476,-1.11143451490839,https://salsa.debian.org/mopidy-team/mopidy-mpris, https://github.com/mopidy/mopidy-mpris.git,3543.9779050925927,2,7,0 -mopidy-podcast,-0.294157072620892,1.76901711844302,-0.738866927112524,https://salsa.debian.org/mopidy-team/mopidy-podcast, https://github.com/tkem/mopidy-podcast.git,2983.3689236111113,2,1,0 -mopidy-podcast-itunes,-0.246776717910268,2.45919376820864,-0.834541945985495,https://salsa.debian.org/mopidy-team/mopidy-podcast-itunes, https://github.com/tkem/mopidy-podcast-itunes,2949.681608796296,0,2,0 -mopidy-scrobbler,-0.251729996249238,2.13351567018423,-1.03254437833994,https://salsa.debian.org/mopidy-team/mopidy-scrobbler, https://github.com/mopidy/mopidy-scrobbler.git,3546.397002314815,0,2,0 -mopidy-somafm,-0.274632583510415,2.16098199184286,-0.85932466597646,https://salsa.debian.org/mopidy-team/mopidy-somafm, https://github.com/AlexandrePTJ/mopidy-somafm,2714.300787037037,0,6,2 -mopidy-soundcloud,-0.254657001124776,2.15589628850275,-0.945783660132605,https://salsa.debian.org/mopidy-team/mopidy-soundcloud, https://github.com/mopidy/mopidy-soundcloud,3733.2794212962963,4,17,2 -mopidy-tunein,-0.323600289215913,2.62245315214456,-1.09052023264822,https://salsa.debian.org/mopidy-team/mopidy-tunein, https://github.com/kingosticks/mopidy-tunein,2521.253865740741,2,14,1 -more-itertools,0.973726176389263,4.33355517656057,0.0386205168955525,https://salsa.debian.org/python-team/packages/more-itertools, https://github.com/erikrose/more-itertools,4227.381585648148,29,97,0 -mosh,0.606003492999349,1.43566359670226,0.188674180011505,https://github.com/mobile-shell/mosh,https://github.com/mobile-shell/mosh,4605.12912037037,52,35,3 -motion,1.50075373622189,2.22563982353194,0.986978139381294,https://salsa.debian.org/debian/motion, https://github.com/Motion-Project/motion,5726.809918981481,52,51,0 -mozo,1.04720029166192,4.12851434276139,0.0738627513073635,https://salsa.debian.org/debian-mate-team/mozo, https://github.com/mate-desktop/mozo.git,3956.109965277778,14,23,0 -mp3fs,0.916367840422269,4.57271740582271,-0.204729925617273,https://salsa.debian.org/multimedia-team/mp3fs, https://github.com/khenriks/mp3fs.git,5444.498784722222,4,13,0 -mp3wrap,0.151188324867718,2.40476259056656,-0.40725515518371,https://github.com/marciosouza20/mp3wrap.git,https://github.com/marciosouza20/mp3wrap.git,36.62663194444445,0,2,0 -mpc123,0.851583607973775,3.56922845277816,-0.236625915855961,https://salsa.debian.org/debian/mpc123, https://github.com/bucciarati/mpc123,4095.704571759259,0,4,0 -mpdris2,-0.98567157688571,-0.775496833571215,-1.02771064492816,https://salsa.debian.org/debian/mpdris2, https://github.com/eonpatapon/mpDris2.git,4512.103865740741,12,20,0 -mpdscribble,-0.723310154425429,-0.598143845452287,-0.765881663312659,https://salsa.debian.org/mpd-team/mpdscribble, https://github.com/MusicPlayerDaemon/mpdscribble.git,5474.359548611111,22,17,0 -mpv,0.53630425624984,0.862880227567894,0.310135898605756,https://salsa.debian.org/multimedia-team/mpv, https://github.com/mpv-player/mpv,5787.714236111111,512,145,0 -mrboom,-0.241313947963314,1.68105448738354,-0.733512143304964,https://salsa.debian.org/games-team/mrboom, https://github.com/Javanaise/mrboom-libretro,2489.0620833333332,22,22,0 -mruby,-1.55143909996595,-1.30194929065207,-1.62438574917646,https://github.com/mruby-debian/mruby,https://github.com/mruby-debian/mruby,4156.842152777778,37,353,0 -msgpuck,-1.93451017963427,0.753860640813869,-2.5762644187483,https://github.com/rtsisyk/msgpuck,https://github.com/rtsisyk/msgpuck,1946.1415046296297,3,13,1 -msitools,0.96857864755185,3.44374449162624,0.0488138918020949,https://salsa.debian.org/debian/msitools, https://github.com/GNOME/msitools,4016.1692361111113,45,59,0 -msktutil,-0.166280390128719,1.24236519322128,-0.584188637656133,https://salsa.debian.org/debian/msktutil, https://github.com/msktutil/msktutil,4695.594930555556,8,21,2 -mt-st,0.108214275192562,0.698343961100699,-0.160819349688546,https://salsa.debian.org/debian/mt-st, https://github.com/iustin/mt-st,3093.7365972222224,14,5,0 -mtpolicyd,-1.33115066473906,1.09540393332349,-1.99159053719769,https://salsa.debian.org/debian/mtpolicyd, https://github.com/benningm/mtpolicyd.git,2186.992615740741,1,4,0 -mtr,2.01790497280666,2.81581968670106,1.45255799095924,https://salsa.debian.org/debian/mtr, https://github.com/traviscross/mtr,3917.0060648148146,16,90,0 -mtree-netbsd,-1.52166383626568,0.572560043278904,-2.03556084093468,https://github.com/jgoerzen/mtree-netbsd,https://github.com/jgoerzen/mtree-netbsd,1538.1956712962963,1,7,0 -mu-cite,-0.925616528159329,0.961302198182606,-1.30986782122688,https://salsa.debian.org/debian/mu-cite, https://github.com/cvs-m17n-org/MU-CITE,4190.5202430555555,2,3,0 -mu-editor,-0.538783624618778,-0.0686504791527307,-0.640479885255492,https://salsa.debian.org/python-team/applications/mu-editor, https://github.com/mu-editor/mu,5121.831759259259,35,231,4 -mudita24,-0.0566417904610256,1.52710694552876,-0.456890960392167,https://salsa.debian.org/multimedia-team/mudita24, https://github.com/NielsMayer/mudita24,2005.0215046296296,0,5,0 -muffin,0.571495120997324,1.43517958491909,0.146834752032244,https://salsa.debian.org/cinnamon-team/muffin, https://github.com/linuxmint/muffin.git,4329.859942129629,106,160,0 -mugshot,0.731663001564658,2.79600372787142,-0.155405937283755,https://salsa.debian.org/python-team/packages/mugshot, https://github.com/bluesabre/mugshot,3560.1744907407406,3,9,0 -muparserx,-1.14701343548615,1.21198112886092,-1.61750844454886,https://salsa.debian.org/debian/muparserx, https://github.com/beltoforion/muparserx.git,4293.234409722222,2,26,0 -mupen64plus-core,0.0992350276130686,1.30432028316849,-0.26945445417746,https://salsa.debian.org/games-team/mupen64plus-core, https://github.com/mupen64plus/mupen64plus-core.git,5146.490856481481,33,78,0 -mupen64plus-ui-console,0.726411673166241,3.69950071654932,-0.167073486691435,https://salsa.debian.org/games-team/mupen64plus-ui-console, https://github.com/mupen64plus/mupen64plus-ui-console.git,4990.678877314815,5,31,0 -mupen64plus-video-glide64,0.116030911407292,2.32420182705417,-0.318535188077387,https://salsa.debian.org/games-team/mupen64plus-video-glide64, https://github.com/mupen64plus/mupen64plus-video-glide64,4871.843831018518,2,17,0 -mupen64plus-video-glide64mk2,0.129338916523352,2.46374756312801,-0.319653882118895,https://salsa.debian.org/games-team/mupen64plus-video-glide64mk2, https://github.com/mupen64plus/mupen64plus-video-glide64mk2.git,4126.660902777778,7,35,0 -mupen64plus-video-rice,0.107184135188937,2.17662350668291,-0.314939883273864,https://salsa.debian.org/games-team/mupen64plus-video-rice, https://github.com/mupen64plus/mupen64plus-video-rice.git,4977.983148148148,5,34,0 -mupen64plus-video-z64,-0.0630178118737083,1.30753012602191,-0.326353184052343,https://salsa.debian.org/games-team/mupen64plus-video-z64, https://github.com/mupen64plus/mupen64plus-video-z64,4885.85150462963,2,17,0 -muse,0.351332356513888,0.892442038784953,0.00769253848050995,https://salsa.debian.org/multimedia-team/muse, https://github.com/muse-sequencer/muse.git,5773.049247685185,5,55,0 -muse-el,0.983489297580252,2.86043146231553,0.0726359101978075,https://salsa.debian.org/emacsen-team/muse-el, https://github.com/alexott/muse,5662.627488425926,5,7,0 -musicbrainzngs,0.507667812148815,2.19691852220879,-0.00588140602207504,https://salsa.debian.org/python-team/packages/musicbrainzngs, https://github.com/alastair/python-musicbrainz-ngs,3992.7430092592595,1,28,3 -musl,-0.297023055245495,0.168813363431736,-0.486588246960489,https://salsa.debian.org/reiner/musl, git://git.musl-libc.org/musl,4660.522824074074,122,7,0 -mutagen,0.6308721972927,1.46347737165292,0.211186962173591,https://salsa.debian.org/python-team/packages/mutagen, https://github.com/quodlibet/mutagen.git,3949.215439814815,9,35,0 -mutter,1.33614140769198,1.96325978739043,0.905424830481066,https://salsa.debian.org/gnome-team/mutter, https://gitlab.gnome.org/GNOME/mutter.git,5786.877615740741,506,523,0 -mwparserfromhell,-1.44297334555683,0.682725643077273,-1.95643950190841,https://salsa.debian.org/legoktm/mwparserfromhell, https://github.com/earwig/mwparserfromhell.git,4191.728368055556,10,20,0 -mwrap,-0.60552133436639,1.7500683414578,-1.36207792757055,https://salsa.debian.org/pkg-octave-team/mwrap, https://github.com/zgimbutas/mwrap,3042.604085648148,0,5,0 -mydumper,0.13256431409186,1.10867131662676,-0.341279836413893,https://salsa.debian.org/debian/mydumper, https://github.com/maxbube/mydumper.git,5415.876701388889,39,67,0 -mygpoclient,0.0953328094269005,1.79242770600431,-0.317600205532079,https://salsa.debian.org/debian/mygpoclient, https://github.com/gpodder/mygpoclient,4565.949837962963,3,10,0 -mypaint,0.348081542877204,1.0170198091666,-0.0287146791848877,https://salsa.debian.org/python-team/packages/mypaint, https://github.com/mypaint/mypaint,5559.767719907408,333,53,2 -mysecureshell,-0.484206977087021,1.86061310494511,-0.963705481830918,https://github.com/mysecureshell/mysecureshell,https://github.com/mysecureshell/mysecureshell,2575.567199074074,3,14,1 -mysqltuner,1.45008450329338,4.4623073775111,0.346475837679093,https://salsa.debian.org/debian/mysqltuner, https://github.com/major/MySQLTuner-perl,4651.953321759259,46,119,0 -n2n,0.154245039117666,2.84276728650776,-0.655319557026435,https://github.com/leggewie-DM/n2n,https://github.com/leggewie-DM/n2n,3071.956111111111,2,3,0 -nabi,-1.11816973546582,0.341187204635932,-1.50571883983408,https://salsa.debian.org/l10n-korean-team/nabi, https://github.com/libhangul/nabi.git,5305.17667824074,0,3,0 -nadoka,-4.02245162338258,-0.731092112124069,-5.12601068641538,https://salsa.debian.org/ruby-team/nadoka, https://github.com/nadoka/nadoka,4550.066435185186,0,9,0 -naev,-0.676996524801962,0.451557111706253,-0.93034424766803,https://salsa.debian.org/debian/naev, https://github.com/naev/naev.git,5788.007349537037,70,162,0 -nagios-nrpe,0.477291680000994,0.835901468912501,0.239218580239737,https://salsa.debian.org/nagios-team/nrpe, https://github.com/NagiosEnterprises/nrpe.git,5657.720381944445,12,36,0 -nagios-plugin-check-multi,0.163578154897465,2.16918596935981,-0.511868753537618,https://salsa.debian.org/nagios-team/check-multi, https://github.com/flackem/check_multi.git,4620.408148148148,0,15,0 -nagios-snmp-plugins,0.0426392600122019,1.52234126723326,-0.356703424329942,https://salsa.debian.org/nagios-team/nagios-snmp-plugins, https://github.com/SteScho/manubulon-snmp.git,3770.9597106481483,13,22,0 -nagiosplugin,0.263952344918218,2.90856404482608,-0.329957123913541,https://salsa.debian.org/python-team/packages/nagiosplugin, https://github.com/mpounsett/nagiosplugin.git,4266.1149421296295,1,18,0 -nagstamon,0.730907718540055,2.02903073936438,0.043386520370399,https://salsa.debian.org/python-team/packages/nagstamon, https://github.com/HenriWahl/Nagstamon,4918.706157407408,17,112,0 -nagvis,0.201664984157249,1.21733150852904,-0.360039202536538,https://salsa.debian.org/nagios-team/nagvis, https://github.com/NagVis/nagvis,5779.6260648148145,42,38,0 -nano,0.626163078522995,0.930024677376267,0.408864120400336,https://salsa.debian.org/debian/nano, https://git.savannah.gnu.org/git/nano.git,5758.1,43,5,0 -nanomsg,-0.0613398542856309,2.15685409065594,-0.808748531003893,https://salsa.debian.org/debian/nanomsg, https://github.com/nanomsg/nanomsg.git,4082.3897569444443,88,48,0 -nasty,1.73986227881638,6.04062879096075,0.355975741680568,https://salsa.debian.org/pkg-security-team/nasty, https://github.com/folkertvanheusden/nasty,2093.1121412037037,0,4,0 -natlog,-3.18209463097777,-2.55488957020949,-3.32748330414671,https://salsa.debian.org/debian/natlog, https://gitlab.com/fbb-git/natlog.git,3932.1057407407407,0,1,0 -natsort,0.230739500706296,2.10957873454759,-0.239786098611584,https://salsa.debian.org/python-team/packages/natsort, https://github.com/SethMMorton/natsort.git,4065.054710648148,9,17,0 -nautilus,1.7785441472314,2.01519511927371,1.57535622656976,https://salsa.debian.org/gnome-team/nautilus, https://gitlab.gnome.org/GNOME/nautilus.git,5787.949733796297,560,536,0 -nautilus-filename-repairer,0.924989159011341,3.22801093240111,0.000551987843356428,https://salsa.debian.org/l10n-korean-team/nautilus-filename-repairer, https://github.com/choehwanjin/repairer,2878.1959953703704,0,1,0 -nautilus-sendto,0.254885161670054,0.661985979077802,0.0553301055177174,https://salsa.debian.org/gnome-team/nautilus-sendto, https://gitlab.gnome.org/GNOME/nautilus-sendto,4412.121400462963,110,190,0 -nb2plots,-1.17067066899969,1.558936665396,-1.74337414795107,https://salsa.debian.org/python-team/packages/nb2plots, https://github.com/matthew-brett/nb2plots.git,2904.445428240741,2,7,0 -nbconvert,0.199745510742703,1.23936575990338,-0.120088220128381,https://salsa.debian.org/python-team/packages/nbconvert, https://github.com/jupyter/nbconvert,4960.61744212963,124,179,4 -nbformat,0.437431232718049,2.79375630670217,-0.106808902657261,https://salsa.debian.org/python-team/packages/nbformat, https://github.com/jupyter/nbformat,4953.774710648148,35,52,4 -nbtscan,0.298999259572459,1.09081084898162,-0.072258625771159,https://salsa.debian.org/pkg-security-team/nbtscan, https://github.com/resurrecting-open-source-projects/nbtscan,1167.6364699074074,1,3,0 -ncbi-vdb,-0.656936156929907,-0.26758908733846,-0.775351605537836,https://salsa.debian.org/med-team/ncbi-vdb, https://github.com/ncbi/ncbi-vdb,3367.922349537037,2,70,0 -ncompress,0.636027623628673,1.86633446586061,0.0985497422934872,https://salsa.debian.org/debian/ncompress, https://github.com/vapier/ncompress.git,4740.116585648148,11,4,0 -ndctl,-0.302677153206692,0.473161468964432,-0.493948873656966,https://github.com/kilobyte/ndctl/tree/debian,https://github.com/kilobyte/ndctl,3210.136550925926,74,5,0 -ndcube,-0.460274072585896,1.79127259406629,-0.942765756946831,https://salsa.debian.org/debian-astro-team/ndcube/, https://github.com/sunpy/ndcube.git,2309.230162037037,5,25,0 -ndg-httpsclient,0.154665527223133,1.0783288298941,-0.0773848972549682,https://salsa.debian.org/debian/ndg-httpsclient, https://github.com/cedadev/ndg_httpsclient,3360.013634259259,2,11,0 -ndpi,0.526364846550814,2.56595311270097,-0.247475148670113,https://salsa.debian.org/debian/ndpi, https://github.com/ntop/nDPI.git,3148.957199074074,65,142,0 -ndppd,-0.529540730178872,1.60701552772874,-1.07669960594917,https://salsa.debian.org/debian/ndppd, https://github.com/DanielAdolfsson/ndppd,4471.594317129629,7,15,1 -neard,0.531144467946746,4.09536046112595,-0.529664666273204,https://github.com/sameo/neard-deb,https://github.com/sameo/neard-deb,1126.7503587962963,0,4,0 -neartree,-0.026948666800543,2.39931456404801,-0.536624577915971,https://salsa.debian.org/science-team/neartree, https://github.com/yayahjb/neartree,4773.070625,0,3,0 -neko,-0.347611667280448,0.402467422255248,-0.652059806336647,https://github.com/HaxeFoundation/neko-debian,https://github.com/HaxeFoundation/neko-debian,5577.663611111111,6,3,0 -nemo,1.24716357109729,2.37346271531403,0.612220279608499,https://salsa.debian.org/cinnamon-team/nemo, https://github.com/linuxmint/nemo.git,4158.369895833333,76,68,0 -nemo-fileroller,0.567168897062075,3.20245390025869,-0.0624948001591967,https://salsa.debian.org/cinnamon-team/nemo-fileroller, https://github.com/linuxmint/nemo-extensions.git,4073.197662037037,36,38,0 -nemo-python,0.162262075770495,1.9973413365759,-0.411978137275404,https://salsa.debian.org/cinnamon-team/nemo-python, https://github.com/linuxmint/nemo-extensions.git,4073.197662037037,36,38,0 -neomutt,1.06606856927625,2.73514034016519,0.293529978768261,https://salsa.debian.org/mutt-team/neomutt, https://github.com/neomutt/neomutt,5650.5290625,268,117,0 -neovim,0.139577774440131,0.605538800399618,-0.0780391448356829,https://salsa.debian.org/vim-team/neovim, https://github.com/neovim/neovim,3604.0696527777777,719,402,6 -netcdf,0.601897891076313,1.14156884446257,0.273150194348846,https://salsa.debian.org/debian-gis-team/netcdf, https://github.com/Unidata/netcdf-c.git,4942.1828125,23,110,0 -netcdf-cxx,-0.359140508034327,1.39575611605428,-0.791319508551213,https://salsa.debian.org/debian-gis-team/netcdf-cxx, https://github.com/Unidata/netcdf-cxx4.git,4438.941180555556,3,28,0 -netcdf-fortran,-0.14822580414833,0.751301517996878,-0.296296549911903,https://salsa.debian.org/debian/netcdf-fortran, https://github.com/Unidata/netcdf-fortran.git,4488.065011574074,7,39,0 -netcdf4-python,-0.0087659300418865,2.27642150978246,-0.450618582802576,https://salsa.debian.org/debian-gis-team/netcdf4-python/, https://github.com/Unidata/netcdf4-python,5780.898587962963,13,68,0 -netconsole,-1.22008733076531,0.812746842992176,-1.64492554545763,https://salsa.debian.org/debian/netconsole, https://github.com/ionos-cloud/netconsole,558.8093865740741,0,1,0 -netdiscover,0.254165243322624,1.9765761262293,-0.211193952578629,https://salsa.debian.org/debian/netdiscover, https://github.com/netdiscover-scanner/netdiscover,5323.416608796297,1,5,0 -nethogs,1.05669200206054,2.68136793211784,0.324257807448637,https://salsa.debian.org/debian/nethogs, https://github.com/raboof/nethogs,5593.736400462963,10,53,0 -netmask,0.156544839444884,1.60012392442616,-0.320303280016655,https://salsa.debian.org/debian/netmask, https://github.com/tlby/netmask,3093.175914351852,0,5,0 -netmate,-0.719350453768547,2.08281697840534,-1.35631914882567,https://salsa.debian.org/debian/netmate, https://github.com/Rup0rt/netmate,2070.0839814814813,0,5,0 -netmiko,-1.04890669517233,1.52538450984127,-1.55455492859381,https://salsa.debian.org/python-team/packages/netmiko, https://github.com/ktbyers/netmiko,3283.277928240741,134,166,0 -netplan.io,0.0413337825722798,1.54047847290476,-0.34865392721251,https://salsa.debian.org/debian/netplan.io, https://github.com/canonical/netplan/commits/master,5185.326875,55,11,0 -netty,0.211699410334876,1.19269826592945,-0.152253086171647,https://salsa.debian.org/java-team/netty, https://github.com/netty/netty,5605.263402777778,792,89,15 -network-manager-applet,3.79325483857302,4.61013414843262,3.19923387366035,https://salsa.debian.org/utopia-team/network-manager-applet, https://gitlab.gnome.org/GNOME/network-manager-applet,5752.782627314815,283,254,0 -network-manager-l2tp,0.173052258802551,2.4986742150936,-0.278390948333838,https://github.com/nm-l2tp/debian.git,https://github.com/nm-l2tp/debian.git,2347.114224537037,1,1,0 -network-manager-openvpn,5.05086031792764,7.11593746515619,3.90698572148568,https://salsa.debian.org/utopia-team/network-manager-openvpn, https://gitlab.gnome.org/GNOME/NetworkManager-openvpn,5458.582210648148,129,126,0 -network-manager-pptp,2.15162702412513,4.39465749885779,1.12475170540847,https://salsa.debian.org/utopia-team/network-manager-pptp, https://gitlab.gnome.org/GNOME/NetworkManager-pptp,5360.598344907407,84,99,0 -network-manager-ssh,-0.00863207917909601,1.14144337287233,-0.276180915789797,https://salsa.debian.org/lhw-guest/network-manager-ssh, https://github.com/danfruehauf/NetworkManager-ssh,3197.1808449074074,4,7,0 -network-manager-vpnc,2.36654074094117,4.36742256161298,1.3679779251182,https://salsa.debian.org/utopia-team/network-manager-vpnc, https://gitlab.gnome.org/GNOME/NetworkManager-vpnc,5426.71667824074,90,109,0 -networkd-dispatcher,-0.323967107445492,2.38111304116789,-1.01077582912342,https://salsa.debian.org/debian/networkd-dispatcher, https://gitlab.com/craftyguy/networkd-dispatcher,2215.2071412037035,6,18,0 -networkx,0.173366126943002,0.884725613388032,-0.100507808461253,https://salsa.debian.org/python-team/packages/networkx, https://github.com/networkx/networkx.git,5779.1963657407405,533,226,0 -neurodebian,0.253120405702959,1.49426989419085,-0.209337564624464,http://github.com/neurodebian/neurodebian,http://github.com/neurodebian/neurodebian,5270.139699074074,4,25,0 -newpid,-1.32461244663601,0.560058720153903,-1.7522117210337,https://github.com/df7cb/newpid,https://github.com/df7cb/newpid,2886.7799652777776,3,3,0 -nextepc,-3.1224390213188,-0.19701473914388,-4.0970791265809,https://salsa.debian.org/debian-mobcom-team/nextepc, https://github.com/acetcom/nextepc.git,2506.134733796296,86,27,0 -nfdump,0.977271838227154,2.34421694620262,0.233182380725062,https://salsa.debian.org/debian/nfdump, https://github.com/phaag/nfdump,3040.3677314814813,10,40,0 -nfoview,-0.0498945428525614,1.66639642436479,-0.673619570770205,https://salsa.debian.org/python-team/packages/nfoview, https://github.com/otsaloma/nfoview,5657.375486111111,14,5,0 -nfstrace,0.716914155261743,2.64899839973439,-0.0935466194169699,https://salsa.debian.org/debian/nfstrace, https://github.com/epam/nfstrace,2137.7810300925926,9,42,0 -nghttp2,0.106561836877425,0.43471873629113,0.00290790330972568,https://salsa.debian.org/debian/nghttp2, https://github.com/nghttp2/nghttp2.git,4348.341724537037,32,130,0 -nheko,-0.313998815745322,0.65023112343554,-0.629730410011339,https://salsa.debian.org/matrix-team/nheko, https://github.com/Nheko-Reborn/nheko.git,2443.270636574074,100,109,0 -nicotine,1.17992689129954,2.13066882006697,0.599535881892041,https://salsa.debian.org/python-team/packages/nicotine, https://github.com/nicotine-plus/nicotine-plus,5780.241412037037,85,41,0 -nifti2dicom,-0.118660725884591,1.29914234704403,-0.690326613808782,https://salsa.debian.org/med-team/nifti2dicom, https://github.com/biolab-unige/nifti2dicom.git,2963.076689814815,0,2,0 -nifticlib,0.482582180988756,2.76582964096068,-0.151018136944796,https://salsa.debian.org/med-team/nifticlib, https://github.com/NIFTI-Imaging/nifti_clib.git,5617.646921296297,18,12,0 -nim,-0.272994153259993,0.922339137410036,-0.689576743778012,https://salsa.debian.org/debian/nim, https://github.com/nim-lang/Nim.git,5653.109884259259,567,454,0 -ninja-build,0.270479694034366,0.926413304025789,-0.0254375461138189,https://salsa.debian.org/debian/ninja-build, https://github.com/ninja-build/ninja.git,4801.452974537037,69,249,0 -ninka,-1.24279269841902,1.03386185307708,-1.68422465225299,https://salsa.debian.org/debian/ninka, https://github.com/dmgerman/ninka,4166.381226851852,0,17,0 -nixnote2,-0.364727003208344,0.400296551211716,-0.490459150283337,https://salsa.debian.org/debian/nixnote2, https://github.com/robert7/nixnote2,4104.442858796297,11,48,0 -nload,0.692028657183034,1.96620387362066,0.124898373210051,https://github.com/marciosouza20/nload.git,https://github.com/marciosouza20/nload.git,5.863414351851852,0,1,0 -nm-tray,0.240241998372959,2.98991863506518,-0.450969541576458,https://salsa.debian.org/lxqt-team/nm-tray, https://github.com/palinek/nm-tray.git,2973.3749074074076,57,7,0 -nml,-1.2281121964313,0.426020410938017,-1.74150010077866,https://salsa.debian.org/openttd-team/nml, https://github.com/OpenTTD/nml.git,4991.13962962963,23,23,0 -nmrpflash,-3.91179667431097,-1.83225458972691,-4.34355164695066,https://salsa.debian.org/debian/nmrpflash, https://github.com/jclehner/nmrpflash,2833.107476851852,10,8,0 -nnn,-0.314672986597747,0.230218874015952,-0.423776723694096,https://salsa.debian.org/debian/nnn, https://github.com/jarun/nnn.git,2665.9989814814817,133,86,0 -noblenote,0.249989368367808,3.63316979098012,-0.775757079659619,https://github.com/hakaishi/nobleNote,https://github.com/hakaishi/nobleNote,4167.68542824074,0,13,2 -nocache,0.632372085509384,2.88030065921643,-0.0685290560079679,https://salsa.debian.org/debian/nocache, https://github.com/Feh/nocache,3331.9030902777777,2,12,0 -nodau,-1.59918098332055,-0.380553834464518,-1.90579865504737,https://salsa.debian.org/carnil/nodau, https://github.com/TicklishHoneyBee/nodau,4073.180266203704,2,7,0 -node-abbrev,0.316722509197571,2.542411628883,-0.116508926135461,https://salsa.debian.org/js-team/node-abbrev, https://github.com/npm/abbrev-js,5021.0522106481485,6,4,0 -node-active-x-obfuscator,-1.71020774505304,0.493982295689758,-2.1488227767458,https://salsa.debian.org/js-team/node-active-x-obfuscator, https://github.com/felixge/node-active-x-obfuscator.git,979.9255902777778,0,5,0 -node-address,-2.35128297317918,-0.229649289142757,-2.78518795649704,https://salsa.debian.org/js-team/node-address, https://github.com/node-modules/address.git,3756.583020833333,7,6,0 -node-ansi,0.651738311031233,3.38014235064764,-0.0622958721762609,https://salsa.debian.org/js-team/node-ansi, https://github.com/TooTallNate/ansi.js.git,2003.1949884259259,2,6,0 -node-applause,-2.60250313131545,0.0354812348524657,-3.27688620176222,https://salsa.debian.org/js-team/node-applause, https://github.com/outatime/applause.git,2600.159259259259,1,6,0 -node-argparse,0.736863005336764,3.61950567820034,-0.146322544927693,https://salsa.debian.org/js-team/node-argparse, https://github.com/nodeca/argparse.git,3647.7774421296294,4,24,0 -node-async,0.521837357550816,3.0881514943569,-0.153591739285099,https://salsa.debian.org/js-team/node-async, https://github.com/caolan/async,4951.204143518518,77,213,0 -node-babel-plugin-add-module-exports,-1.41693253870261,1.54418374080048,-2.17009918780442,https://salsa.debian.org/js-team/node-babel-plugin-add-module-exports, https://github.com/59naga/babel-plugin-add-module-exports,2579.5546180555557,2,7,0 -node-base64url,-1.88612467369204,0.890181623026984,-2.56777349159726,https://salsa.debian.org/js-team/node-base64url, https://github.com/brianloveswords/base64url.git,3614.487638888889,6,11,0 -node-bindings,-0.312428621187984,2.60571749703414,-1.01375701270411,https://salsa.debian.org/js-team/node-bindings, https://github.com/TooTallNate/node-bindings,2587.1395949074076,4,8,0 -node-bluebird,0.0584203533242683,1.09378028887832,-0.134349249427407,https://salsa.debian.org/js-team/node-bluebird, https://github.com/petkaantonov/bluebird.git,3418.310659722222,121,152,0 -node-bootstrap-tour,0.422328031925688,2.9664539994723,-0.149876009104825,https://salsa.debian.org/js-team/node-bootstrap-tour, https://github.com/sorich87/bootstrap-tour,4115.356145833333,7,73,2 -node-brace-expansion,0.716228262630341,3.62750370786561,-0.0452789702686191,https://salsa.debian.org/js-team/node-brace-expansion, https://github.com/juliangruber/brace-expansion.git,3650.006261574074,12,13,0 -node-browserify-sign,-0.39656278355729,2.18248500935655,-0.97092404787497,https://salsa.debian.org/js-team/node-browserify-sign, https://github.com/browserify/browserify-sign,3266.7325578703703,5,13,0 -node-chai,-1.19300637632375,1.24305119995673,-1.80803718707927,https://salsa.debian.org/js-team/node-chai, https://github.com/chaijs/chai,4382.981944444445,57,150,1 -node-chart.js,0.0271854957185512,2.03732713895771,-0.417959536444874,https://salsa.debian.org/js-team/node-chart.js, https://github.com/chartjs/Chart.js.git,3913.8058912037036,349,189,0 -node-clean-css,0.188013900313509,2.7123268564266,-0.469678337835982,https://salsa.debian.org/js-team/node-clean-css, https://github.com/GoalSmashers/clean-css.git,4686.8824537037035,63,58,0 -node-co,0.46010963765808,2.8630730352548,-0.100326972148371,https://salsa.debian.org/js-team/node-co, https://github.com/tj/co,1229.0172106481482,17,46,0 -node-code,-4.75516465588211,-1.4632937686164,-5.45457001879231,https://salsa.debian.org/js-team/node-code, https://github.com/hapijs/code.git,3316.1678125,19,23,0 -node-coffeeify,-1.4017605238932,1.46370767843051,-2.21599523453113,https://salsa.debian.org/js-team/node-coffeeify, https://github.com/jnordberg/coffeeify.git,1705.913773148148,1,13,0 -node-colormin,-3.50891647248573,-0.684002475369689,-4.26850059419203,https://salsa.debian.org/js-team/node-colormin, https://github.com/ben-eb/colormin,2228.6048148148147,0,6,0 -node-combine-source-map,-2.1067627582337,1.45108899699826,-3.14315422017884,https://salsa.debian.org/js-team/node-combine-source-map, https://github.com/thlorenz/combine-source-map.git,1465.4289583333334,4,5,0 -node-concat-stream,0.343582799296981,2.81067200894535,-0.124130821027336,https://salsa.debian.org/js-team/node-concat-stream, https://github.com/maxogden/concat-stream.git,2331.521458333333,5,21,0 -node-constants-browserify,-0.119402269999244,2.83435405957142,-0.919854661575445,https://salsa.debian.org/js-team/node-constants-browserify, https://github.com/juliangruber/constants-browserify,3669.6149189814814,0,3,0 -node-content-disposition,-0.149809142944842,2.32606021129267,-0.852025864437675,https://salsa.debian.org/js-team/node-content-disposition, https://github.com/jshttp/content-disposition.git,2639.7443518518517,6,2,0 -node-convert-source-map,0.0871772545168336,2.7765163192641,-0.575679277361197,https://salsa.debian.org/js-team/node-convert-source-map, https://github.com/thlorenz/convert-source-map,3505.4009953703703,16,11,0 -node-cookie-signature,0.0990081923449821,2.82478127347864,-0.68455141487012,https://salsa.debian.org/js-team/node-cookie-signature, https://github.com/visionmedia/node-cookie-signature.git,3831.314548611111,2,13,0 -node-core-js,-0.0701104518260918,1.88603402045802,-0.429071568172392,https://salsa.debian.org/js-team/node-core-js, https://github.com/zloirock/core-js.git,3801.387199074074,67,73,0 -node-cross-spawn-async,-0.478930722598944,0.528776497426984,-0.656856316148003,https://salsa.debian.org/js-team/node-cross-spawn-async, https://github.com/IndigoUnited/node-cross-spawn-async.git,674.7693981481482,1,12,0 -node-cssstyle,0.0239557667809956,3.78822964041075,-1.19987219826631,https://salsa.debian.org/js-team/node-cssstyle, https://github.com/chad3814/CSSStyleDeclaration.git,2137.453703703704,0,9,0 -node-d3-color,-0.567705875800697,2.34534257603246,-1.2646061130172,https://salsa.debian.org/js-team/node-d3-color, https://github.com/d3/d3-color,3047.9240046296295,6,8,0 -node-d3-dsv,-0.679293434240525,2.16133513307494,-1.3775271458354,https://salsa.debian.org/js-team/node-d3-dsv, https://github.com/d3/d3-dsv,3863.889201388889,14,6,0 -node-dashdash,0.812623388044188,3.80261070206085,-0.0104465218940569,https://salsa.debian.org/js-team/node-dashdash, https://github.com/trentm/node-dashdash,3657.7330671296295,5,4,0 -node-dateformat,-0.018659539996784,1.65065469123426,-0.432325195682282,https://salsa.debian.org/js-team/node-dateformat, https://github.com/felixge/node-dateformat,3995.859247685185,8,37,0 -node-deep-extend,0.307438417466485,2.59637205168232,-0.125693488111904,https://salsa.debian.org/js-team/node-deep-extend, https://github.com/unclechu/node-deep-extend.git,2469.077951388889,2,14,0 -node-dryice,-1.67778512157904,0.500982202464185,-2.14402133875302,https://salsa.debian.org/js-team/node-dryice, https://github.com/mozilla/dryice,1261.6348842592593,1,13,0 -node-errno,0.741995179761301,3.98601218296453,-0.0698570251612158,https://salsa.debian.org/js-team/node-errno, https://github.com/rvagg/node-errno,3152.3664699074075,3,11,0 -node-error-ex,-0.19943076513987,1.9233568791881,-0.626826184769078,https://salsa.debian.org/js-team/node-error-ex, https://github.com/qix-/node-error-ex.git,1448.5513425925926,4,8,0 -node-es6-promise,0.119679416154081,1.38705514832501,-0.169063259851071,https://salsa.debian.org/js-team/node-es6-promise, https://github.com/jakearchibald/es6-promise.git,3681.222314814815,18,73,0 -node-escodegen,-0.909373893530738,1.69207056581527,-1.47807941799231,https://salsa.debian.org/js-team/node-escodegen, https://github.com/estools/escodegen,4135.2103472222225,14,53,0 -node-eslint-plugin-node,-3.58250386848337,-0.922205708299373,-4.28594917568384,https://salsa.debian.org/js-team/node-eslint-plugin-node, https://github.com/mysticatea/eslint-plugin-node.git,2019.664039351852,35,4,0 -node-eslint-scope,-1.08294458078005,1.28176789313915,-1.55794546421809,https://salsa.debian.org/js-team/node-eslint-scope, https://github.com/eslint/eslint-scope.git,4084.622615740741,20,34,0 -node-execa,0.707996134565173,3.95514831745918,-0.0722137493386803,https://salsa.debian.org/js-team/node-execa, https://github.com/sindresorhus/execa,2926.6958680555554,49,7,0 -node-expat,-0.408078145296881,2.35300290481543,-1.51502035336025,https://salsa.debian.org/js-team/node-expat, https://github.com/astro/node-expat,4931.3002893518515,7,34,0 -node-extend,0.700412932796901,3.61225818919211,-0.0527431496560251,https://salsa.debian.org/js-team/node-extend, https://github.com/justmoon/node-extend,4212.296400462963,1,15,0 -node-extend-shallow,-0.100692136205994,1.39274847089215,-0.363671536434426,https://salsa.debian.org/js-team/node-extend-shallow, https://github.com/jonschlinkert/extend-shallow,1170.6065046296296,0,5,0 -node-file-entry-cache,-0.78553361572232,1.96735490701636,-1.50114745977769,https://salsa.debian.org/js-team/node-file-entry-cache, https://github.com/royriojas/file-entry-cache.git,3181.554513888889,1,11,0 -node-findit2,-0.205126007199742,2.73554935807846,-1.12092089615555,https://salsa.debian.org/js-team/node-findit2, https://github.com/andrewrk/node-findit.git,1811.444560185185,1,5,0 -node-fined,-0.163742539394668,2.12424520338368,-0.598287199531069,https://salsa.debian.org/js-team/node-fined, https://github.com/js-cli/fined,1982.8433680555556,5,3,0 -node-form-data,0.507407617885221,3.03438749006499,-0.0886742860872058,https://salsa.debian.org/js-team/node-form-data, https://github.com/felixge/node-form-data.git,3563.1111111111113,9,36,0 -node-formidable,-1.04783524111989,1.33296434240878,-1.63111238831959,https://salsa.debian.org/js-team/node-formidable, https://github.com/felixge/node-formidable.git,4861.668738425926,45,72,0 -node-fresh,-0.345055731141623,2.00399135029319,-0.811249460027619,https://salsa.debian.org/js-team/node-fresh, https://github.com/visionmedia/node-fresh.git,3886.792523148148,11,3,0 -node-fuzzaldrin-plus,-0.973958977723672,1.13657332196297,-1.45940190891157,https://salsa.debian.org/js-team/node-fuzzaldrin-plus, https://github.com/jeancroy/fuzzaldrin-plus,751.1080902777778,2,6,0 -node-glob,0.143825463763194,1.53625678453923,-0.118526066048584,https://salsa.debian.org/js-team/node-glob, https://github.com/isaacs/node-glob.git,5090.514074074074,32,18,0 -node-glob-parent,0.64500011838931,3.76124258221443,-0.218433820489926,https://salsa.debian.org/js-team/node-glob-parent, https://github.com/es128/glob-parent,3015.0730902777777,8,7,0 -node-glob-stream,-0.266747528056992,1.95692019075429,-0.701128379880873,https://salsa.debian.org/js-team/node-glob-stream, https://github.com/gulpjs/glob-stream,3628.715347222222,10,27,0 -node-global-modules,0.78154743298555,4.32479743189114,-0.240879988965626,https://salsa.debian.org/js-team/node-global-modules, https://github.com/jonschlinkert/global-modules,1379.5605671296296,0,5,0 -node-growl,0.261516847104991,3.00332824575815,-0.587697940237218,https://salsa.debian.org/js-team/node-growl, https://github.com/tj/node-growl,4729.724293981481,12,29,0 -node-grunt-babel,-2.35678960786465,-0.259582300741477,-2.78648060095402,https://salsa.debian.org/js-team/node-grunt-babel, https://github.com/babel/grunt-babel.git,3011.47462962963,8,12,0 -node-grunt-cli,1.21107109472389,4.49213329714159,4.42152270994788e-05,https://salsa.debian.org/js-team/node-grunt-cli, https://github.com/gruntjs/grunt-cli.git,3126.2931944444445,8,16,0 -node-gulp-babel,-1.67530372262357,0.724029805528159,-2.29292749706761,https://salsa.debian.org/js-team/node-gulp-babel, https://github.com/babel/gulp-babel.git,3018.4431018518517,10,21,0 -node-gulp-flatten,-2.89436588696502,-0.811100922942588,-3.32195576503688,https://salsa.debian.org/js-team/node-gulp-flatten, https://github.com/armed/gulp-flatten,3247.6037152777776,2,7,0 -node-gulp-load-plugins,-1.27258883670201,2.28831541024772,-2.21510324962124,https://salsa.debian.org/js-team/node-gulp-load-plugins, https://github.com/jackfranklin/gulp-load-plugins,3321.8455787037037,10,29,0 -node-gyp,0.037730511659275,0.62114580532967,-0.117324204212255,https://salsa.debian.org/js-team/node-gyp, https://github.com/nodejs/node-gyp.git,4297.548969907408,197,73,0 -node-has-flag,0.333474367552048,2.45921115621426,-0.119201405810834,https://salsa.debian.org/js-team/node-has-flag, https://github.com/sindresorhus/has-flag,2203.701111111111,6,2,0 -node-i18next,-0.970069674610259,1.46924049033156,-1.47178667356099,https://salsa.debian.org/js-team/node-i18next, https://github.com/i18next/i18next,4381.388043981481,88,163,0 -node-iferr,0.448968289114061,2.98412118819789,-0.106689465410837,https://salsa.debian.org/js-team/node-iferr, https://github.com/shesek/iferr,3291.114814814815,1,3,0 -node-ignore,-1.25954331937739,0.389151093008955,-1.59222242688244,https://salsa.debian.org/js-team/node-ignore, https://github.com/kaelzhang/node-ignore.git,3728.032349537037,8,15,0 -node-inherits,0.753819751450925,4.08414445580133,-0.0508306715766449,https://salsa.debian.org/js-team/node-inherits, https://github.com/isaacs/inherits,4576.5039120370375,6,4,0 -node-inline-source-map,-1.72537784785472,0.325671599655498,-2.1428170787699,https://salsa.debian.org/js-team/node-inline-source-map, https://github.com/thlorenz/inline-source-map.git,3126.5302314814817,5,5,0 -node-ip,0.547340220496077,3.07298742510266,-0.135752842080027,https://salsa.debian.org/js-team/node-ip, https://github.com/indutny/node-ip,3990.2488194444445,6,20,0 -node-is-arrayish,-0.0113184630568466,2.48027041511655,-0.587863638216693,https://salsa.debian.org/js-team/node-is-arrayish, https://github.com/qix-/node-is-arrayish,1162.9688194444445,2,9,0 -node-is-glob,0.663837336901723,3.84456321063262,-0.2147279850304,https://salsa.debian.org/js-team/node-is-glob, https://github.com/jonschlinkert/is-glob,2500.303298611111,3,9,0 -node-is-npm,0.978505177551384,4.50080521665299,0.00959972851763718,https://salsa.debian.org/js-team/node-is-npm, https://github.com/sindresorhus/is-npm,2619.041863425926,7,2,0 -node-is-typedarray,0.398097881605519,2.52872054104809,-0.0976776714706169,https://salsa.debian.org/js-team/node-is-typedarray, https://github.com/hughsk/is-typedarray,349.2442476851852,0,2,0 -node-iscroll,0.32364708981055,2.63348345340653,-0.154719762400236,https://salsa.debian.org/js-team/node-iscroll, https://github.com/cubiq/iscroll,2222.4944791666667,9,37,0 -node-isexe,0.309926564616418,2.61556674780173,-0.121825868604509,https://salsa.debian.org/js-team/node-isexe, https://github.com/isaacs/isexe,2832.2716319444444,1,4,0 -node-jed,0.930746440764879,4.53344234930115,-0.0663016053168416,https://salsa.debian.org/js-team/node-jed, https://github.com/messageformat/Jed.git,1857.5029166666666,3,19,0 -node-jison,-2.87051910587459,-0.590486105342229,-3.32144974710982,https://salsa.debian.org/js-team/node-jison, https://github.com/zaach/jison,3961.6974305555555,7,59,1 -node-jquery-mousewheel,0.268682115803879,2.6543019787233,-0.191121986553274,https://salsa.debian.org/js-team/node-jquery-mousewheel, https://github.com/jquery/jquery-mousewheel,5390.864629629629,6,15,1 -node-js-yaml,0.440974594138174,3.19349946018536,-0.271731846471327,https://salsa.debian.org/js-team/node-js-yaml, https://github.com/nodeca/js-yaml.git,3981.098634259259,30,56,0 -node-jsesc,0.147810251199857,3.25063593574763,-0.509836101762777,https://salsa.debian.org/js-team/node-jsesc, https://github.com/mathiasbynens/jsesc,2702.1588310185184,6,3,0 -node-jsonld,-0.390022700326153,1.4087981002523,-0.834911116152954,https://salsa.debian.org/js-team/node-jsonld, https://github.com/digitalbazaar/jsonld.js,4896.334131944444,24,28,2 -node-jsonminify,-0.169187179320983,2.04088568277682,-0.616269415822788,https://salsa.debian.org/js-team/node-jsonminify, https://github.com/fkei/JSON.minify,3001.0353819444445,2,9,0 -node-jsonselect,0.560182168885194,4.31588308765484,-0.455161948493957,https://salsa.debian.org/js-team/node-jsonselect, https://github.com/lloyd/JSONSelect,984.9768287037037,2,8,0 -node-jsonstream,0.014885788652368,0.940493955230558,-0.134524130048652,https://salsa.debian.org/js-team/node-jsonstream, https://github.com/dominictarr/JSONStream,2577.6002314814814,1,37,0 -node-knockout,-1.6817262175752,0.974888800445681,-2.31445041120492,https://salsa.debian.org/js-team/node-knockout, https://github.com/knockout/knockout.git,4081.7972685185186,20,115,0 -node-lastfm,-0.280250257607831,3.23168612717949,-1.20929347459816,https://salsa.debian.org/js-team/node-lastfm, https://github.com/jammus/lastfm-node,4644.450601851852,2,11,2 -node-livescript,-0.796454567693591,0.829862240876217,-1.2087204197895,https://salsa.debian.org/js-team/node-livescript, https://github.com/gkz/LiveScript,3444.0588194444445,8,88,2 -node-macaddress,-2.35780895421623,0.328634487578677,-2.98378560862831,https://salsa.debian.org/js-team/node-macaddress, https://github.com/scravy/node-macaddress,2961.7712268518517,5,13,0 -node-map-visit,0.0602654466272552,2.34009842947509,-0.382383602841092,https://salsa.debian.org/js-team/node-map-visit, https://github.com/jonschlinkert/map-visit,645.0525115740741,0,3,0 -node-media-typer,-0.131455438500662,2.35671832759043,-0.755435114766888,https://salsa.debian.org/js-team/node-media-typer, https://github.com/expressjs/media-typer.git,2488.2450925925928,1,1,0 -node-merge-descriptors,-0.236806141078472,2.29012224120798,-0.806977495822024,https://salsa.debian.org/js-team/node-merge-descriptors, https://github.com/component/merge-descriptors.git,3669.9310532407408,3,3,0 -node-mess,-0.287232767122892,3.30467983678511,-1.21798330724086,https://salsa.debian.org/js-team/node-mess, https://github.com/bobrik/node-mess,420.8625578703704,0,3,0 -node-millstone,-1.4457365805558,1.0910699972912,-2.03873561212252,https://salsa.debian.org/js-team/node-millstone, https://github.com/mapbox/millstone,4176.2971875,3,21,0 -node-minimist,0.306391694788387,2.52636543620496,-0.122364382703569,https://salsa.debian.org/js-team/node-minimist, https://github.com/minimistjs/minimist.git,3791.1307175925926,12,9,0 -node-mixin-deep,0.204101590526034,2.30123186703565,-0.346097003267975,https://salsa.debian.org/js-team/node-mixin-deep, https://github.com/jonschlinkert/mixin-deep.git,1736.2018171296297,0,4,0 -node-mocks-http,-1.71384544531774,1.12901205397518,-2.42387043918479,https://salsa.debian.org/js-team/node-mocks-http, https://github.com/howardabrams/node-mocks-http,4315.254907407408,38,62,0 -node-moment,0.433395317042423,2.91284675321943,-0.131998649181061,https://salsa.debian.org/js-team/node-moment, https://github.com/moment/moment.git,4145.546354166667,438,274,0 -node-mqtt-packet,-2.19615920691419,0.0425211631269649,-2.61854332219364,https://salsa.debian.org/js-team/node-mqtt-packet, https://github.com/mqttjs/mqtt-packet,3391.8497337962963,19,27,0 -node-node-rest-client,-2.34771777117685,-0.136208382634589,-2.78587949829909,https://salsa.debian.org/js-team/node-node-rest-client, https://github.com/aacerox/node-rest-client,3880.3789814814813,2,29,1 -node-nopt,0.13447165373718,1.55249959830994,-0.124448187654037,https://salsa.debian.org/js-team/node-nopt, https://github.com/npm/nopt,4635.836597222222,17,11,0 -node-object-assign,0.310845604616587,2.33949121675479,-0.119662545224087,https://salsa.debian.org/js-team/node-object-assign, https://github.com/sindresorhus/object-assign.git,3563.10443287037,7,8,0 -node-object-path,0.492684353752583,3.14650442342774,-0.292860259866992,https://salsa.debian.org/js-team/node-object-path, https://github.com/mariocasciaro/object-path,3395.5928125,1,21,1 -node-on-finished,0.0613223619439391,2.85317311422618,-0.691330534249103,https://salsa.debian.org/js-team/node-on-finished, https://github.com/jshttp/on-finished,3350.063425925926,5,3,0 -node-once,-0.122605388755357,-0.117139771528339,-0.123782183545841,https://salsa.debian.org/js-team/node-once, https://github.com/isaacs/once.git,4074.419212962963,2,6,0 -node-os-browserify,-0.326826200434881,2.32526819533929,-0.967178470137319,https://salsa.debian.org/js-team/node-os-browserify, https://github.com/CoderPuppy/os-browserify,1580.0713425925926,1,7,0 -node-parse-glob,0.684783388356342,3.86828257497172,-0.249053269580806,https://salsa.debian.org/js-team/node-parse-glob, https://github.com/micromatch/parse-glob,1589.2864351851852,1,5,0 -node-parseurl,0.275713726956604,3.62321423684549,-0.647348372427644,https://salsa.debian.org/js-team/node-parseurl, https://github.com/expressjs/parseurl.git,3251.1265972222222,2,3,0 -node-policyfile,-0.951500274803389,1.78318256823556,-1.73652568359203,https://salsa.debian.org/js-team/node-policyfile, https://github.com/3rd-Eden/FlashPolicyFileServer,2142.8337037037036,0,3,0 -node-preact,-2.18397931580964,0.976830996920084,-2.9591096846983,https://salsa.debian.org/js-team/node-preact, https://github.com/developit/preact.git,3016.8271064814817,228,177,0 -node-prismjs,-1.70752078261078,1.43617044402703,-2.61565144764281,https://salsa.debian.org/js-team/node-prismjs, https://github.com/LeaVerou/prism.git,3977.742048611111,239,189,0 -node-promise,-0.55016777054256,1.4973541225488,-1.03383991541004,https://salsa.debian.org/js-team/node-promise, https://github.com/then/promise,3592.5633101851854,14,29,0 -node-proxyquire,-4.69608826349662,-1.98666268575696,-5.41057380198351,https://salsa.debian.org/js-team/node-proxyquire, https://github.com/thlorenz/proxyquire.git,3798.2810416666666,25,13,0 -node-pseudomap,0.937778166759224,4.32648099886615,-0.0364711838402969,https://salsa.debian.org/js-team/node-pseudomap, https://github.com/isaacs/pseudomap,2873.803599537037,1,5,0 -node-puka,0.172968988799358,2.71346854105155,-0.406573485648858,https://salsa.debian.org/js-team/node-puka, https://gitlab.com/rhendric/puka,959.1950115740741,0,1,0 -node-rdf-canonize,-0.343006793876818,1.80986966519403,-0.830776693731484,https://salsa.debian.org/js-team/node-rdf-canonize, https://github.com/digitalbazaar/rdf-canonize.git,2830.3079282407407,3,8,0 -node-react-audio-player,-4.81005834909922,-2.42985034735483,-5.42055822297954,https://salsa.debian.org/js-team/node-react-audio-player, https://github.com/justinmc/react-audio-player.git,2489.7878125,9,20,0 -node-regenerate-unicode-properties,-0.667486626670699,0.961835250203264,-1.0118784845417,https://salsa.debian.org/js-team/node-regenerate-unicode-properties, https://github.com/mathiasbynens/regenerate-unicode-properties,2664.765659722222,3,2,0 -node-regjsparser,-0.779840416348034,1.20033650627693,-1.19628205918665,https://salsa.debian.org/js-team/node-regjsparser, https://github.com/jviereck/regjsparser.git,3676.996875,2,16,0 -node-repeat-element,0.0303018924920797,2.20505202148755,-0.399164761000657,https://salsa.debian.org/js-team/node-repeat-element, https://github.com/jonschlinkert/repeat-element,2277.980902777778,1,7,0 -node-resolve,0.557566307269055,3.29841790440674,-0.140777177082836,https://salsa.debian.org/js-team/node-resolve, https://github.com/substack/node-resolve.git,4523.801516203704,39,26,0 -node-rollup-plugin-alias,-4.75206111258331,-2.23847373659389,-5.42088452015116,https://salsa.debian.org/js-team/node-rollup-plugin-alias, https://github.com/rollup/plugins,1574.0213078703703,219,12,0 -node-semver-diff,0.325708866303715,2.53870067002644,-0.125046441132227,https://salsa.debian.org/js-team/node-semver-diff, https://github.com/sindresorhus/semver-diff,2556.954525462963,4,3,0 -node-sha.js,-0.379628478387112,2.20031633209512,-0.943226895494034,https://salsa.debian.org/js-team/node-sha.js, https://github.com/crypto-browserify/sha.js,1546.487037037037,3,17,0 -node-simple-swizzle,-3.38281081414827,-1.53194352673748,-3.75105262783598,https://salsa.debian.org/js-team/node-simple-swizzle, https://github.com/qix-/node-simple-swizzle,2271.2482060185184,1,3,0 -node-snapdragon,0.0374783953629951,2.12447209054768,-0.385312660260935,https://salsa.debian.org/js-team/node-snapdragon, https://github.com/jonschlinkert/snapdragon.git,2160.505972222222,3,7,0 -node-source-map,1.55245207815193,5.26333938850362,0.357953046946245,https://salsa.debian.org/js-team/node-source-map, https://github.com/mozilla/source-map,4395.194918981481,30,77,0 -node-source-map-support,0.0115822458316907,3.02886679032454,-0.745558315869375,https://salsa.debian.org/js-team/node-source-map-support, https://github.com/evanw/node-source-map-support.git,3692.318310185185,18,59,0 -node-sourcemap-codec,-0.978257225317061,1.03977013472883,-1.42048836078263,https://salsa.debian.org/js-team/node-sourcemap-codec, https://github.com/Rich-Harris/sourcemap-codec,2611.721597222222,0,12,0 -node-sprintf-js,0.401429060889419,3.15788560638359,-0.213299337279433,https://salsa.debian.org/js-team/node-sprintf-js, https://github.com/alexei/sprintf.js,3813.8363078703705,3,28,0 -node-ssri,0.433174013362414,2.85786683367901,-0.110736752570487,https://salsa.debian.org/js-team/node-ssri, https://github.com/zkat/ssri.git,2084.480960648148,2,3,0 -node-starttls,-3.20282716286771,0.312377645378091,-4.16563339474857,https://salsa.debian.org/js-team/node-starttls, https://github.com/mattcg/starttls,960.3696643518518,0,1,0 -node-static-module,-2.92950845621944,0.0141965632135324,-3.69193225519016,https://salsa.debian.org/js-team/node-static-module, https://github.com/substack/static-module.git,3102.503912037037,8,14,0 -node-string-decoder,0.432451352149301,3.00065387829445,-0.11388556041529,https://salsa.debian.org/js-team/node-string-decoder, https://github.com/nodejs/string_decoder.git,2072.548344907407,4,7,0 -node-stringprep,-1.25858700999564,1.42954085479859,-2.22272661766433,https://salsa.debian.org/js-team/node-stringprep, https://github.com/node-xmpp/node-stringprep,2104.009780092593,2,22,0 -node-tape,-1.35334562216163,0.823088709731211,-1.8448352116695,https://salsa.debian.org/js-team/node-tape, https://github.com/ljharb/tape.git,4022.1372916666664,54,62,0 -node-tar,0.100924009973991,1.15545696112116,-0.119495139934561,https://salsa.debian.org/js-team/node-tar, https://github.com/npm/node-tar,4544.303344907407,24,18,1 -node-temp,-0.899872573519337,2.40957987083396,-1.95345823682401,https://salsa.debian.org/js-team/node-temp, https://github.com/bruce/node-temp,4595.628541666667,2,39,2 -node-terser,-0.599660686110416,0.792481109486834,-1.04146259123187,https://salsa.debian.org/js-team/node-terser, https://github.com/terser/terser,4211.149872685185,195,75,0 -node-test,-1.18655279239841,1.20576422158202,-1.62213275829168,https://salsa.debian.org/js-team/node-test, https://github.com/Gozala/test-commonjs,826.1617476851852,0,3,0 -node-timed-out,0.534083437007622,2.81845062663013,-0.0696353825300733,https://salsa.debian.org/js-team/node-timed-out, https://github.com/floatdrop/timed-out,2343.4748726851853,6,7,0 -node-timers-browserify,-0.00577753155050986,2.97976813588947,-0.866061240428801,https://salsa.debian.org/js-team/node-timers-browserify, https://github.com/jryans/timers-browserify,3168.7872916666665,8,10,0 -node-tinycolor,-0.442360876600274,1.59484636142947,-0.878108345824429,https://salsa.debian.org/js-team/node-tinycolor, https://github.com/einaros/tinycolor.git,332.3723611111111,0,3,0 -node-tmp,0.0305888511631943,2.19150377951304,-0.407222090250547,https://salsa.debian.org/js-team/node-tmp, https://github.com/raszi/node-tmp.git,4359.087268518519,7,35,0 -node-trust-json-document,-4.95324562179892,-2.90193751949745,-5.45541673339559,https://salsa.debian.org/js-team/node-trust-json-document, https://github.com/anvilresearch/json-document.git,471.86045138888886,0,5,0 -node-tunnel-agent,1.17927850709519,4.96316326784085,0.111092480474075,https://salsa.debian.org/js-team/node-tunnel-agent, https://github.com/mikeal/tunnel-agent,1464.1568634259258,0,12,0 -node-type-check,-0.619856366958671,1.57198707442737,-1.05998760669897,https://salsa.debian.org/js-team/node-type-check, https://github.com/gkz/type-check.git,3579.125787037037,2,5,0 -node-ultron,-2.78131974187543,-0.475868280712011,-3.30701684526054,https://salsa.debian.org/js-team/node-ultron, https://github.com/unshiftio/ultron,2972.2796527777778,1,7,0 -node-unicode-data,-2.49868396613233,-1.5066066306956,-2.7694541364111,https://salsa.debian.org/js-team/node-unicode-data, https://github.com/mathiasbynens/node-unicode-data.git,3658.0537962962962,6,3,0 -node-unicode-property-aliases,-2.12249657255468,0.505413648253651,-2.75088215035733,https://salsa.debian.org/js-team/node-unicode-property-aliases, https://github.com/mathiasbynens/unicode-property-aliases,2644.066365740741,2,1,0 -node-unicode-property-aliases-ecmascript,-0.493024144913837,2.13620802229314,-1.13713197185486,https://salsa.debian.org/js-team/node-unicode-property-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-aliases-ecmascript,1978.1429398148148,1,2,0 -node-unicode-property-value-aliases,-2.108074165012,0.545895780770114,-2.75118210058696,https://salsa.debian.org/js-team/node-unicode-property-value-aliases, https://github.com/mathiasbynens/unicode-property-value-aliases.git,2643.966689814815,2,2,0 -node-unicode-property-value-aliases-ecmascript,-2.64595253987012,-0.0300807748125525,-3.28446453060443,https://salsa.debian.org/js-team/node-unicode-property-value-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript,1977.9928009259258,0,1,0 -node-unicode-tr51,-2.89707993043163,-0.908759240234734,-3.31160089453127,https://salsa.debian.org/js-team/node-unicode-tr51, https://github.com/mathiasbynens/unicode-tr51,1619.1367939814816,1,1,0 -node-utilities,0.751024851378057,4.5416704470691,-0.567624344840985,https://salsa.debian.org/js-team/node-utilities, https://github.com/mde/utilities.git,3873.020138888889,1,19,0 -node-uuid,0.283624179006985,1.60495990443046,-0.0900742762397439,https://salsa.debian.org/js-team/node-uuid, https://github.com/kelektiv/node-uuid,4670.203680555555,41,41,2 -node-v8flags,0.119029118734221,2.50474784598512,-0.507082336173383,https://salsa.debian.org/js-team/node-v8flags, https://github.com/tkellen/node-v8flags.git,1721.1332407407408,15,3,0 -node-vhost,-1.65452634059536,0.68453701168403,-2.28784657793076,https://salsa.debian.org/js-team/node-vhost, https://github.com/expressjs/vhost.git,3246.905150462963,1,3,0 -node-vue-resource,-1.80456875167718,-0.385606923713162,-2.07059831607824,https://salsa.debian.org/js-team/node-vue-resource, https://github.com/pagekit/vue-resource,2754.4118518518517,8,21,0 -node-webpack-merge,-3.84930720105508,-1.3808622270089,-4.33767609013551,https://salsa.debian.org/js-team/node-webpack-merge, https://github.com/survivejs/webpack-merge.git,3033.8957060185185,15,23,0 -node-websocket,0.394346969026257,3.01474425304256,-0.493087010081738,https://salsa.debian.org/js-team/node-websocket, https://github.com/theturtle32/WebSocket-Node,3898.125949074074,14,47,1 -node-window-size,0.817445041352174,4.93165221000849,-0.505792839843926,https://salsa.debian.org/js-team/node-window-size, https://github.com/jonschlinkert/window-size,1623.6925347222223,3,7,0 -node-worker-loader,-1.93501312263317,1.12467887991464,-2.71917077243259,https://salsa.debian.org/js-team/node-worker-loader, https://github.com/webpack-contrib/worker-loader.git,3320.7711921296295,31,18,0 -node-wrap-ansi,0.755764500131751,3.66947744342432,-0.0297221144156634,https://salsa.debian.org/js-team/node-wrap-ansi, https://github.com/chalk/wrap-ansi.git,2991.949641203704,8,6,0 -node-ws,-0.597504643579988,0.928783225230523,-0.931281242687366,https://salsa.debian.org/js-team/node-ws, https://github.com/websockets/ws.git,4417.8559606481485,91,121,0 -node-ytdl-core,-0.124680044293024,2.45811938388727,-0.818351267515515,https://salsa.debian.org/js-team/node-ytdl-core, https://github.com/fent/node-ytdl-core.git,4096.004525462963,70,23,0 -nodeenv,-0.657064895654331,1.48123278572443,-1.14641202998015,https://github.com/chriskuehl/nodeenv,https://github.com/chriskuehl/nodeenv,2128.7291782407406,1,53,0 -nomacs,-0.119525261879833,0.47997282526778,-0.317632408743415,https://salsa.debian.org/lxqt-team/nomacs, https://github.com/nomacs/nomacs/commits/master,5185.326875,55,11,0 -nomnom,0.445291434323681,2.94027066625103,-0.332229597531666,https://github.com/mogaal/nomnom,https://github.com/mogaal/nomnom,917.9151273148149,0,2,0 -nordlicht,-0.419084010559164,1.2017878416935,-0.727454419469016,https://salsa.debian.org/multimedia-team/nordlicht, https://github.com/nordlicht/nordlicht,1854.1766087962963,0,8,0 -nordugrid-arc,-0.889009514161068,-0.507339990407921,-1.06643880122789,https://salsa.debian.org/ellert/nordugrid-arc, https://source.coderefinery.org/nordugrid/arc,0.10119212962962963,1,1,0 -norm,0.0395894571205532,0.572587985673826,-0.037267926162076,https://salsa.debian.org/debian/norm, https://github.com/USNavalResearchLaboratory/norm,1453.1532523148148,10,9,0 -nose,0.559323577112037,1.33685337191468,0.153968621042833,https://salsa.debian.org/python-team/packages/nose, https://github.com/nose-devs/nose.git,2945.2441319444442,11,88,0 -nose2,-0.081304691734136,1.11742162062561,-0.432360346243313,https://salsa.debian.org/python-team/packages/nose2, https://github.com/nose-devs/nose2.git,4347.000011574074,27,63,0 -notmuch,0.295873418729552,0.61769919704636,0.100107782829831,https://git.notmuchmail.org/git/notmuch, https://git.notmuchmail.org/git/notmuch,5166.824560185185,217,23,0 -notmuch-addrlookup,-0.576514327926408,1.18775081367445,-1.01489130805224,https://salsa.debian.org/debian/notmuch-addrlookup, https://github.com/aperezdc/notmuch-addrlookup-c,3177.0368287037036,9,8,0 -nqp,0.21207525974981,1.32854129200219,-0.186335731783798,https://salsa.debian.org/perl6-team/nqp, https://github.com/Raku/nqp.git,5159.158784722223,24,165,0 -nsca-ng,-0.56336585116709,0.840435375497642,-1.12886714315489,https://salsa.debian.org/nagios-team/nsca-ng, https://github.com/weiss/nsca-ng.git,3817.9714236111113,3,6,0 -nsd,-0.209496714649365,0.166228671461131,-0.454888776465555,https://salsa.debian.org/dns-team/nsd, https://github.com/NLnetLabs/nsd,5722.081597222223,12,44,1 -nsnake,0.294306693001527,3.11801458646876,-0.512619256999377,https://github.com/alexdantas/nsnake.debian,https://github.com/alexdantas/nsnake.debian,35.09344907407407,0,2,0 -nsntrace,-0.210709526573928,2.4855302502504,-1.1430329762773,https://salsa.debian.org/sudip/nsntrace, https://github.com/nsntrace/nsntrace,1665.640150462963,1,7,0 -nss-mdns,2.06830438591482,3.30017102168803,1.31656391448615,https://salsa.debian.org/debian/nss-mdns, https://github.com/lathiat/nss-mdns,2585.1120138888887,6,5,1 -nss-passwords,0.798288153131981,3.72626608311281,-0.284388678695291,https://salsa.debian.org/ocaml-team/nss-passwords, https://github.com/glondu/nss-passwords,4767.951886574074,1,2,0 -nss-wrapper,-0.590267735817633,0.79032467115266,-0.943796878982109,https://salsa.debian.org/sssd-team/nss-wrapper, https://git.samba.org/nss_wrapper.git,3737.9026273148147,14,4,0 -ntirpc,-0.595167887289792,1.66581906071889,-1.2552045304986,https://salsa.debian.org/debian/libntirpc, https://github.com/nfs-ganesha/ntirpc.git,4521.189837962963,43,88,0 -nuitka,-0.0866725521139052,0.705808351742953,-0.498808680116414,https://github.com/Nuitka/Nuitka,https://github.com/Nuitka/Nuitka,4857.776284722222,166,5,3 -nulib2,-2.88352813112769,-0.617225292019355,-3.32186220567484,https://salsa.debian.org/debian/nulib2, https://github.com/fadden/nulib2.git,2958.867164351852,0,7,0 -numba,1.77846567568919,4.33819788791731,0.636371272631909,https://salsa.debian.org/science-team/numba, https://github.com/numba/numba.git,4209.724675925926,115,337,0 -numexpr,-0.0194772951772622,0.361916928084253,-0.146422801098473,https://salsa.debian.org/science-team/numexpr, https://github.com/pydata/numexpr,5774.6705787037035,9,77,0 -numpy-stl,0.615825940157454,4.12168181615445,-0.292783420805598,https://salsa.debian.org/python-team/packages/numpy-stl, https://github.com/WoLpH/numpy-stl,3320.4569444444446,4,21,0 -numpydoc,0.275059303867514,2.10960508376025,-0.192068888731139,https://salsa.debian.org/python-team/packages/numpydoc, https://github.com/numpy/numpydoc,5498.230914351851,38,50,1 -nuntius-linux,0.0562256061460863,3.00685250214119,-0.757895807437041,https://salsa.debian.org/debian/nuntius-linux, https://github.com/holylobster/nuntius-linux.git,1285.1505324074074,2,13,0 -nurpawiki,-4.20242583595846,-3.46817243027817,-4.35040398124291,https://salsa.debian.org/ocaml-team/nurpawiki, https://github.com/glondu/nurpawiki.git,5643.41212962963,0,6,0 -nvidia-modprobe,0.545740999476335,2.63343285523559,-0.0334171669270346,https://salsa.debian.org/nvidia-team/nvidia-modprobe, https://github.com/NVIDIA/nvidia-modprobe,3894.0040972222223,0,3,0 -nvidia-persistenced,0.554405071820581,2.85212831528211,-0.0537008340595563,https://salsa.debian.org/nvidia-team/nvidia-persistenced, https://github.com/NVIDIA/nvidia-persistenced,3871.020960648148,0,3,0 -nvidia-settings,0.664660719632774,1.22858122072449,0.315335124389098,https://salsa.debian.org/nvidia-team/nvidia-settings, https://github.com/NVIDIA/nvidia-settings,5776.464930555556,24,5,0 -nvidia-settings-legacy-340xx,0.315147961460213,2.76844051227516,-0.228849959583953,https://salsa.debian.org/nvidia-team/nvidia-settings, https://github.com/NVIDIA/nvidia-settings,5776.464930555556,24,5,0 -nvidia-xconfig,0.973432024818542,2.44172726764876,0.294368659253463,https://salsa.debian.org/nvidia-team/nvidia-xconfig, https://github.com/NVIDIA/nvidia-xconfig,5775.908113425926,1,3,0 -nvpy,-0.314446707252604,2.89228615749629,-1.28529114472027,https://github.com/stefanv/nvpy/tree/debian,https://github.com/stefanv/nvpy,2724.198113425926,2,29,0 -nxt-firmware,0.406619853437445,3.9704905035637,-0.579695701188806,https://salsa.debian.org/debian-lego-team/nxt-firmware, https://git.ni.fr.eu.org/nxt-firmware.git,4581.956608796297,6,2,0 -o-saft,-0.0182736193438765,2.19990444063162,-0.450421231744201,https://salsa.debian.org/pkg-security-team/o-saft, https://github.com/OWASP/O-Saft,4011.0202777777777,3,10,0 -oar,-1.46349459405756,-0.66068371910341,-1.78172910057842,https://github.com/oar-team/oar,https://github.com/oar-team/oar,5765.841585648148,5,46,5 -oath-toolkit,0.946083298149111,2.60414636640467,0.235737471032749,https://salsa.debian.org/debian/oath-toolkit, https://gitlab.com/oath-toolkit/oath-toolkit,4975.3153125,9,6,0 -obconf,0.747575573263091,1.78421646372965,0.220390431114968,https://github.com/mati75/obconf-debian.git,https://github.com/mati75/obconf-debian.git,3725.6903935185187,0,5,0 -obfs4proxy,0.0778413444443171,1.7337484409464,-0.354803361026461,https://salsa.debian.org/pkg-privacy-team/obfs4proxy, https://gitlab.com/yawning/obfs4.git,3442.9295833333335,1,6,0 -obs-studio,0.13129229188422,0.962234071955576,-0.123242143823789,https://salsa.debian.org/multimedia-team/obs-studio, https://github.com/jp9000/obs-studio.git,3726.9157986111113,426,253,0 -obus,-3.52524620113593,-1.66503896659688,-4.16321842129876,https://salsa.debian.org/ocaml-team/obus, https://github.com/ocaml-community/obus,5340.527511574074,3,16,1 -ocaml-alsa,-0.665124278231797,1.26537979889606,-1.03837535796002,https://salsa.debian.org/ocaml-team/ocaml-alsa, https://github.com/savonet/ocaml-alsa.git,460.5193634259259,2,8,0 -ocaml-batteries,0.411441141017328,1.71240902559343,-0.118428115063702,https://salsa.debian.org/ocaml-team/ocaml-batteries, https://github.com/ocaml-batteries-team/batteries-included.git,5695.369340277778,48,89,0 -ocaml-ctypes,-0.132118082652996,2.18432399848068,-0.752806895385382,https://salsa.debian.org/ocaml-team/ocaml-ctypes, https://github.com/ocamllabs/ocaml-ctypes.git,3744.7873032407406,13,53,0 -ocaml-curses,-0.388241171723226,1.66725466940586,-1.07071736299799,https://salsa.debian.org/ocaml-team/ocaml-curses, https://github.com/mbacarella/curses.git,5368.611724537037,1,10,0 -ocaml-dune,-0.353865851127379,2.08300418858997,-1.04504109743683,https://salsa.debian.org/ocaml-team/ocaml-dune, https://github.com/ocaml/dune.git,2601.2655208333335,199,111,0 -ocaml-duppy,-1.30549317346984,1.46644873845308,-2.09596198610175,https://salsa.debian.org/ocaml-team/ocaml-duppy, https://github.com/savonet/ocaml-duppy.git,5432.834733796296,2,8,0 -ocaml-expect,-1.12710325489819,2.79236608137763,-2.30651922663352,https://salsa.debian.org/ocaml-team/ocaml-expect, https://github.com/gildor478/ocaml-expect.git,3170.227523148148,0,3,0 -ocaml-extunix,-2.18729171456941,-0.302814937809133,-2.60840668299499,https://salsa.debian.org/ocaml-team/ocaml-extunix, https://github.com/ygrek/extunix.git,4849.849606481482,10,12,0 -ocaml-ffmpeg,-1.76803246261922,0.621394630828162,-2.2379595426391,https://salsa.debian.org/ocaml-team/ocaml-ffmpeg, https://github.com/savonet/ocaml-ffmpeg.git,4033.376863425926,2,11,0 -ocaml-fileutils,-1.20786113175008,0.06771540309995,-1.45957569717602,https://salsa.debian.org/ocaml-team/ocaml-fileutils, https://github.com/gildor478/ocaml-fileutils.git,1144.3784027777779,5,6,0 -ocaml-flac,-1.75076236617426,-0.350224532652695,-2.18902158435421,https://salsa.debian.org/ocaml-team/ocaml-flac, https://github.com/savonet/ocaml-flac.git,4915.279699074074,1,7,0 -ocaml-gen,-2.91409646418086,-0.992291004321486,-3.31718696811559,https://salsa.debian.org/ocaml-team/ocaml-gen, https://github.com/c-cube/gen.git,3422.9857291666667,3,9,0 -ocaml-gstreamer,-0.175799754020537,2.60877233085239,-0.943082577639775,https://salsa.debian.org/ocaml-team/ocaml-gstreamer, https://github.com/savonet/ocaml-gstreamer.git,5244.753553240741,0,10,0 -ocaml-http,-1.54946051282033,1.58641070755953,-2.44654732590304,https://salsa.debian.org/ocaml-team/ocaml-http, https://github.com/sacerdot/ocaml-http.git,3570.2121180555555,1,3,0 -ocaml-inotify,-1.59844473814278,0.206726915975742,-1.97851302725586,https://salsa.debian.org/ocaml-team/ocaml-inotify, https://github.com/whitequark/ocaml-inotify,3586.280324074074,4,14,0 -ocaml-ipaddr,-1.04460189937702,1.86220420428294,-1.78547586951581,https://salsa.debian.org/ocaml-team/ocaml-ipaddr, https://github.com/mirage/ocaml-ipaddr.git,3725.5192476851853,9,20,0 -ocaml-ladspa,-0.711865707758547,1.2358767301964,-1.43923132323344,https://salsa.debian.org/ocaml-team/ocaml-ladspa, https://github.com/savonet/ocaml-ladspa.git,4935.873645833333,1,7,0 -ocaml-ogg,-0.348620775993297,1.64371204997355,-0.96036025032132,https://salsa.debian.org/ocaml-team/ocaml-ogg, https://github.com/savonet/ocaml-ogg.git,5318.851840277778,1,7,0 -ocaml-opus,-0.945763206767853,1.35136386252887,-1.53810351093048,https://salsa.debian.org/ocaml-team/ocaml-opus, https://github.com/savonet/ocaml-opus.git,3889.1978819444444,2,8,0 -ocaml-re,-1.09504011532023,1.16854484829361,-1.53456321165651,https://salsa.debian.org/ocaml-team/ocaml-re, https://github.com/ocaml/ocaml-re,4365.659490740741,11,42,1 -ocaml-res,-1.66192560718984,0.840438772603249,-2.37466946495814,https://salsa.debian.org/ocaml-team/ocaml-res, https://github.com/mmottl/res,3234.9244791666665,0,3,0 -ocaml-sedlex,-2.79539950396161,0.612137734646107,-3.66356668364655,https://salsa.debian.org/ocaml-team/ocaml-sedlex, https://github.com/ocaml-community/sedlex,5659.057592592592,13,22,0 -ocaml-sha,-2.16157776555031,-1.56248040982033,-2.24745109731745,https://salsa.debian.org/ocaml-team/ocaml-sha, https://github.com/djs55/ocaml-sha.git,5351.19724537037,6,17,0 -ocaml-shine,-1.65373377007863,1.62127331012907,-2.50151750138973,https://salsa.debian.org/ocaml-team/ocaml-shine, https://github.com/savonet/ocaml-shine.git,3549.8277199074073,1,5,0 -ocaml-speex,-0.61538468061694,3.15438408626204,-1.9637699192271,https://salsa.debian.org/ocaml-team/ocaml-speex, https://github.com/savonet/ocaml-speex.git,5316.998090277778,1,7,0 -ocaml-ssl,1.26272191657388,4.06857202274891,0.140167964934891,https://salsa.debian.org/ocaml-team/ocaml-ssl, https://github.com/savonet/ocaml-ssl.git,5405.43818287037,11,30,0 -ocaml-theora,-0.251229253367388,3.15443606428574,-1.47281718966282,https://salsa.debian.org/ocaml-team/ocaml-theora, https://github.com/savonet/ocaml-theora.git,5316.99707175926,1,8,0 -ocaml-usb,-0.597368689342733,1.7793339383376,-1.2060915240285,https://salsa.debian.org/ocaml-team/ocaml-usb, https://github.com/letoh/ocaml-usb.git,4549.607326388889,1,8,0 -ocaml-vorbis,-0.982200132117348,0.998691427331073,-1.55205631917929,https://salsa.debian.org/ocaml-team/ocaml-vorbis, https://github.com/savonet/ocaml-vorbis.git,5459.566967592593,1,7,0 -ocamlagrep,-2.16520774964579,-1.01216289690604,-2.35724824650124,https://salsa.debian.org/ocaml-team/ocamlagrep, https://github.com/xavierleroy/ocamlagrep,2115.1310300925925,1,2,0 -ocamlbuild,0.833012950037744,3.60463350804861,-0.260670230330295,https://salsa.debian.org/ocaml-team/ocamlbuild, https://github.com/ocaml/ocamlbuild.git,5691.866099537037,18,45,0 -ocamlgsl,0.121644881238371,1.0155865796742,-0.246286652234876,https://salsa.debian.org/ocaml-team/ocamlgsl, https://github.com/mmottl/gsl-ocaml.git,3442.604502314815,1,11,0 -ocamlmakefile,-0.421444503870647,1.34113958259059,-0.786439559843771,https://salsa.debian.org/ocaml-team/ocamlmakefile, https://github.com/mmottl/ocaml-makefile.git,1922.9826967592592,0,4,0 -ocl-icd,0.278145441089624,0.851566458814537,0.0330607099598748,https://salsa.debian.org/opencl-team/ocl-icd, https://github.com/OCL-DEV/ocl-icd.git,4207.2761689814815,2,15,0 -ocp,0.735336021595804,1.89947277671351,0.100194882624747,https://salsa.debian.org/multimedia-team/ocp, https://github.com/mywave82/opencubicplayer,4416.066331018518,9,13,0 -ocrfeeder,0.0364401644921,0.564250059614595,-0.203694149310713,https://salsa.debian.org/python-team/packages/ocrfeeder, https://gitlab.gnome.org/GNOME/ocrfeeder,5391.681307870371,47,56,0 -ocrmypdf,-0.309965359785653,-0.277069327301108,-0.318576500393822,https://salsa.debian.org/debian/ocrmypdf, https://github.com/ocrmypdf/OCRmyPDF.git,3897.7415625,69,26,0 -octave-mpi,-0.0320527810472114,2.14923315120322,-0.636483429385765,https://salsa.debian.org/pkg-octave-team/octave-mpi, https://github.com/carlodefalco/octave-mpi,1390.1617245370371,1,3,0 -octave-octclip,-0.178366016437652,2.15704853507408,-0.773151938687802,https://salsa.debian.org/pkg-octave-team/octave-octclip, https://bitbucket.org/jgpallero/octclip,4185.1310300925925,0,2,0 -octave-octproj,-0.203943433305201,2.61763855361729,-0.923086531608787,https://salsa.debian.org/pkg-octave-team/octave-octproj, https://bitbucket.org/jgpallero/octproj,4710.072893518519,0,2,0 -octave-statistics,0.00462533837484979,1.06578838891868,-0.269142495233653,https://salsa.debian.org/pkg-octave-team/octave-statistics, https://github.com/gnu-octave/statistics,5730.789537037037,4,41,0 -octave-symbolic,-0.0298070849283836,0.893416290097853,-0.347497657910803,https://salsa.debian.org/pkg-octave-team/octave-symbolic, https://github.com/cbm755/octsympy.git,3532.230902777778,6,31,0 -odil,-0.831778982805444,-0.397569441970177,-0.935173424395587,https://salsa.debian.org/med-team/odil, https://github.com/lamyj/odil,2678.173935185185,5,12,1 -odt2txt,0.955245423913758,3.26435998684312,0.092339100573121,https://salsa.debian.org/debian/odt2txt, https://github.com/dstosberg/odt2txt,3417.1558564814814,1,9,0 -ofxstatement,-0.83877240272067,1.489861656908,-1.29242181476493,https://github.com/gerasiov/ofxstatement,https://github.com/gerasiov/ofxstatement,1632.6686689814815,1,16,0 -ofxstatement-plugins,-0.555491606281527,2.2730604682278,-1.2542888677083,https://github.com/gerasiov/ofxstatement-plugins,https://github.com/gerasiov/ofxstatement-plugins,1689.0224305555555,0,3,0 -ogdi-dfsg,0.463786622249594,1.38273816076166,0.070319022698257,https://salsa.debian.org/debian-gis-team/ogdi-dfsg, https://github.com/libogdi/ogdi.git,5366.5318402777775,1,9,0 -olive-editor,-0.234434025370615,0.993337844825811,-0.56728320728641,https://salsa.debian.org/multimedia-team/olive-editor, https://github.com/olive-editor/olive,1943.761238425926,34,57,0 -ompl,-0.315128489178118,1.18949185374085,-0.837997986960121,https://salsa.debian.org/science-team/ompl, https://github.com/ompl/ompl,4977.905104166667,45,68,0 -onedrive,-0.367413277100361,0.583565779499238,-0.639828540985928,https://salsa.debian.org/debian/onedrive, https://github.com/abraunegg/onedrive.git,2997.1442824074074,97,17,0 -onesixtyone,-0.0525705363605959,1.79935769724069,-0.440487615518883,https://salsa.debian.org/pkg-security-team/onesixtyone, https://github.com/trailofbits/onesixtyone,3350.054722222222,10,11,0 -onionbalance,-1.70721970893323,-0.295338348899362,-2.10449057465737,https://salsa.debian.org/debian/onionbalance, https://github.com/asn-d6/onionbalance.git,3123.215324074074,16,8,0 -onioncircuits,-0.0936864450934032,1.26781433707338,-0.571021800056068,https://salsa.debian.org/pkg-privacy-team/onioncircuits, https://gitlab.tails.boum.org/tails/onioncircuits,3211.833472222222,0,14,0 -open-ath9k-htc-firmware,0.760314197282515,2.94266263205229,-0.0525201093797252,https://salsa.debian.org/debian/open-ath9k-htc-firmware, https://github.com/qca/open-ath9k-htc-firmware.git,3892.040439814815,5,21,0 -open-build-service,-1.07320327876349,-0.511916267195268,-1.37525762134341,https://salsa.debian.org/ruby-team/open-build-service, https://github.com/openSUSE/open-build-service,5787.976469907408,106,255,0 -open-iscsi,0.854719990294682,1.35109033964711,0.511903253263732,https://salsa.debian.org/linux-blocks-team/open-iscsi, https://github.com/open-iscsi/open-iscsi.git,2731.834965277778,58,55,0 -open-vm-tools,0.077799140753709,0.180811855162367,0.00764091587617857,https://salsa.debian.org/vmware-packaging-team/pkg-open-vm-tools, https://github.com/vmware/open-vm-tools.git,5751.932546296296,6,21,0 -openalpr,-0.082740297324845,1.56000710009707,-0.705547934314898,https://github.com/openalpr/openalpr,https://github.com/openalpr/openalpr,3147.040636574074,15,66,0 -openarena,0.96396546312347,1.82542565008426,0.437062203257962,https://salsa.debian.org/games-team/openarena, https://github.com/OpenArena/gamecode,5128.333194444444,5,20,0 -openbox,0.35877083084497,0.569635577870166,0.200173859064958,https://github.com/mati75/openbox-debian,https://github.com/mati75/openbox-debian,3123.4283217592592,2,10,0 -openbox-menu,0.643129273781225,3.00887100555267,-0.138988018486117,https://github.com/mati75/openbox-menu.git,https://github.com/mati75/openbox-menu.git,2669.041875,1,4,0 -opencc,0.021909228852096,0.482422296283242,-0.161186166183118,https://salsa.debian.org/debian/opencc, https://github.com/BYVoid/OpenCC,3838.8327430555555,56,72,0 -opencore-amr,0.909959984326476,3.82613973383368,0.130622222021144,https://salsa.debian.org/multimedia-team/opencore-amr, https://git.code.sf.net/p/opencore-amr/code,3542.8980787037035,16,3,0 -opendht,-1.50225361304097,-0.112442319707032,-1.92553614549029,https://salsa.debian.org/debian/opendht, https://github.com/savoirfairelinux/opendht.git,3308.872152777778,32,40,0 -opendnssec,-0.181486122589143,0.294630794870329,-0.504943822076866,https://salsa.debian.org/debian/opendnssec, https://github.com/opendnssec/opendnssec.git,5655.83619212963,1,44,0 -openjpeg2,0.767072073293134,1.34946586547805,0.409154101581771,https://salsa.debian.org/debian-phototools-team/openjpeg2, https://github.com/uclouvain/openjpeg.git,5780.263194444445,33,69,0 -openlibm,-0.103453884906327,0.955980761488387,-0.320749506506793,https://salsa.debian.org/julia-team/openlibm, https://github.com/JuliaMath/openlibm.git,4334.351006944445,17,49,0 -openni,0.453148378020615,1.70909540841027,-0.105089181959868,https://salsa.debian.org/multimedia-team/openni, https://github.com/OpenNI/OpenNI.git,1070.0370601851853,0,4,0 -openni-sensor-primesense,-0.705184402046312,0.502182003342549,-0.967790766997195,https://salsa.debian.org/multimedia-team/openni-sensor-primesense, https://github.com/PrimeSense/Sensor.git,1069.8803587962964,0,3,0 -openorienteering-mapper,-0.631173932488296,0.749385464496322,-1.07761550056928,https://salsa.debian.org/debian/openorienteering-mapper, https://github.com/OpenOrienteering/mapper,4199.666504629629,148,39,5 -openscap,-0.250735821500965,0.491922504265612,-0.603313185080367,https://salsa.debian.org/debian/openscap, https://github.com/OpenSCAP/openscap,5510.7205208333335,70,121,3 -openscenegraph,0.121945162495101,0.380721743010354,-0.0364053970314388,https://salsa.debian.org/openscenegraph-team/openscenegraph-3.2, https://github.com/openscenegraph/OpenSceneGraph.git,5356.992013888889,72,120,0 -openshot-qt,2.15065206454279,3.32805157883698,1.396209782253,https://salsa.debian.org/multimedia-team/openshot-qt, https://github.com/Openshot/openshot-qt.git,3627.5347916666665,26,46,0 -opensysusers,-3.30966318272112,-1.10811188350065,-3.75114493400175,https://salsa.debian.org/debian/opensysusers, https://github.com/cromerc/opensysusers.git,1929.928923611111,4,11,0 -openttd,-0.0532392797794015,0.177221595828781,-0.169361548945667,https://salsa.debian.org/openttd-team/openttd, https://github.com/OpenTTD/OpenTTD.git,5788.410208333334,192,50,0 -openttd-opengfx,0.210493198495599,1.92484492135421,-0.208519113777515,https://salsa.debian.org/openttd-team/openttd-opengfx, https://github.com/OpenTTD/OpenGFX.git,5150.574340277778,11,18,0 -openttd-openmsx,0.583206602447851,3.28250279543403,-0.143041661106683,https://salsa.debian.org/openttd-team/openttd-openmsx, https://github.com/OpenTTD/OpenMSX.git,5037.872604166667,7,8,0 -openttd-opensfx,0.0341113683294794,1.81042168290464,-0.372304383785565,https://salsa.debian.org/openttd-team/openttd-opensfx, https://github.com/OpenTTD/OpenSFX.git,5073.9709953703705,7,9,0 -openturns,-0.100878409138534,0.342807518780887,-0.359607539758135,https://salsa.debian.org/science-team/openturns, https://github.com/openturns/openturns,3036.8733101851853,41,26,2 -opentyrian,-0.470902051471208,1.81286825060979,-0.900636134856693,https://salsa.debian.org/games-team/opentyrian, https://github.com/opentyrian/opentyrian.git,5445.219652777778,6,17,0 -openvas-libraries,-0.279589518970307,0.555549682140402,-0.604815427134616,https://salsa.debian.org/pkg-security-team/openvas-libraries, https://github.com/greenbone/gvm-libs,5727.8965625,22,60,0 -openvas-manager,0.703025700981872,3.543190143483,-0.321791086485803,https://salsa.debian.org/pkg-security-team/openvas-manager, https://github.com/greenbone/gvmd,5510.723518518518,30,61,0 -openvas-scanner,0.25570008664729,2.39256045279232,-0.487411256328419,https://salsa.debian.org/pkg-security-team/openvas-scanner, https://github.com/greenbone/openvas,5785.318449074074,25,59,0 -openvpn-auth-ldap,0.949224191311018,2.93166544550704,0.0790463259880035,https://salsa.debian.org/debian/openvpn-auth-ldap, https://github.com/threerings/openvpn-auth-ldap,1866.2952430555556,1,10,0 -openvpn-systemd-resolved,0.271692057707518,2.7624532328293,-0.334568411207539,https://salsa.debian.org/debian/openvpn-systemd-resolved, https://github.com/jonathanio/update-systemd-resolved,2661.6920949074074,11,17,0 -openvr,-1.17733937461889,1.28323115622802,-1.6775488620412,https://salsa.debian.org/xrdesktop-team/openvr, https://github.com/ValveSoftware/openvr.git,3113.775347222222,1,12,0 -openzwave,0.251031456311137,2.52887934370336,-0.590500837100787,https://salsa.debian.org/debian-iot-team/openzwave, https://github.com/OpenZWave/open-zwave,4679.3881481481485,241,322,2 -ora2pg,-1.06027788592814,1.89450656086026,-1.84336686616175,https://salsa.debian.org/postgresql/ora2pg, https://github.com/darold/ora2pg.git,4257.932048611111,11,55,0 -orage,0.622101381609753,1.37703364217584,0.21630635786567,https://salsa.debian.org/xfce-team/apps/orage, https://gitlab.xfce.org/apps/orage,5617.653692129629,247,32,0 -orc,0.869978890855867,2.11368599316964,0.29720506478131,https://salsa.debian.org/gstreamer-team/orc/, https://gitlab.freedesktop.org/gstreamer/orc,5664.95775462963,39,46,0 -orca,1.31239548820684,2.00692532280574,0.842636373263561,https://salsa.debian.org/gnome-team/orca, https://gitlab.gnome.org/GNOME/orca,5788.730046296297,249,260,0 -orca-sops,-1.79399091258046,0.477648946327548,-2.23772319993185,https://salsa.debian.org/a11y-team/orca-sops, https://github.com/chrys87/simple-orca-plugin-system.git,1662.239976851852,0,8,0 -orcania,-0.52837094840339,2.05141009060046,-1.0233328648007,https://salsa.debian.org/debian-iot-team/oauth2/orcania.git, https://github.com/babelouest/orcania,1246.8811342592592,5,16,0 -original-awk,-0.00723450096318379,1.50108796777715,-0.396611676579941,https://salsa.debian.org/sanvila/original-awk, https://github.com/onetrueawk/awk,3992.553125,14,18,0 -orocos-bfl,-1.20839734703014,0.853925465579936,-1.67447640189669,https://salsa.debian.org/science-team/orocos-bfl, https://github.com/orocos/orocos-bayesian-filtering,3625.9026157407407,2,10,1 -orocos-kdl,-0.494555815193729,0.666910920716304,-0.754654156139584,https://salsa.debian.org/science-team/orocos-kdl, https://github.com/orocos/orocos_kinematics_dynamics.git,5760.238553240741,20,61,0 -osdlyrics,-1.01076524868585,2.54102753975829,-1.93642710707603,https://salsa.debian.org/debian/osdlyrics, https://github.com/osdlyrics/osdlyrics.git,5185.11837962963,14,35,0 -osinfo-db,0.438170709228717,1.57420945093625,0.0354518992019753,https://salsa.debian.org/libvirt-team/osinfo-db, https://gitlab.com/libosinfo/osinfo-db.git,5150.441469907408,79,76,0 -osinfo-db-tools,-0.658819460217769,1.52931005172454,-1.09886595238057,https://salsa.debian.org/libvirt-team/osinfo-db-tools, https://gitlab.com/libosinfo/osinfo-db-tools.git,5133.7255092592595,23,18,0 -osm-gps-map,0.485239482198287,1.63156529786019,0.028871692887316,https://salsa.debian.org/debian-gis-team/osm-gps-map, https://github.com/nzjrs/osm-gps-map,5396.578356481482,12,33,1 -osm2pgsql,-0.165275462406783,0.4372761977929,-0.384572383094924,https://salsa.debian.org/debian-gis-team/osm2pgsql, https://github.com/openstreetmap/osm2pgsql.git,5749.83625,16,90,0 -osmcoastline,-0.349235882709954,1.61114157572135,-0.770624037151247,https://salsa.debian.org/debian-gis-team/osmcoastline, https://github.com/osmcode/osmcoastline.git,4116.998368055555,2,6,0 -osmium-tool,-0.355702148740491,1.15342739888521,-0.617079773285203,https://salsa.debian.org/debian-gis-team/osmium-tool/, https://github.com/osmcode/osmium-tool.git,3639.05375,11,18,0 -osmose-emulator,0.199054771731085,2.67262583613743,-0.520519127403497,https://salsa.debian.org/games-team/osmose-emulator, https://gitlab.com/coringao/osmose-emulator,1312.3067361111111,0,3,0 -osmosis,-0.391633180525616,-0.251842171941677,-0.459482708887277,https://salsa.debian.org/debian-gis-team/osmosis, https://github.com/openstreetmap/osmosis.git,5774.239305555556,9,48,0 -osmpbf,-0.0947714797520939,0.733906087146982,-0.299460332959203,https://salsa.debian.org/debian-gis-team/osmpbf, https://github.com/openstreetmap/OSM-binary.git,4802.131689814815,3,18,0 -ossim,0.219420615909635,1.41012224206322,-0.309374107830384,https://salsa.debian.org/debian-gis-team/ossim, https://github.com/ossimlabs/ossim.git,2917.9942824074074,12,49,0 -osslsigncode,0.169238483954773,2.90876424759937,-0.725862885957127,https://salsa.debian.org/debian/osslsigncode, https://github.com/mtrojnar/osslsigncode.git,3941.3454282407406,25,12,0 -ostinato,-0.156975688881461,1.83456394174619,-0.76457756156653,https://salsa.debian.org/debian/ostinato, https://github.com/pstavirs/ostinato,3046.754988425926,4,10,3 -otb,-0.981356999411669,-0.924253763186457,-0.993329415775958,https://salsa.debian.org/debian-gis-team/otb, https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb,4046.8698842592594,4,56,0 -othman,-1.27923059995522,0.901018381611301,-1.71931108968386,https://salsa.debian.org/islamic-team/othman, https://github.com/ojuba-org/othman.git,4827.982824074074,2,13,0 -ounit,-0.362741256164002,0.449711787060776,-0.619120319081785,https://salsa.debian.org/ocaml-team/ounit, https://github.com/gildor478/ounit.git,1284.2142476851852,12,7,0 -outguess,0.14978275487195,1.09749565786665,-0.226083672997015,https://salsa.debian.org/pkg-security-team/outguess, https://github.com/resurrecting-open-source-projects/outguess,1029.0813888888888,1,3,0 -overpass,-0.0322169908290347,2.66354784788558,-0.727560338669457,https://salsa.debian.org/python-team/packages/overpass, https://github.com/mvexel/overpass-api-python-wrapper.git,2968.0383449074075,4,26,0 -owslib,0.227162871238011,2.74205480704894,-0.294290743593166,https://salsa.debian.org/debian-gis-team/owslib, https://github.com/geopython/OWSLib.git,5660.128506944445,56,114,0 -oxref,-2.131385343706,0.0327536458326754,-2.72542090807765,https://salsa.debian.org/debian/oxref, https://gitlab.com/fbb-git/oxref,4649.082962962963,1,1,0 -oxygen,1.26542837032321,3.72917850363588,0.289251307821375,https://salsa.debian.org/qt-kde-team/kde/oxygen, https://invent.kde.org/plasma/oxygen.git,5783.310057870371,7,183,0 -oz,-0.749829510723026,1.30316000937079,-1.42182686453967,https://salsa.debian.org/jas/oz, https://github.com/clalancette/oz.git,4573.480069444445,58,15,0 -p8-platform,0.451088318283465,2.26041531250433,-0.0788317432754388,https://salsa.debian.org/debian/p8-platform, https://github.com/Pulse-Eight/platform.git,2947.354976851852,2,28,0 -pacemaker,1.1235155798957,1.88496777553281,0.624011358509109,https://salsa.debian.org/ha-team/pacemaker, https://github.com/ClusterLabs/pacemaker,5780.195138888889,21,156,0 -packit,1.48942834311213,3.95720756313973,0.379462691509891,https://salsa.debian.org/debian/packit, https://github.com/resurrecting-open-source-projects/packit,2522.8474189814815,3,11,0 -pacman4console,0.732053164869324,3.02920056306834,-0.160214161055993,https://github.com/alexdantas/pacman4console.debian,https://github.com/alexdantas/pacman4console.debian,442.21788194444446,0,2,0 -padthv1,-0.0637358518245524,2.79918411204868,-0.675200257772177,https://salsa.debian.org/multimedia-team/padthv1, https://github.com/rncbc/padthv1.git,2334.0719907407406,2,4,0 -pagekite,-0.0541538684090875,1.77223746923183,-0.786890886734185,https://salsa.debian.org/freedombox-team/pagekite, https://github.com/pagekite/PyPagekite,4048.006875,2,18,0 -pajeng,-2.29189452913937,-1.42465217231699,-2.57490979180573,https://salsa.debian.org/debian/pajeng, https://github.com/schnorr/pajeng.git,3890.985347222222,1,24,0 -palapeli,1.29161891858409,3.82399928173706,0.296302096950532,https://salsa.debian.org/qt-kde-team/kde/palapeli, https://anongit.kde.org/palapeli.git,5741.551944444444,2,59,0 -pam-mysql,1.41725517893156,2.68924415592356,0.678149090502143,https://salsa.debian.org/debian/pam-mysql, https://github.com/NigelCunningham/pam-MySQL.git,4452.585636574074,5,24,0 -pam-p11,-0.548583161526234,0.964446186711403,-1.10646596188949,https://salsa.debian.org/opensc-team/pam-p11, https://github.com/OpenSC/pam_p11.git,5663.13488425926,3,10,0 -pam-wrapper,-1.3475428389999,0.187879811799718,-1.65188018655513,https://salsa.debian.org/sssd-team/pam-wrapper, https://git.samba.org/pam_wrapper.git,2892.216851851852,14,3,0 -pan,0.413496577895894,0.652003610238016,0.226900752130072,https://salsa.debian.org/debian/pan, https://gitlab.gnome.org/GNOME/pan.git,5733.795740740741,59,77,0 -pango1.0,1.09436888073727,1.50994027222449,0.787226528509257,https://salsa.debian.org/gnome-team/pango, https://gitlab.gnome.org/GNOME/pango,5787.354328703704,36,160,0 -panoramisk,-1.66724383398698,0.627793774140285,-2.28695880510305,https://salsa.debian.org/python-team/packages/panoramisk, https://github.com/gawel/panoramisk.git,3565.5460416666665,6,25,0 -papi,0.164874136696093,1.74949965993817,-0.347204527615739,https://salsa.debian.org/hpc-team/papi, https://github.com/icl-utk-edu/papi,5785.065613425926,65,102,1 -paprefs,1.22355495733634,2.94781278286995,0.417040039341353,https://salsa.debian.org/pulseaudio-team/paprefs, https://gitlab.freedesktop.org/pulseaudio/paprefs,5104.5029513888885,89,31,0 -par2cmdline,0.200560850008367,0.946302393661034,-0.114418383974506,https://salsa.debian.org/jcfp/par2cmdline, https://github.com/Parchive/par2cmdline.git,4198.3890972222225,9,27,0 -parafly,-0.703785079701501,1.18315726331133,-1.09308492113404,https://salsa.debian.org/med-team/parafly, https://github.com/ParaFly/ParaFly,1437.0966666666666,1,4,0 -parallax,-0.0887932063431924,2.38916268908533,-0.651790373985227,https://salsa.debian.org/python-team/packages/parallax, https://github.com/krig/parallax,5166.3950231481485,4,10,0 -paramiko,1.43664012181926,2.30873305931516,0.878481502783719,https://salsa.debian.org/python-team/packages/paramiko, https://github.com/paramiko/paramiko,5765.774409722222,101,97,7 -parsedatetime,1.19436693284144,3.37118485155232,0.337046843928615,https://salsa.debian.org/python-team/packages/parsedatetime, https://github.com/bear/parsedatetime,3739.247199074074,8,57,2 -partd,0.209615305596686,2.61932118029702,-0.319373273551156,https://salsa.debian.org/python-team/packages/partd, https://github.com/dask/partd.git,3130.777800925926,14,10,0 -parted,1.67063019179669,2.05261052976537,1.35475465650143,https://salsa.debian.org/parted-team/parted, https://git.savannah.gnu.org/git/parted.git,5668.125798611111,80,9,0 -pass-extension-tail,-0.357805089713447,2.13667166838152,-0.933380627622862,https://salsa.debian.org/debian/pass-extension-tail, https://github.com/palortoff/pass-extension-tail,1892.8072222222222,4,2,0 -passwordsafe,-0.162400579486577,0.852122060323672,-0.449935421921846,https://salsa.debian.org/bblough/passwordsafe, https://github.com/pwsafe/pwsafe,5787.300520833333,38,78,0 -paste,0.701678813906754,1.97229820376607,0.112093320697141,https://salsa.debian.org/python-team/packages/paste, https://github.com/cdent/paste,3197.4934606481484,26,34,0 -pastedeploy,0.159009188486497,1.14750716010409,-0.172766059220747,https://salsa.debian.org/python-team/packages/pastedeploy, https://github.com/Pylons/pastedeploy,4320.11724537037,5,24,0 -pastescript,0.353823270629373,1.35513254390523,-0.0943410822422864,https://salsa.debian.org/python-team/packages/pastescript, https://github.com/cdent/pastescript.git,3347.9577893518517,0,24,0 -pasystray,0.628864255506922,2.22576917565774,-0.00583508372962348,https://salsa.debian.org/debian/pasystray, https://github.com/christophgysin/pasystray.git,4343.949039351852,23,11,0 -path.py,-0.0848290877332572,1.1385294168255,-0.351837370630802,https://salsa.debian.org/python-team/packages/path.py, https://github.com/jaraco/path.py.git,5108.109212962963,22,38,0 -patsy,0.267491786498725,1.41925731530505,-0.126148339679563,https://salsa.debian.org/med-team/patsy, https://github.com/pydata/patsy,4676.813194444445,3,15,0 -pavucontrol,1.38845936469807,2.57519759989306,0.711341518754586,https://salsa.debian.org/pulseaudio-team/pavucontrol, https://gitlab.freedesktop.org/pulseaudio/pavucontrol.git,5564.733587962963,151,58,0 -pavucontrol-qt,1.24644886245305,4.8736917607008,0.152912839496978,https://salsa.debian.org/lxqt-team/pavucontrol-qt, https://github.com/lxqt/pavucontrol-qt.git,5699.737418981482,142,57,0 -pbcopper,-1.38741598418141,-0.0972708878557045,-1.83645525098376,https://salsa.debian.org/med-team/pbcopper, https://github.com/PacificBiosciences/pbcopper.git,2608.9496875,0,25,0 -pcapfix,0.0933295762374161,2.13241654988334,-0.371290050399035,https://salsa.debian.org/debian/pcapfix, https://github.com/Rup0rt/pcapfix,3586.925,0,13,0 -pcapy,0.0349538124577532,1.25479928250535,-0.307556293496425,https://salsa.debian.org/python-team/packages/pcapy, https://github.com/CoreSecurity/pcapy.git,1937.2327893518518,7,20,0 -pcl,-0.434415415199578,-0.18586657363712,-0.537636421314271,https://salsa.debian.org/science-team/pcl, https://github.com/PointCloudLibrary/pcl,4663.696782407407,183,548,3 -pcmanfm,0.910471152792046,1.31068264307585,0.609872304451939,https://salsa.debian.org/lxde-team/pcmanfm, https://github.com/lxde/pcmanfm,5014.9549074074075,162,27,0 -pcmanfm-qt,-0.137921814183581,-0.0960956898358719,-0.148917272898073,https://salsa.debian.org/lxqt-team/pcmanfm-qt, https://github.com/lxqt/pcmanfm-qt.git,4124.801805555556,132,60,0 -pcmanx-gtk2,0.405704730707916,2.17018285384239,-0.402989076864394,https://github.com/pcman-bbs/pcmanx/,https://github.com/pcman-bbs/pcmanx,4671.957210648148,20,31,2 -pd-ableton-link,-0.324299912686206,2.16355424689505,-0.868174322922275,https://salsa.debian.org/multimedia-team/pd/pd-ableton-link, https://github.com/libpd/abl_link.git,2218.7531018518516,1,11,0 -pd-csound,-0.176100914298225,2.29698208106979,-0.665282627798041,https://salsa.debian.org/multimedia-team/pd/pd-csound, https://github.com/csound/csound_pd,5151.554479166667,2,16,0 -pd-cyclone,-0.0431109426436967,1.62122250048164,-0.509438692526434,https://salsa.debian.org/multimedia-team/pd/pd-cyclone, https://github.com/porres/pd-cyclone,5699.0375,3,24,0 -pd-flext,-0.0850254405392123,1.79955929698887,-0.691872893312516,https://salsa.debian.org/multimedia-team/pd/pd-flext, https://github.com/grrrr/flext.git,5601.788298611111,3,10,0 -pd-ggee,0.213738133452602,2.10511371007261,-0.419276384857071,https://salsa.debian.org/multimedia-team/pd/pd-ggee, https://github.com/pd-externals/ggee,5602.669178240741,2,15,0 -pd-iemmatrix,-0.326792863942795,1.41622916264845,-0.702774565701274,https://salsa.debian.org/multimedia-team/pd/pd-iemmatrix, https://github.com/iem-projects/pd-iemmatrix,5648.038460648148,0,11,0 -pd-libdir,-0.025480314189379,1.53960860686673,-0.434339048580152,https://salsa.debian.org/multimedia-team/pd/pd-libdir, https://github.com/pure-data/libdir,2709.947835648148,1,9,0 -pd-lua,-0.369383513489571,1.75905614601873,-0.780819933618331,https://salsa.debian.org/multimedia-team/pd/pd-lua, https://github.com/agraef/pd-lua.git,3302.6912962962965,1,8,0 -pd-mediasettings,-0.383381216538356,1.92743948383171,-0.815727777824057,https://salsa.debian.org/multimedia-team/pd/pd-mediasettings, https://git.iem.at/pd/mediasettings.git,4193.757210648148,1,10,0 -pd-moonlib,-0.220576523706958,2.02263054824689,-0.734517258281122,https://salsa.debian.org/multimedia-team/pd/pd-moonlib, https://github.com/MetaluNet/moonlib.git,5328.802453703704,1,11,0 -pd-mrpeach,-0.435778190229046,0.763417973645195,-0.696154604254768,https://salsa.debian.org/multimedia-team/pd/pd-mrpeach, https://github.com/pd-externals/mrpeach.git,5185.577673611111,1,9,0 -pd-purest-json,-0.254922486955698,2.32023704201916,-0.819840459329826,https://salsa.debian.org/multimedia-team/pd/pd-purest-json, https://github.com/residuum/PuRestJson.git,4472.353229166667,0,8,0 -pd-tclpd,-0.547232275125129,1.06538912069422,-0.832098932599204,https://salsa.debian.org/multimedia-team/pd/pd-tclpd, https://github.com/pd-externals/tclpd.git,5367.883101851852,2,12,0 -pd-vbap,-0.212897524820705,1.75445810869701,-0.743250436269704,https://salsa.debian.org/multimedia-team/pd/pd-vbap, https://github.com/pd-externals/vbap.git,5156.073657407407,1,7,0 -pd-xsample,-0.381260306551827,1.95255552142034,-0.868159642502604,https://salsa.debian.org/multimedia-team/pd/pd-xsample, https://github.com/grrrr/xsample.git,5672.9809259259255,1,13,0 -pdal,-0.238014570201764,-0.141040198695618,-0.254555011546555,https://salsa.debian.org/debian-gis-team/pdal, https://github.com/PDAL/PDAL.git,4697.109444444444,132,71,0 -pdd,-0.96846896187884,1.30331332356726,-1.4106955015723,https://salsa.debian.org/debian/pdd, https://github.com/jarun/pdd.git,2233.847233796296,8,9,0 -pdepend,-0.115983868593709,1.87535356135467,-0.649716900440004,https://salsa.debian.org/php-team/pear/pdepend, https://github.com/pdepend/pdepend,5780.3265625,17,96,2 -pdf-presenter-console,0.164235292468359,0.778355723939873,-0.149365664976122,https://salsa.debian.org/debian/pdf-presenter-console, https://github.com/pdfpc/pdfpc,4984.15332175926,37,34,1 -pdfarranger,0.407888449677506,1.36718503888725,-0.013424742258094,https://salsa.debian.org/python-team/packages/pdfarranger, https://github.com/pdfarranger/pdfarranger,5142.067696759259,96,11,2 -pdfkit,-0.144724298530977,3.09191063457332,-1.0508398303539,https://salsa.debian.org/python-team/packages/pdfkit, https://github.com/JazzCore/python-pdfkit,3909.8537268518517,16,22,0 -pdfminer,0.0208023167964793,1.0139403963297,-0.25847023734503,https://salsa.debian.org/python-team/packages/pdfminer, https://github.com/pdfminer/pdfminer.six.git,5691.144791666667,73,66,0 -pdfresurrect,-0.23996525388638,1.67946261371584,-0.59688237072784,https://salsa.debian.org/debian/pdfresurrect, https://github.com/enferex/pdfresurrect.git,5171.962662037037,2,6,0 -pdftk-java,0.118932282607081,1.03618981912146,-0.104211022107336,https://gitlab.com/johfel/pdftk, https://gitlab.com/pdftk-java/pdftk.git,2124.7854513888888,5,26,0 -pdudaemon,-2.91306680643287,-0.145850824528147,-3.67906102762584,https://github.com/pdudaemon/pkg-pdudaemon,https://github.com/pdudaemon/pkg-pdudaemon,1898.0415972222222,9,22,0 -peek,0.221373178589643,2.28386653600158,-0.279046957327904,https://salsa.debian.org/debian/peek, https://github.com/phw/peek.git,2556.2171064814816,148,23,0 -peewee,0.103743491823741,3.38962196040125,-0.890060633979075,https://salsa.debian.org/python-team/packages/peewee, https://github.com/coleifer/peewee,4809.915636574074,33,127,0 -pekka-kana-2,-0.664393820242583,1.40278298000999,-1.1607623832213,https://salsa.debian.org/games-team/pekka-kana-2, https://gitlab.com/coringao/pekka-kana-2,656.0519444444444,0,2,0 -pekwm,-0.435338541648194,0.377463161544604,-0.717855468766354,https://salsa.debian.org/debian/pekwm, https://github.com/pekdon/pekwm,5508.519722222222,28,12,3 -pelican,-0.000870658383324926,0.793567822764075,-0.339763258893756,https://salsa.debian.org/python-team/packages/pelican, https://github.com/getpelican/pelican,4855.151018518519,106,385,2 -pencil2d,0.566720128739548,2.84228001532238,-0.202637304337189,https://salsa.debian.org/debian/pencil2d, https://github.com/pencil2d/pencil,4816.997025462963,27,64,2 -peony,-0.380932646727337,2.01361597548738,-1.01930212026203,https://github.com/ukui/peony,https://github.com/ukui/peony,2003.8709375,25,81,0 -peony-extensions,-0.564111606101361,1.86591915571183,-1.18780438162773,https://github.com/ukui/peony-extensions,https://github.com/ukui/peony-extensions,1664.9383333333333,13,33,0 -pep517,-1.96399977695729,0.457040242260835,-2.46871480767036,https://salsa.debian.org/python-team/packages/pep517, https://github.com/pypa/pep517.git,2336.8596296296296,6,25,0 -pep8-naming,-0.0749410807441949,2.61614321396551,-0.798099027005628,https://salsa.debian.org/python-team/packages/pep8-naming, https://github.com/PyCQA/pep8-naming,3922.364189814815,13,28,0 -pep8-simul,-2.34211849116346,-0.115568342851431,-2.78795816915985,https://salsa.debian.org/debian/pep8-simul, https://github.com/StanWarford/pep8,3632.9656944444446,2,7,0 -perceptualdiff,0.657565597956471,3.01845777711462,-0.328673288938599,https://salsa.debian.org/debian/perceptualdiff, https://github.com/myint/perceptualdiff,4581.755439814815,0,12,0 -perf-tools-unstable,-0.0601624543089167,1.51231762559085,-0.483928569096378,https://salsa.debian.org/debian/perf-tools-unstable, https://github.com/brendangregg/perf-tools,2014.1201041666666,2,20,0 -perftest,-0.255066589970343,1.16247955467135,-0.648088089401375,https://salsa.debian.org/hpc-team/perftest, https://github.com/linux-rdma/perftest.git,5766.237222222222,45,67,0 -perl-cross-debian,0.544266159578039,4.51077365118303,-0.746210929605819,https://github.com/codehelp/perl-cross-debian,https://github.com/codehelp/perl-cross-debian,413.1343634259259,0,1,2 -perl-depends,-0.0980943950399754,2.69711137416204,-0.791618903105446,https://salsa.debian.org/perl-team/modules/packages/perl-depends, https://github.com/jaalto/project--perl-depends.git,2417.02125,0,1,0 -perl6-readline,0.233581275914633,2.63588830523579,-0.501520760452775,https://salsa.debian.org/perl6-team/modules/perl6-readline, https://github.com/drforr/perl6-readline.git,1710.428935185185,3,11,0 -perl6-zef,-0.158987933286221,1.62456160725648,-0.601563466885773,https://salsa.debian.org/perl6-team/modules/perl6-zef, https://github.com/ugexe/zef.git,3805.8422569444447,19,20,0 -persp-projectile,-0.639585184966139,3.28632343896646,-1.7735281376641,https://salsa.debian.org/emacsen-team/persp-projectile, https://github.com/bbatsov/persp-projectile.git,2006.7800810185186,9,2,0 -pev,0.326196959423477,2.60718167412258,-0.297393072805151,https://salsa.debian.org/debian/pev, https://github.com/merces/pev,0.001979166666666667,1,1,0 -pexpect,0.814121536373887,1.98889520715382,0.266774843345615,https://salsa.debian.org/python-team/packages/pexpect, https://github.com/pexpect/pexpect,5767.471574074074,21,92,0 -pg-checksums,-1.82134420236719,-0.13729698675695,-2.23031878481082,https://salsa.debian.org/postgresql/pg-checksums, https://github.com/credativ/pg_checksums.git,1977.03125,1,6,0 -pg-fact-loader,-1.84514999754585,1.7612439253021,-2.85576843286447,https://salsa.debian.org/postgresql/pg-fact-loader, https://github.com/enova/pg_fact_loader.git,1795.1245717592592,2,6,0 -pg-partman,-1.14997978218077,1.36537315734972,-1.79970042846314,https://salsa.debian.org/postgresql/pg-partman, https://github.com/pgpartman/pg_partman.git,4104.582835648148,18,11,0 -pg-qualstats,-1.43590772212002,0.949846995393329,-1.96498265038114,https://github.com/powa-team/pg_qualstats,https://github.com/powa-team/pg_qualstats,3499.713865740741,4,13,0 -pg-rage-terminator,-5.06640751639078,-3.16889600306041,-5.47213138173857,https://github.com/disco-stu/pg-rage-terminator-pkg,https://github.com/disco-stu/pg-rage-terminator-pkg,3117.208541666667,0,7,0 -pg-snakeoil,-2.70653635842388,9.60353410794286e-05,-3.30306867956238,https://github.com/df7cb/pg_snakeoil,https://github.com/df7cb/pg_snakeoil,1864.2726273148148,3,7,0 -pg8000,-0.425873307032282,2.47939255951003,-1.2002236195433,https://salsa.debian.org/python-team/packages/pg8000, https://github.com/mfenniak/pg8000,3962.2166666666667,11,25,0 -pgbackrest,-0.683367637155959,0.425625927113048,-0.96754211618675,https://salsa.debian.org/postgresql/pgbackrest, https://github.com/pgbackrest/pgbackrest,3684.8419791666665,47,12,1 -pgbadger,-0.315216750586259,1.89417835219122,-0.750043583624075,https://salsa.debian.org/postgresql/pgbadger, https://github.com/darold/pgbadger.git,4259.984722222222,12,88,0 -pgcharts,-0.330716905200357,2.72524688656416,-1.4219394500185,https://github.com/dimitri/pgcharts,https://github.com/dimitri/pgcharts,2256.897962962963,2,6,0 -pgextwlist,-2.63340214747954,-0.157692962640915,-3.26209228710891,https://github.com/dimitri/pgextwlist,https://github.com/dimitri/pgextwlist,4298.991944444444,2,19,0 -pgformatter,-0.766671696679578,1.40045971348685,-1.2007180309708,https://salsa.debian.org/postgresql/pgformatter, https://github.com/darold/pgFormatter.git,3991.294074074074,8,26,0 -pgl-ddl-deploy,-2.51856607601625,0.331077085543538,-3.25977074886732,https://salsa.debian.org/postgresql/pgl-ddl-deploy, https://github.com/enova/pgl_ddl_deploy.git,2403.256342592593,9,12,0 -pglistener,-0.695593628177759,3.07629848663159,-1.74252584829119,https://salsa.debian.org/debian/pglistener, https://gitlab.collabora.com/sysadmin/pglistener/pglistener.git,5507.9584606481485,2,14,0 -pgloader,1.06928253461968,2.98367831460688,0.212182165415462,https://github.com/dimitri/pgloader,https://github.com/dimitri/pgloader,5748.914351851852,70,45,2 -pglogical-ticker,-1.99300280945124,1.9160778986305,-3.10566554484295,https://salsa.debian.org/postgresql/pglogical-ticker, https://github.com/enova/pglogical_ticker.git,1787.9691666666668,1,7,0 -pgmodeler,-0.325526883075636,0.562135623963859,-0.568483485050859,https://salsa.debian.org/postgresql/pgmodeler, https://github.com/pgmodeler/pgmodeler.git,4123.843055555555,6,46,0 -pgpdump,0.36143950333341,1.51893397726003,-0.144183693016058,https://salsa.debian.org/debian/pgpdump, https://github.com/kazu-yamamoto/pgpdump.git,4538.913414351852,4,16,0 -pgqd,-1.0872351669669,1.05950568376667,-1.53142551702268,https://salsa.debian.org/postgresql/pgqd, https://github.com/pgq/pgqd,2225.1037384259257,0,1,0 -pgrouting,-0.765232552157106,1.57925457793502,-1.3149612286901,https://salsa.debian.org/debian-gis-team/pgrouting, https://github.com/pgRouting/pgrouting.git,5779.2725,62,134,0 -pgsphere,-0.619432588970695,1.61934040316392,-1.06735716946819,https://salsa.debian.org/postgresql/pgsphere, https://github.com/akorotkov/pgsphere,1961.9147569444444,2,10,0 -pgsql-asn1oid,-2.13226834673849,0.00658372510586927,-2.97386233799254,https://github.com/df7cb/pgsql-asn1oid,https://github.com/df7cb/pgsql-asn1oid,2425.896435185185,3,4,0 -pgsql-ogr-fdw,-1.59721705299543,1.0989905750354,-2.20314319943185,https://salsa.debian.org/debian-gis-team/pgsql-ogr-fdw, https://github.com/pramsey/pgsql-ogr-fdw.git,3285.024895833333,8,10,0 -pgtap,-0.499566580834352,0.600659593258449,-1.00512046139286,https://salsa.debian.org/postgresql/pgtap, https://github.com/theory/pgtap,5595.746747685185,24,30,0 -pgtop,0.145347509564145,1.42411546397134,-0.307108176046494,https://salsa.debian.org/postgresql/pgtop, https://gitlab.com/pg_top/pg_top.git,5573.2768634259255,12,7,0 -pgxnclient,-0.85155888131832,0.370970429938223,-1.10149104887505,https://salsa.debian.org/postgresql/pgxnclient, https://github.com/pgxn/pgxnclient.git,3780.249421296296,0,7,0 -pgzero,-0.0710203462137889,2.37147323598952,-0.527322234446825,https://github.com/RPi-Distro/pgzero,https://github.com/RPi-Distro/pgzero,1071.605775462963,0,31,0 -phing,-0.538565856122596,1.5811545107839,-1.0297476237421,https://salsa.debian.org/php-team/pear/phing, https://github.com/phingofficial/phing,5770.388194444445,74,179,2 -phodav,0.892075243032476,3.49281772547403,0.112409244157462,https://salsa.debian.org/gnome-team/phodav, https://gitlab.gnome.org/GNOME/phodav.git,3558.8712731481482,37,32,0 -photocollage,0.981027947071719,4.48700278593263,-0.12845551169211,https://salsa.debian.org/debian/photocollage, https://github.com/adrienverge/PhotoCollage,3560.567523148148,15,10,0 -photofilmstrip,0.0565928501185162,1.28352124732467,-0.441454894726839,https://salsa.debian.org/python-team/packages/photofilmstrip, https://github.com/PhotoFilmStrip/PFS.git,5467.569895833333,4,6,0 -photutils,-0.530821730470941,-0.147517470629556,-0.607062667233244,https://salsa.debian.org/debian-astro-team/photutils, https://github.com/astropy/photutils.git,4375.074594907407,24,63,0 -php-auth-sasl,0.442191496402906,2.67699921686042,-0.103972592038695,https://salsa.debian.org/php-team/pear/php-auth-sasl, https://github.com/pear/Auth_SASL.git,5614.356469907408,3,10,0 -php-codecoverage,0.0554134964289426,0.892812339821748,-0.25361320683874,https://salsa.debian.org/php-team/pear/php-codecoverage, https://github.com/sebastianbergmann/php-code-coverage,5309.602488425926,61,64,0 -php-codesniffer,0.72579747298667,3.08416098823916,-0.145017632982001,https://salsa.debian.org/php-team/pear/php-codesniffer, https://github.com/squizlabs/PHP_CodeSniffer,5773.466666666666,36,241,2 -php-composer-semver,0.409271212998555,2.86586850175265,-0.1464380119791,https://salsa.debian.org/php-team/pear/php-composer-semver, https://github.com/composer/semver,2969.092777777778,37,21,0 -php-console-table,-0.0495487944916377,1.78305117168249,-0.412769552291905,https://salsa.debian.org/php-team/pear/php-console-table, https://github.com/pear/Console_Table.git,2649.3105555555558,1,12,0 -php-constant-time,-2.08345056258572,2.10571693862927,-3.3638483931456,https://salsa.debian.org/php-team/pear/php-constant-time, https://github.com/paragonie/constant_time_encoding,2771.7821296296297,7,11,0 -php-crypt-gpg,0.921065803701291,4.32644785490778,-0.369679299393762,https://salsa.debian.org/php-team/pear/php-crypt-gpg, https://github.com/pear/Crypt_GPG.git,5743.496597222223,6,19,0 -php-directory-scanner,-0.449340208836042,1.85527006497102,-0.905098171654404,https://salsa.debian.org/php-team/pear/php-directory-scanner, https://github.com/theseer/DirectoryScanner.git,4264.1542361111115,0,7,0 -php-doctrine-data-fixtures,-1.38873766736549,0.818944080015472,-1.85667088228572,https://salsa.debian.org/php-team/pear/php-doctrine-data-fixtures, https://github.com/doctrine/data-fixtures,4832.895266203704,32,91,3 -php-doctrine-instantiator,0.102858191378864,2.27381740242912,-0.319535245760271,https://salsa.debian.org/php-team/pear/php-doctrine-instantiator, https://github.com/doctrine/instantiator,3466.1691666666666,8,34,4 -php-dompdf,0.161438496830306,1.83426657504856,-0.313226115410642,https://salsa.debian.org/php-team/pear/php-dompdf, https://github.com/dompdf/dompdf,3771.5165625,98,70,5 -php-easyrdf,-4.53985004086169,-1.04760973421574,-5.40008705061473,https://salsa.debian.org/php-team/pear/php-easyrdf, https://github.com/easyrdf/easyrdf.git,4424.606516203704,13,32,0 -php-fdomdocument,0.102987222393373,3.04819313229607,-0.604484786621114,https://salsa.debian.org/php-team/pear/php-fdomdocument, https://github.com/theseer/fDOMDocument,4119.523831018519,0,16,0 -php-fig-link-util,-0.442538184706823,2.47460229459308,-1.26537149869149,https://salsa.debian.org/php-team/pear/php-fig-link-util, https://github.com/php-fig/link-util,1680.1398148148148,5,2,0 -php-file-iterator,0.311453315128483,2.11295874771565,-0.242017200503537,https://salsa.debian.org/php-team/pear/php-file-iterator, https://github.com/sebastianbergmann/php-file-iterator,5147.326273148148,9,12,0 -php-font-lib,0.195361938974529,2.28815740087615,-0.335970916189747,https://salsa.debian.org/php-team/pear/php-font-lib, https://github.com/dompdf/php-font-lib,4545.507627314815,16,19,2 -php-fxsl,-0.52174395429572,1.86780741853676,-1.10030187391749,https://salsa.debian.org/php-team/pear/php-fxsl, https://github.com/theseer/fXSL.git,1403.9575347222221,0,4,0 -php-getid3,0.476939316088774,3.16810349949478,-0.210102938549955,https://salsa.debian.org/php-team/pear/php-getid3, https://github.com/JamesHeinrich/getID3,3892.988275462963,13,58,1 -php-guzzlehttp-psr7,0.307487041404784,3.50584748080844,-0.858192121054758,https://salsa.debian.org/php-team/pear/php-guzzlehttp-psr7, https://github.com/guzzle/psr7,3203.658229166667,45,67,2 -php-hamcrest,-1.90335724682401,1.30883550679566,-2.96841634471535,https://salsa.debian.org/php-team/pear/php-hamcrest, https://github.com/hamcrest/hamcrest-php.git,4488.772615740741,11,18,0 -php-horde,-0.475481946151392,0.193672797634758,-0.728948802917928,https://salsa.debian.org/horde-team/php-horde, https://github.com/horde/horde.git,3269.665474537037,81,80,0 -php-horde-activesync,-0.0745412837503706,1.90299252156807,-0.59696941289219,https://salsa.debian.org/horde-team/php-horde-activesync, https://github.com/horde/ActiveSync.git,4982.044305555555,9,18,0 -php-horde-ansel,-1.62227992306444,-0.0808757241466176,-1.9210437163213,https://salsa.debian.org/horde-team/php-horde-ansel, https://github.com/horde/ansel.git,3572.815891203704,8,17,0 -php-horde-auth,0.204785208426788,2.94636390757602,-0.554406768101709,https://salsa.debian.org/horde-team/php-horde-auth, https://github.com/horde/Auth.git,5222.153275462963,8,22,0 -php-horde-cache,-0.174470052161785,2.10645961966901,-0.621323731432901,https://salsa.debian.org/horde-team/php-horde-cache, https://github.com/horde/Cache.git,5348.468379629629,2,18,0 -php-horde-compress,-0.0162442715598989,2.573155410047,-0.607693905543425,https://salsa.debian.org/horde-team/php-horde-compress, https://github.com/horde/Compress.git,5217.754375,1,13,0 -php-horde-core,-0.380260796125779,0.352626984782649,-0.604615374728719,https://salsa.debian.org/horde-team/php-horde-core, https://github.com/horde/Core.git,5226.49806712963,21,34,0 -php-horde-crypt,0.187511708701416,2.67518359293262,-0.532965220602124,https://salsa.debian.org/horde-team/php-horde-crypt, https://github.com/horde/Crypt.git,5471.736516203704,3,21,0 -php-horde-css-parser,-0.0402081222000321,2.52915570961585,-0.602732940546386,https://salsa.debian.org/horde-team/php-horde-css-parser, https://github.com/horde/Css_Parser.git,3874.0563888888887,2,10,0 -php-horde-data,0.183171821003295,3.09938130965899,-0.570655251896387,https://salsa.debian.org/horde-team/php-horde-data, https://github.com/horde/Data.git,5055.593263888889,0,13,0 -php-horde-dav,-0.386658763732866,0.750534238995732,-0.628487162499523,https://salsa.debian.org/horde-team/php-horde-dav, https://github.com/horde/Dav.git,3872.1194328703705,2,9,0 -php-horde-db,-0.264682174789894,1.37929818175092,-0.615400448018519,https://salsa.debian.org/horde-team/php-horde-db, https://github.com/horde/Db.git,5458.164583333333,6,19,0 -php-horde-editor,-0.223426584733947,1.34298704341404,-0.605941186398711,https://salsa.debian.org/horde-team/php-horde-editor, https://github.com/horde/Editor.git,5432.443020833333,0,10,0 -php-horde-form,0.14252789650246,2.56464496021431,-0.550380122776327,https://salsa.debian.org/horde-team/php-horde-form, https://github.com/horde/Form.git,5422.499918981482,3,17,0 -php-horde-gollem,-0.171618986615286,2.89817525914709,-0.866777393612127,https://salsa.debian.org/horde-team/php-horde-gollem, https://github.com/horde/gollem.git,3924.770474537037,2,13,0 -php-horde-groupware,-0.879575572702774,1.95588867647421,-1.59509283216139,https://salsa.debian.org/horde-team/php-horde-groupware, https://github.com/horde/groupware.git,2932.5787731481482,1,6,0 -php-horde-icalendar,0.411178925029687,3.9130953915899,-0.513041815715152,https://salsa.debian.org/horde-team/php-horde-icalendar, https://github.com/horde/Icalendar.git,5159.372430555555,2,18,0 -php-horde-image,0.861625622312404,3.84661135149808,-0.192976466940603,https://salsa.debian.org/horde-team/php-horde-image, https://github.com/horde/Image.git,5265.799756944444,5,20,0 -php-horde-imap-client,0.0159896158795933,2.45672857559943,-0.594186089846477,https://salsa.debian.org/horde-team/php-horde-imap-client, https://github.com/horde/Imap_Client.git,5506.481261574074,14,23,0 -php-horde-imp,-0.387264654144177,1.28922363095689,-0.857146627686056,https://salsa.debian.org/horde-team/php-horde-imp, https://github.com/horde/imp.git,5305.90525462963,15,26,0 -php-horde-ingo,-0.738291040308077,0.443103494356446,-0.947574171352426,https://salsa.debian.org/horde-team/php-horde-ingo, https://github.com/horde/ingo.git,4403.567083333333,10,21,0 -php-horde-javascriptminify-jsmin,-1.31533346419952,2.29216057565816,-2.4364015778352,https://salsa.debian.org/horde-team/php-horde-javascriptminify-jsmin, https://github.com/horde/JavascriptMinify_Jsmin.git,3603.589363425926,2,12,0 -php-horde-kronolith,-0.166253261321685,1.87236583137514,-0.795113908579552,https://salsa.debian.org/horde-team/php-horde-kronolith, https://github.com/horde/kronolith.git,4413.8611458333335,19,29,0 -php-horde-listheaders,0.496037656791296,4.18984525323947,-0.503645341941662,https://salsa.debian.org/horde-team/php-horde-listheaders, https://github.com/horde/ListHeaders.git,4255.579930555556,2,10,0 -php-horde-mail,-0.363916444363985,1.13321039067331,-0.626998217232575,https://salsa.debian.org/horde-team/php-horde-mail, https://github.com/horde/Mail.git,4915.307268518519,7,13,0 -php-horde-mapi,-0.0661710251511498,2.58767980448231,-0.618532739220528,https://salsa.debian.org/horde-team/php-horde-mapi, https://github.com/horde/Mapi.git,2259.7966087962964,1,5,0 -php-horde-memcache,0.0040161630453602,2.72211667023621,-0.602899602198373,https://salsa.debian.org/horde-team/php-horde-memcache, https://github.com/horde/Memcache.git,4490.554363425926,3,7,0 -php-horde-mime,0.312598091998098,3.61990381078814,-0.539292025154763,https://salsa.debian.org/horde-team/php-horde-mime, https://github.com/horde/Mime.git,5432.603287037037,7,18,0 -php-horde-mime-viewer,-0.114949450873328,1.94240763174753,-0.601643281374749,https://salsa.debian.org/horde-team/php-horde-mime-viewer, https://github.com/horde/Mime_Viewer.git,4839.7695138888885,2,13,0 -php-horde-mnemo,-0.620782744288486,0.974790302662827,-0.892064866876727,https://salsa.debian.org/horde-team/php-horde-mnemo, https://github.com/horde/mnemo.git,4989.44556712963,5,17,0 -php-horde-mongo,0.91677132679345,5.42989372433676,-0.479383727697856,https://salsa.debian.org/horde-team/php-horde-mongo, https://github.com/horde/Mongo.git,3839.649965277778,0,8,0 -php-horde-pack,0.214272562492599,3.19453329251686,-0.549560368021634,https://salsa.debian.org/horde-team/php-horde-pack, https://github.com/horde/Pack.git,3648.4273842592593,1,11,0 -php-horde-passwd,-0.961211522570345,1.47321790709633,-1.6779013899252,https://salsa.debian.org/horde-team/php-horde-passwd, https://github.com/horde/passwd.git,4947.638958333333,4,19,0 -php-horde-role,-0.44794183208143,1.17290206026408,-0.767030268859667,https://salsa.debian.org/horde-team/php-horde-role, https://github.com/horde/Role.git,4810.131111111111,0,8,0 -php-horde-sesha,-1.16215640136414,1.54504444921965,-1.99219940889212,https://salsa.debian.org/horde-team/php-horde-sesha, https://github.com/horde/sesha.git,2802.3719791666667,3,8,0 -php-horde-test,-0.238823004013114,1.87884049237919,-0.641514352188213,https://salsa.debian.org/horde-team/php-horde-test, https://github.com/horde/Test.git,5359.615,2,15,0 -php-horde-text-filter,-0.143714547390321,1.07686967436859,-0.555585014115903,https://salsa.debian.org/horde-team/php-horde-text-filter, https://github.com/horde/Text_Filter.git,5251.306493055556,3,17,0 -php-horde-text-filter-jsmin,-1.31240451781138,2.12226153886276,-2.42195535802247,https://salsa.debian.org/horde-team/php-horde-text-filter-jsmin, https://github.com/horde/Text_Filter_Jsmin.git,2314.732372685185,0,4,0 -php-horde-trean,-0.305868272713468,1.97802468726843,-0.878929578804094,https://salsa.debian.org/horde-team/php-horde-trean, https://github.com/horde/trean.git,3562.835347222222,2,9,0 -php-horde-turba,-0.457965055258577,1.31178896235939,-0.885930477256157,https://salsa.debian.org/horde-team/php-horde-turba, https://github.com/horde/turba.git,4857.3907407407405,15,22,0 -php-horde-webmail,-0.405335363366864,1.79623636367251,-1.01222555094498,https://salsa.debian.org/horde-team/php-horde-webmail, https://github.com/horde/webmail.git,2950.8800810185185,2,6,0 -php-horde-whups,-1.06542308450506,1.99933178965644,-1.89562708427228,https://salsa.debian.org/horde-team/php-horde-whups, https://github.com/horde/whups.git,3431.486701388889,4,18,0 -php-horde-wicked,-1.07494338366801,1.99451637104157,-1.89217524542563,https://salsa.debian.org/horde-team/php-horde-wicked, https://github.com/horde/wicked.git,4893.998171296296,5,14,0 -php-invoker,-0.290512786061908,1.95959461381953,-0.889933414880879,https://salsa.debian.org/php-team/pear/php-invoker, https://github.com/sebastianbergmann/php-invoker,4657.89662037037,2,7,0 -php-mail-mime,0.0757330812547995,0.668749696907802,-0.124991113420402,https://salsa.debian.org/php-team/pear/php-mail-mime, https://github.com/pear/Mail_Mime.git,5740.767650462963,4,21,0 -php-masterminds-html5,-0.320820055183681,2.12276497293667,-0.829847557102226,https://salsa.debian.org/php-team/pear/php-masterminds-html5, https://github.com/Masterminds/html5-php,3846.3884953703705,7,39,1 -php-mikey179-vfsstream,-3.81468264008094,-1.31257229618589,-4.33563157951327,https://salsa.debian.org/php-team/pear/php-mikey179-vfsstream, https://github.com/bovigo/vfsStream,5683.637013888889,11,48,1 -php-monolog,0.505413594650869,3.17086810943634,-0.379310857818425,https://salsa.debian.org/php-team/pear/php-monolog, https://github.com/Seldaek/monolog,4676.6184375,183,372,3 -php-nesbot-carbon,-0.863153713474241,1.65958302705145,-1.5444681867113,https://salsa.debian.org/php-team/pear/php-nesbot-carbon, https://github.com/briannesbitt/carbon,4115.967280092593,161,223,2 -php-net-ldap2,0.639885318257764,2.49018646004348,-0.0984745451090751,https://salsa.debian.org/php-team/pear/php-net-ldap2, https://github.com/pear/Net_LDAP2.git,3594.485416666667,3,10,0 -php-net-sieve,0.52860867987332,2.55133255454418,-0.107103554773453,https://salsa.debian.org/php-team/pear/php-net-sieve, https://github.com/pear/Net_Sieve.git,4982.018912037037,1,17,0 -php-net-smtp,0.612479398529543,2.48356959222482,0.0048970818145977,https://salsa.debian.org/php-team/pear/php-net-smtp, https://github.com/pear/Net_SMTP.git,5742.501909722222,6,20,0 -php-net-socket,0.907994996745038,3.04058139061094,0.117819562938565,https://salsa.debian.org/php-team/pear/php-net-socket, https://github.com/pear/Net_Socket.git,3345.463252314815,1,15,0 -php-nrk-predis,0.758047451319142,4.27127099326695,-0.359806912130029,https://salsa.debian.org/php-team/pear/php-predis, https://github.com/predis/predis.git,5141.193425925926,61,57,0 -php-parser,-0.291525039333005,1.8269276917996,-0.766485228038077,https://salsa.debian.org/php-team/pear/php-parser, https://github.com/nikic/PHP-Parser,4619.1675115740745,120,37,1 -php-phar-io-manifest,0.0385459704976402,2.44553072576695,-0.417874197026899,https://salsa.debian.org/php-team/pear/php-phar-io-manifest, https://github.com/phar-io/manifest.git,2379.9058680555554,3,9,0 -php-phpdocumentor-reflection-common,0.0165590904002181,2.28668639714466,-0.412435710798256,https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-common, https://github.com/phpDocumentor/ReflectionCommon,2836.5084606481482,10,9,0 -php-phpdocumentor-reflection-docblock,0.0730870230632585,2.2978588140111,-0.354723442366205,https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-docblock, https://github.com/phpDocumentor/ReflectionDocBlock,4206.51269675926,22,51,0 -php-phpdocumentor-type-resolver,0.0218360213936537,2.31253193880415,-0.41298883524215,https://salsa.debian.org/php-team/pear/php-phpdocumentor-type-resolver, https://github.com/phpDocumentor/TypeResolver,3092.0947569444443,18,31,1 -php-phpseclib,0.153021438243648,1.60110980796074,-0.114735272657912,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.23318287037,80,98,0 -php-proxy-manager,-0.469657562496154,1.74429330828993,-0.900080734206303,https://salsa.debian.org/php-team/pear/php-proxy-manager, https://github.com/FriendsOfPHP/proxy-manager-lts.git,3717.899050925926,21,47,0 -php-psr-cache,0.944765666055755,4.16922910379261,-0.0612099303670947,https://salsa.debian.org/php-team/pear/php-psr-cache, https://github.com/php-fig/cache.git,2530.1591435185187,8,10,0 -php-psr-http-message,-0.0680426390312836,3.3445895376759,-1.03124991562073,https://salsa.debian.org/php-team/pear/php-psr-http-message, https://github.com/php-fig/http-message,3219.452534722222,3,24,0 -php-sql-formatter,-0.407920410951981,2.27738498271881,-1.15300547005679,https://salsa.debian.org/php-team/pear/php-sql-formatter, https://github.com/doctrine/sql-formatter.git,4125.636030092593,10,31,0 -php-symfony-contracts,0.6071508907978,3.53076181825099,-0.188249023495799,https://salsa.debian.org/php-team/pear/php-symfony-contracts, https://github.com/symfony/contracts,1906.8477083333332,28,26,0 -php-symfony-polyfill,0.593613053162614,2.9045150589304,-0.100477405884853,https://salsa.debian.org/php-team/pear/php-symfony-polyfill, https://github.com/symfony/polyfill,2902.2220949074076,100,47,0 -php-text-password,0.800386407625348,3.73544611045218,-0.265158245379795,https://salsa.debian.org/php-team/pear/php-text-password, https://github.com/pear/text_password.git,3427.7869097222224,0,13,0 -php-text-template,0.273515608300623,2.25774732371293,-0.264962638322587,https://salsa.debian.org/php-team/pear/php-text-template, https://github.com/sebastianbergmann/php-text-template,5133.045208333333,0,8,0 -php-tijsverkoyen-css-to-inline-styles,-4.95810438237822,-2.56324795339309,-5.47013389217012,https://salsa.debian.org/php-team/pear/php-tijsverkoyen-css-to-inline-styles, https://github.com/tijsverkoyen/CssToInlineStyles,4791.660081018518,7,34,0 -php-timer,0.0545002781520511,1.73540299688516,-0.303412385183105,https://salsa.debian.org/php-team/pear/php-timer, https://github.com/sebastianbergmann/php-timer,4962.924282407407,4,10,0 -php-token-stream,-0.0775398449897543,1.03145743264247,-0.318473892612099,https://salsa.debian.org/php-team/pear/php-token-stream, https://github.com/sebastianbergmann/php-token-stream,4281.2169675925925,15,15,0 -php-webmozart-assert,0.0458454749417622,2.37389776833809,-0.414272528330647,https://salsa.debian.org/php-team/pear/php-webmozart-assert, https://github.com/webmozart/assert,2641.2433912037036,49,18,0 -php-zend-stdlib,-0.381723807716578,2.1530292212169,-0.964341109980095,https://salsa.debian.org/php-team/pear/php-zend-stdlib, https://github.com/laminas/laminas-stdlib,5325.660555555555,28,212,21 -php-zeta-base,-0.0522904131714493,2.75253811313558,-0.974338110629934,https://salsa.debian.org/php-team/pear/php-zeta-base, https://github.com/zetacomponents/Base.git,5395.174872685186,0,15,0 -php-zeta-console-tools,-0.0924800072217611,2.73874415667246,-0.997572383151449,https://salsa.debian.org/php-team/pear/php-zeta-console-tools, https://github.com/zetacomponents/ConsoleTools,5321.850185185185,2,14,0 -phpab,-0.602928191482872,1.62428997951041,-1.20121007176994,https://salsa.debian.org/php-team/pear/phpab, https://github.com/theseer/Autoload,5109.897094907407,3,23,0 -phpcpd,-0.348522966295708,2.44943986693503,-1.0411103088707,https://salsa.debian.org/php-team/pear/phpcpd, https://github.com/sebastianbergmann/phpcpd,5098.8530902777775,11,25,0 -phpdox,-1.09646797344632,0.606640775216526,-1.56648703386062,https://salsa.debian.org/php-team/pear/phpdox, https://github.com/theseer/phpdox,4604.837280092593,11,44,0 -phpldapadmin,0.953810641146157,1.60078462608577,0.503075144423528,https://salsa.debian.org/php-team/pear/phpldapadmin, https://github.com/leenooks/phpLDAPadmin,5264.4283796296295,42,25,0 -phpliteadmin,-0.0454486140323353,2.62710061551294,-0.784983813405752,https://salsa.debian.org/mymedia/phpliteadmin, https://bitbucket.org/phpliteadmin/public.git,3747.9220833333334,2,22,0 -phploc,-0.674329415619346,1.1227196642677,-1.13285508973192,https://salsa.debian.org/php-team/pear/phploc, https://github.com/sebastianbergmann/phploc,5362.042534722223,18,31,0 -phpmyadmin-motranslator,0.387530807701854,2.86773161614253,-0.265429509953545,https://salsa.debian.org/phpmyadmin-team/motranslator, https://github.com/phpmyadmin/motranslator,2762.962835648148,6,14,2 -phpseclib,-0.0734036089505385,1.24832823214775,-0.316158985820838,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.23318287037,80,98,0 -phpunit-comparator,0.101690878640192,2.33988895780117,-0.330151804512695,https://salsa.debian.org/php-team/pear/phpunit-comparator, https://github.com/sebastianbergmann/comparator,3686.3957291666666,20,9,0 -phpunit-global-state,0.247922924982528,2.37332354693648,-0.316637866460641,https://salsa.debian.org/php-team/pear/phpunit-global-state, https://github.com/sebastianbergmann/global-state,3396.3039351851853,9,7,0 -phpunit-object-enumerator,0.254325420628901,2.97955180600844,-0.337224691437077,https://salsa.debian.org/php-team/pear/phpunit-object-enumerator, https://github.com/sebastianbergmann/object-enumerator,2872.263252314815,6,4,0 -pick,0.155165736371546,3.38878984699403,-0.755115262487176,https://github.com/eavgerinos/pkg-pick,https://github.com/eavgerinos/pkg-pick,1591.7380671296296,0,2,0 -pickleshare,0.371750047160967,2.42431399615297,-0.0927808248876728,https://salsa.debian.org/python-team/packages/pickleshare, https://github.com/pickleshare/pickleshare,3583.9321875,1,14,0 -picmi,0.224089842599186,1.82515048883999,-0.150175263574512,https://salsa.debian.org/qt-kde-team/kde/picmi, https://anongit.kde.org/picmi.git,4318.174178240741,2,36,0 -picocom,0.716218773749993,2.57220547679763,0.0257322881730791,https://salsa.debian.org/debian/picocom, https://github.com/npat-efault/picocom,2876.49875,2,13,0 -pidcat,-0.234817533073335,2.87451904471103,-1.06968806601924,https://salsa.debian.org/python-team/packages/pidcat, https://github.com/JakeWharton/pidcat.git,3155.524837962963,4,40,0 -piexif,-0.804195689774663,1.63309323378366,-1.38441766025259,https://salsa.debian.org/python-team/packages/piexif, https://github.com/hMatoba/Piexif,3307.7984837962963,5,12,0 -pikepdf,0.0195418776324902,1.42023481003827,-0.255252513329686,https://salsa.debian.org/python-team/packages/pikepdf, https://github.com/pikepdf/pikepdf.git,2830.688946759259,16,36,0 -pilkit,-0.324452416735405,2.23160617920347,-0.929329863223428,https://salsa.debian.org/python-team/packages/pilkit, https://github.com/matthewwithanm/pilkit,3883.0524768518517,2,19,0 -pimd,-0.684418495826166,0.170371440937352,-1.07825028790518,https://github.com/bobek/pkg-pimd/tree/debian/sid,https://github.com/bobek/pkg-pimd,4933.096192129629,11,25,0 -pingus,0.784743477736233,1.27922153610823,0.426609964368551,https://salsa.debian.org/games-team/pingus, https://github.com/Pingus/pingus,5009.11837962963,4,14,1 -pipenv,1.57550987661238,5.77787804593938,0.220024930636266,https://salsa.debian.org/python-team/packages/pipenv, https://github.com/pypa/pipenv.git,2511.301400462963,208,339,0 -piper,-0.645820827909022,1.68813434312164,-1.07869150893027,https://salsa.debian.org/debian/piper, https://github.com/libratbag/piper,2849.4881828703706,77,18,0 -pipewalker,0.502062773185375,3.1638761301447,-0.361305801860162,https://salsa.debian.org/debian/pipewalker, https://github.com/artemsen/pipewalker,2088.9552662037036,1,4,0 -pipewire,0.701769681197161,3.0242562897794,0.0416542449156866,https://salsa.debian.org/utopia-team/pipewire, https://gitlab.freedesktop.org/pipewire/pipewire,3163.88568287037,156,165,0 -pipexec,-0.25527869738338,1.55231742744356,-0.688395809896546,https://salsa.debian.org/alteholz/pipexec, https://github.com/flonatel/pipexec.git,3308.5569560185186,0,11,0 -pitivi,2.10785551807052,3.23143734011783,1.41325451934637,https://salsa.debian.org/gnome-team/pitivi, https://gitlab.gnome.org/GNOME/pitivi.git,5776.509050925926,240,162,0 -pius,-0.904282809751136,-0.0817697576479114,-1.16395097275579,https://salsa.debian.org/python-team/packages/pius, https://github.com/jaymzh/pius.git,5108.016145833333,16,8,0 -pivy,1.03234422836158,3.2415283772479,0.196832102632244,https://salsa.debian.org/science-team/pivy, https://github.com/Coin3D/pivy,2942.7228587962964,15,14,1 -pixelize,0.248415431644665,2.16026352277692,-0.567150356857362,https://salsa.debian.org/debian-phototools-team/pixelize, https://github.com/jcdubois/pixelize.git,802.2084027777778,1,2,0 -pixz,0.0431924972750206,1.09071245138794,-0.210447934942008,https://salsa.debian.org/debian/pixz, https://github.com/vasi/pixz.git,5100.817256944444,3,19,0 -pk4,-1.80758651542235,0.200070534601031,-2.23077983239572,https://github.com/Debian/pk4,https://github.com/Debian/pk4,1044.0391203703705,0,1,0 -pkcs11-helper,1.21040326005582,4.07536636688302,0.246112919849419,https://salsa.debian.org/opensc-team/pkcs11-helper, https://github.com/OpenSC/pkcs11-helper,5754.408819444445,16,2,0 -pkgconf,-0.0511523263616914,0.620673588853219,-0.270334697261611,https://salsa.debian.org/debian/pkgconf, https://github.com/pkgconf/pkgconf,4516.657650462963,52,29,1 -pktools,-0.439476466625931,0.543732342734047,-0.707689072177567,https://salsa.debian.org/debian-gis-team/pktools, git://git.savannah.nongnu.org/pktools.git,1937.8700115740742,1,16,0 -pktstat,2.33387873947423,6.05028824026699,0.926044188042969,https://salsa.debian.org/debian/pktstat, https://github.com/dleonard0/pktstat,2938.7848958333334,0,4,0 -planetblupi,-0.279832678908296,2.33686368606251,-0.892136730966366,https://salsa.debian.org/games-team/planetblupi, https://github.com/blupi-games/planetblupi,2504.3208449074073,5,7,1 -planetfilter,-2.63870981682309,-1.70586341994752,-2.79575578152132,https://salsa.debian.org/debian/planetfilter, https://git.launchpad.net/planetfilter,3983.6158680555554,0,2,0 -plasma-desktop,5.4411408087167,7.14282740116162,4.35089571607871,https://salsa.debian.org/qt-kde-team/kde/plasma-desktop, https://invent.kde.org/plasma/plasma-desktop.git,3546.030324074074,102,270,0 -plasma-gmailfeed,-0.907835046687276,1.53774343821795,-1.46042428853611,https://salsa.debian.org/qt-kde-team/extras/plasma-gmailfeed, https://github.com/anthon38/gmailfeed.git,2727.0607638888887,3,4,0 -plasma-integration,0.847642272341444,3.90986695091463,0.0257746518375372,https://salsa.debian.org/qt-kde-team/kde/plasma-integration, https://invent.kde.org/plasma/plasma-integration.git,3648.9289236111113,9,80,0 -plasma-nm,2.18569821345137,3.26630868736174,1.49106450424655,https://salsa.debian.org/qt-kde-team/kde/plasma-nm, https://invent.kde.org/plasma/plasma-nm.git,3921.581134259259,42,121,0 -plasma-pa,1.57717279127445,4.68999419247394,0.427019305757023,https://salsa.debian.org/qt-kde-team/kde/plasma-pa, https://invent.kde.org/plasma/plasma-pa.git,3412.3928240740743,22,65,0 -plasma-workspace,2.49485705765539,3.57241376814089,1.76111707354703,https://salsa.debian.org/qt-kde-team/kde/plasma-workspace, https://invent.kde.org/plasma/plasma-workspace.git,3546.1462037037036,164,297,0 -plasma-workspace-wallpapers,0.253145643116403,2.58582199489824,-0.184894263143378,https://salsa.debian.org/qt-kde-team/kde/plasma-workspace-wallpapers, https://invent.kde.org/plasma/plasma-workspace-wallpapers.git,3005.0631597222223,2,16,0 -plaso,0.231294030616954,1.99178238588694,-0.333117026741082,https://salsa.debian.org/pkg-security-team/plaso, https://github.com/log2timeline/plaso,3988.4880208333334,81,40,3 -plastex,0.243269547214912,2.61323124746283,-0.701164178072454,https://salsa.debian.org/python-team/packages/plastex, https://github.com/plastex/plastex,5539.2969907407405,17,19,1 -playerctl,0.0887192340295862,2.50802971130406,-0.44880921497051,https://salsa.debian.org/multimedia-team/playerctl, https://github.com/altdesktop/playerctl,2720.5505208333334,8,30,1 -plexus-interactivity-api,0.283151966694231,2.33305401763242,-0.173915333794921,https://salsa.debian.org/java-team/plexus-interactivity-api, https://github.com/codehaus-plexus/plexus-interactivity.git,2997.8996759259257,5,11,0 -plotnetcfg,-1.02202717844307,1.32237398630487,-1.45608020794805,https://salsa.debian.org/debian/plotnetcfg, https://github.com/jbenc/plotnetcfg.git,2530.945150462963,2,3,0 -pluma,0.469982701925562,1.32425310177748,0.0788084083852294,https://salsa.debian.org/debian-mate-team/pluma, https://github.com/mate-desktop/pluma.git,4416.788101851852,32,44,0 -ply,0.296904457989643,1.36579609781993,-0.0308535513414999,https://salsa.debian.org/python-team/packages/ply, https://github.com/dabeaz/ply,5540.916041666666,10,30,0 -pmailq,-0.344401861175758,2.26936376380763,-1.13677995418968,https://salsa.debian.org/kolter/pmailq, https://github.com/k0lter/pmailq,3215.899363425926,0,2,0 -pmccabe,0.639313087829479,3.57454670556735,-0.364705293647866,https://salsa.debian.org/jas/pmccabe, https://gitlab.com/pmccabe/pmccabe.git,5305.791180555556,0,2,0 -pmemkv,-2.56665635042394,-0.187433663300834,-3.01323085854248,https://github.com/kilobyte/pmemkv/tree/debian,https://github.com/kilobyte/pmemkv,2071.5010185185183,11,29,0 -pnetcdf,-0.724851500201701,1.3866108043012,-1.35784321097542,https://salsa.debian.org:/science-team/pnetcdf.git, https://github.com/Parallel-NetCDF/PnetCDF,5739.242511574074,6,9,0 -pngmeta,0.599731548712399,2.71359056454755,-0.234142593418352,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.038333333333,23,38,0 -pngphoon,-0.557515852522085,1.97148900395879,-1.17512330055434,https://salsa.debian.org/debian/pngphoon, https://git.h8u.de/svolli/pngphoon,4717.1277199074075,0,1,0 -pngquant,0.753030091172879,2.4617924213456,0.0694002171362876,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.038333333333,23,38,0 -pnscan,0.047464548494991,1.17591376502643,-0.337696201463,https://salsa.debian.org/pkg-security-team/pnscan, https://github.com/ptrrkssn/pnscan,1864.9276967592593,1,4,0 -pocketsphinx,-0.132109296630766,0.47671061061309,-0.332206468839797,https://salsa.debian.org/a11y-team/pocketsphinx, https://github.com/cmusphinx/pocketsphinx,5652.478784722222,5,30,2 -pocl,0.0943083761808759,0.532768156178064,-0.131593338908955,https://salsa.debian.org/opencl-team/pocl, https://github.com/pocl/pocl,4689.650729166667,26,119,2 -podcastparser,0.110247366439153,2.4024478230949,-0.341238094638426,https://salsa.debian.org/debian/podcastparser, https://github.com/gpodder/podcastparser.git,3885.4088657407406,6,16,0 -podget,0.0442858046342972,1.25920981629234,-0.458457840240292,https://salsa.debian.org/debian/podget, https://github.com/dvehrs/podget.git,2945.994837962963,1,10,0 -poedit,0.377240788351186,0.863696423934454,0.0761307654233322,https://salsa.debian.org/l10n-team/poedit, https://github.com/vslavik/poedit,5784.378252314815,117,44,0 -polari,0.531703079123856,1.9781526047847,0.0463121558220319,https://salsa.debian.org/gnome-team/polari, https://gitlab.gnome.org/GNOME/polari.git,3769.3740625,188,128,0 -polib,-0.0525182229193335,1.16372565323656,-0.433461717893036,https://salsa.debian.org/python-team/packages/polib, https://github.com/izimobil/polib.git,2651.136875,2,29,0 -policycoreutils,0.13752216154346,0.326484816484227,0.0169149752599068,https://salsa.debian.org/selinux-team/policycoreutils, https://github.com/SELinuxProject/selinux,5593.80261574074,179,30,0 -policyd-rate-limit,-1.54838919382906,0.860310983855883,-1.98558249586634,https://salsa.debian.org/python-team/packages/policyd-rate-limit, https://github.com/nitmir/policyd-rate-limit.git,2604.465451388889,1,4,0 -policykit-1,1.11470073683968,1.62103904489966,0.743205800159072,https://salsa.debian.org/utopia-team/polkit, https://gitlab.freedesktop.org/polkit/polkit,5769.589513888889,98,29,0 -policykit-1-gnome,4.20768254055952,7.64582802289508,2.74692535515248,https://salsa.debian.org/utopia-team/polkit-gnome, https://gitlab.gnome.org/GNOME/policykit-gnome,3306.516111111111,41,128,0 -polkit-kde-agent-1,2.22834871926189,4.61519601847851,1.14366760479479,https://salsa.debian.org/qt-kde-team/kde/polkit-kde-agent-1, https://invent.kde.org/plasma/polkit-kde-agent-1.git,5724.250972222222,3,56,0 -ponyorm,-2.21087278189333,0.254481864464489,-2.7664426751991,https://salsa.debian.org/python-team/packages/ponyorm, https://github.com/ponyorm/pony,5706.9338310185185,26,14,6 -poppler,2.10039975354414,2.53967280657218,1.73016046802101,https://salsa.debian.org/freedesktop-team/poppler, https://gitlab.freedesktop.org/poppler/poppler,5786.446273148148,313,79,0 -popt,0.845774117920914,1.4698340744768,0.461614111963835,https://salsa.debian.org/debian/popt, https://github.com/rpm-software-management/popt.git,5739.674664351852,38,10,0 -portalocker,-0.676177569358075,1.22899794936804,-1.08190152048121,https://salsa.debian.org/python-team/packages/portalocker, https://github.com/WoLpH/portalocker,4590.855023148149,5,21,0 -postfixadmin,1.37185949679054,2.82255617244197,0.56261435096877,https://salsa.debian.org/debian/postfixadmin, https://github.com/postfixadmin/postfixadmin,5760.021805555555,53,77,1 -postgis,-0.0772593320802994,0.106302856265872,-0.177390214769216,https://salsa.debian.org/debian-gis-team/postgis, https://git.osgeo.org/gitea/postgis/postgis.git,5783.970011574074,58,54,0 -postgis-java,-0.22495117816695,0.620497208731479,-0.436839173209168,https://salsa.debian.org/debian-gis-team/postgis-java, https://github.com/postgis/postgis-java.git,5635.324131944444,8,12,0 -postgresql-autodoc,0.494184087535717,2.04455463708516,-0.19325004547784,https://salsa.debian.org/debian/postgresql-autodoc, https://github.com/cbbrowne/autodoc.git,4575.885358796297,5,13,0 -postgresql-filedump,-0.611561194128062,1.23196187212564,-1.09741231143825,https://salsa.debian.org/postgresql/postgresql-filedump, https://github.com/df7cb/pg_filedump.git,4622.502986111111,3,6,0 -postgresql-hll,-1.55348166358091,0.6872065961349,-2.28816810183399,https://salsa.debian.org/postgresql/postgresql-hll, https://github.com/citusdata/postgresql-hll.git,3859.495925925926,23,21,0 -postgresql-mysql-fdw,-1.26061749815957,0.322602152164847,-1.71760848584065,https://salsa.debian.org/postgresql/postgresql-mysql-fdw, https://github.com/EnterpriseDB/mysql_fdw.git,4475.722986111111,5,27,0 -postgresql-numeral,-1.51345223641763,1.62434313134593,-2.29370642200778,https://github.com/df7cb/postgresql-numeral,https://github.com/df7cb/postgresql-numeral,2361.1246527777776,0,4,0 -postgresql-plsh,-1.60265597816638,-0.418572941215369,-1.90285363381829,https://salsa.debian.org/postgresql/postgresql-plsh, https://github.com/petere/plsh.git,3969.914502314815,1,1,0 -postgrey,0.416212581147819,0.800779561555294,0.167905090020999,https://salsa.debian.org/debian/postgrey, https://github.com/schweikert/postgrey.git,5469.949907407407,10,14,0 -postsrsd,0.103839949999788,2.01912742826071,-0.477325706236673,https://salsa.debian.org/debian/postsrsd, https://github.com/roehling/postsrsd.git,4014.208564814815,10,17,0 -potool,-0.581429440368266,0.0587787858281596,-0.834772414984138,https://github.com/porridge/potool/tree/debian,https://github.com/porridge/potool,4430.214988425926,2,3,0 -povray,0.958421674191704,1.69404497474083,0.489272470567281,https://salsa.debian.org/debian/povray, https://github.com/POV-Ray/povray,2833.074074074074,8,15,7 -powa-archivist,-1.33228927168661,0.627753550092333,-1.7515157781893,https://github.com/powa-team/powa-archivist,https://github.com/powa-team/powa-archivist,3471.930196759259,10,15,2 -powercap,-0.328432835901478,2.61690951082495,-1.12834560009672,https://github.com/connorimes/powercap/tree/debian,https://github.com/connorimes/powercap,2525.9958912037036,0,4,0 -powerdevil,2.42731771304534,6.24625583010135,1.04457291725728,https://salsa.debian.org/qt-kde-team/kde/powerdevil, https://invent.kde.org/plasma/powerdevil.git,5636.6774305555555,26,179,0 -powerline,0.208476143642733,0.835470834672986,-0.0736591990461245,https://salsa.debian.org/python-team/packages/powerline, https://github.com/powerline/powerline,4036.078587962963,67,105,3 -powerline-gitstatus,0.322269027019318,3.81710595314915,-0.530256568800533,https://salsa.debian.org/python-team/packages/powerline-gitstatus, https://github.com/jaspernbrouwer/powerline-gitstatus.git,2809.6974884259257,4,10,0 -powertop,1.15559070897983,1.74082884335626,0.755925157594074,https://salsa.debian.org/debian/powertop, https://github.com/fenrus75/powertop,4841.83894675926,89,27,0 -poxml,0.669236641877311,2.30710657771289,0.0465901935359005,https://salsa.debian.org/qt-kde-team/kde/poxml, https://invent.kde.org/sdk/poxml,5775.980543981482,0,26,0 -pplpy,-0.725525738461014,0.917072547222587,-1.0582336056923,https://salsa.debian.org/science-team/pplpy, https://gitlab.com/videlec/pplpy,2413.541388888889,4,11,0 -ppp,1.57697829267485,1.87493983840755,1.33449177483222,https://salsa.debian.org/debian/ppp, https://github.com/ppp-project/ppp,5732.936932870371,65,38,0 -pps-tools,0.747248796270144,4.48143059549159,-0.437477846254583,https://github.com/bzed/pps-tools,https://github.com/bzed/pps-tools,3767.043414351852,3,10,0 -pqiv,-0.16388138950838,0.758558478781025,-0.454009218343847,https://salsa.debian.org/pberndt-guest/pqiv, https://github.com/phillipberndt/pqiv,5604.841550925926,11,12,0 -prads,0.259994196999911,3.8326314267203,-1.03394544781072,https://salsa.debian.org/debian/prads, https://github.com/gamelinux/prads.git,4237.008263888889,2,39,0 -prboom-plus,0.978646620045482,1.88429855841624,0.432057514304468,https://salsa.debian.org/games-team/prboom-plus, https://github.com/coelckers/prboom-plus,5585.983912037037,42,11,1 -prefix,-1.1387443889012,1.47053143024996,-2.00977064468329,https://github.com/dimitri/prefix,https://github.com/dimitri/prefix,5681.206678240741,1,10,0 -preggy,-2.92285552628942,-1.0464425404911,-3.31867365029399,https://salsa.debian.org/python-team/packages/preggy, https://github.com/heynemann/preggy,3206.047175925926,1,12,2 -preprepare,-2.22109058971355,-0.597730393683522,-2.59985701152518,https://github.com/dimitri/preprepare,https://github.com/dimitri/preprepare,5242.633761574074,0,4,0 -primus,0.272956909133763,1.24810733891137,-0.113453150804516,https://salsa.debian.org/nvidia-team/primus, https://github.com/amonakov/primus,937.9013425925926,3,6,0 -primus-vk,-0.421290841720463,2.921882742043,-1.23347524431008,https://salsa.debian.org/nvidia-team/primus-vk, https://github.com/felixdoerre/primus_vk,1911.529537037037,4,7,0 -princeprocessor,-1.26928375323949,1.07370924794994,-1.72101729931593,https://salsa.debian.org/pkg-security-team/princeprocessor, https://github.com/hashcat/princeprocessor.git,3216.904398148148,0,10,0 -pristine-lfs,-1.11075397519665,1.40010254703174,-1.67022414681638,https://salsa.debian.org/debian/pristine-lfs, https://salsa.debian.org/pristine-lfs-team/pristine-lfs.git,1398.919236111111,1,2,0 -proftpd-dfsg,0.737341261742912,1.0458954995393,0.49495350750098,https://salsa.debian.org/debian-proftpd-team/proftpd, https://github.com/proftpd/proftpd,5767.726412037037,8,45,2 -proftpd-mod-case,-1.46464758728635,0.766272450426854,-2.02540924374874,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-case, https://github.com/Castaglia/proftpd-mod_case.git,4180.930405092593,0,4,0 -proftpd-mod-clamav,-0.519950015667521,1.68042038048494,-1.29690193707197,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-clamav, https://github.com/jbenden/mod_clamav.git,3704.0200810185183,2,4,0 -proftpd-mod-counter,-3.90919577990779,-1.63110207351013,-4.3444753088454,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-counter, https://github.com/Castaglia/proftpd-mod_counter,4182.156412037037,0,3,0 -proftpd-mod-msg,-1.76107759555527,0.182162149210163,-2.28999652660185,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-msg, https://github.com/Castaglia/proftpd-mod_msg,1530.1719212962962,0,2,0 -proftpd-mod-tar,-1.01804643330443,1.41288647862948,-1.73531200480138,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-tar, https://github.com/Castaglia/proftpd-mod_tar.git,4180.905393518518,0,2,0 -proftpd-mod-vroot,1.59885423374212,4.02315278929942,0.568513066278763,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-vroot, https://github.com/Castaglia/proftpd-mod_vroot.git,3875.2868518518517,0,5,0 -progress,0.367141130390621,3.12875196448013,-0.304974770041313,https://salsa.debian.org/debian/progress, https://github.com/Xfennec/progress,3611.7222569444443,7,34,0 -proj,0.175037796107248,0.451924065018182,0.022518348385377,https://salsa.debian.org/debian-gis-team/proj, https://github.com/OSGeo/PROJ.git,5782.065810185185,86,100,0 -projectm,1.086504365469,2.30480366306058,0.44248415091722,https://salsa.debian.org/multimedia-team/projectm, https://github.com/projectM-visualizer/projectm.git,5766.722731481482,55,53,0 -prometheus-alertmanager,-0.627716797072544,0.191277552606398,-0.910152772377882,https://salsa.debian.org/go-team/packages/prometheus-alertmanager, https://github.com/prometheus/alertmanager,3799.933726851852,223,166,0 -prometheus-bind-exporter,-1.21912038403755,0.700315670038558,-1.66961737911248,https://salsa.debian.org/go-team/packages/prometheus-bind-exporter, https://github.com/prometheus-community/bind_exporter,2946.820011574074,21,14,0 -prometheus-bird-exporter,-3.47717878603785,-0.0329330544143955,-4.28922020065143,https://salsa.debian.org/go-team/packages/prometheus-bird-exporter, https://github.com/czerwonk/bird_exporter,2542.462476851852,10,16,6 -prometheus-blackbox-exporter,-0.981904346913512,0.189153646817056,-1.20715930115695,https://salsa.debian.org/go-team/packages/prometheus-blackbox-exporter, https://github.com/prometheus/blackbox_exporter,3018.838726851852,91,47,0 -prometheus-haproxy-exporter,-3.86072133482528,-2.07005033512697,-4.31618946129776,https://salsa.debian.org/go-team/packages/prometheus-haproxy-exporter, https://github.com/prometheus/haproxy_exporter,3672.0941203703705,21,40,0 -prometheus-mailexporter,-1.46192629447316,0.835326558166831,-1.97088772748091,https://salsa.debian.org/go-team/packages/prometheus-mailexporter, https://github.com/cherti/mailexporter,2367.3820486111113,4,4,1 -prometheus-mysqld-exporter,-0.484217220453001,1.46773543487259,-1.16537910211397,https://salsa.debian.org/go-team/packages/prometheus-mysqld-exporter, https://github.com/prometheus/mysqld_exporter,3197.2337268518518,55,65,0 -prometheus-nginx-exporter,-0.917001793392196,1.95729614268404,-1.71391329118814,https://salsa.debian.org/go-team/packages/prometheus-nginx-exporter, https://github.com/nginxinc/nginx-prometheus-exporter,2021.335486111111,34,16,1 -prometheus-node-exporter,0.0690726385882185,0.984232656063144,-0.231331928693568,https://salsa.debian.org/go-team/packages/prometheus-node-exporter, https://github.com/prometheus/node_exporter,3891.8962384259257,281,181,1 -prometheus-node-exporter-collectors,-0.327245248943772,3.23015482382769,-1.28265958925532,https://salsa.debian.org/go-team/packages/prometheus-node-exporter-collectors, https://github.com/prometheus-community/node-exporter-textfile-collector-scripts,2551.9948032407406,47,28,0 -prometheus-postfix-exporter,-2.30901857902339,-0.0678780092573739,-2.93546754882129,https://salsa.debian.org/go-team/packages/prometheus-postfix-exporter, https://github.com/kumina/postfix_exporter,2274.256712962963,7,24,0 -prometheus-postgres-exporter,-0.800265105447162,1.58506096914014,-1.38728683152608,https://salsa.debian.org/go-team/packages/prometheus-postgres-exporter, https://github.com/prometheus-community/postgres_exporter,3027.0144328703705,102,49,0 -prometheus-pushgateway,-0.893739596824324,2.02652286692662,-1.59779185618246,https://salsa.debian.org/go-team/packages/prometheus-pushgateway, https://github.com/prometheus/pushgateway,3606.187337962963,18,76,1 -prometheus-snmp-exporter,-1.3551310327084,1.44742065196107,-2.01734617256376,https://salsa.debian.org/go-team/packages/prometheus-snmp-exporter, https://github.com/prometheus/snmp_exporter,3213.7672916666666,96,43,0 -prometheus-squid-exporter,-2.41848251266118,0.241951954704953,-2.99662975801824,https://salsa.debian.org/go-team/packages/prometheus-squid-exporter, https://github.com/boynux/squid-exporter,2307.527222222222,13,20,0 -prometheus-varnish-exporter,-2.22737684439663,0.194394138028224,-2.90857235800425,https://salsa.debian.org/go-team/packages/prometheus-varnish-exporter, https://github.com/jonnenauha/prometheus_varnish_exporter.git,2552.1847337962963,20,7,0 -prompt-toolkit,0.487219288335155,2.9978306953901,-0.0809488244162375,https://salsa.debian.org/python-team/packages/prompt-toolkit, https://github.com/prompt-toolkit/python-prompt-toolkit,3391.945347222222,231,9,0 -proot,1.09201033638206,3.48942123712869,0.152618842166989,https://github.com/ivoire/proot-debian,https://github.com/ivoire/proot-debian,508.0834837962963,0,2,0 -prospector,-0.139641497323005,2.12375216035423,-0.970812703415105,https://salsa.debian.org/python-team/packages/prospector, https://github.com/PyCQA/prospector,3767.6942939814817,36,66,2 -ps-watcher,-1.15088700465695,0.301114912680013,-1.48882152998371,https://gitlab.uncompleted.org/debian/ps-watcher, https://git.code.sf.net/p/ps-watcher/code,3542.8980787037035,16,3,0 -ps2eps,1.53212079598281,4.56568976130553,0.449536184588045,https://salsa.debian.org/debian/ps2eps, https://github.com/roland-bless/ps2eps.git,0.11974537037037038,1,2,0 -psad,-0.157643283643823,0.280898009976798,-0.427371640969337,https://salsa.debian.org/debian/psad, https://github.com/mrash/psad/commits/master,5185.326875,55,11,0 -psi,1.2135210428483,1.77437249231228,0.806961286086633,https://salsa.debian.org/xmpp-team/psi, https://github.com/psi-im/psi.git,5747.445775462963,30,65,0 -psi-plus,-0.0389491456550862,0.359609186020761,-0.259175595888705,https://salsa.debian.org/xmpp-team/psi-plus, https://github.com/psi-plus/psi-plus-snapshots.git,4282.442372685186,3,4,0 -psi-plus-l10n,0.00219571492662526,2.286416791367,-0.431223071340601,https://salsa.debian.org/xmpp-team/psi-plus-l10n, https://github.com/psi-plus/psi-plus-l10n.git,4205.424212962963,1,2,0 -psi-translations,-0.0176490017548628,1.60050001052168,-0.589180216784067,https://salsa.debian.org/xmpp-team/psi-translations, https://github.com/psi-im/psi-l10n.git,3818.9027083333335,1,10,0 -psmisc,0.470090671178532,0.710185170284318,0.30642438691155,https://salsa.debian.org/debian/psmisc, https://gitlab.com/psmisc/psmisc.git,5711.382615740741,28,21,0 -pspg,-0.361050699895103,2.01300788415699,-0.820706513049175,https://salsa.debian.org/postgresql/pspg, https://github.com/okbob/pspg,2316.4040509259257,13,25,0 -pssh,1.25126093151198,3.09786426362212,0.342529059832974,https://salsa.debian.org/python-team/packages/pssh, https://github.com/lilydjwg/pssh.git,5265.235138888889,5,13,0 -psychtoolbox-3,0.203352755626666,1.65292325757521,-0.37149262854368,https://github.com/neurodebian/Psychtoolbox-3/tree/debian,https://github.com/neurodebian/Psychtoolbox-3,5782.847916666667,14,56,0 -pt2-clone,-0.366824941788857,2.04424713341111,-0.870937555296044,https://salsa.debian.org/multimedia-team/pt2-clone, https://github.com/8bitbubsy/pt2-clone,1458.0896180555555,2,4,0 -ptable,-0.497756721895357,1.90297774222152,-1.03556077883777,https://salsa.debian.org/python-team/packages/ptable, https://github.com/kxxoling/PTable,3352.297199074074,2,16,0 -ptouch-driver,2.94613939519945,6.82342804349508,1.51855611812132,https://salsa.debian.org/printing-team/ptouch-driver, https://github.com/philpem/printer-driver-ptouch.git,1342.562199074074,5,13,0 -publicsuffix,0.589924984268248,2.22034113393404,0.075745117130546,https://salsa.debian.org/debian/publicsuffix, https://github.com/publicsuffix/list,5785.028506944444,598,98,0 -pudb,0.565287327131869,3.50358765199621,-0.382513763909001,https://salsa.debian.org/debian/pudb, https://github.com/inducer/pudb.git,5292.8559490740745,32,73,0 -pugixml,0.228302722305054,1.29257811833606,-0.0618880814515506,https://salsa.debian.org/debian/pugixml, https://github.com/zeux/pugixml,5448.187962962963,24,58,0 -pulseaudio,1.68741391801371,1.97529109898267,1.44476846127012,https://salsa.debian.org/pulseaudio-team/pulseaudio, https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git,5707.652199074074,515,140,0 -puppet-beaker,-3.3388976797187,-1.35731765858064,-3.74661072283268,https://salsa.debian.org/debian/puppet-beaker, https://github.com/voxpupuli/beaker,4907.928113425926,70,283,1 -puppet-module-puppetlabs-apache,-1.54178444078058,-0.124065206083267,-1.98886121691503,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-apache, https://github.com/puppetlabs/puppetlabs-apache,4851.444710648148,122,563,2 -puppet-module-puppetlabs-concat,-0.9082644121244,1.00396774267501,-1.29052555353025,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-concat, https://github.com/puppetlabs/puppetlabs-concat,4953.97287037037,37,176,1 -puppet-module-puppetlabs-firewall,-1.67549835899526,0.164018816415436,-2.12307018049536,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-firewall, https://github.com/puppetlabs/puppetlabs-firewall,4586.852083333333,80,232,1 -puppet-module-puppetlabs-mysql,-1.08522694756704,0.911414696974354,-1.59455947848082,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-mysql, https://github.com/puppetlabs/puppetlabs-mysql,4577.2790046296295,89,362,0 -puppet-module-puppetlabs-ntp,-1.60193298538769,0.084004899239364,-1.97661185622803,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-ntp, https://github.com/puppetlabs/puppetlabs-ntp.git,4661.505023148148,40,171,0 -puppet-module-puppetlabs-postgresql,-1.95878277292213,-0.0955597617558538,-2.44416950278775,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-postgresql, https://github.com/puppetlabs/puppetlabs-postgresql.git,4242.28400462963,62,322,0 -puppet-module-puppetlabs-xinetd,-1.72852091203077,0.76182363664486,-2.2296657542962,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-xinetd, https://github.com/puppetlabs/puppetlabs-xinetd,4771.07056712963,11,67,0 -puppet-module-saz-memcached,-2.12144484071194,0.164676507895954,-2.6091973246302,https://salsa.debian.org/puppet-team/puppet-module-saz-memcached, https://github.com/saz/puppet-memcached,4458.983287037037,12,53,1 -puppetdb,-0.0430137599194161,1.92349489089889,-0.77871206211543,https://salsa.debian.org/puppet-team/puppetdb, https://github.com/puppetlabs/puppetdb.git,4517.0981134259255,63,158,0 -puredata,0.0157019697110362,0.281668408198807,-0.130901583003357,https://salsa.debian.org/multimedia-team/pd/puredata, https://github.com/pure-data/pure-data,5785.432986111111,63,77,2 -purl,-1.34039029167924,0.909506171782387,-1.80754102822029,https://salsa.debian.org/python-team/packages/purl, https://github.com/codeinthehole/purl,3937.9855092592593,4,18,0 -pwgen,1.35395625158755,2.29147539327698,0.785581725914606,https://github.com/tytso/pwgen,https://github.com/tytso/pwgen,1771.036550925926,6,3,0 -pwget,-0.453062875836316,1.9572713674887,-1.06289151188951,https://salsa.debian.org/debian/pwget, https://github.com/jaalto/project--perl-webget,3883.396423611111,0,1,0 -px,-0.423422432701603,0.581957765196982,-0.633033681073781,https://salsa.debian.org/debian/px, https://github.com/walles/px,2833.1755092592593,1,6,0 -py-lmdb,-0.0755155779526539,2.3670377587978,-0.95698152520613,https://salsa.debian.org/debian/py-lmdb, https://github.com/jnwatson/py-lmdb,3712.474189814815,18,23,0 -py-postgresql,0.0569254607300437,2.23859624498718,-0.740553419065291,https://salsa.debian.org/python-team/packages/py-postgresql, https://github.com/python-postgres/fe,5231.805671296296,1,11,0 -py-radix,-0.234715213098186,1.28491959688065,-0.668352956984802,https://salsa.debian.org/python-team/packages/py-radix, https://github.com/mjschultz/py-radix,1374.4915856481482,3,11,0 -py-ubjson,0.325868360627719,2.3051690362495,-0.192343512808427,https://salsa.debian.org/python-team/packages/py-ubjson, https://github.com/Iotic-Labs/py-ubjson,2987.1609027777777,3,4,0 -py3status,-0.604162997217986,0.942737828428733,-0.931408600986958,https://salsa.debian.org/debian/py3status, https://github.com/ultrabug/py3status.git,3948.006261574074,125,142,0 -pyacoustid,0.162364282807266,1.61988294151792,-0.297127440982871,https://salsa.debian.org/python-team/packages/pyacoustid, https://github.com/beetbox/pyacoustid.git,4388.5853125,7,21,0 -pyaes,0.0439799146662894,1.46563847689993,-0.290497332700578,https://salsa.debian.org/python-team/packages/pyaes, https://github.com/ricmoo/pyaes.git,1227.051747685185,0,7,0 -pyasn1,0.289024130220981,1.23756984817542,-0.00485535549527414,https://salsa.debian.org/python-team/packages/pyasn1, https://github.com/etingof/pyasn1,4382.929490740741,6,11,0 -pybigwig,-1.37838749264238,0.906698932241941,-1.94744266506773,https://salsa.debian.org/med-team/pybigwig, https://github.com/deeptools/pyBigWig.git,2807.2654282407407,2,15,0 -pycairo,1.86113532664531,3.05510498347914,1.1479506831671,https://salsa.debian.org/python-team/packages/pycairo, https://github.com/pygobject/pycairo,2389.8532175925925,13,23,2 -pychm,0.195977875238716,1.65043669670716,-0.184789798640271,https://salsa.debian.org/python-team/packages/pychm, https://github.com/dottedmag/pychm.git,3381.7747222222224,2,4,0 -pychromecast,0.0550333171653225,1.86450589733487,-0.358338165839646,https://salsa.debian.org/python-team/packages/pychromecast, https://github.com/home-assistant-libs/pychromecast.git,3717.1753935185184,57,30,0 -pycoast,-0.926408910154406,1.04456531405737,-1.32820698049502,https://salsa.debian.org/debian-gis-team/pycoast, https://github.com/pytroll/pycoast,3185.132662037037,7,21,0 -pycodestyle,0.439986634408756,2.1742206342038,-0.0747451364476911,https://salsa.debian.org/python-team/packages/pycodestyle, https://github.com/PyCQA/pycodestyle,5163.460625,31,117,1 -pycountry,0.294816698645498,1.57364820994181,-0.122309479712131,https://salsa.debian.org/debian/pycountry, https://github.com/flyingcircusio/pycountry,5687.085740740741,1,26,1 -pycsw,-2.68704520454314,-2.10282113037064,-2.79543575957422,https://salsa.debian.org/debian-gis-team/pycsw, https://github.com/geopython/pycsw.git,4758.626342592593,26,33,0 -pycuda,-0.456291809365219,0.481879867095548,-0.729976593873598,https://salsa.debian.org/nvidia-team/python-pycuda, https://github.com/inducer/pycuda,5664.963599537037,28,68,0 -pydbus,-0.326676770365645,1.54560914836696,-0.736540103745462,https://salsa.debian.org/python-team/packages/pydbus, https://github.com/LEW21/pydbus,1343.8662731481481,4,10,0 -pydenticon,-0.865220641010434,1.85225816508171,-1.53672723253871,https://salsa.debian.org/python-team/packages/pydenticon, https://github.com/azaghal/pydenticon,1376.6938657407406,2,1,0 -pydicom,0.354373090837558,1.93975641897055,-0.187129201617951,https://salsa.debian.org/med-team/pydicom, https://github.com/pydicom/pydicom.git,5576.141643518518,69,58,0 -pydl,-0.495608365400541,0.324022984738779,-0.642218824002594,https://salsa.debian.org/debian-astro-team/pydl, https://github.com/weaverba137/pydl,4774.052777777778,1,11,1 -pydocstyle,0.55315807893233,3.88328161331387,-0.434312513993172,https://salsa.debian.org/python-team/packages/pydocstyle, https://github.com/PyCQA/pydocstyle.git,4295.427789351852,58,44,0 -pydoctor,-1.42300354787697,-0.333158315694935,-1.82056037046825,https://salsa.debian.org/python-team/packages/pydoctor, https://github.com/twisted/pydoctor,5762.199490740741,10,47,2 -pydot,0.710705613646775,2.1401436391668,0.087853757877001,https://salsa.debian.org/python-team/packages/pydot, https://github.com/pydot/pydot.git,4914.85730324074,17,9,0 -pyee,-1.37452658573351,2.14458250633493,-2.18648828344339,https://salsa.debian.org/python-team/packages/pyee, https://github.com/jfhbrook/pyee,4518.116736111111,13,8,0 -pyephem,-0.0227131662678818,2.35290106480548,-0.451666876474429,https://salsa.debian.org/debian-astro-team/pyephem, https://github.com/brandon-rhodes/pyephem.git,5699.002222222222,31,9,0 -pyepr,-0.939183997293192,0.138948768520847,-1.21878766996311,https://salsa.debian.org/debian-gis-team/pyepr, https://github.com/avalentino/pyepr.git,4620.466585648148,0,3,0 -pyfai,0.480600339912094,2.23082133459337,-0.240573976533518,https://salsa.debian.org/science-team/pyfai, https://github.com/silx-kit/pyFAI,3860.8997106481484,31,70,7 -pyferret,-0.720043450037665,0.50276121700717,-1.02716490070978,https://salsa.debian.org:/science-team/pyferret, https://github.com/NOAA-PMEL/PyFerret.git,4609.900659722222,4,23,0 -pyfftw,-0.316398042662329,0.802205199164713,-0.700761335252033,https://salsa.debian.org/science-team/pyfftw, https://github.com/pyFFTW/pyFFTW,4024.0905671296296,11,25,0 -pyflakes,0.604236477652839,1.35505911780103,0.192331132918715,https://salsa.debian.org/python-team/packages/pyflakes, https://github.com/PyCQA/pyflakes,5606.079027777778,52,38,0 -pyfribidi,-1.31114373633633,-0.446986286180443,-1.58984842922395,https://salsa.debian.org/python-team/packages/pyfribidi, https://github.com/pediapress/pyfribidi.git,2842.49849537037,1,5,0 -pygame,1.0962196098806,1.77966486385471,0.656049853906713,https://salsa.debian.org/python-team/packages/pygame, https://github.com/pygame/pygame.git,2564.2205208333335,126,252,0 -pygame-sdl2,0.0393673282987854,2.24068505179172,-0.449471553978388,https://salsa.debian.org/games-team/pygame-sdl2, https://github.com/renpy/pygame_sdl2,3332.3333796296297,5,23,0 -pygccxml,-0.495551734191547,0.486492468911825,-0.849138889813691,https://salsa.debian.org/debian/pygccxml, https://github.com/gccxml/pygccxml,5668.97650462963,5,16,0 -pygments,1.09432846646851,2.3132348209107,0.469362463495908,https://salsa.debian.org/python-team/packages/pygments, https://github.com/pygments/pygments.git,2886.0544328703704,306,558,0 -pygnuplot,-0.309281142371387,1.99710083681855,-0.816765547990162,https://salsa.debian.org/python-team/packages/pygnuplot, https://github.com/benschneider/PyGnuplot,2586.3193055555557,0,7,0 -pygobject,1.87356787746567,2.57217772849312,1.36816242290732,https://salsa.debian.org/gnome-team/pygobject, https://gitlab.gnome.org/GNOME/pygobject,5671.774375,139,127,0 -pygresql,0.654635033502717,1.7130047409937,0.0882104426891017,https://salsa.debian.org/debian/pygresql, https://github.com/PyGreSQL/PyGreSQL,5390.1054513888885,4,4,4 -pygtail,-0.539020118992098,3.13292925607172,-1.61790882828562,https://salsa.debian.org/python-team/packages/pygtail, https://github.com/bgreenlee/pygtail,4147.394780092593,7,19,0 -pygtkspellcheck,0.7257355054143,2.61661141477408,0.0292934831785931,https://salsa.debian.org/python-team/packages/pygtkspellcheck, https://github.com/koehlma/pygtkspellcheck,4478.330185185185,2,11,1 -pyhamcrest,0.477004406741494,2.02760917006511,-0.0667553804928372,https://salsa.debian.org/python-team/packages/pyhamcrest, https://github.com/hamcrest/PyHamcrest,5756.534722222223,18,36,0 -pyicu,0.567064416758836,1.69830166492967,0.0840500818354553,https://salsa.debian.org/python-team/packages/pyicu, https://github.com/ovalhub/pyicu.git,2184.9113078703704,5,15,0 -pyinotify,0.539303811447247,1.55973294924873,0.107010693294791,https://salsa.debian.org/python-team/packages/pyinotify, https://github.com/seb-m/pyinotify.git,2642.3433796296295,0,16,0 -pyjokes,-0.213223143779745,3.54203731545436,-1.22575865798678,https://salsa.debian.org/python-team/packages/pyjokes, https://github.com/pyjokes/pyjokes,3166.3977546296296,9,30,1 -pyjwt,0.295088879140263,1.37043065299221,-0.0542571025196617,https://salsa.debian.org/python-team/packages/pyjwt, https://github.com/jpadilla/pyjwt.git,4675.897326388889,105,47,0 -pylama,-0.168504324329241,2.31245615764542,-0.835820663474999,https://salsa.debian.org/python-team/packages/pylama, https://github.com/klen/pylama,3643.043888888889,6,46,0 -pylast,0.100776938759318,2.28996480473361,-0.379819550624563,https://salsa.debian.org/python-team/packages/pylast, https://github.com/pylast/pylast,5565.59855324074,8,38,2 -pylibtiff,0.0190555878881251,2.16444240744198,-0.769236079061491,https://salsa.debian.org/debian-gis-team/pylibtiff, https://github.com/pearu/pylibtiff.git,3040.1433796296296,10,20,0 -pylint,0.174498715716526,0.4665293327002,-0.00434639560027534,https://salsa.debian.org/python-team/packages/pylint, https://github.com/PyCQA/pylint.git,5621.911319444444,451,185,0 -pylint-flask,0.121478376037209,2.81446522157007,-0.793312583432087,https://salsa.debian.org/python-team/packages/pylint-flask, https://github.com/jschaf/pylint-flask,2579.0026851851853,3,8,0 -pylint-plugin-utils,-0.0597596177116391,2.49272348865354,-0.676049395041167,https://salsa.debian.org/python-team/packages/pylint-plugin-utils, https://github.com/PyCQA/pylint-plugin-utils.git,3719.6033912037037,6,13,0 -pymacs,0.930381569651539,2.71440757575525,0.140125463590492,https://salsa.debian.org/python-team/packages/pymacs, https://github.com/pinard/Pymacs.git,2214.350115740741,2,9,0 -pymarkups,0.0477864201247166,1.79679903237181,-0.289861290944383,https://salsa.debian.org/python-team/packages/pymarkups, https://github.com/retext-project/pymarkups.git,4159.156273148148,2,3,0 -pymca,-0.415347689470358,-0.143704767485273,-0.501687293329833,https://salsa.debian.org/science-team/pymca, https://github.com/vasole/pymca,5785.805543981482,7,32,0 -pymediainfo,0.381332731349089,2.72322854270128,-0.311226839760821,https://salsa.debian.org/python-team/packages/pymediainfo, https://github.com/sbraz/pymediainfo,4970.751111111111,10,7,0 -pymodbus,0.0732799109217558,1.86466922646135,-0.584440179364302,https://salsa.debian.org/python-team/packages/pymodbus, https://github.com/pymodbus-dev/pymodbus.git,5499.738599537037,102,63,0 -pympler,-2.5554616545803,1.3732171766135,-3.6067183245679,https://salsa.debian.org/python-team/packages/pympler, https://github.com/pympler/pympler.git,5079.409039351852,13,20,0 -pympress,-1.08240230765555,0.610933444579991,-1.39376729482119,https://salsa.debian.org/python-team/packages/pympress, https://github.com/Cimbali/pympress/commits/master,5185.326875,55,11,0 -pymssql,1.04134159755709,3.40258559120885,0.0397901466042378,https://salsa.debian.org/python-team/packages/pymssql, https://github.com/pymssql/pymssql.git,4832.040821759259,33,33,0 -pyodbc,0.885597744996121,3.48776705118848,0.0174921768342335,https://salsa.debian.org/python-team/packages/pyodbc, https://github.com/mkleehammer/pyodbc.git,5503.078981481482,46,20,0 -pyopencl,0.178267753662958,0.865226366960079,-0.169445517354505,https://salsa.debian.org/opencl-team/python-pyopencl, https://github.com/inducer/pyopencl,5374.16875,28,83,0 -pyopenssl,0.468518289980903,1.10581965565087,0.153109358014596,https://salsa.debian.org/python-team/packages/pyopenssl, https://github.com/pyca/pyopenssl,5770.23,60,60,1 -pyorbital,-0.83513626595963,1.1503801119106,-1.2127768903138,https://salsa.debian.org/debian-gis-team/pyorbital, https://github.com/pytroll/pyorbital.git,4467.573460648148,9,33,0 -pyosmium,-0.485740471775393,1.11244100152356,-0.814987299062785,https://salsa.debian.org/debian-gis-team/pyosmium/, https://github.com/osmcode/pyosmium.git,3345.7311574074074,7,19,0 -pyotherside,0.0820831316590045,2.69409174321841,-0.717916554547958,https://salsa.debian.org/python-team/packages/pyotherside, https://github.com/thp/pyotherside,4575.2678703703705,2,16,0 -pyparsing,0.829153777961705,1.89883017408123,0.287084196535926,https://salsa.debian.org/python-team/packages/pyparsing, https://github.com/pyparsing/pyparsing,4066.1944907407405,57,14,1 -pypass,-0.884700482124453,1.92189763510546,-1.62068355154731,https://salsa.debian.org/python-team/packages/pypass, https://github.com/ReAzem/python-pass.git,1834.5500810185185,3,11,0 -pypdf2,0.336313629449464,1.87848467629318,-0.115518185475218,https://salsa.debian.org/debian/pypdf, https://github.com/py-pdf/pypdf,4367.592175925926,137,91,3 -pypeg2,0.0855915398578102,2.25455245287497,-0.34580517821732,https://github.com/fiete201/python-pypeg2-debian,https://github.com/fiete201/python-pypeg2-debian,825.4394097222222,0,2,0 -pyphen,-0.518895103853741,1.80200106239471,-0.977778682317542,https://salsa.debian.org/python-team/packages/pyphen, https://github.com/Kozea/Pyphen,3769.922326388889,0,13,0 -pypng,0.657025428296012,3.69424360974505,-0.160382168531365,https://salsa.debian.org/debian/pypng, https://github.com/drj11/pypng,5144.019641203704,4,24,0 -pypuppetdb,-1.32940163604813,2.41852196708942,-2.4698360721368,https://salsa.debian.org/python-team/packages/pypuppetdb, https://github.com/voxpupuli/pypuppetdb,3781.8189814814814,18,46,2 -pyqi,-0.665905280844117,0.42673006565835,-0.906438910624248,https://salsa.debian.org/med-team/pyqi, https://github.com/biocore/pyqi,1051.0106481481482,0,13,1 -pyqso,-0.307095303624084,2.50750144517562,-0.977767231233681,https://salsa.debian.org/debian-hamradio-team/pyqso, https://github.com/ctjacobs/pyqso,2213.788564814815,2,9,5 -pyquery,0.253316020676959,2.14767227179502,-0.276904445045534,https://salsa.debian.org/python-team/packages/pyquery, https://github.com/gawel/pyquery.git,5354.174155092593,7,50,0 -pyqwt3d,-0.397059011512334,0.744059748268288,-0.945141313476562,https://salsa.debian.org/python-team/packages/pyqwt3d, https://github.com/GauiStori/PyQwt3D,1540.4164930555555,0,3,0 -pyraf,-0.127260534026053,2.09946159976478,-0.564345468370832,https://salsa.debian.org/debian-astro-team/pyraf, https://github.com/iraf-community/pyraf.git,5659.829166666666,7,26,0 -pyregion,-0.542329876213893,-0.234135264408173,-0.608660181675525,https://salsa.debian.org/debian-astro-team/pyregion/, https://github.com/astropy/pyregion.git,4914.63974537037,1,20,0 -pyresample,-1.15344876822413,-1.09505537838743,-1.16534539737266,https://salsa.debian.org/debian-gis-team/pyresample, https://github.com/pytroll/pyresample,4965.407013888889,20,51,2 -pyrfc3339,0.237519356434784,1.61668134856796,-0.0819212233808752,https://salsa.debian.org/python-team/packages/pyrfc3339, https://github.com/kurtraschke/pyRFC3339,3552.2014583333334,1,7,0 -pysal,-0.673878057006093,-0.385551627478749,-0.712976291015805,https://salsa.debian.org/debian-gis-team/pysal, https://github.com/pysal/pysal.git,5281.823553240741,17,89,0 -pysimplesoap,0.554909504649339,2.21506648945914,0.0606250550420368,https://salsa.debian.org/python-team/packages/pysimplesoap, https://github.com/pysimplesoap/pysimplesoap,4858.203993055556,4,57,0 -pysmi,0.239327018456762,2.21183034668648,-0.184147894622264,https://salsa.debian.org/python-team/packages/pysmi, https://github.com/etingof/pysmi,1806.330601851852,5,7,0 -pysodium,-0.92503426291004,1.63371609063095,-1.6304178321319,https://salsa.debian.org/python-team/packages/pysodium, https://github.com/stef/pysodium.git,3761.6783217592592,9,38,0 -pysoundfile,-0.425956303307578,1.98178094846684,-0.873346280044414,https://salsa.debian.org/multimedia-team/pysoundfile, https://github.com/bastibe/python-soundfile.git,3757.228148148148,8,31,0 -pysph,-0.19576508254274,0.8352828366819,-0.608555387307991,https://salsa.debian.org/science-team/pysph, https://github.com/pypr/pysph,3944.0042824074076,12,53,0 -pysrs,-2.58656369634392,-0.246658326360389,-3.01401713358786,https://salsa.debian.org/python-team/packages/pysrs, https://github.com/sdgathman/pysrs.git,5232.037384259259,2,4,0 -pyssim,-1.44937824287342,1.58301898108993,-2.31985142308153,https://salsa.debian.org/python-team/packages/pyssim, https://github.com/jterrace/pyssim,4069.879375,2,12,0 -pystaticconfiguration,-2.04721602988162,0.763049361836491,-2.72655556055587,https://salsa.debian.org/python-team/packages/pystaticconfiguration, https://github.com/dnephin/PyStaticConfiguration,3745.7102662037037,3,26,2 -pysubnettree,-0.946147609704078,1.2999152117155,-1.53988131275596,https://salsa.debian.org/python-team/packages/pysubnettree, https://github.com/zeek/pysubnettree.git,4655.747858796296,1,18,0 -pytables,0.181612795535151,0.514236033227897,-0.00780577011777822,https://salsa.debian.org/science-team/pytables, https://github.com/PyTables/PyTables,5755.9130092592595,18,124,2 -pytaglib,0.490833307822017,3.79837683881992,-0.646536884650869,https://salsa.debian.org/python-team/packages/pytaglib, https://github.com/supermihi/pytaglib,4465.748599537037,1,9,0 -pytango,-0.397505451145574,0.240639343510755,-0.63136321174383,https://salsa.debian.org/science-team/pytango, https://gitlab.com/tango-controls/pytango,4678.142523148148,25,82,0 -pyte,0.363748544509015,3.5348771032266,-0.546637713523735,https://salsa.debian.org/python-team/modules/pyte, https://github.com/selectel/pyte,4528.145405092592,19,17,0 -pytest,-0.0946842032874001,-0.00170537233486322,-0.134620684989344,https://salsa.debian.org/python-team/packages/pytest, https://github.com/pytest-dev/pytest.git,5788.108738425926,365,661,0 -pytest-arraydiff,0.189844117515491,2.34162282632034,-0.239438695627217,https://salsa.debian.org/python-team/packages/pytest-arraydiff, https://github.com/astrofrog/pytest-arraydiff,2688.582349537037,5,12,0 -pytest-bdd,-3.42876811393756,-0.503945884651919,-4.23037855636789,https://salsa.debian.org/python-team/packages/pytest-bdd, https://github.com/pytest-dev/pytest-bdd.git,3909.559976851852,26,45,0 -pytest-django,-0.547512504106694,2.38212809870776,-1.32335023590007,https://salsa.debian.org/python-team/packages/pytest-django, https://github.com/pytest-dev/pytest-django,5190.7967708333335,98,53,2 -pytest-expect,-1.41755856425502,1.76044338259236,-2.2515689023404,https://salsa.debian.org/python-team/packages/pytest-expect, https://github.com/gsnedders/pytest-expect,1755.9376273148148,2,3,0 -pytest-forked,-0.283596560280026,2.29514601749755,-0.853292027559784,https://salsa.debian.org/python-team/packages/pytest-forked, https://github.com/pytest-dev/pytest-forked.git,2315.6524421296294,5,15,0 -pytest-httpbin,-2.03594697551207,-0.142189710639132,-2.55876256343517,https://salsa.debian.org/python-team/packages/pytest-httpbin, https://github.com/kevin1024/pytest-httpbin,3280.740266203704,1,13,0 -pytest-mock,-0.251565725072969,1.69811506806052,-0.974021991086496,https://salsa.debian.org/python-team/packages/pytest-mock, https://github.com/pytest-dev/pytest-mock.git,3405.9988541666667,26,48,0 -pytest-openfiles,0.0198117055865297,1.53487457139493,-0.246139013033888,https://salsa.debian.org/python-team/packages/pytest-openfiles, https://github.com/astropy/pytest-openfiles,4143.710324074074,7,35,1 -pytest-pylint,-0.832009640118479,0.153289022747533,-1.10063536083175,https://salsa.debian.org/python-team/packages/pytest-pylint, https://github.com/carsongee/pytest-pylint,3089.6046180555554,5,20,0 -pytest-remotedata,0.0301688429663763,1.64862812662434,-0.246615585231463,https://salsa.debian.org/python-team/packages/pytest-remotedata, https://github.com/astropy/pytest-remotedata,4372.856006944445,4,28,1 -pytest-runner,0.461573642872439,3.29481787102451,-0.472145598518505,https://salsa.debian.org/python-team/packages/pytest-runner, https://github.com/pytest-dev/pytest-runner.git,4387.1189699074075,16,10,0 -pytest-sugar,-1.93438986636594,0.0895529374489846,-2.53361283285188,https://salsa.debian.org/python-team/packages/pytest-sugar, https://github.com/Teemu/pytest-sugar.git,3774.5057060185186,13,48,0 -pytest-tornado,-1.66103426456241,0.234670332900345,-2.05941203679703,https://salsa.debian.org/python-team/packages/pytest-tornado, https://github.com/eugeniy/pytest-tornado,2043.2375578703704,2,15,0 -pytest-xdist,0.000958486355928795,1.9643277803804,-0.615986304381966,https://salsa.debian.org/python-team/packages/pytest-xdist, https://github.com/pytest-dev/pytest-xdist,5069.981481481482,28,79,0 -python-acme,0.131301042597955,0.629379788943371,-0.0576334934993528,https://salsa.debian.org/letsencrypt-team/certbot/acme, https://github.com/letsencrypt/letsencrypt,4226.966990740741,268,343,2 -python-activipy,-2.42311325952415,-0.815642979245098,-2.77879137707984,https://salsa.debian.org/python-team/packages/python-activipy, https://github.com/w3c-social/activipy,294.98199074074074,0,1,0 -python-adal,-0.0706935884444488,2.6258496512301,-0.882266171678301,https://salsa.debian.org/python-team/packages/python-adal, https://github.com/AzureAD/azure-activedirectory-library-for-python.git,2979.6132060185187,14,24,0 -python-admesh,-0.127588953243687,1.1910011407174,-0.482386520004136,https://salsa.debian.org/science-team/python-admesh, https://github.com/admesh/python-admesh,1607.8702662037037,1,1,0 -python-aiohttp,0.659320456029302,2.12763302943969,0.0372710570544091,https://salsa.debian.org/python-team/packages/python-aiohttp, https://github.com/aio-libs/aiohttp.git,3726.5305555555556,542,215,0 -python-aiomeasures,-2.88677979381032,-0.729559981018741,-3.32329466809834,https://salsa.debian.org/python-team/packages/python-aiomeasures, https://lab.errorist.xyz/abc/aiomeasures/tree/master,5185.326875,55,11,0 -python-aiosmtpd,-0.670307013829362,1.48445222707364,-1.11600762028611,https://salsa.debian.org/python-team/packages/python-aiosmtpd, https://github.com/aio-libs/aiosmtpd,2704.0818171296296,23,23,3 -python-alignlib,-4.63939723072567,-1.91125987527709,-5.39874876509306,https://salsa.debian.org/med-team/python-alignlib, https://github.com/marcelm/alignlib.git,1738.8239930555555,1,3,0 -python-altgraph,-0.177664161225728,2.0796554316984,-0.617563094232779,https://salsa.debian.org/python-team/packages/python-altgraph, https://github.com/ronaldoussoren/altgraph,5013.400891203703,1,6,0 -python-amqp,0.492792863895466,2.97803737108839,-0.103780130816662,https://salsa.debian.org/python-team/packages/python-amqp, https://github.com/celery/py-amqp.git,5725.564479166666,68,43,0 -python-argh,0.233903067417354,2.01591008993674,-0.26865087184235,https://salsa.debian.org/python-team/packages/python-argh, https://github.com/neithere/argh.git,4744.0471875,5,24,0 -python-argon2,-0.507428695626086,2.47954626772091,-1.24583720203671,https://salsa.debian.org/python-team/packages/python-argon2, https://github.com/hynek/argon2-cffi,2912.679050925926,15,4,0 -python-arpy,-0.754590286423082,2.54869807999372,-1.72984202812202,https://salsa.debian.org/python-team/packages/python-arpy, https://github.com/viraptor/arpy.git,4328.123113425926,1,9,0 -python-arrow,-0.0155472431025059,1.37635812822856,-0.296265816143172,https://salsa.debian.org/debian/python-arrow, https://github.com/crsmithdev/arrow.git,3968.0696527777777,101,197,0 -python-ase,-0.0151634711847933,1.21295642575388,-0.515347929271485,https://salsa.debian.org/debichem-team/python-ase, https://gitlab.com/ase/ase,5787.864155092592,41,371,0 -python-asteval,0.125972288937792,2.77679984697409,-0.53943895529481,https://salsa.debian.org/science-team/python-asteval, https://github.com/newville/asteval.git,4236.665451388889,4,25,0 -python-astor,-0.124241533418696,2.06677200885107,-0.560085765663434,https://salsa.debian.org/python-team/packages/python-astor, https://github.com/berkerpeksag/astor,4003.063136574074,29,11,1 -python-asttokens,0.33408103626771,3.01141836548719,-0.288701326396789,https://salsa.debian.org/python-team/packages/python-asttokens, https://github.com/gristlabs/asttokens.git,2518.9855439814814,9,8,0 -python-async-timeout,0.905071221321783,4.47678616508288,-0.088498938129562,https://salsa.debian.org/python-team/packages/python-async-timeout, https://github.com/aio-libs/async_timeout.git,2650.144675925926,17,12,0 -python-asyncssh,-1.18270536885584,0.256243306256498,-1.64931965823354,https://salsa.debian.org/python-team/packages/python-asyncssh, https://github.com/ronf/asyncssh,3723.866863425926,18,9,0 -python-atomicwrites,0.80717474493993,3.93688839501037,-0.0360579534404471,https://salsa.debian.org/python-team/packages/python-atomicwrites, https://github.com/untitaker/python-atomicwrites,2718.0744907407407,9,8,0 -python-avro,-0.676407068396849,0.59419524502039,-0.970469266237255,https://salsa.debian.org/python-team/packages/python-avro, https://github.com/apache/avro,5362.563055555555,342,76,0 -python-aws-xray-sdk,-0.656567296113062,2.21861042285347,-1.38871874837233,https://salsa.debian.org/science-team/python-aws-xray-sdk, https://github.com/aws/aws-xray-sdk-python,2264.9942939814814,64,31,0 -python-azure-devtools,-1.8877692262182,1.0407212340933,-2.68977417741463,https://salsa.debian.org/python-team/packages/python-azure-devtools, https://github.com/Azure/azure-python-devtools,1688.8337962962962,6,14,0 -python-b2sdk,-2.70912034958649,0.0195888217291228,-3.29858951161245,https://salsa.debian.org/python-team/packages/python-b2sdk, https://github.com/Backblaze/b2-sdk-python.git,2948.629490740741,24,86,0 -python-babel,0.457108626748347,1.12522241992856,0.114378343598591,https://salsa.debian.org/python-team/packages/python-babel, https://github.com/python-babel/babel,5776.72167824074,75,93,2 -python-base58,-0.638002541765872,1.88704322930212,-1.19487215124741,https://salsa.debian.org/python-team/packages/python-base58, https://github.com/keis/base58,3504.7240046296297,9,12,0 -python-bayespy,-0.413372685864473,2.29395432544691,-1.28090212529164,https://salsa.debian.org/science-team/python-bayespy, https://github.com/bayespy/bayespy,4227.605023148149,4,9,0 -python-bcrypt,0.720872399036504,2.43235241240946,0.08731543368218,https://salsa.debian.org/python-team/packages/python-bcrypt, https://github.com/pyca/bcrypt.git,3870.0652083333334,26,10,0 -python-bioblend,-2.92594306463371,-0.982284659462903,-3.32066017131837,https://salsa.debian.org/med-team/python-bioblend, https://github.com/galaxyproject/bioblend,4206.676539351852,23,71,0 -python-biplist,0.177952995896196,2.65898613936875,-0.447466081377024,https://salsa.debian.org/python-team/packages/python-biplist, https://bitbucket.org/wooster/biplist/issues/new,2746.3319791666668,2,17,0 -python-bitarray,0.1853646535503,2.71696211707387,-0.389856738541388,https://salsa.debian.org/python-team/packages/python-bitarray, https://github.com/ilanschnell/bitarray.git,5492.002303240741,4,24,0 -python-bitbucket-api,-1.80768047140336,0.655321433075774,-2.42711934359575,https://salsa.debian.org/python-team/packages/python-bitbucket-api, https://github.com/Sheeprider/BitBucket-api,2673.033715277778,1,9,0 -python-blessed,0.232652358552523,3.20605056891515,-0.718351254037988,https://salsa.debian.org/python-team/packages/python-blessed, https://github.com/jquast/blessed,4419.870092592592,11,20,0 -python-blosc,0.410479289294704,2.72099099009397,-0.240131424738422,https://salsa.debian.org/python-team/packages/python-blosc, https://github.com/Blosc/python-blosc.git,4736.291226851852,17,36,0 -python-boltons,-0.0997518598830524,2.67267318697583,-0.861415447699543,https://salsa.debian.org/python-team/packages/python-boltons, https://github.com/mahmoud/boltons,3938.2483333333334,42,55,0 -python-boto3,0.0763924267545084,1.54853018040474,-0.306722971378577,https://salsa.debian.org/cloud-team/python-boto3, https://github.com/boto/boto3,3388.838414351852,77,94,0 -python-botocore,0.285612181454061,1.6399958356333,-0.149435719398459,https://salsa.debian.org/cloud-team/python-botocore, https://github.com/boto/botocore,4048.245625,86,149,0 -python-bottle,0.417152439389038,1.6179431630272,-0.042988623154062,https://salsa.debian.org/debian/python-bottle, https://github.com/bottlepy/bottle.git,5239.712615740741,78,171,0 -python-btrees,0.131771356743149,2.79278179856863,-0.632603814290702,https://salsa.debian.org/python-team/packages/python-btrees, https://github.com/zopefoundation/BTrees.git,4005.382384259259,5,28,0 -python-bugzilla,-0.563366997607635,2.10695252748837,-1.21240516258286,https://salsa.debian.org/python-team/packages/python-bugzilla, https://github.com/python-bugzilla/python-bugzilla,5775.498171296296,51,11,0 -python-bumps,-0.893536724559635,0.0933032097180597,-1.16053132053718,https://salsa.debian.org/science-team/python-bumps, https://github.com/bumps/bumps,4409.951157407408,1,19,0 -python-cachetools,0.522159771197376,3.37311857326325,-0.258914629166168,https://salsa.debian.org/python-team/packages/python-cachetools, https://github.com/tkem/cachetools,3511.0841203703703,2,11,0 -python-caja,0.0214160855011559,0.73959956688193,-0.20850701844582,https://salsa.debian.org/debian-mate-team/python-caja, https://github.com/mate-desktop/python-caja.git,4326.721134259259,10,21,0 -python-can,-1.20066338058102,0.794195621456955,-1.69593692380182,https://salsa.debian.org/python-team/packages/python-can, https://github.com/hardbyte/python-can.git,3258.697708333333,133,94,0 -python-cartopy,-0.0663703642120972,1.69727879326213,-0.601068844043887,https://salsa.debian.org/debian-gis-team/python-cartopy, https://github.com/SciTools/cartopy.git,4150.52050925926,44,111,0 -python-casacore,-0.23012807600685,0.644003027604599,-0.456158593790019,https://salsa.debian.org/debian-astro-team/python-casacore, https://github.com/casacore/python-casacore,5786.248055555556,2,26,3 -python-cassandra-driver,-0.806275424657523,1.60416839197922,-1.74809489846118,https://salsa.debian.org/python-team/packages/python-cassandra-driver, https://github.com/datastax/python-driver.git,3941.7978935185183,43,186,0 -python-certbot,0.0530697005848172,0.205062033778056,-0.034501071006792,https://salsa.debian.org/letsencrypt-team/certbot/certbot, https://github.com/letsencrypt/letsencrypt.git,4226.966990740741,268,343,0 -python-certbot-apache,0.164376385123369,1.1569070052723,-0.113658319351683,https://salsa.debian.org/letsencrypt-team/certbot/certbot-apache, https://github.com/letsencrypt/letsencrypt,4226.966990740741,268,343,2 -python-certbot-dns-cloudflare,-0.0402097724502475,2.61410988299018,-0.711802185480417,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-cloudflare, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0 -python-certbot-dns-digitalocean,-1.40219072428383,0.970004158695313,-1.95674155999233,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-digitalocean, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0 -python-certbot-dns-dnsimple,-2.27201429832193,0.115747776615057,-2.77590936298428,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-dnsimple, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0 -python-certbot-dns-google,-0.899819983906848,1.90897945576906,-1.57828050615347,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-google, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0 -python-certbot-dns-rfc2136,-0.281137746815331,1.82470849788128,-0.751436143873004,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0 -python-certbot-dns-route53,-1.10006157064088,1.18347179422029,-1.67274459016725,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-route53, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0 -python-changelog,-1.70448054473229,-0.290367732987352,-2.05024305940995,https://salsa.debian.org/python-team/packages/python-changelog, https://github.com/sqlalchemyorg/changelog,3951.474050925926,6,7,0 -python-cheroot,0.218476662586452,2.57903897032906,-0.256634445307027,https://salsa.debian.org/python-team/packages/python-cheroot, https://github.com/cherrypy/cheroot.git,5771.299189814815,32,151,0 -python-click,0.533261133725363,1.86963549867411,0.0413641366647804,https://salsa.debian.org/python-team/packages/python-click, https://github.com/pallets/click.git,3511.524525462963,222,172,0 -python-click-plugins,0.183596650265385,2.50943745506862,-0.299339191325406,https://salsa.debian.org/debian-gis-team/python-click-plugins/, https://github.com/click-contrib/click-plugins.git,1359.290763888889,1,8,0 -python-cligj,0.0110381728393001,2.59955084654331,-0.499940708010805,https://salsa.debian.org/debian-gis-team/python-cligj, https://github.com/mapbox/cligj.git,2777.8914699074076,2,10,0 -python-clint,-0.0438781208296862,1.71074973976383,-0.429437396504159,https://salsa.debian.org/python-team/packages/python-clint, https://github.com/kennethreitz/clint,2517.082002314815,3,67,1 -python-cloudflare,0.0381996032608938,2.77406419988188,-0.666375037689694,https://salsa.debian.org/python-team/packages/python-cloudflare, https://github.com/cloudflare/python-cloudflare,3286.4968981481484,13,32,0 -python-cluster,-0.559555280381538,1.74450964876915,-1.27322096237344,https://salsa.debian.org/python-team/packages/python-cluster, https://github.com/exhuma/python-cluster.git,2854.787951388889,1,7,0 -python-cmarkgfm,-1.31501359328804,1.23194183099758,-1.895147952211,https://salsa.debian.org/python-team/packages/python-cmarkgfm, https://github.com/theacodes/cmarkgfm,1977.4600578703703,18,8,0 -python-colorama,0.778475484065202,2.48466274067031,0.147974243977739,https://salsa.debian.org/python-team/packages/python-colorama, https://github.com/tartley/colorama,3514.679652777778,15,42,0 -python-colorlog,0.0760601285628227,2.17624730096483,-0.417655581978487,https://salsa.debian.org/python-team/packages/python-colorlog, https://github.com/borntyping/python-colorlog.git,4104.955439814815,10,24,0 -python-colormap,-0.80798143374305,1.46883737800577,-1.38904142865958,https://salsa.debian.org/python-team/packages/python-colormap, https://github.com/cokelaer/colormap,3308.9144444444446,1,7,0 -python-concurrent.futures,0.253069403039548,1.4926901749381,-0.0680161382409498,https://salsa.debian.org/python-team/modules/python-concurrent.futures, https://github.com/agronholm/pythonfutures.git,4929.174259259259,10,12,0 -python-configargparse,0.62387801737252,3.35110574592331,-0.0441913435369702,https://salsa.debian.org/python-team/packages/configargparse, https://github.com/bw2/ConfigArgParse,3315.65818287037,8,51,0 -python-confluent-kafka,-1.01517987440346,0.833635749384244,-1.40631435126392,https://salsa.debian.org/python-team/packages/python-confluent-kafka, https://github.com/confluentinc/confluent-kafka-python.git,2799.978136574074,89,53,0 -python-consul,0.954726396751768,4.62311509154569,-0.0266969032836823,https://salsa.debian.org/python-team/packages/python-consul, https://github.com/cablehead/python-consul,1432.7212152777777,12,52,1 -python-cpuinfo,0.210056549819962,2.84171853313126,-0.377044596104247,https://salsa.debian.org/python-team/packages/python-cpuinfo, https://github.com/workhorsy/py-cpuinfo,3300.573159722222,1,24,0 -python-crontab,-1.20893497525292,-0.0526821093108496,-1.5168960802404,https://salsa.debian.org/python-team/packages/python-crontab, https://gitlab.com/doctormo/python-crontab,5219.725810185185,5,15,0 -python-cryptography-vectors,0.0542953295686275,2.87199250330208,-0.555070287642916,https://salsa.debian.org/python-team/packages/python-cryptography-vectors, https://github.com/pyca/cryptography/issues/new,2746.3319791666668,2,17,0 -python-cs,-1.58638712281207,0.481665568993578,-2.23329067501132,https://salsa.debian.org/python-team/packages/python-cs, https://github.com/exoscale/cs,3277.6950578703704,6,20,0 -python-css-parser,0.737520429234226,3.65253255454216,-0.0470738230267792,https://salsa.debian.org/python-team/packages/python-css-parser, https://github.com/ebook-utils/css-parser,1765.7022685185186,2,7,0 -python-cssselect,0.766389048615414,3.66623505696289,-0.021805051288149,https://salsa.debian.org/python-team/packages/python-cssselect, https://github.com/scrapy/cssselect,5713.5145601851855,8,23,0 -python-cups,0.722928124090978,2.10651414160283,0.157924808524114,https://salsa.debian.org/python-team/packages/python-cups, https://github.com/OpenPrinting/pycups.git,5524.667384259259,4,9,0 -python-curtsies,0.316650190607577,2.60676539674931,-0.304611589024975,https://salsa.debian.org/sramacher/python-curtsies, https://github.com/bpython/curtsies,3799.8890277777778,15,32,1 -python-cycler,0.628383028079081,2.49687348471043,0.0195972628773569,https://salsa.debian.org/python-team/packages/python-cycler, https://github.com/matplotlib/cycler,2790.014108796296,6,19,2 -python-cytoolz,-0.358484799954006,2.35380987885035,-1.07583039408841,https://salsa.debian.org/python-team/packages/python-cytoolz, https://github.com/pytoolz/cytoolz,3395.421412037037,2,21,0 -python-darkslide,0.932044835084578,4.49541173906183,-0.288323175082102,https://salsa.debian.org/debian/darkslide, https://github.com/ionelmc/python-darkslide.git,4282.7612268518515,4,56,0 -python-darts.lib.utils.lru,-1.89274943343211,0.292233477200228,-2.3461638638224,https://salsa.debian.org/pkg-security-team/python-darts.lib.utils.lru, https://github.com/deterministic-arts/DartsPyLRU.git,362.9079398148148,0,2,0 -python-datrie,-0.506057889950513,1.38031883911671,-0.978482355229684,https://salsa.debian.org/python-team/packages/python-datrie, https://github.com/kmike/datrie.git,2978.6536226851854,7,11,0 -python-dbusmock,-0.627944787988481,0.300003823801882,-0.850570977338004,https://salsa.debian.org/python-team/packages/python-dbusmock, https://github.com/martinpitt/python-dbusmock,4100.772418981482,32,16,0 -python-debianbts,0.513538471152521,1.02516058932949,0.231444231527959,https://github.com/venthur/python-debianbts,https://github.com/venthur/python-debianbts,5257.841331018519,2,16,0 -python-decorator,0.470421256098476,1.79239570870011,0.0135959483939923,https://salsa.debian.org/python-team/packages/python-decorator, https://github.com/micheles/decorator.git,5376.399953703703,6,23,0 -python-deeptoolsintervals,-2.87716276513662,-0.609615947334158,-3.32264967911522,https://salsa.debian.org/med-team/python-deeptoolsintervals, https://github.com/deeptools/deeptools_intervals,1246.0450694444444,0,4,0 -python-demjson,-0.237038961472229,1.8179175851506,-0.80137511432811,https://salsa.debian.org/python-team/packages/python-demjson, https://github.com/dmeranda/demjson,1291.8414699074074,0,1,0 -python-deprecated,0.1196653299471,2.25977882516032,-0.308485560349962,https://salsa.debian.org/debian-gis-team/python-deprecated, https://github.com/tantale/deprecated.git,2057.2850694444446,18,4,0 -python-diaspy,-2.17458679876553,0.0535067340264225,-2.61656088683794,https://salsa.debian.org/python-team/packages/python-diaspy, https://github.com/marekjm/diaspy,3779.1691319444444,4,18,0 -python-diff-match-patch,0.584603381464553,3.09865562984525,-0.11840201957185,https://salsa.debian.org/debian/python-diff-match-patch, https://github.com/diff-match-patch-python/diff-match-patch,1729.8804282407407,3,2,0 -python-django-braces,-1.25102734718929,0.340648918872544,-1.63881536863121,https://salsa.debian.org/python-team/packages/python-django-braces, https://github.com/brack3t/django-braces.git,4108.719386574074,10,79,0 -python-django-casclient,-1.15343521211913,1.67191736328623,-2.06951776542578,https://salsa.debian.org/python-team/packages/python-django-casclient, https://github.com/kstateome/django-cas,2792.0546875,7,19,0 -python-django-celery-beat,-1.53400001056745,1.88710259850437,-2.39053964577473,https://salsa.debian.org/python-team/packages/python-django-celery-beat, https://github.com/celery/django-celery-beat,2687.8796643518517,111,13,1 -python-django-contact-form,-1.10973337045037,0.628121817228084,-1.64359729736289,https://salsa.debian.org/python-team/packages/python-django-contact-form, https://github.com/ubernostrum/django-contact-form,5539.237071759259,2,14,0 -python-django-csp,-1.45831743267382,1.33984311418151,-2.16861147719032,https://salsa.debian.org/python-team/packages/python-django-csp, https://github.com/mozilla/django-csp.git,4885.718310185185,17,40,0 -python-django-debug-toolbar,-0.794791716705528,-0.149717856397106,-1.02400006654311,https://salsa.debian.org/python-team/packages/python-django-debug-toolbar, https://github.com/jazzband/django-debug-toolbar.git,5583.444155092592,108,202,0 -python-django-etcd-settings,-0.989663267400494,2.25757908219037,-1.99197669528536,https://salsa.debian.org/python-team/packages/python-django-etcd-settings, https://github.com/kpn-digital/django-etcd-settings,2402.9784375,6,17,0 -python-django-extensions,-0.40454514174395,0.442630097377743,-0.746010341743812,https://salsa.debian.org/python-team/packages/python-django-extensions, https://github.com/django-extensions/django-extensions,5734.173356481481,145,466,0 -python-django-extra-views,-1.25877137175236,1.08523071997228,-1.86622121321833,https://salsa.debian.org/python-team/packages/python-django-extra-views, https://github.com/AndrewIngram/django-extra-views,4072.4001041666666,12,61,1 -python-django-gravatar2,-0.663578474021825,1.16790467668008,-1.12793880314674,https://salsa.debian.org/python-team/packages/python-django-gravatar2, https://github.com/twaddington/django-gravatar,3121.693310185185,1,16,0 -python-django-imagekit,-1.35102414855421,0.374985178913018,-1.78640342118342,https://salsa.debian.org/python-team/packages/python-django-imagekit, https://github.com/matthewwithanm/django-imagekit.git,5386.110393518518,18,69,0 -python-django-jsonfield,-1.07142073551277,-0.0546197295612257,-1.30935796121876,https://salsa.debian.org/python-team/modules/python-django-jsonfield, https://github.com/adamchainz/django-jsonfield,3841.3997222222224,3,25,0 -python-django-libsass,-4.81731968936922,-2.39116751884945,-5.43841554832882,https://salsa.debian.org/python-team/packages/python-django-libsass, https://github.com/torchbox/django-libsass.git,3571.005949074074,10,9,0 -python-django-modelcluster,-3.9620317451107,-2.03442698957617,-4.34142664037654,https://salsa.debian.org/python-team/packages/python-django-modelcluster, https://github.com/wagtail/django-modelcluster.git,3534.2000347222224,21,13,0 -python-django-mptt,-1.41133959799266,0.71995253065565,-2.1385418423202,https://salsa.debian.org/python-team/packages/python-django-mptt, https://github.com/django-mptt/django-mptt.git,5687.509895833334,39,129,0 -python-django-netfields,-2.12840929722838,-0.39632590710558,-2.47815915162011,https://salsa.debian.org/python-team/packages/python-django-netfields, https://github.com/jimfunk/django-postgresql-netfields,5006.376030092592,11,46,0 -python-django-ordered-model,-1.24083503715617,1.32905395625878,-1.87733775304822,https://salsa.debian.org/python-team/packages/python-django-ordered-model, https://github.com/bfirsh/django-ordered-model.git,5015.315243055556,29,40,0 -python-django-push-notifications,-2.88352714154921,1.1630797643721,-4.06008617589567,https://salsa.debian.org/python-team/packages/python-django-push-notifications, https://github.com/jazzband/django-push-notifications,3892.0095254629628,69,44,1 -python-django-rest-framework-guardian,-3.32090751536405,-1.14641965177563,-3.75123607797988,https://salsa.debian.org/python-team/packages/python-django-rest-framework-guardian, https://github.com/rpkilby/django-rest-framework-guardian.git,626.7550231481481,2,4,0 -python-django-rest-hooks,-1.50508757244667,1.18697239489152,-2.19060255115359,https://salsa.debian.org/python-team/packages/python-django-rest-hooks, https://github.com/zapier/django-rest-hooks,2693.6027777777776,12,13,0 -python-django-split-settings,-2.78957511519186,-0.398784713274345,-3.31015157067725,https://salsa.debian.org/python-team/packages/python-django-split-settings, https://github.com/sobolevn/django-split-settings,3860.1584027777776,17,13,0 -python-django-storages,-3.13869786410601,-0.596777992266893,-3.7258638390182,https://salsa.debian.org/python-team/packages/python-django-storages, https://github.com/jschneier/django-storages.git,4486.111574074074,175,96,0 -python-django-treebeard,-1.44301346852683,-0.735165625821461,-1.68427416316081,https://salsa.debian.org/python-team/packages/python-django-treebeard, https://github.com/django-treebeard/django-treebeard.git,5493.911400462963,24,59,0 -python-django-waffle,-4.86877405581794,-2.27791872315325,-5.45168083842372,https://salsa.debian.org/python-team/packages/python-django-waffle, https://github.com/django-waffle/django-waffle,4704.6359375,82,44,2 -python-django-x509,-1.2627654181179,2.11539463627529,-2.14085152480918,https://salsa.debian.org/python-team/packages/python-django-x509, https://github.com/openwisp/django-x509,2694.0179282407407,14,28,0 -python-djangosaml2,-1.64364907157097,0.974792758955683,-2.30326843434238,https://salsa.debian.org/python-team/packages/python-djangosaml2, https://github.com/IdentityPython/djangosaml2,3275.325659722222,33,81,4 -python-djvulibre,1.83430171603396,4.14861860289277,0.733031973392286,https://salsa.debian.org/python-team/packages/python-djvulibre, https://github.com/jwilk/python-djvulibre,5340.873275462963,0,1,0 -python-dmidecode,0.696512755433002,2.37731861945678,-0.124434961309399,https://salsa.debian.org/python-team/packages/python-dmidecode, https://github.com/nima/python-dmidecode,5342.575833333333,10,17,0 -python-dnsq,-0.84937779216935,1.65138109321636,-1.41060216211315,https://salsa.debian.org/python-team/packages/python-dnsq, https://github.com/mailgun/dnsq.git,1028.904513888889,1,6,0 -python-dotenv,-0.0646647075317069,2.86166402780144,-0.97580266039008,https://salsa.debian.org/debian/python-dotenv, https://github.com/theskumar/python-dotenv.git,3676.0798726851854,81,18,0 -python-dpkt,0.0196106670228997,2.47626960524388,-0.584888132841591,https://salsa.debian.org/python-team/packages/python-dpkt, https://github.com/kbandla/dpkt,3886.9183680555557,36,43,1 -python-dropbox,-0.130181357773559,2.84521348805933,-0.865581993532946,https://salsa.debian.org/python-team/packages/python-dropbox, https://github.com/dropbox/dropbox-sdk-python,2984.077083333333,28,31,0 -python-dugong,-0.591471391126072,0.37617404681871,-0.825298609681828,https://salsa.debian.org/python-team/packages/python-dugong, https://github.com/python-dugong/python-dugong.git,3200.2688541666666,4,5,0 -python-easydev,-1.06341865388081,0.409242130783886,-1.41712624396679,https://salsa.debian.org/python-team/packages/python-easydev, https://github.com/cokelaer/easydev.git,3717.344375,0,5,0 -python-easywebdav,-0.193448412041873,1.95905816981472,-0.63719103656544,https://salsa.debian.org/python-team/packages/python-easywebdav, https://github.com/amnong/easywebdav,813.3765625,1,13,0 -python-ecdsa,0.142739523061463,1.73012905576179,-0.155058972185504,https://salsa.debian.org/python-team/packages/python-ecdsa, https://github.com/warner/python-ecdsa.git,4921.863113425926,21,34,0 -python-elasticsearch,0.927096636079393,4.15899570231356,-0.100882069092549,https://salsa.debian.org/python-team/packages/python-elasticsearch, https://github.com/elastic/elasticsearch-py.git,3877.6857060185184,168,65,0 -python-engineio,-1.21389832846921,1.36976505916868,-1.96454954353257,https://salsa.debian.org/debian/python-engineio, https://github.com/miguelgrinberg/python-engineio.git,3095.8040625,43,8,0 -python-envisage,0.7220961261285,3.02356199711192,-0.0707780330396117,https://salsa.debian.org/python-team/packages/python-envisage, https://github.com/enthought/envisage,5520.999733796296,12,70,2 -python-epc,-0.66793387469914,1.8418923245079,-1.20975615875128,https://salsa.debian.org/python-team/packages/python-epc, https://github.com/tkf/python-epc,2413.0286574074075,1,4,0 -python-esmre,-2.00641566770589,0.202087281970367,-2.47557808240015,https://salsa.debian.org/debian/python-esmre, https://github.com/wharris/esmre.git,5681.62130787037,0,3,0 -python-ethtool,0.274962230630451,1.82732927092968,-0.303521557345908,https://salsa.debian.org/python-team/packages/python-ethtool, https://github.com/fedora-python/python-ethtool/issues/new,2746.3319791666668,2,17,0 -python-evdev,0.0402339248717863,1.30514015155692,-0.210950819369913,https://salsa.debian.org/debian/python-evdev, https://github.com/gvalkov/python-evdev.git,4232.826412037037,17,38,0 -python-eventlet,0.252115609807978,1.15186457181384,-0.198055516809458,https://salsa.debian.org/openstack-team/third-party/python-eventlet, https://github.com/eventlet/eventlet.git,5751.2650347222225,91,103,0 -python-exif,0.0156493174686464,1.00360355884044,-0.248935024905801,https://salsa.debian.org/python-team/packages/python-exif, https://github.com/ianare/exif-py,3998.029189814815,34,23,0 -python-fabio,0.0104950221350668,1.21007586643528,-0.438051112560997,https://salsa.debian.org/science-team/python-fabio, https://github.com/silx-kit/fabio.git,5765.121435185185,18,45,0 -python-fakeredis,-1.84014849107297,0.71945353926365,-2.53506583901348,https://salsa.debian.org/python-team/packages/python-fakeredis, https://github.com/jamesls/fakeredis.git,3981.188900462963,20,88,0 -python-fastimport,0.105277518376507,1.74571167550912,-0.262427062540309,https://salsa.debian.org/python-team/packages/python-fastimport, https://github.com/jelmer/python-fastimport,5680.5950578703705,13,39,0 -python-feather-format,-1.25068288454204,1.70492416407619,-2.43608687570517,https://salsa.debian.org/python-team/packages/python-feather-format, https://github.com/wesm/feather,1834.8181597222222,30,9,0 -python-fedora,-2.29967407391479,0.484863817047441,-3.14279644361132,https://salsa.debian.org/python-team/packages/python-fedora, https://github.com/fedora-infra/python-fedora,4670.561863425926,38,64,0 -python-filelock,0.25864042246865,2.56448428979434,-0.205671902682833,https://salsa.debian.org/debian/python-filelock, https://github.com/tox-dev/py-filelock,3582.4748495370372,31,14,0 -python-fisx,-0.0903144327544692,1.77973202904558,-0.598324937708201,https://salsa.debian.org/python-team/packages/python-fisx, https://github.com/vasole/fisx,3592.9752777777776,0,12,0 -python-fitbit,-1.68563475320931,-1.0235675077146,-1.816362836865,https://salsa.debian.org/med-team/python-fitbit, https://github.com/orcasgit/python-fitbit,2733.117696759259,1,37,1 -python-fitsio,-0.461055717385868,0.394057440700241,-0.637876906966945,https://salsa.debian.org/debian-astro-team/python-fitsio, https://github.com/esheldon/fitsio,4439.410567129629,4,32,0 -python-flaky,-0.823872670209293,2.08116067823733,-1.65266988307531,https://salsa.debian.org/python-team/packages/python-flaky, https://github.com/box/flaky.git,3089.6002083333333,11,23,0 -python-flask-marshmallow,-2.80155733630733,-0.429293330898669,-3.30823655264686,https://salsa.debian.org/python-team/packages/python-flask-marshmallow, https://github.com/marshmallow-code/flask-marshmallow.git,3428.1755439814815,6,18,0 -python-fluids,-0.442121628110571,2.75067751986968,-1.36605828580339,https://salsa.debian.org/science-team/python-fluids, https://github.com/CalebBell/fluids/issues/new,2746.3319791666668,2,17,0 -python-frozendict,0.190688469714448,2.63554997407049,-0.323798030236354,https://salsa.debian.org/openstack-team/python/python-frozendict, https://github.com/slezica/python-frozendict.git,1398.647986111111,1,9,0 -python-fs,0.431351001699295,2.37615125522866,-0.283247663764577,https://salsa.debian.org/python-team/packages/python-fs, https://github.com/PyFilesystem/pyfilesystem2,2194.828923611111,39,12,3 -python-fswrap,-2.10651306806468,0.310291029018578,-2.73445256296084,https://salsa.debian.org/debian/python-fswrap, https://github.com/hyde/fswrap,1272.071238425926,0,7,0 -python-fudge,-1.65644390810741,-0.304248052417325,-1.92122880751373,https://salsa.debian.org/python-team/packages/python-fudge, https://github.com/fudge-py/fudge,3423.9785069444442,2,11,0 -python-future,0.503059489203248,1.68720030424491,0.0486866337929686,https://salsa.debian.org/python-team/packages/python-future, https://github.com/PythonCharmers/python-future,3485.568784722222,22,94,0 -python-fysom,-0.75856033329708,1.38289183997405,-1.18582341091221,https://salsa.debian.org/debian/python-fysom, https://github.com/mriehl/fysom.git,3641.987696759259,3,22,0 -python-geneimpacts,-1.80691346228606,0.450815657475691,-2.23874771638693,https://salsa.debian.org/med-team/python-geneimpacts, https://github.com/brentp/geneimpacts/issues/new,2746.3319791666668,2,17,0 -python-genty,-1.53124160455144,1.7202436983609,-2.37926007821001,https://salsa.debian.org/python-team/packages/python-genty, https://github.com/box/genty.git,701.8032986111111,0,10,0 -python-geopandas,-0.66094337640551,-0.487064149038925,-0.691641121812822,https://salsa.debian.org/debian-gis-team/python-geopandas/, https://github.com/geopandas/geopandas.git,3819.1359490740742,199,32,0 -python-gevent,0.70965474667003,1.53222882813719,0.258213650741178,https://salsa.debian.org/python-team/packages/python-gevent, https://github.com/gevent/gevent,5272.767025462963,35,88,1 -python-gflags,0.454129366072883,2.95555564853016,-0.202836104536003,https://salsa.debian.org/python-team/packages/python-gflags, https://github.com/google/python-gflags.git,2858.4975,15,8,0 -python-git,0.0867696760451449,0.836528038203148,-0.217541620106696,https://salsa.debian.org/python-team/packages/python-git, https://github.com/gitpython-developers/GitPython,5697.556736111111,130,209,0 -python-gitdb,-0.0108595084789796,1.21489590869819,-0.300716932513031,https://salsa.debian.org/python-team/packages/python-gitdb, https://github.com/gitpython-developers/gitdb,4929.933865740741,7,31,0 -python-gitlab,0.220589704011694,1.52429893960614,-0.205214686101085,https://salsa.debian.org/debian/python-pygitlab, https://github.com/python-gitlab/python-gitlab.git,3961.1241087962962,129,178,0 -python-glad,-1.34572723088456,1.09346774896223,-1.90153790813123,https://salsa.debian.org/python-team/packages/glad, https://github.com/Dav1dde/glad.git,3530.1536458333335,54,19,0 -python-gnupg,0.345891721396036,1.22086991696978,-0.0500617939527759,https://salsa.debian.org/python-team/packages/python-gnupg, https://github.com/vsajip/python-gnupg.git,3594.986377314815,6,12,0 -python-gnuplotlib,-0.554072309553074,1.99117745433607,-1.12257676230352,https://salsa.debian.org/python-team/packages/python-gnuplotlib, https://github.com/dkogan/gnuplotlib,3062.559849537037,1,2,0 -python-graphviz,-0.277526739497775,1.28892534990688,-0.650341505726255,https://salsa.debian.org/python-team/packages/python-graphviz, https://github.com/xflr6/graphviz,3612.6320833333334,12,12,0 -python-greenlet,0.804761684310871,1.70610494232945,0.307046293468067,https://salsa.debian.org/python-team/packages/python-greenlet, https://github.com/python-greenlet/greenlet,5315.652916666667,21,53,1 -python-gssapi,0.328917976545445,2.35502552233121,-0.250048562660633,https://salsa.debian.org/python-team/packages/python-gssapi, https://github.com/pythongssapi/python-gssapi,3263.0338078703703,18,17,0 -python-h11,0.0628463609475429,2.52989033051234,-0.396624862666718,https://salsa.debian.org/python-team/packages/python-h11, https://github.com/python-hyper/h11.git,2700.4708217592593,21,14,0 -python-h2,0.0758698470358524,2.17577156867807,-0.386796853331546,https://salsa.debian.org/python-team/packages/python-h2, https://github.com/python-hyper/hyper-h2,2777.089699074074,14,44,0 -python-h5netcdf,-0.551293014490307,1.35422797028967,-1.09111996760164,https://salsa.debian.org/science-team/python-h5netcdf, https://github.com/h5netcdf/h5netcdf.git,3169.913587962963,13,15,0 -python-hiredis,-0.312418511802299,1.27521108325703,-0.637769777281603,https://salsa.debian.org/python-team/packages/python-hiredis, https://github.com/redis/hiredis-py.git,4704.111354166666,26,23,0 -python-hl7,-0.762637824258724,0.998810639328154,-1.37292815400799,https://salsa.debian.org/med-team/python-hl7, https://github.com/johnpaulett/python-hl7.git,5098.842939814815,5,6,0 -python-hpack,-0.0884037207068469,1.41128914453522,-0.396626769055738,https://salsa.debian.org/debian/python-hpack, https://github.com/python-hyper/hpack,2246.0186689814814,9,22,0 -python-http-parser,0.155151774589016,3.18380891504713,-0.640356279887151,https://salsa.debian.org/python-team/packages/python-http-parser, https://github.com/benoitc/http-parser,3280.316724537037,14,48,2 -python-httplib2,0.522030133674165,1.52810048548846,0.118057712966429,https://salsa.debian.org/python-team/packages/python-httplib2, https://github.com/httplib2/httplib2.git,5422.7818402777775,50,36,0 -python-httptools,-1.01625723203708,1.52551903370403,-1.63068427305216,https://salsa.debian.org/python-team/packages/python-httptools, https://github.com/MagicStack/httptools.git,2908.9019444444443,11,7,0 -python-hug,-3.03973805631588,1.04039550324097,-4.50484302225035,https://salsa.debian.org/debian/python-hug, https://github.com/timothycrosley/hug.git,2905.4028935185183,23,104,0 -python-humanize,0.206016004968924,2.32118743308446,-0.279157364985436,https://salsa.debian.org/python-team/packages/python-humanize, https://github.com/jmoiron/humanize,3901.559085648148,11,59,0 -python-hupper,-0.481148407943983,1.32993114752913,-0.841903899936861,https://salsa.debian.org/python-team/packages/python-hupper, https://github.com/Pylons/hupper,2605.995127314815,4,15,0 -python-hyperframe,0.183494579463071,2.89676769623262,-0.381648875212278,https://salsa.debian.org/debian/python-hyperframe, https://github.com/python-hyper/hyperframe.git,2262.714363425926,4,18,0 -python-icalendar,0.295948699461385,2.08057828379208,-0.263005278532301,https://salsa.debian.org/python-team/packages/python-icalendar, https://github.com/collective/icalendar,5605.0292361111115,35,92,4 -python-icecream,-1.65888642003203,1.2045221039827,-2.41055135407439,https://salsa.debian.org/debian/python-icecream, https://github.com/gruns/icecream.git,1755.1249305555555,9,20,0 -python-idna,0.428827323048246,2.39987330079786,0.00232324407786042,https://salsa.debian.org/python-team/packages/python-idna, https://github.com/kjd/idna,3836.199386574074,12,16,2 -python-igraph,0.0376901785805634,1.31757167471136,-0.475589361953098,https://salsa.debian.org/python-team/packages/python-igraph, https://github.com/igraph/python-igraph,5787.093541666667,38,44,1 -python-ijson,-0.788249490701278,1.61835030318376,-1.34356782663573,https://salsa.debian.org/debian/python-ijson, https://github.com/ICRAR/ijson.git,4844.947118055556,7,21,0 -python-ilorest,-2.00009801063097,0.337848801444391,-2.47080554403403,https://salsa.debian.org/tijuca/python-ilorest, https://github.com/HewlettPackard/python-ilorest-library.git,1431.3361342592593,12,11,0 -python-imagesize,0.781267179885099,3.74389761248769,-0.0426186256974488,https://salsa.debian.org/python-team/packages/python-imagesize, https://github.com/shibukawa/imagesize_py,2343.1267013888887,9,9,0 -python-inflect,-0.830879998371281,1.37567925173832,-1.43639488329342,https://salsa.debian.org/python-team/packages/python-inflect, https://github.com/jazzband/inflect.git,4917.082638888889,24,37,0 -python-iniparse,0.605974173936543,3.1142228173649,-0.100886785208172,https://salsa.debian.org/debian/python-iniparse, https://github.com/candlepin/python-iniparse,5579.407858796297,6,8,0 -python-internetarchive,-1.21320060842117,-0.227281650263067,-1.37656063197664,https://salsa.debian.org/python-team/packages/python-internetarchive, https://github.com/jjjake/internetarchive.git,4122.965370370371,16,46,0 -python-intervaltree-bio,-0.586493194699912,1.66489915213559,-1.1805901393989,https://salsa.debian.org/med-team/python-intervaltree-bio, https://github.com/konstantint/intervaltree-bio.git,961.9282638888889,0,5,0 -python-ipaddr,0.64339331440059,3.29037394437381,-0.0419910302280833,https://salsa.debian.org/python-team/modules/python-ipaddr, https://github.com/google/ipaddr-py/issues/new,2746.3319791666668,2,17,0 -python-ipaddress,0.612359222288563,3.19476907445456,-0.000383901573778996,https://salsa.debian.org/python-team/modules/python-ipaddress, https://github.com/phihag/ipaddress,2728.476099537037,1,7,0 -python-ipcalc,0.714101630753056,3.4398389903968,-0.255334424029229,https://github.com/craneworks/python-ipcalc,https://github.com/craneworks/python-ipcalc,756.8280324074074,1,1,0 -python-iptables,-1.37689457924715,-0.162014500732828,-1.59722989569024,https://salsa.debian.org/python-team/packages/python-iptables, https://github.com/ldx/python-iptables,4469.236423611111,3,51,0 -python-isc-dhcp-leases,-1.21441646761482,1.37237535723133,-1.7887539721601,https://salsa.debian.org/python-team/packages/python-isc-dhcp-leases, https://github.com/MartijnBraam/python-isc-dhcp-leases,3184.8126041666665,4,9,0 -python-itsdangerous,0.664230281928525,3.21691892161099,-0.0415160476537955,https://salsa.debian.org/python-team/packages/python-itsdangerous, https://github.com/pallets/itsdangerous,4546.929143518519,24,19,0 -python-jellyfish,0.0674101011583406,2.00512768356655,-0.420586978721513,https://salsa.debian.org/python-team/packages/python-jellyfish, https://github.com/jamesturk/jellyfish,4902.330810185185,15,24,0 -python-jira,-0.398082993767482,2.42317658300511,-1.04112088611181,https://salsa.debian.org/python-team/packages/python-jira, https://github.com/pycontribs/jira,4267.40125,111,155,3 -python-jmespath,0.362917294912316,2.06866453618359,-0.100383442475757,https://salsa.debian.org/python-team/packages/python-jmespath, https://github.com/jmespath/jmespath.py,3691.1897222222224,12,21,0 -python-josepy,0.351351117869537,2.29239636367554,-0.0869215968716407,https://salsa.debian.org/letsencrypt-team/certbot/josepy, https://github.com/certbot/josepy,4184.784768518519,104,276,0 -python-jpype,0.457279260700748,2.28411150060572,-0.344621258497316,https://salsa.debian.org/python-team/packages/python-jpype, https://github.com/originell/jpype.git,4153.055034722222,18,58,0 -python-jsbeautifier,-0.0501142104899899,1.02716340311026,-0.337295234654721,https://salsa.debian.org/debian/python-jsbeautifier, https://github.com/beautify-web/js-beautify,5785.923796296296,72,206,3 -python-jsondiff,0.463437663857462,3.50946732987821,-0.347096198570886,https://salsa.debian.org/science-team/python-jsondiff, https://github.com/xlwings/jsondiff,2879.5310532407407,8,16,0 -python-jsonrpc,-1.03454449289022,1.89018329970566,-1.82477718457792,https://salsa.debian.org/python-team/packages/python-jsonrpc, https://github.com/pavlov99/json-rpc,3540.9974421296297,17,29,0 -python-junit-xml,-0.487438449471786,3.24615767639063,-1.45803042909391,https://salsa.debian.org/python-team/packages/python-junit-xml, https://github.com/kyrus/python-junit-xml.git,2595.0297685185187,5,18,0 -python-kajiki,-2.35949509123373,-1.22994343139478,-2.61591574823484,https://salsa.debian.org/python-team/packages/python-kajiki, https://github.com/jackrosenthal/kajiki,4546.966851851852,3,22,0 -python-kaptan,-0.2383613889856,2.39640255249308,-0.806370710390245,https://salsa.debian.org/debian/python-kaptan, https://github.com/emre/kaptan.git,3814.6996064814816,6,17,0 -python-keyring,0.278565741436565,0.86366080349106,0.0171233745132368,https://salsa.debian.org/python-team/packages/python-keyring, https://github.com/jaraco/keyring,5290.913148148148,34,102,0 -python-langdetect,-0.358621578481637,1.81810975299951,-0.796341757795692,https://salsa.debian.org/python-team/packages/python-langdetect, https://github.com/Mimino666/langdetect,2551.662488425926,2,11,0 -python-latexcodec,0.0827349547035988,1.88136424198425,-0.356864006660853,https://salsa.debian.org/python-team/packages/python-latexcodec, https://github.com/mcmtroffaes/latexcodec,3743.919965277778,5,9,0 -python-ldap,0.379015434907038,0.881069108321109,0.0976923958854744,https://salsa.debian.org/python-team/packages/python-ldap, https://github.com/python-ldap/python-ldap,5723.200011574074,28,15,3 -python-ldap3,-0.0100929821792605,0.903699867468443,-0.252221820728459,https://salsa.debian.org/python-team/packages/python-ldap3, https://github.com/cannatag/ldap3,3120.5291435185186,36,78,1 -python-levenshtein,0.478340127269014,1.97183499968665,-0.0580315974395737,https://salsa.debian.org/python-team/packages/python-levenshtein, https://github.com/maxbachmann/python-Levenshtein,378.9515509259259,1,2,0 -python-libarchive-c,0.208435529259664,1.88649211662683,-0.301184940168063,https://salsa.debian.org/debian/python-libarchive-c, https://github.com/Changaco/python-libarchive-c.git,3365.1853587962964,15,18,0 -python-libdiscid,0.0391061082183303,1.61241328517297,-0.245844028624214,https://salsa.debian.org/multimedia-team/python-libdiscid, https://github.com/sebastinas/python-libdiscid.git,3900.179664351852,3,5,0 -python-libnacl,-0.574852514219853,1.05507549596557,-0.994477169229135,https://salsa.debian.org/python-team/packages/python-libnacl, https://github.com/saltstack/libnacl.git,3360.854479166667,4,45,0 -python-librtmp,0.131603385368324,2.93701148551824,-0.638817933748588,https://github.com/breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian,409.9315625,0,1,0 -python-libusb1,0.226546258639299,3.57352952412115,-0.691131387277055,https://salsa.debian.org/python-team/packages/python-libusb1, https://github.com/vpelletier/python-libusb1.git,5022.308206018519,13,14,0 -python-limits,-1.80991789156189,1.1597434478098,-2.66175411724093,https://salsa.debian.org/python-team/packages/python-limits, https://github.com/alisaifee/limits.git,3594.351041666667,8,20,0 -python-line-profiler,-0.171840946989225,2.57842674496517,-0.918337546009102,https://salsa.debian.org/python-team/packages/python-line-profiler, https://github.com/pyutils/line_profiler,5567.713310185185,22,30,0 -python-livereload,0.107629861462521,1.59693242173507,-0.353457889372476,https://salsa.debian.org/debian/python-livereload, https://github.com/lepture/python-livereload,4103.893969907407,16,51,1 -python-llfuse,0.419862830066885,1.27033335940079,0.0164187330742263,https://salsa.debian.org/python-team/packages/python-llfuse, https://github.com/python-llfuse/python-llfuse.git,4733.746342592593,11,9,0 -python-louvain,-2.26857793652823,1.49624956815603,-3.43397611373349,https://salsa.debian.org/python-team/packages/python-louvain, https://github.com/taynaud/python-louvain/issues/new,2746.3319791666668,2,17,0 -python-ltfatpy,-1.20895778616826,0.861108571738543,-2.0258126972016,https://salsa.debian.org/science-team/python-ltfatpy, https://gitlab.lis-lab.fr/dev/ltfatpy,1082.880150462963,0,5,0 -python-lti,-1.90835919350364,0.69954791219436,-2.57019941298813,https://salsa.debian.org/python-team/packages/python-lti, https://github.com/pylti/lti.git,2862.783125,11,19,0 -python-lupa,-0.954137149067827,2.14983595509208,-1.89504130086398,https://salsa.debian.org/python-team/packages/python-lupa, https://github.com/scoder/lupa,4904.859849537037,9,18,1 -python-lz4,0.282818911283454,1.80163047521988,-0.113842054778576,https://salsa.debian.org/python-team/packages/python-lz4, https://github.com/python-lz4/python-lz4.git,3988.215625,8,43,0 -python-lzo,0.645785242229208,3.62469176847773,-0.178816482313752,https://salsa.debian.org/python-team/packages/python-lzo, https://github.com/jd-boyd/python-lzo,4282.078425925926,2,13,0 -python-macholib,-0.206576166886516,2.1953061241244,-0.642201103391397,https://salsa.debian.org/python-team/packages/python-macholib, https://github.com/ronaldoussoren/macholib,5321.569525462963,1,18,0 -python-magcode-core,-0.779498833646851,2.22540891243802,-1.70932232165662,https://github.com/grantma/py-magcode-core,https://github.com/grantma/py-magcode-core,2649.7967939814816,0,2,0 -python-mapnik,-0.229461019965688,0.354970322404647,-0.441137684981998,https://salsa.debian.org/debian-gis-team/python-mapnik, https://github.com/mapnik/python-mapnik.git,5494.878263888889,10,101,0 -python-markdown,-0.0672775300791168,0.0633658208868313,-0.111548497257213,https://salsa.debian.org/python-team/packages/python-markdown, https://github.com/Python-Markdown/markdown,5779.595196759259,101,82,0 -python-marshmallow,0.280160423380288,2.65520290484793,-0.168190043738511,https://salsa.debian.org/debian/python-marshmallow, https://github.com/marshmallow-code/marshmallow.git,3679.1383217592593,70,160,0 -python-mastodon,-1.11482774852584,1.55689788434249,-1.66834994513281,https://salsa.debian.org/python-team/packages/mastodon, https://github.com/halcy/Mastodon.py.git,2403.054849537037,22,55,0 -python-matplotlib-venn,-0.684422187607105,-0.0349680618328951,-0.831899415629914,https://salsa.debian.org/python-team/packages/python-matplotlib-venn, https://github.com/konstantint/matplotlib-venn/issues/new,2746.3319791666668,2,17,0 -python-maxminddb,-0.0144317935871619,2.09699897129633,-0.607055131399089,https://salsa.debian.org/debian/python-maxminddb, https://github.com/maxmind/MaxMind-DB-Reader-python,3808.3984953703703,17,18,0 -python-measurement,-1.3916124319226,1.26850387586932,-1.96155033515476,https://salsa.debian.org/python-team/packages/python-measurement, https://github.com/coddingtonbear/python-measurement,3798.2584953703704,10,14,0 -python-mechanicalsoup,-0.513942798071719,1.65462619837529,-1.00996758966548,https://salsa.debian.org/python-team/packages/python-mechanicalsoup, https://github.com/hickford/MechanicalSoup,3488.7486574074073,39,28,0 -python-mechanize,0.558711844569591,1.52968011652335,0.109854317233808,https://salsa.debian.org/python-team/packages/python-mechanize, https://github.com/python-mechanize/mechanize.git,5735.6054513888885,5,12,0 -python-meld3,1.48080081615434,4.17117382179871,0.410052973838213,https://salsa.debian.org/python-team/packages/python-meld3, https://github.com/supervisor/meld3.git,4279.117650462963,0,8,0 -python-memoize,-1.68771525590022,1.12030384879276,-2.40790936417297,https://salsa.debian.org/debian/python-memoize, https://github.com/mikeboers/PyMemoize,4629.862638888889,2,6,0 -python-memprof,-1.00554086528806,0.619577111707738,-1.55950990604571,https://salsa.debian.org/python-team/packages/python-memprof, https://github.com/jmdana/memprof,2110.1480324074073,1,8,0 -python-midiutil,-0.45505193332883,2.09705788140006,-0.976010502748539,https://salsa.debian.org/multimedia-team/python-midiutil, https://github.com/MarkCWirt/MIDIUtil.git,532.2564583333333,2,4,0 -python-miio,-2.45351322179174,0.0572909826930906,-2.9975615852581,https://salsa.debian.org/python-team/packages/miio, https://github.com/rytilahti/python-miio.git,2467.253923611111,163,5,0 -python-mimeparse,0.63508767896753,2.36354127467912,-0.0635295991229227,https://salsa.debian.org/python-team/modules/python-mimeparse, https://github.com/dbtsai/python-mimeparse.git,3368.87212962963,9,11,0 -python-mkdocs,-0.206854327245779,0.593650433501936,-0.443546949241705,https://salsa.debian.org/python-team/packages/python-mkdocs, https://github.com/mkdocs/mkdocs,3625.5789583333335,175,93,2 -python-mne,-0.375564835866397,0.875025555902773,-0.908143820680713,https://salsa.debian.org/med-team/python-mne, https://github.com/mne-tools/mne-python.git,4735.847685185186,278,90,0 -python-mnemonic,-0.498152649364247,2.41643179384223,-1.27887448585447,https://salsa.debian.org/python-team/packages/python-mnemonic, https://github.com/trezor/python-mnemonic,3828.3236689814817,21,13,0 -python-mock,0.165979302419957,0.744540067878074,-0.0468504603130108,https://salsa.debian.org/python-team/packages/python-mock, https://github.com/testing-cabal/mock,4146.630486111111,84,22,0 -python-molotov,-2.88276850245155,-0.980473075631627,-3.30813935868335,https://salsa.debian.org/python-team/packages/python-molotov, https://github.com/loads/molotov.git,3129.6588194444444,9,11,0 -python-mongoengine,-0.83304126573698,0.56832052442789,-1.38614174278711,https://salsa.debian.org/python-team/packages/python-mongoengine, https://github.com/mongoengine/mongoengine,5135.691296296296,78,361,4 -python-motor,-1.69055796538963,-0.111623697187181,-2.11723664098807,https://salsa.debian.org/python-team/packages/python-motor, https://github.com/mongodb/motor,3986.9431365740743,28,30,0 -python-mox,-0.42399110071693,2.12147344904068,-1.1839102651754,https://salsa.debian.org/debian/python-mox, https://github.com/ivancrneto/pymox,3025.516585648148,3,7,0 -python-mpd,-0.299073824682979,0.326678634389276,-0.42839288320167,https://salsa.debian.org/mpd-team/python-mpd, https://github.com/Mic92/python-mpd2,5765.543414351851,16,38,0 -python-mplexporter,-0.146420838933211,2.30643251806206,-0.918894410555408,https://salsa.debian.org/python-team/packages/python-mplexporter, https://github.com/mpld3/mplexporter,3220.593252314815,4,24,0 -python-msrest,-0.244920077858544,1.96106948508248,-0.893970472591744,https://salsa.debian.org/python-team/packages/python-msrest, https://github.com/Azure/msrest-for-python,2450.3254398148147,22,11,0 -python-msrestazure,0.0746756553809776,2.51997986824981,-0.762917119539823,https://salsa.debian.org/python-team/packages/python-msrestazure, https://github.com/Azure/msrestazure-for-python,2351.9969097222224,13,9,1 -python-multidict,0.479208549500178,3.12807590463098,-0.199532776277039,https://salsa.debian.org/python-team/packages/python-multidict, https://github.com/aio-libs/multidict.git,2868.3713194444445,43,8,0 -python-multipletau,-0.698793350853376,0.580682166099663,-0.952694230547463,https://salsa.debian.org/python-team/packages/python-multipletau, https://github.com/FCS-analysis/multipletau,3692.0178935185186,2,10,0 -python-munch,-0.246501339414158,0.598382084242946,-0.418050250509477,https://salsa.debian.org/python-team/packages/python-munch, https://github.com/Infinidat/munch.git,4904.2753125,6,26,0 -python-murmurhash,-0.58127674801198,1.75990723485695,-1.19189657790225,https://salsa.debian.org/python-team/packages/python-murmurhash, https://github.com/explosion/murmurhash,3382.167962962963,3,8,0 -python-mysqldb,0.436295905512352,0.861066234678428,0.179430934603889,https://salsa.debian.org/python-team/packages/python-mysqldb, https://github.com/PyMySQL/mysqlclient,5425.159363425926,54,38,1 -python-nacl,0.319402514296116,1.55808521965487,-0.0692227420611375,https://salsa.debian.org/python-team/packages/python-nacl, https://github.com/pyca/pynacl,3948.360462962963,44,26,1 -python-nameparser,-2.01236674816199,0.149903807220532,-2.47599140907381,https://salsa.debian.org/python-team/packages/python-nameparser, https://github.com/derek73/python-nameparser,4612.10912037037,9,18,1 -python-nest-asyncio,-3.32200877430784,0.265201322413396,-4.24298274039074,https://salsa.debian.org/python-team/packages/python-nest-asyncio, https://github.com/erdewit/nest_asyncio,1907.244074074074,4,10,0 -python-netaddr,0.0168867872693013,0.327224619050915,-0.100935347206142,https://salsa.debian.org/python-team/packages/python-netaddr, https://github.com/netaddr/netaddr/issues/new,2746.3319791666668,2,17,0 -python-netfilter,-1.08310976523274,1.38196587053344,-1.63548798026612,https://salsa.debian.org/python-team/modules/python-netfilter, https://github.com/jlaine/python-netfilter.git,1238.4928935185185,0,1,0 -python-netsyslog,-3.06992829438534,-0.740837479176508,-3.69315077090514,https://github.com/dpocock/python-netsyslog,https://github.com/dpocock/python-netsyslog,1856.5705092592593,0,2,0 -python-networkmanager,-0.329474073750244,1.47315347316823,-0.954369939916451,https://salsa.debian.org/python-team/packages/python-networkmanager, https://github.com/seveas/python-networkmanager,4090.319675925926,12,3,0 -python-neuroshare,-1.42361732199392,1.76808972514215,-2.45296799073677,http://github.com/G-Node/python-neuroshare,http://github.com/G-Node/python-neuroshare,2028.2039583333333,0,10,1 -python-nine,-0.878473290743389,1.57494000575467,-1.43568582097605,https://salsa.debian.org/python-team/packages/python-nine, https://github.com/nandoflorestan/nine,2401.457627314815,0,3,0 -python-noise,-3.72258433828724,-1.09656757088233,-4.31836753726866,https://salsa.debian.org/python-team/packages/python-noise, https://github.com/caseman/noise.git,2101.5036111111112,1,8,0 -python-nose-random,-2.00635313840334,0.327071205424812,-2.47233597734095,https://salsa.debian.org/science-team/python-nose-random, https://github.com/fzumstein/nose-random,352.6133101851852,0,1,0 -python-numpysane,-0.426753720380055,1.99735017173568,-0.990334351077537,https://salsa.debian.org/python-team/packages/python-numpysane, https://github.com/dkogan/numpysane,2696.1738194444442,0,2,0 -python-oauthlib,0.388434485358995,2.23645148245914,-0.0809544138768979,https://salsa.debian.org/python-team/packages/python-oauthlib, https://github.com/oauthlib/oauthlib,4357.275405092592,51,167,2 -python-odf,-0.175261364398955,1.26653293995985,-0.467857181804133,https://salsa.debian.org/python-team/packages/python-odf, https://github.com/eea/odfpy,4744.619375,6,27,0 -python-ofxclient,-0.470102582055492,2.15093353115901,-1.37870903178206,https://salsa.debian.org/python-team/packages/python-ofxclient, https://github.com/captin411/ofxclient,2154.9641203703704,2,13,0 -python-opcua,-0.97328830284469,0.815420320297958,-1.59838933545828,https://salsa.debian.org/python-team/modules/python-opcua, https://github.com/FreeOpcUa/python-opcua,2848.7678356481483,95,42,1 -python-osmapi,-0.352056618498373,1.84498408927228,-0.782152601269039,https://salsa.debian.org/debian-gis-team/python-osmapi, https://github.com/metaodi/osmapi.git,3568.77837962963,2,9,0 -python-padme,-0.807368858178929,2.18164851479759,-1.67722938704724,https://salsa.debian.org/python-team/packages/python-padme, https://github.com/zyga/padme,2875.002002314815,1,3,1 -python-paho-mqtt,-0.26385690320408,1.51784573778608,-0.63787308457193,https://salsa.debian.org/debian/python-paho-mqtt, https://github.com/eclipse/paho.mqtt.python.git,3273.1238194444445,17,55,0 -python-pampy,0.71946616188643,3.50926077559847,-0.0318286678033109,https://salsa.debian.org/python-team/packages/python-pampy, https://github.com/FirefighterBlu3/python-pam,2926.939490740741,2,10,0 -python-pandocfilters,0.432577173151416,2.97316489046529,-0.143677411686562,https://salsa.debian.org/python-team/packages/python-pandocfilters, https://github.com/jgm/pandocfilters,2924.061574074074,12,31,0 -python-parameterized,-0.0852476015951315,1.76346291587788,-0.473518930684393,https://salsa.debian.org/python-team/packages/python-parameterized, https://github.com/wolever/parameterized,4033.873125,6,29,0 -python-parse-type,-0.776689478455188,2.26573233056321,-1.60274719565093,https://salsa.debian.org/python-team/packages/python-parse-type, https://github.com/jenisys/parse_type,3544.3490162037037,0,4,0 -python-parsel,-0.278234835572803,2.32999698941616,-0.89537098376737,https://salsa.debian.org/python-team/packages/python-parsel, https://github.com/scrapy/parsel,5267.123240740741,16,49,0 -python-pathlib2,0.611836024293645,3.06985796780747,-0.0318203311642199,https://salsa.debian.org/python-team/packages/python-pathlib2, https://github.com/mcmtroffaes/pathlib2.git,4260.398194444444,8,12,0 -python-pbcommand,-0.560074431295294,1.38129287745035,-1.12293844781845,https://salsa.debian.org/med-team/python-pbcommand, https://github.com/PacificBiosciences/pbcommand,3024.5842592592594,0,28,1 -python-pbcore,-0.465250971692481,1.03081850291822,-0.971268367521537,https://salsa.debian.org/med-team/python-pbcore, https://github.com/PacificBiosciences/pbcore,4123.129305555555,2,42,0 -python-pcl,-2.48956573632986,-0.89963330295256,-2.79241451066553,https://salsa.debian.org/python-team/packages/python-pcl, https://github.com/strawlab/python-pcl/issues/new,2746.3319791666668,2,17,0 -python-periodictable,-1.06151881889309,0.0399913751431181,-1.34030530261269,https://salsa.debian.org/science-team/python-periodictable, https://github.com/pkienzle/periodictable.git,5457.176412037037,0,18,0 -python-pex,-0.747626762092592,1.46516914222358,-1.66854309907451,https://salsa.debian.org/python-team/packages/python-pex, https://github.com/pantsbuild/pex.git,3433.3294212962965,95,47,0 -python-pgpdump,-0.18793786024917,2.3259223776566,-0.770753980416854,https://salsa.debian.org/python-team/packages/python-pgpdump, https://github.com/toofishes/python-pgpdump,826.8067129629629,5,2,0 -python-pgpy,-0.243020190519095,2.40590682218298,-1.19788911397901,https://salsa.debian.org/debian/pgpy, https://github.com/SecurityInnovation/PGPy,3246.991145833333,11,33,2 -python-pgspecial,0.383068452251751,3.03336721267783,-0.389789037831525,https://salsa.debian.org/python-team/packages/python-pgspecial, https://github.com/dbcli/pgspecial,2959.9866319444445,21,33,0 -python-phply,-0.0136994366346983,0.838619626869934,-0.214614112499995,https://salsa.debian.org/debian/python-phply, https://github.com/viraptor/phply.git,4545.328414351852,2,13,0 -python-picklable-itertools,-1.90178551551163,0.0686564891464398,-2.33999489579228,https://salsa.debian.org/python-team/packages/python-picklable-itertools, https://github.com/mila-iqia/picklable-itertools,176.1980324074074,0,5,0 -python-pika,0.619444295085411,2.79202479295092,-0.129529118572213,https://salsa.debian.org/python-team/packages/python-pika, https://github.com/pika/pika,5099.34380787037,52,181,1 -python-pint,-0.375436392158228,0.782443512516086,-0.728136332918672,https://salsa.debian.org/python-team/packages/python-pint, https://github.com/hgrecco/pint.git,4238.009953703704,64,177,0 -python-pipx,-0.311004664705864,1.15330421344091,-0.697527614906146,https://salsa.debian.org/python-team/packages/python-pipx, https://github.com/pypa/pipx.git,1893.5339814814815,113,19,0 -python-pkgconfig,0.158913783243231,2.43014435448495,-0.323957092475887,https://salsa.debian.org/python-team/packages/python-pkgconfig, https://github.com/matze/pkgconfig,2902.3845370370373,4,12,0 -python-plaster,-0.28046488532538,2.12671527314619,-0.830604831317031,https://salsa.debian.org/python-team/packages/python-plaster, https://github.com/pylons/plaster,2744.118136574074,7,5,0 -python-plaster-pastedeploy,-0.297532929904677,2.16739236372152,-0.838126274262991,https://salsa.debian.org/python-team/packages/python-plaster-pastedeploy, https://github.com/Pylons/plaster_pastedeploy.git,2741.5056365740743,4,5,0 -python-pluggy,0.256286026666276,1.7890977354524,-0.125032483470679,https://salsa.debian.org/python-team/packages/python-pluggy, https://github.com/pytest-dev/pluggy,3135.2442708333333,14,48,1 -python-pluginbase,-0.281288105677501,2.05902343817203,-0.755162297381444,https://salsa.debian.org/python-team/packages/python-pluginbase, https://github.com/mitsuhiko/pluginbase.git,2511.8068518518517,1,9,0 -python-pomegranate,-1.44702284359736,1.28516582636033,-2.17526488134471,https://salsa.debian.org/python-team/packages/python-pomegranate, https://github.com/jmschrei/pomegranate.git,3275.6750347222223,56,26,0 -python-popcon,-0.233533172692655,2.01834476808691,-1.10989243947417,https://github.com/venthur/python-popcon,https://github.com/venthur/python-popcon,4753.601365740741,3,5,0 -python-poppler-qt5,0.120227608181113,2.36806867916472,-0.307671387096747,https://salsa.debian.org/python-team/packages/python-poppler-qt5, https://github.com/frescobaldi/python-poppler-qt5,3161.795023148148,7,7,1 -python-portpicker,-0.837808490409931,1.85984811558886,-1.55217004389884,https://salsa.debian.org/debian/python-portpicker, https://github.com/google/python_portpicker,3069.126921296296,11,7,0 -python-potr,-0.0437206443273251,2.06552258562387,-0.649967564210067,https://salsa.debian.org/python-team/packages/python-potr, https://github.com/python-otr/pure-python-otr,3956.961863425926,0,15,3 -python-pretend,-0.70611645616128,2.31978236912502,-1.54656086123652,https://salsa.debian.org/python-team/packages/python-pretend, https://github.com/alex/pretend,3941.0314351851853,2,9,0 -python-progressbar,0.375928112638566,2.28927458164417,-0.10832906736111,https://salsa.debian.org/python-team/packages/python-progressbar, https://github.com/niltonvolpato/python-progressbar,3503.7755555555555,3,12,0 -python-prometheus-client,0.416411459944807,2.83689511624161,-0.159342032561577,https://salsa.debian.org/debian/python-prometheus-client, https://github.com/prometheus/client_python.git,3206.0685995370372,103,56,0 -python-protobix,-3.1476883564443,-0.737272162144816,-3.7253868496053,https://salsa.debian.org/python-team/packages/python-protobix, https://github.com/jbfavre/python-protobix,3133.4746064814813,0,14,1 -python-psutil,0.468612268761907,1.31623596780984,0.0838678536890554,https://salsa.debian.org/python-team/packages/python-psutil, https://github.com/giampaolo/psutil,5698.358946759259,140,75,0 -python-pulp,0.182500411245243,2.27684155817235,-0.324952232261522,https://salsa.debian.org/math-team/python-pulp, https://github.com/coin-or/pulp/issues/new,2746.3319791666668,2,17,0 -python-pweave,0.197417767147146,3.62156992562426,-0.817514701813823,https://salsa.debian.org/science-team/python-pweave, https://github.com/mpastell/Pweave/issues/new,2746.3319791666668,2,17,0 -python-py,0.0593692319587536,0.73028364360616,-0.127166588245061,https://salsa.debian.org/python-team/packages/python-py, https://github.com/pytest-dev/py.git,5610.114583333333,12,76,0 -python-py-zipkin,-0.749831772430786,1.66372016233673,-1.27858003886142,https://salsa.debian.org/python-team/packages/python-py-zipkin, https://github.com/Yelp/py_zipkin,2422.062048611111,16,29,1 -python-pyasn1-modules,0.880366492732551,3.44639951931467,0.0828398688507482,https://salsa.debian.org/python-team/packages/python-pyasn1-modules, https://github.com/etingof/pyasn1-modules.git,3319.6793171296295,3,11,0 -python-pybadges,-3.41889357670687,0.0271868395953201,-4.27670065562116,https://salsa.debian.org/python-team/packages/python-pybadges, https://github.com/google/pybadges.git,1932.0270833333334,2,14,0 -python-pyelftools,-0.159782903870593,0.952114214528198,-0.436867136215813,https://salsa.debian.org/debian/python-pyelftools, https://github.com/eliben/pyelftools.git,4475.251006944444,75,34,0 -python-pyface,0.936898293333305,3.39999945393362,0.0564449455141333,https://salsa.debian.org/python-team/packages/python-pyface, https://github.com/enthought/pyface,5535.636747685186,22,107,3 -python-pyftpdlib,-0.102896997295476,1.62718061385509,-0.706994831825187,https://salsa.debian.org/python-team/packages/python-pyftpdlib, https://github.com/giampaolo/pyftpdlib,5695.260231481481,16,22,1 -python-pygit2,-0.348839726042577,0.303743831222961,-0.621765830461774,https://salsa.debian.org/python-team/packages/python-pygit2, https://github.com/libgit2/pygit2,4313.821770833333,22,199,0 -python-pygraphviz,0.25452610565649,0.97027578279225,-0.0604229060009558,https://salsa.debian.org/python-team/packages/python-pygraphviz, https://github.com/pygraphviz/pygraphviz.git,579.6782754629629,21,35,0 -python-pykka,-0.128480958414865,1.40113639421173,-0.446569578796732,https://salsa.debian.org/python-team/packages/python-pykka, https://github.com/jodal/pykka.git,4770.5155092592595,5,9,0 -python-pyld,-1.1864691928245,0.855480737337874,-1.61991395432354,https://salsa.debian.org/python-team/packages/python-pyld, https://github.com/digitalbazaar/pyld,4498.300578703704,14,14,1 -python-pylibacl,0.131528837376331,1.00713150206336,-0.132374615279565,https://salsa.debian.org/debian/python-pylibacl, https://github.com/iustin/pylibacl,5414.658530092593,1,3,0 -python-pymeasure,-0.0345798255187834,2.66268446904302,-0.706670141846425,https://salsa.debian.org/science-team/python-pymeasure, https://github.com/ralph-group/pymeasure/issues/new,2746.3319791666668,2,17,0 -python-pynvim,0.179326212374558,2.01672596738411,-0.201491360332055,https://salsa.debian.org/python-team/packages/python-pynvim, https://github.com/neovim/pynvim,3504.5291782407407,26,35,0 -python-pyotp,-0.193648646264953,2.04392972704636,-0.774418029770972,https://salsa.debian.org/python-team/packages/python-pyotp, https://github.com/pyauth/pyotp.git,4631.612546296296,26,20,0 -python-pyperclip,0.520944025034176,2.1523556395884,-0.0782247034932544,https://salsa.debian.org/sramacher/python-pyperclip, https://github.com/asweigart/pyperclip,3772.0925925925926,7,31,0 -python-pyproj,-0.181404738604309,0.246170896887329,-0.257617837745339,https://salsa.debian.org/debian-gis-team/python-pyproj, https://github.com/pyproj4/pyproj.git,5681.238923611111,30,46,0 -python-pypubsub,-1.76374394900707,-0.0682506450035831,-2.06770927053707,https://salsa.debian.org/python-team/packages/python-pypubsub, https://github.com/schollii/pypubsub,1788.0433680555554,4,5,0 -python-pypump,-1.95077230562065,0.332799268189091,-2.56602633210496,https://salsa.debian.org/python-team/packages/python-pypump, https://github.com/xray7224/PyPump,1973.6342824074075,0,28,2 -python-pyqrcode,0.356900356562613,2.94209030158286,-0.219337592691645,https://salsa.debian.org/debian/python-pyqrcode, https://github.com/mnooner256/pyqrcode.git,1108.5763078703703,0,8,0 -python-pyqtgraph,0.564161547918785,2.40518051592864,-0.0614102206070495,https://salsa.debian.org/science-team/python-pyqtgraph, https://github.com/pyqtgraph/pyqtgraph.git,4007.3308217592594,135,173,0 -python-pyramid-chameleon,-3.39014661132606,-0.280976693069101,-4.23557657958116,https://salsa.debian.org/python-team/packages/python-pyramid-chameleon, https://github.com/Pylons/pyramid_chameleon,4187.212569444445,2,17,0 -python-pyramid-multiauth,-1.93412403144625,0.310005171658109,-2.44803837524133,https://github.com/douardda/pyramid_multiauth,https://github.com/douardda/pyramid_multiauth,1636.4991203703703,0,10,0 -python-pysnmp4,0.629628888355477,1.94660897155429,0.0848638325098878,https://salsa.debian.org/python-team/packages/python-pysnmp4, https://github.com/etingof/pysnmp,4346.811122685185,17,11,0 -python-pytest-cov,-0.274329715721621,1.00064958248065,-0.568640203749361,https://salsa.debian.org/debian/python-pytest-cov, https://github.com/pytest-dev/pytest-cov.git,4778.227233796296,51,45,0 -python-pytest-timeout,-0.875200020298561,0.847476855607275,-1.34224800734632,https://salsa.debian.org/python-team/packages/python-pytest-timeout, https://github.com/pytest-dev/pytest-timeout.git,4316.861435185185,24,17,0 -python-pyvmomi,-0.723189628235737,1.809842223502,-1.2788411961645,https://salsa.debian.org/python-team/packages/python-pyvmomi, https://github.com/vmware/pyvmomi,3625.683252314815,15,50,1 -python-pywebview,-1.31751976724405,1.12206991269327,-1.80202998207921,https://salsa.debian.org/python-team/packages/python-pywebview, https://github.com/r0x0r/pywebview,3307.0006597222223,61,74,0 -python-qrcode,0.276571432870141,1.79750466921465,-0.157682766587389,https://salsa.debian.org/python-team/packages/python-qrcode, https://github.com/lincolnloop/python-qrcode.git,4693.745821759259,11,50,0 -python-qrencode,0.00342686039898448,1.69508098326997,-0.479407408878227,https://salsa.debian.org/debian/python-qrencode, https://github.com/Arachnid/pyqrencode.git,3791.5353703703704,0,6,0 -python-qtawesome,0.262776649004584,1.88814929085951,-0.173644890258093,https://salsa.debian.org/python-team/packages/python-qtawesome, https://github.com/spyder-ide/qtawesome,3206.9787152777776,8,29,3 -python-qtpy,0.349197408220288,2.22946766179484,-0.143511416505235,https://salsa.debian.org/python-team/packages/python-qtpy, https://github.com/spyder-ide/qtpy,3201.4270949074075,20,62,3 -python-quantities,-0.0106025797817292,1.95801217663616,-0.690445939035525,https://salsa.debian.org/science-team/python-quantities, https://github.com/python-quantities/python-quantities.git,5020.663506944445,7,39,0 -python-qwt,0.593384145702343,3.63014883532243,-0.409777982820568,https://salsa.debian.org/science-team/python-qwt, https://github.com/PierreRaybaut/PythonQwt.git,1193.9426967592592,2,6,0 -python-rarfile,0.202492776710485,3.09614649938541,-0.586130322896287,https://salsa.debian.org/python-team/packages/python-rarfile, https://github.com/markokr/rarfile.git,5495.9042361111115,8,13,0 -python-ratelimiter,-0.171495457684264,2.60726329369438,-0.926691348490788,https://salsa.debian.org/python-team/packages/python-ratelimiter, https://github.com/RazerM/ratelimiter,1781.4938425925925,1,5,0 -python-rdflib-jsonld,-0.0904254944853858,1.66426854494379,-0.495674447589734,https://salsa.debian.org/python-team/packages/python-rdflib-jsonld, https://github.com/RDFLib/rdflib-jsonld,3605.0071180555556,4,18,0 -python-readme-renderer,-0.145668152779673,2.20763148299204,-0.583121517237032,https://salsa.debian.org/python-team/packages/python-readme-renderer, https://github.com/pypa/readme_renderer,3479.9030902777777,12,22,0 -python-rebulk,-0.199957442626573,2.09078115484313,-0.827926769967044,https://salsa.debian.org/python-team/packages/python-rebulk, https://github.com/Toilal/rebulk,3019.412083333333,1,7,2 -python-redmine,-1.520100880823,-0.776043432546921,-1.66029732550549,https://salsa.debian.org/debian/python-redmine, https://github.com/maxtepkeev/python-redmine.git,3326.318460648148,3,20,0 -python-regex,0.398132201054226,1.63816846227759,-0.0293183036902132,https://salsa.debian.org/python-team/packages/python-regex, https://github.com/mrabarnett/mrab-regex,4659.5763425925925,1,10,0 -python-releases,-1.91185739418786,-0.0482016172746844,-2.42474926732471,https://salsa.debian.org/python-team/packages/python-releases, https://github.com/bitprophet/releases.git,3728.633414351852,2,9,0 -python-rencode,0.372370761725989,3.00606925555497,-0.203905085747617,https://salsa.debian.org/debian/python-rencode, https://github.com/aresch/rencode.git,4103.173449074074,4,4,0 -python-repoze.sphinx.autointerface,-1.33677679024419,1.51292073187974,-2.18306957920284,https://salsa.debian.org/python-team/packages/python-repoze.sphinx.autointerface, https://github.com/repoze/repoze.sphinx.autointerface/issues/new,2746.3319791666668,2,17,0 -python-repoze.tm2,-0.795011465957878,1.87588325558157,-1.60021846702694,https://salsa.debian.org/python-team/packages/python-repoze.tm2, https://github.com/repoze/repoze.tm2.git,5299.01369212963,0,6,0 -python-requests-cache,0.00960114486884814,2.34072487083404,-0.463486914026279,https://salsa.debian.org/python-team/packages/python-requests-cache, https://github.com/requests-cache/requests-cache,4266.393923611111,17,43,3 -python-restless,-1.93336124296478,-0.903136966319854,-2.28774606864276,https://salsa.debian.org/python-team/packages/python-restless, https://github.com/toastdriven/restless,2872.2400231481483,8,30,0 -python-roman,0.426696904629987,1.94576678841437,-0.00442981229128303,https://salsa.debian.org/python-team/packages/python-roman, https://github.com/zopefoundation/roman,5054.666666666667,3,8,0 -python-rply,-0.0320431964263385,1.70103932460533,-0.472432363198678,https://salsa.debian.org/python-team/packages/python-rply, https://github.com/alex/rply,3096.8436689814816,9,17,0 -python-rsa,0.377236722481246,1.96349004356951,-0.109819950456565,https://salsa.debian.org/python-team/packages/python-rsa, https://github.com/sybrenstuvel/python-rsa,5670.19462962963,33,16,2 -python-rtree,-0.109038306741406,2.13175472396813,-0.531642492012879,https://salsa.debian.org/debian-gis-team/python-rtree, https://github.com/Toblerity/rtree.git,5739.577592592593,25,24,0 -python-s3transfer,0.367361800451876,2.53413379985704,-0.18101840192888,https://salsa.debian.org/python-team/packages/python-s3transfer, https://github.com/boto/s3transfer,2891.851863425926,24,28,0 -python-sabyenc,0.452279750672396,3.63651455047441,-0.398101406893918,https://salsa.debian.org/python-team/packages/python-sabyenc, https://github.com/sabnzbd/sabyenc.git,2872.893460648148,9,4,0 -python-scandir,0.827301267221475,3.78683246483855,0.005607474353191,https://salsa.debian.org/python-team/packages/python-scandir, https://github.com/benhoyt/scandir,3760.0535185185186,8,20,0 -python-schema-salad,-0.116017361266221,1.53059926612304,-0.514023281621855,https://salsa.debian.org/python-team/packages/python-schema-salad, https://github.com/common-workflow-language/schema_salad,3066.4161921296295,34,21,0 -python-scipy,0.624082481134678,1.00961086635102,0.355921349962474,https://salsa.debian.org/python-team/modules/python-scipy, https://github.com/scipy/scipy.git,5788.272488425926,799,787,0 -python-scp,-0.344167633233415,1.85443794417368,-0.90357982403348,https://salsa.debian.org/python-team/packages/python-scp, https://github.com/jbardin/scp.py,4662.035219907408,6,28,0 -python-scrapy,-0.280221326503731,0.491967706370394,-0.633169099063126,https://salsa.debian.org/python-team/packages/python-scrapy, https://github.com/scrapy/scrapy,5322.656273148148,256,486,2 -python-scrapy-djangoitem,-1.84013245478734,0.541282000590688,-2.43590727235664,https://salsa.debian.org/python-team/packages/python-scrapy-djangoitem, https://github.com/scrapy-plugins/scrapy-djangoitem,2837.113252314815,0,13,0 -python-scruffy,-0.895084258402866,1.96771238188626,-1.68844520581696,https://salsa.debian.org/python-team/packages/python-scruffy, https://github.com/snare/scruffy,1665.7056828703703,2,5,0 -python-secretstorage,0.338754454493241,2.13083587142078,-0.0585012824673191,https://salsa.debian.org/python-team/packages/python-secretstorage, https://github.com/mitya57/secretstorage,3916.1693055555556,4,7,0 -python-serverfiles,-3.27091406196569,-0.0867153000074521,-4.17895259464003,https://salsa.debian.org/python-team/packages/python-serverfiles, https://github.com/biolab/serverfiles,2007.9058333333332,1,6,0 -python-setoptconf,-0.671896240226397,1.15321425559899,-1.12713130199862,https://salsa.debian.org/python-team/packages/python-setoptconf, https://github.com/jayclassless/setoptconf.git,2788.0056365740743,0,3,0 -python-setproctitle,1.0838445467833,3.25888103165606,0.244215084749425,https://salsa.debian.org/python-team/packages/python-setproctitle, https://github.com/dvarrazzo/py-setproctitle,5054.544236111111,9,10,0 -python-sfml,-0.378424977746305,0.262408565507834,-0.581825929686772,https://salsa.debian.org/games-team/python-sfml, https://github.com/intjelic/python-sfml,3326.0384143518518,1,21,2 -python-sh,0.0684316621461243,2.74492058805087,-0.574426628333685,https://salsa.debian.org/python-team/packages/python-sh, https://github.com/amoffat/sh,4327.636168981481,29,75,2 -python-shapely,-0.0401779688083596,0.504970945928982,-0.212850367593144,https://salsa.debian.org/debian-gis-team/python-shapely, https://github.com/shapely/shapely.git,3816.1341435185186,96,63,0 -python-shellescape,0.216102898821056,2.95304752231742,-0.478184520234403,https://salsa.debian.org/python-team/packages/python-shellescape, https://github.com/chrissimpkins/shellescape,2183.791458333333,2,2,0 -python-shodan,-0.0231660335595108,2.27534196489807,-0.562754026031234,https://salsa.debian.org/python-team/packages/python-shodan, https://github.com/achillean/shodan-python,4784.5801273148145,12,27,0 -python-sievelib,-1.49534307318991,1.30516239770556,-2.32989278557723,https://salsa.debian.org/python-team/packages/python-sievelib, https://github.com/tonioo/sievelib,3482.887233796296,4,23,1 -python-sigmavirus24-urltemplate,-0.942591012539653,1.70560748767681,-1.49041305963889,https://salsa.debian.org/debian/python-sigmavirus24-urltemplate, https://github.com/python-hyper/uritemplate.git,3887.772662037037,5,19,0 -python-signedjson,-0.497204194088698,1.13529372326294,-0.781360544229561,https://salsa.debian.org/matrix-team/python-signedjson, https://github.com/matrix-org/python-signedjson.git,2409.117025462963,5,10,0 -python-skbio,-1.3075992948214,-0.385348124513225,-1.69682542327252,https://salsa.debian.org/med-team/python-skbio, https://github.com/scikit-bio/scikit-bio,3646.287071759259,44,58,2 -python-slip,0.677155208606448,2.96500652427271,-0.0680375926831711,https://salsa.debian.org/debian/python-slip, https://github.com/nphilipp/python-slip.git,4760.842418981481,5,3,0 -python-slugify,-0.121699178323397,1.41403200198841,-0.432501229873802,https://salsa.debian.org/python-team/packages/python-slugify, https://github.com/un33k/python-slugify,4027.612824074074,29,16,0 -python-smmap,0.0842345215307417,1.88621678974191,-0.302978641987737,https://salsa.debian.org/python-team/packages/python-smmap, https://github.com/gitpython-developers/smmap,4570.872037037037,4,18,0 -python-snuggs,-0.408982970308193,1.09199090186983,-0.671578605438675,https://salsa.debian.org/debian-gis-team/python-snuggs, https://github.com/mapbox/snuggs.git,1698.5099305555555,2,7,0 -python-socketio-client,0.939084972443436,4.91129526622001,-0.466877499490517,https://salsa.debian.org/debian/python-socketio-client, https://github.com/invisibleroads/socketIO-client,1970.3003472222222,0,39,2 -python-socketpool,-0.433473062983163,1.9120698535229,-1.13495382815167,https://salsa.debian.org/python-team/packages/python-socketpool, https://github.com/benoitc/socketpool,2141.4605208333332,0,17,0 -python-socksipy,1.05506218944001,3.70438529865212,0.152607719345974,https://salsa.debian.org/python-team/packages/python-socksipy, https://github.com/Anorov/PySocks,2386.1779629629627,3,31,0 -python-socksipychain,-0.0678442589337398,2.05760510014944,-0.759328322171604,https://salsa.debian.org/freedombox-team/python-socksipychain, https://github.com/pagekite/PySocksipyChain.git,3262.1183564814814,1,7,0 -python-softlayer,-0.841358819205879,0.24982301842487,-1.0930860806881,https://salsa.debian.org/python-team/packages/python-softlayer, https://github.com/softlayer/softlayer-python,4975.933321759259,36,124,0 -python-spur,-1.79142629652162,0.44127819099841,-2.23763095347693,https://salsa.debian.org/python-team/packages/python-spur, https://github.com/mwilliamson/spur.py.git,3757.0802199074074,1,3,0 -python-srp,-0.265559878899912,2.09013502967791,-0.982879076984504,https://salsa.debian.org/python-team/packages/python-srp, https://github.com/cocagne/pysrp,4536.790277777778,2,26,0 -python-ssdeep,-1.67537832759011,-0.74574244391935,-1.8662568074836,https://salsa.debian.org/python-team/packages/python-ssdeep, https://github.com/DinoTools/python-ssdeep/issues/new,2746.3319791666668,2,17,0 -python-static3,-2.14843505088176,0.782465955060936,-2.9204988940802,https://salsa.debian.org/debian/python-static3, https://github.com/rmohr/static3,1017.1397800925926,0,5,0 -python-stetl,-0.380951869732433,1.85992160222997,-0.815818728622616,https://salsa.debian.org/debian-gis-team/python-stetl, https://github.com/geopython/stetl.git,4123.303784722222,1,12,0 -python-stopit,-1.43823587585002,1.06403731109994,-2.3707053283558,https://salsa.debian.org/python-team/packages/python-stopit, https://github.com/glenfant/stopit,2025.0025810185184,3,4,0 -python-subprocess32,0.809721278974293,3.72694427273729,-0.000566433377307894,https://salsa.debian.org/python-team/modules/python-subprocess32, https://github.com/google/python-subprocess32,2769.808622685185,4,6,0 -python-sunlight,-0.43867879309139,3.66501197270729,-1.75991518689505,https://salsa.debian.org/python-team/modules/python-sunlight, https://github.com/sunlightlabs/python-sunlight,1218.870300925926,0,11,0 -python-swiftclient,-0.333099361712944,0.597745666944376,-0.614475827420347,https://salsa.debian.org/openstack-team/clients/python-swiftclient, https://github.com/openstack/python-swiftclient.git,4179.3618518518515,20,194,0 -python-systemd,0.186853671024445,1.45207144917141,-0.0787581662204422,https://salsa.debian.org/systemd-team/python-systemd, https://github.com/systemd/python-systemd,3925.632835648148,47,10,0 -python-tabulate,0.414080430633287,2.80786044801803,-0.230582005277608,https://salsa.debian.org/python-team/packages/python-tabulate, https://github.com/astanin/python-tabulate.git,3791.7183796296295,22,72,0 -python-tasklib,0.0418096657380263,2.41019438715361,-0.73813678317893,https://salsa.debian.org/tasktools-team/python-tasklib, https://github.com/GothenburgBitFactory/tasklib.git,3516.448148148148,7,15,0 -python-tblib,-0.735304953887994,0.99902203688589,-1.14834021510951,https://salsa.debian.org/python-team/packages/python-tblib, https://github.com/ionelmc/python-tblib,3634.6597453703703,5,11,0 -python-tesserocr,-0.0713400087120452,2.50403154069768,-0.964578978774877,https://salsa.debian.org/python-team/packages/python-tesserocr, https://github.com/sirfz/tesserocr.git,2852.5099537037036,21,18,0 -python-testfixtures,-1.25594973616751,1.62554367784895,-1.9966424135979,https://salsa.debian.org/python-team/packages/python-testfixtures, https://github.com/Simplistix/testfixtures,5484.404849537037,6,35,0 -python-textile,0.342402295603914,1.77443192520197,-0.180414488779729,https://salsa.debian.org/python-team/packages/python-textile, https://github.com/textile/python-textile.git,3971.2575578703704,0,25,0 -python-thinc,-0.163638893735504,3.65955440646822,-1.19261333506096,https://salsa.debian.org/science-team/python-thinc, https://github.com/explosion/thinc.git,3455.017638888889,46,35,0 -python-tmdbsimple,-2.14441266097874,0.346488550190115,-2.75436844080196,https://salsa.debian.org/python-team/packages/python-tmdbsimple, https://github.com/celiao/tmdbsimple,2973.5930324074075,10,20,0 -python-tornado,0.36607868435099,1.13884895351375,0.0174583060078894,https://salsa.debian.org/python-team/packages/python-tornado, https://github.com/tornadoweb/tornado,5193.928877314815,75,401,0 -python-tornado4,0.663391658757086,3.8620091091455,-0.193718719450948,https://salsa.debian.org/python-team/modules/python-tornado, https://github.com/tornadoweb/tornado,5193.928877314815,75,401,0 -python-traits,0.884173918499147,3.00357754870368,0.0820122282210342,https://salsa.debian.org/python-team/packages/python-traits, https://github.com/enthought/traits.git,5788.024456018518,23,101,0 -python-traitsui,0.515518840454723,2.66132710145185,-0.142578205639774,https://salsa.debian.org/python-team/packages/python-traitsui, https://github.com/enthought/traitsui.git,5617.533310185185,37,132,0 -python-translationstring,-0.284062414028812,1.48027405242699,-0.72861526521539,https://salsa.debian.org/python-team/packages/python-translationstring, https://github.com/Pylons/translationstring.git,3733.753599537037,2,15,0 -python-transliterate,-1.50529766715182,1.08432612130219,-2.11685619721961,https://salsa.debian.org/python-team/packages/python-transliterate, https://github.com/barseghyanartur/transliterate,3701.1602314814813,5,13,0 -python-trezor,-0.920282009177874,1.14887584940823,-1.58974757760945,https://salsa.debian.org/python-team/packages/python-trezor, https://github.com/trezor/trezor-firmware.git,2634.9138425925926,237,100,0 -python-trie,0.73155855854821,3.85887721543151,-0.118456248690653,https://salsa.debian.org/python-team/packages/python-trie, https://github.com/gsakkis/pytrie,4036.171076388889,5,3,0 -python-trio,-1.61267892047696,1.03634157594501,-2.35755886585121,https://salsa.debian.org/python-team/packages/python-trio, https://github.com/python-trio/trio,2528.430625,56,130,0 -python-twilio,-1.44341258639509,1.00650092133662,-2.03598164526984,https://salsa.debian.org/python-team/packages/python-twilio, https://github.com/twilio/twilio-python,5203.348668981482,54,122,0 -python-twitter,0.418895042591163,2.60845172198667,-0.560887813528878,https://salsa.debian.org/python-team/packages/python-twitter, https://github.com/bear/python-twitter.git,3385.4683449074073,27,157,0 -python-tzlocal,0.210519946767944,2.34875493084279,-0.286692662826862,https://salsa.debian.org/python-team/packages/python-tzlocal, https://github.com/regebro/tzlocal,4104.763518518518,12,22,0 -python-uinput,-0.489529964877291,2.08224447025191,-1.21548862374556,https://salsa.debian.org/python-team/packages/python-uinput, https://github.com/tuomasjjrasanen/python-uinput,2471.164976851852,3,17,0 -python-unicodecsv,0.217717331276343,2.07421541863016,-0.25031229858715,https://salsa.debian.org/python-team/packages/python-unicodecsv, https://github.com/jdunck/python-unicodecsv,1788.5991550925926,0,17,0 -python-uritools,0.566560867129225,3.63607120317236,-0.225008946768281,https://salsa.debian.org/python-team/packages/python-uritools, https://github.com/tkem/uritools,3490.549803240741,0,3,1 -python-urllib3,0.104157441952315,0.294634609649698,0.0192366252835266,https://salsa.debian.org/python-team/packages/python-urllib3, https://github.com/urllib3/urllib3,5113.980208333333,176,225,1 -python-urlobject,-1.40320671016874,1.06451213117112,-1.96821824826788,https://salsa.debian.org/python-team/packages/python-urlobject, https://github.com/zacharyvoase/urlobject,3098.5456481481483,4,10,0 -python-urwidtrees,0.49164707570108,4.05583346547568,-0.527566091824406,https://salsa.debian.org/python-team/packages/python-urwidtrees, https://github.com/pazz/urwidtrees/issues/new,2746.3319791666668,2,17,0 -python-venusian,-0.238988650203532,1.47081146786786,-0.72176680254253,https://salsa.debian.org/python-team/packages/python-venusian, https://github.com/Pylons/venusian,5042.179780092592,6,25,0 -python-vulndb,-2.10640744546277,0.16311365872766,-2.60808326998445,https://salsa.debian.org/pkg-security-team/python-vulndb, https://github.com/vulndb/python-sdk,1623.0260300925927,0,3,0 -python-w3lib,0.00352921627064971,2.86931461187047,-0.658668185640882,https://salsa.debian.org/python-team/packages/python-w3lib, https://github.com/scrapy/w3lib.git,4554.923379629629,17,37,0 -python-watson-developer-cloud,-2.23100071252299,0.517262571967121,-2.94755864463975,https://salsa.debian.org/python-team/packages/watson-developer-cloud, https://github.com/watson-developer-cloud/python-sdk.git,2927.1329976851853,24,59,0 -python-webob,0.269248114414342,0.939408926616269,-0.0205851245589964,https://salsa.debian.org/python-team/packages/python-webob, https://github.com/Pylons/webob,5771.468935185185,14,108,0 -python-websockets,0.821434798697177,2.80004322389045,0.0649687211872258,https://salsa.debian.org/python-team/packages/python-websockets, https://github.com/aaugustin/websockets.git,2952.859398148148,59,16,0 -python-werkzeug,0.646980855521847,1.62103160546561,0.163678274164921,https://salsa.debian.org/python-team/packages/python-werkzeug, https://github.com/pallets/werkzeug,5778.307245370371,256,251,0 -python-wordcloud,-2.35331346174834,-0.117333832983561,-2.78629950056682,https://salsa.debian.org/python-team/packages/python-wordcloud, https://github.com/amueller/word_cloud,4051.627384259259,33,54,0 -python-ws4py,-0.306187790901548,1.52320207376068,-1.04776523463365,https://salsa.debian.org/python-team/packages/python-ws4py, https://github.com/Lawouach/WebSocket-for-Python.git,4476.548090277778,6,66,0 -python-wsproto,0.0162269703159469,2.30900597311392,-0.424997115440944,https://salsa.debian.org/python-team/packages/python-wsproto, https://github.com/python-hyper/wsproto/issues/new,2746.3319791666668,2,17,0 -python-xapian-haystack,-1.10900462904103,0.996538859706,-1.76120345632217,https://salsa.debian.org/python-team/packages/python-xapian-haystack, https://github.com/notanumber/xapian-haystack,5023.712766203704,14,13,1 -python-xapp,0.49666595674701,2.79349323910243,-0.0692386083512058,https://salsa.debian.org/cinnamon-team/python-xapp, https://github.com/linuxmint/python3-xapp.git,2312.6997685185183,5,4,0 -python-xarray,-0.399660303195361,-0.0304966423831499,-0.548807091213366,https://salsa.debian.org/science-team/python-xarray, https://github.com/pydata/xarray,3725.933148148148,456,67,1 -python-xattr,-0.0230704615050276,0.69798159545072,-0.304900632583562,https://salsa.debian.org/debian/python-xattr, https://github.com/xattr/xattr.git,5518.329074074074,3,25,0 -python-xeddsa,-1.16332522343934,1.38192923762938,-1.73952285353788,https://salsa.debian.org/python-team/packages/python-xeddsa, https://github.com/Syndace/python-xeddsa,1709.0088425925926,1,4,0 -python-xlib,0.750438939191143,1.61315963326131,0.28093846208634,https://salsa.debian.org/python-team/packages/python-xlib, https://github.com/python-xlib/python-xlib,5407.921226851852,24,31,0 -python-xlrd,0.241972254568355,1.69211137481998,-0.1509001313547,https://salsa.debian.org/python-team/packages/python-xlrd, https://github.com/Dragon2fly/xlrd3.git,4601.110509259259,9,44,0 -python-xmltodict,0.598106375906509,3.24389400228836,-0.105452656302643,https://salsa.debian.org/debian/python-xmltodict, https://github.com/martinblech/xmltodict.git,3981.198715277778,26,29,0 -python-xopen,-0.343505378513926,1.77018483910553,-0.778780724351105,https://salsa.debian.org/python-team/packages/python-xopen, https://github.com/marcelm/xopen/issues/new,2746.3319791666668,2,17,0 -python-zeep,-0.308243113662642,1.52801230282343,-0.697542519772299,https://salsa.debian.org/tryton-team/python-zeep, https://github.com/mvantellingen/python-zeep.git,2573.7169907407406,110,44,0 -python-zeroconf,0.446563390246566,2.7242950649855,-0.123810664838048,https://salsa.debian.org/python-team/packages/python-zeroconf, https://github.com/python-zeroconf/python-zeroconf.git,5330.569618055555,53,14,0 -python-zipp,0.477489087269199,3.05257894202503,-0.137242660380768,https://salsa.debian.org/python-team/packages/python-zipp, https://github.com/jaraco/zipp,1845.9332291666667,22,6,0 -python-zxcvbn,-0.87467249688623,1.76784414999574,-1.59302850125489,https://salsa.debian.org/python-team/packages/python-zxcvbn, https://github.com/dwolfhub/zxcvbn-python.git,1831.8494791666667,12,3,0 -python3-lxc,0.378488308112486,2.85424123094581,-0.156269480475037,https://salsa.debian.org/lxc-team/python3-lxc, https://github.com/lxc/python3-lxc.git,1985.898935185185,0,11,0 -python3-proselint,-0.256056454127872,1.5321180857264,-0.808081838125919,https://salsa.debian.org/python-team/packages/python3-proselint, https://github.com/amperser/proselint,3160.1412962962963,47,44,5 -python3-typed-ast,0.187764234770539,2.5189505626835,-0.252025964650492,https://salsa.debian.org/python-team/packages/python3-typed-ast, https://github.com/python/typed_ast.git,2639.050300925926,22,9,0 -pytrainer,-0.149298633682598,0.666744927246606,-0.624645008929126,https://salsa.debian.org/python-team/packages/pytrainer, https://github.com/pytrainer/pytrainer.git,5724.745717592593,2,26,0 -pytsk,-0.0170924764890338,1.36615789785123,-0.406967620872296,https://salsa.debian.org/pkg-security-team/pytsk, https://github.com/py4n6/pytsk.git,4730.662083333334,5,8,0 -pyuca,-1.87912470704493,0.454605877210584,-2.34473374334905,https://salsa.debian.org/python-team/packages/pyuca, https://github.com/jtauber/pyuca,2863.4539467592595,0,6,0 -pyudev,0.305204170939517,1.57973906471718,-0.0988792965635674,https://salsa.debian.org/python-team/packages/pyudev, https://github.com/pyudev/pyudev,4959.346203703703,7,18,0 -pyutilib,-0.226021251653545,1.97083991245983,-0.658404007269415,https://salsa.debian.org/python-team/packages/pyutilib, https://github.com/pyutilib/pyutilib,3833.6739467592593,5,24,4 -pyvirtualdisplay,-0.744315058060289,1.47691320380755,-1.17649501759753,https://salsa.debian.org/python-team/packages/pyvirtualdisplay, https://github.com/ponty/pyvirtualdisplay.git,4649.320717592593,4,15,0 -pyvisa,-0.252877319710285,1.60657788543164,-0.6516218600191,https://salsa.debian.org/python-team/packages/pyvisa, https://github.com/pyvisa/pyvisa.git,5784.769085648149,22,61,0 -pyvisa-py,-0.158646599965261,2.22644717931016,-0.650957591319469,https://salsa.debian.org/python-team/packages/pyvisa-py, https://github.com/pyvisa/pyvisa-py.git,3385.721701388889,23,46,0 -pyvo,0.160160957010652,2.30969740763702,-0.481918340694493,https://salsa.debian.org/debian-astro-team/pyvo, https://github.com/pyvirtobs/pyvo.git,3991.3728819444445,6,28,0 -pyvows,-3.58551376510932,-1.4150725383474,-4.24534641758732,https://salsa.debian.org/python-team/packages/pyvows, https://github.com/heynemann/pyvows.git,4554.961076388889,1,29,0 -pywavelets,0.541606427789053,2.18930347224667,-0.0802426890426814,https://salsa.debian.org/python-team/packages/pywavelets, https://github.com/PyWavelets/pywt.git,5734.799560185185,25,28,0 -pywebdav,-0.441529835447282,0.156219948430592,-0.598451800165818,https://salsa.debian.org/tryton-team/pywebdav, https://github.com/andrewleech/PyWebDAV3.git,5191.637395833333,7,13,0 -pywinrm,1.36886057870753,4.53073102988841,0.247796204064866,https://salsa.debian.org/python-team/packages/python-winrm, https://github.com/diyan/pywinrm.git,3968.3538425925926,2,35,0 -pywws,-2.00588148416824,0.429787250796557,-2.58459452078025,https://salsa.debian.org/debian-iot-team/pywws, https://github.com/jim-easterbrook/pywws,5328.594791666666,7,19,0 -pyx3,-0.421432314726181,0.0635788824709516,-0.526071945006326,https://salsa.debian.org/debian/pyx3, https://github.com/pyx-project/pyx,5502.6121064814815,6,10,0 -pyxid,-1.06183440739462,1.73776504985248,-1.98138296454287,https://salsa.debian.org/med-team/pyxid, https://github.com/cedrus-opensource/pyxid/issues/new,2746.3319791666668,2,17,0 -pyxnat,0.802907921757592,3.92172788420172,-0.273002662672547,https://salsa.debian.org/med-team/pyxnat, https://github.com/pyxnat/pyxnat.git,4754.132465277778,6,37,0 -pyyaml,0.295656713952886,0.967534479470059,0.0168556095851646,https://salsa.debian.org/python-team/packages/pyyaml, https://github.com/yaml/pyyaml.git,5656.189444444444,35,19,0 -pyzmq,0.430705075865823,1.16989480262078,0.0838852381236613,https://salsa.debian.org/python-team/packages/pyzmq, https://github.com/zeromq/pyzmq.git,5044.394918981481,48,161,0 -pyzor,0.917153249995446,1.93354643620565,0.349438253264623,https://salsa.debian.org/python-team/packages/pyzor, https://github.com/SpamExperts/pyzor,5279.209606481481,6,19,1 -q2-types,-2.79969280149311,0.344054940296896,-3.6386854931967,https://salsa.debian.org/med-team/q2-types, https://github.com/qiime2/q2-types.git,2710.965949074074,29,12,0 -q2cli,-1.03150186733453,2.47550989504074,-2.00313345737827,https://salsa.debian.org/med-team/q2cli, https://github.com/qiime2/q2cli,2795.966377314815,18,12,0 -q2templates,-5.04822470147624,-2.79645563356912,-5.47695119278791,https://salsa.debian.org/med-team/q2templates, https://github.com/qiime2/q2templates.git,2619.2390393518517,9,8,0 -q4wine,-0.151109482514516,0.0770464396985054,-0.212005952160212,https://github.com/tehnick/q4wine-debian,https://github.com/tehnick/q4wine-debian,4144.328611111111,0,1,0 -qastools,0.341877125190633,2.8253284323009,-0.252554895123183,https://salsa.debian.org/multimedia-team/qastools, https://gitlab.com/sebholt/qastools,4413.909143518518,0,2,0 -qca2,1.09092152435614,2.5492280689621,0.402702898844502,https://salsa.debian.org/qt-kde-team/extras/qca2, https://invent.kde.org/libraries/qca.git,5764.592731481482,14,59,0 -qconf,-0.381126862235206,1.65952171214213,-0.776284747822689,https://salsa.debian.org/qt-kde-team/extras/qconf, https://github.com/psi-im/qconf.git,5624.674074074074,1,15,0 -qdacco,-1.66627266278956,-0.461010424623743,-2.02170746236854,https://salsa.debian.org/debian/qdacco, https://github.com/cpina/qdacco.git,5691.2413541666665,1,6,0 -qemuctl,1.34741220588033,3.3653108214152,0.38180684788945,https://github.com/operatornormal/qemuctl,https://github.com/operatornormal/qemuctl,627.1595486111111,3,2,0 -qgit,0.392741865383721,1.27795033678636,-0.0312896728271155,https://salsa.debian.org/debian/qgit, https://github.com/tibirna/qgit.git,5665.688206018519,28,35,0 -qhull,0.404244927753499,1.36220865514522,0.0359891539047283,https://salsa.debian.org/science-team/qhull, https://github.com/qhull/qhull,1796.1123958333333,6,20,0 -qiskit-terra,-3.79598164968019,0.301030435275208,-5.06495430105463,https://salsa.debian.org/science-team/qiskit-terra, https://github.com/Qiskit/qiskit-terra,2477.5348726851853,512,61,7 -qjackctl,0.213792707760756,0.635170497912141,-0.00385355928899724,https://salsa.debian.org/multimedia-team/qjackctl, https://github.com/rncbc/qjackctl.git,5709.753298611111,8,38,0 -qjoypad,0.852979411367937,3.26126360321818,-0.082285001087447,https://github.com/kilobyte/qjoypad/tree/debian,https://github.com/kilobyte/qjoypad,4422.6630092592595,2,12,0 -qlipper,0.318530615894201,2.68130284807746,-0.136456116109566,https://salsa.debian.org/lxqt-team/qlipper, https://github.com/pvanek/qlipper,4049.803229166667,52,28,0 -qmapshack,-0.118941010499796,1.43500273452748,-0.380427185438612,https://salsa.debian.org/debian-gis-team/qmapshack, https://github.com/Maproom/qmapshack.git,1715.655011574074,29,51,0 -qmenu,0.241659682896114,3.60622507126729,-0.930556672453206,https://github.com/teopost/qmenu,https://github.com/teopost/qmenu,3121.65625,0,12,2 -qmidiarp,0.106088445314257,2.40937724812331,-0.446213354807418,https://salsa.debian.org/multimedia-team/qmidiarp, https://github.com/emuse/qmidiarp.git,5041.995520833333,2,10,0 -qmidinet,0.398763456279576,2.32725848534935,-0.291999256478784,https://salsa.debian.org/multimedia-team/qmidinet, https://github.com/rncbc/qmidinet.git,4992.050914351852,1,11,0 -qps,1.51097704828947,2.60616501600994,0.845280056568653,https://salsa.debian.org/lxqt-team/qps, https://github.com/lxqt/qps.git,3468.927199074074,55,15,0 -qpxtool,0.514983109808782,2.34232697114638,-0.270055846345437,https://salsa.debian.org/debian/qpxtool, https://git.code.sf.net/p/qpxtool/code,3542.8980787037035,16,3,0 -qr-code-generator,0.389843379095431,2.76920702989891,-0.0955378774297983,https://salsa.debian.org/yangfl-guest/QR-Code-generator, https://github.com/nayuki/QR-Code-generator,2688.5360069444446,1,6,0 -qsampler,0.223065509983869,2.85391743017592,-0.50460196253652,https://salsa.debian.org/multimedia-team/qsampler, https://github.com/rncbc/qsampler.git,5737.996284722222,3,14,0 -qstat,1.48474698634343,3.54458759568229,0.568433579262232,https://salsa.debian.org/debian/qstat, https://github.com/Unity-Technologies/qstat,4992.716099537037,11,11,0 -qsynth,0.142531257871529,0.734317141704349,-0.106451074489768,https://salsa.debian.org/multimedia-team/qsynth, https://github.com/rncbc/qsynth.git,5674.9236458333335,3,19,0 -qtads,0.510849025186864,2.48407375358686,-0.339333860899677,https://salsa.debian.org/games-team/qtads, https://github.com/realnc/qtads.git,4788.683958333333,5,7,0 -qterm,-0.915597814791724,-0.402411230077987,-1.15254555265034,https://salsa.debian.org/chinese-team/qterm, https://github.com/qterm/qterm,4614.841238425926,1,8,0 -qterminal,0.188289207758828,1.66871319814993,-0.138403412165345,https://salsa.debian.org/lxqt-team/qterminal, https://github.com/lxqt/qterminal.git,4827.133414351852,126,63,0 -qtermwidget,0.0585769972830096,0.820946009054228,-0.139082327433193,https://salsa.debian.org/lxqt-team/qtermwidget, https://github.com/lxqt/qtermwidget.git,4842.929618055556,84,49,0 -qthid-fcd-controller,0.985759502816289,3.42521949557975,-0.0252435045245554,https://salsa.debian.org/debian-hamradio-team/qthid-fcd-controller, https://github.com/csete/qthid,1030.239525462963,4,5,1 -qtkeychain,0.0558876134224342,0.44246954990915,-0.0879663492093869,https://salsa.debian.org/qt-kde-team/extras/qtkeychain, https://github.com/frankosterfeld/qtkeychain,4430.699548611111,28,41,0 -qtltools,-0.81443123075593,0.855524996672882,-1.12232114351183,https://salsa.debian.org/med-team/qtltools, https://github.com/qtltools/qtltools/issues/new,2746.3319791666668,2,17,0 -qtnetworkauth-everywhere-src,0.44593969929914,3.03373533121494,-0.14377123303536,https://salsa.debian.org/qt-kde-team/qt/qtnetworkauth, https://code.qt.io/qt/qtnetworkauth.git,2677.758275462963,5,77,0 -qtox,-0.186338231464814,1.55035477819234,-0.494760472921222,https://salsa.debian.org/yangfl-guest/qTox, https://github.com/qTox/qTox,3154.6886689814814,156,294,7 -qtpass,-0.244382876135003,0.606959209347823,-0.421666166035691,https://salsa.debian.org/debian/qtpass, https://github.com/IJHack/QtPass,3407.054664351852,102,101,0 -qtractor,0.205242478524563,1.08175411296215,-0.17760833656501,https://salsa.debian.org/multimedia-team/qtractor, https://github.com/rncbc/qtractor.git,5788.915474537037,11,33,0 -qtspell,-1.11742648735895,0.818254598420487,-1.55293389999062,https://salsa.debian.org/qt-kde-team/extras/qtspell, https://github.com/manisandro/qtspell.git,2705.0642476851854,0,4,0 -quadrapassel,1.8163883428426,4.04802404326756,0.809268827303332,https://salsa.debian.org/gnome-team/quadrapassel, https://gitlab.gnome.org/GNOME/quadrapassel/issues/new,2746.3319791666668,2,17,0 -quark-sphinx-theme,-1.59570933107999,0.608543064378746,-2.18790360198376,https://salsa.debian.org/python-team/packages/quark-sphinx-theme, https://gitlab.com/fkrull/quark-sphinx-theme,1866.554224537037,0,1,0 -quickroute-gps,-0.134284888666013,2.9572779507399,-1.10391283790444,https://github.com/ralovich/quickroute-linux.git,https://github.com/ralovich/quickroute-linux.git,5000.886215277777,1,8,0 -quodlibet,1.12373251213198,1.57233964783771,0.796366815670754,https://salsa.debian.org/python-team/packages/quodlibet, https://github.com/quodlibet/quodlibet,5753.5957638888885,125,118,3 -quotatool,0.734390527357439,1.98407627000981,0.157659850725466,https://salsa.debian.org/debian/quotatool, https://github.com/ekenberg/quotatool,4244.069409722222,0,6,0 -qutebrowser,-0.256790293941704,0.219939662887893,-0.360946754746952,https://github.com/qutebrowser/qutebrowser-debian,https://github.com/qutebrowser/qutebrowser-debian,3469.0941087962965,47,290,0 -qwinff,-0.0728687395832074,2.35415592103433,-0.614807949382776,https://salsa.debian.org/multimedia-team/qwinff, https://github.com/qwinff/qwinff,3333.9424189814813,0,10,0 -qxgedit,0.0309448749204253,2.69462895280017,-0.615238319631849,https://salsa.debian.org/multimedia-team/qxgedit, https://github.com/rncbc/qxgedit.git,5219.99880787037,1,11,0 -qxmpp,-0.511930091191283,1.24504132925844,-0.922019472267346,https://salsa.debian.org/xmpp-team/qxmpp, https://github.com/qxmpp-project/qxmpp.git,5420.508472222222,31,20,0 -r-bioc-annotationdbi,0.0182386654122325,2.48127824418072,-0.570014091748017,https://salsa.debian.org/r-pkg-team/r-bioc-annotationdbi, https://github.com/Bioconductor/AnnotationDbi.git,5746.881550925926,1,33,0 -r-bioc-biocparallel,-0.326093178537264,0.847331388462779,-0.59193290789088,https://salsa.debian.org/r-pkg-team/r-bioc-biocparallel, https://github.com/Bioconductor/BiocParallel,3995.750625,8,26,0 -r-bioc-biostrings,-0.343481729390781,1.14780324476708,-0.614938326325344,https://salsa.debian.org/r-pkg-team/r-bioc-biostrings, https://github.com/Bioconductor/Biostrings.git,5738.509074074074,8,24,0 -r-bioc-chemminer,-4.94787230565056,-2.4634770090152,-5.4701350553375,https://salsa.debian.org/r-pkg-team/r-bioc-chemminer, https://github.com/girke-lab/ChemmineR.git,5502.031747685185,2,22,0 -r-bioc-delayedarray,-0.297570822375002,1.87740991191357,-0.748150564028156,https://salsa.debian.org/r-pkg-team/r-bioc-delayedarray, https://github.com/Bioconductor/DelayedArray.git,2510.2796296296297,3,13,0 -r-bioc-genomeinfodb,-0.303492380548005,1.22801867440691,-0.5938539876722,https://salsa.debian.org/r-pkg-team/r-bioc-genomeinfodb, https://github.com/Bioconductor/GenomeInfoDb.git,3592.0431597222223,5,21,0 -r-bioc-genomicalignments,-0.0620075073178533,2.29521680721513,-0.607948833110456,https://salsa.debian.org/r-pkg-team/r-bioc-genomicalignments, https://github.com/Bioconductor/GenomicAlignments.git,3637.7668287037036,1,21,0 -r-bioc-genomicranges,-0.321603880147761,1.26237806892299,-0.601362470296257,https://salsa.debian.org/r-pkg-team/r-bioc-genomicranges, https://github.com/Bioconductor/GenomicRanges.git,4977.821712962963,4,35,0 -r-bioc-iranges,-0.27329287373832,0.949506903471562,-0.572231786000705,https://salsa.debian.org/r-pkg-team/r-bioc-iranges, https://github.com/Bioconductor/IRanges.git,5556.738645833333,4,26,0 -r-bioc-preprocesscore,-0.573267543238156,1.61478989249381,-1.00920667331152,https://salsa.debian.org/r-pkg-team/r-bioc-preprocesscore, https://github.com/bmbolstad/preprocessCore.git,2983.7131828703705,0,24,0 -r-bioc-rsamtools,-0.231011334154971,1.69007695254721,-0.615853606276047,https://salsa.debian.org/r-pkg-team/r-bioc-rsamtools, https://github.com/Bioconductor/Rsamtools.git,5200.049756944444,3,23,0 -r-bioc-s4vectors,-0.0375813239135875,2.25254876618357,-0.598221258836135,https://salsa.debian.org/r-pkg-team/r-bioc-s4vectors, https://github.com/Bioconductor/S4Vectors/issues/new,2746.3319791666668,2,17,0 -r-bioc-xvector,-0.148843541155455,2.13084874475655,-0.590227591448767,https://salsa.debian.org/r-pkg-team/r-bioc-xvector, https://github.com/Bioconductor/XVector.git,3819.2003935185185,0,10,0 -r-cran-afex,0.483664492487863,3.24369219273044,-0.438333418370512,https://salsa.debian.org/r-pkg-team/r-cran-afex, https://github.com/singmann/afex.git,2884.5159027777777,6,14,0 -r-cran-animation,-0.351598376462637,2.17793457228778,-0.919308029944393,https://salsa.debian.org/r-pkg-team/r-cran-animation, https://github.com/yihui/animation/issues/new,2746.3319791666668,2,17,0 -r-cran-arm,-0.215773425657779,1.52696528966208,-0.505327966595903,https://salsa.debian.org/r-pkg-team/r-cran-arm, https://github.com/suyusung/arm.git,2199.2741898148147,0,4,0 -r-cran-av,-3.30692253997357,-1.06640295657248,-3.74994428874166,https://salsa.debian.org/r-pkg-team/r-cran-av, https://github.com/ropensci/av.git,1927.068576388889,2,3,0 -r-cran-batchjobs,-0.142392904858543,2.04610948791224,-0.590594254622021,https://salsa.debian.org/r-pkg-team/r-cran-batchjobs, https://github.com/tudo-r/BatchJobs.git,3055.336516203704,0,18,0 -r-cran-bbmisc,-0.0791867315459242,2.21030674261295,-0.523919328228636,https://salsa.debian.org/r-pkg-team/r-cran-bbmisc, https://github.com/berndbischl/BBmisc/issues/new,2746.3319791666668,2,17,0 -r-cran-bitops,0.181219634804237,2.50818857434793,-0.263616719662195,https://salsa.debian.org/r-pkg-team/r-cran-bitops, https://github.com/mmaechler/R-bitops/issues/new,2746.3319791666668,2,17,0 -r-cran-bold,-0.358994134257074,1.88301949027378,-0.798415526071617,https://salsa.debian.org/r-pkg-team/r-cran-bold, https://github.com/ropensci/bold/issues/new,2746.3319791666668,2,17,0 -r-cran-callr,0.115138385563855,2.37177972751741,-0.344825316603976,https://salsa.debian.org/r-pkg-team/r-cran-callr, https://github.com/r-lib/callr.git,2730.1466203703703,8,18,0 -r-cran-caret,-0.158911509202771,1.37470649956735,-0.441038106924103,https://salsa.debian.org/r-pkg-team/r-cran-caret, https://github.com/topepo/caret.git,3231.0891319444445,48,79,0 -r-cran-checkmate,0.085937855407183,2.39423891376413,-0.350110573404548,https://salsa.debian.org/r-pkg-team/r-cran-checkmate, https://github.com/mllg/checkmate.git,3631.5784722222224,11,53,0 -r-cran-crayon,0.258544899098523,2.47118895253696,-0.189845714510451,https://salsa.debian.org/r-pkg-team/r-cran-crayon, https://github.com/r-lib/crayon/issues/new,2746.3319791666668,2,17,0 -r-cran-crosstalk,0.116741371624694,2.266684008395,-0.349141297908935,https://salsa.debian.org/r-pkg-team/r-cran-crosstalk, https://github.com/rstudio/crosstalk.git,2973.0628472222224,5,12,0 -r-cran-crul,-0.379530865040192,2.06203120065321,-0.884706654122055,https://salsa.debian.org/r-pkg-team/r-cran-crul, https://github.com/ropensci/crul.git,2488.6026967592593,12,5,0 -r-cran-curl,0.077091534438309,1.50470953659052,-0.260737954025918,https://salsa.debian.org/r-pkg-team/r-cran-curl, https://github.com/jeroen/curl,3312.506412037037,11,17,0 -r-cran-data.table,0.213671162669981,2.38186731707818,-0.220586384511007,https://salsa.debian.org/r-pkg-team/r-cran-data.table, https://github.com/Rdatatable/data.table/issues/new,2746.3319791666668,2,17,0 -r-cran-devtools,0.00550592694682243,2.25543458870958,-0.426020247532891,https://salsa.debian.org/r-pkg-team/r-cran-devtools, https://github.com/r-lib/devtools.git,4932.985949074074,82,116,0 -r-cran-dqrng,-1.83084712974229,0.636931239693664,-2.3363165013717,https://salsa.debian.org/r-pkg-team/r-cran-dqrng, https://github.com/daqana/dqrng.git,2053.1736342592594,7,10,0 -r-cran-dygraphs,-0.0490909843109079,3.39358348954332,-0.913506460568269,https://salsa.debian.org/r-pkg-team/r-cran-dygraphs, https://github.com/rstudio/dygraphs/issues/new,2746.3319791666668,2,17,0 -r-cran-eaf,-0.430233712486963,1.83021631491036,-0.875193303038921,https://salsa.debian.org/r-pkg-team/r-cran-eaf, https://github.com/MLopez-Ibanez/eaf/issues/new,2746.3319791666668,2,17,0 -r-cran-filehash,0.2805937395568,2.9173226699455,-0.248880602147883,https://salsa.debian.org/r-pkg-team/r-cran-filehash, https://github.com/rdpeng/filehash/issues/new,2746.3319791666668,2,17,0 -r-cran-fs,0.516063634396358,3.51625286917958,-0.265398930813445,https://salsa.debian.org/r-pkg-team/r-cran-fs, https://github.com/r-lib/fs/issues/new,2746.3319791666668,2,17,0 -r-cran-gbm,0.327991678930956,3.22428029767403,-0.446269420514668,https://salsa.debian.org/r-pkg-team/r-cran-gbm, https://github.com/gbm-developers/gbm/issues/new,2746.3319791666668,2,17,0 -r-cran-ggeffects,-0.410111574802552,1.66252130107392,-0.846753795129048,https://salsa.debian.org/r-pkg-team/r-cran-ggeffects, https://github.com/strengejacke/ggeffects.git,2388.1511805555556,6,17,0 -r-cran-gnm,-0.0730492728942156,2.20017505704627,-0.547412148156367,https://salsa.debian.org/r-pkg-team/r-cran-gnm, https://github.com/hturner/gnm.git,5664.818171296296,2,3,0 -r-cran-gsl,0.0315524777808514,2.23025396216522,-0.476328311599455,https://salsa.debian.org/r-pkg-team/r-cran-gsl, https://github.com/RobinHankin/gsl/issues/new,2746.3319791666668,2,17,0 -r-cran-gtable,0.360461990322493,2.59184783854294,-0.180163876987905,https://salsa.debian.org/r-pkg-team/r-cran-gtable, https://github.com/r-lib/gtable.git,4252.72269675926,3,15,0 -r-cran-hms,0.280313094881459,2.69156338261866,-0.237194789769666,https://salsa.debian.org/r-pkg-team/r-cran-hms, https://github.com/tidyverse/hms,2747.6862152777776,3,21,1 -r-cran-htmlwidgets,0.222380483608414,2.45230821612572,-0.224551383721169,https://salsa.debian.org/r-pkg-team/r-cran-htmlwidgets, https://github.com/ramnathv/htmlwidgets.git,3428.7835185185186,9,25,0 -r-cran-httpuv,0.38759454354957,2.22289576459683,-0.156279075658878,https://salsa.debian.org/r-pkg-team/r-cran-httpuv, https://github.com/rstudio/httpuv.git,3956.968298611111,10,30,0 -r-cran-httr,0.231843180082406,2.72007930988093,-0.319751129082035,https://salsa.debian.org/r-pkg-team/r-cran-httr, https://github.com/r-lib/httr.git,4372.238842592593,38,54,0 -r-cran-igraph,-0.123303996024761,1.33173443828046,-0.480791583616799,https://salsa.debian.org/r-pkg-team/r-cran-igraph, https://github.com/igraph/igraph.git,5787.088703703704,45,61,0 -r-cran-jsonld,0.0438577764999271,3.44469847546476,-0.947956635665473,https://salsa.debian.org/r-pkg-team/r-cran-jsonld, https://github.com/ropensci/jsonld/issues/new,2746.3319791666668,2,17,0 -r-cran-later,0.21990517967709,2.58283401210988,-0.244669459572158,https://salsa.debian.org/r-pkg-team/r-cran-later, https://github.com/r-lib/later/issues/new,2746.3319791666668,2,17,0 -r-cran-lmertest,-0.225905457924611,2.0342017388861,-0.681221646902755,https://salsa.debian.org/r-pkg-team/r-cran-lmertest, https://github.com/runehaubo/lmerTestR.git,1009.6075115740741,2,4,0 -r-cran-lubridate,0.260151310883355,2.70092580430642,-0.24300364732261,https://salsa.debian.org/r-pkg-team/r-cran-lubridate, https://github.com/tidyverse/lubridate.git,5324.846898148148,53,93,0 -r-cran-lwgeom,0.00581809183586325,2.418862989244,-0.73279450060674,https://salsa.debian.org/r-pkg-team/r-cran-lwgeom, https://github.com/r-spatial/lwgeom/issues/new,2746.3319791666668,2,17,0 -r-cran-matrixcalc,0.635479198008871,4.34642689538589,-0.34635588919514,https://salsa.debian.org/r-pkg-team/r-cran-matrixcalc, https://github.com/TomKellyGenetics/matrixcalc/issues/new,2746.3319791666668,2,17,0 -r-cran-mcmc,0.154255269868176,2.73686021243522,-0.451309831621471,https://salsa.debian.org/r-pkg-team/r-cran-mcmc, https://github.com/cjgeyer/mcmc/issues/new,2746.3319791666668,2,17,0 -r-cran-memoise,0.192523027292919,2.38980492525073,-0.241066625203724,https://salsa.debian.org/r-pkg-team/r-cran-memoise, https://github.com/hadley/memoise.git,1189.1777777777777,16,15,0 -r-cran-mice,-1.17032289359888,1.17001151051615,-1.58977910544957,https://salsa.debian.org/r-pkg-team/r-cran-mice, https://github.com/amices/mice/issues/new,2746.3319791666668,2,17,0 -r-cran-mnp,-0.0051235592631867,2.14399295642153,-0.440021030596504,https://salsa.debian.org/r-pkg-team/r-cran-mnp, https://github.com/kosukeimai/MNP/issues/new,2746.3319791666668,2,17,0 -r-cran-nozzle.r1,-2.88548615874538,-0.597801788868084,-3.3250463836713,https://salsa.debian.org/r-pkg-team/r-cran-nozzle.r1, https://github.com/parklab/nozzle.git,926.0286111111111,0,1,0 -r-cran-openssl,0.14083112507158,1.97368210310857,-0.305459050885552,https://salsa.debian.org/r-pkg-team/r-cran-openssl, https://github.com/jeroen/openssl.git,3340.7487152777776,9,9,0 -r-cran-optparse,-0.207092761715519,2.02410277822028,-0.642202256736068,https://salsa.debian.org/r-pkg-team/r-cran-optparse, https://github.com/trevorld/r-optparse.git,3364.6461689814814,0,11,0 -r-cran-parameters,-0.918535807195255,1.44041211867908,-1.44076297762769,https://salsa.debian.org/r-pkg-team/r-cran-parameters, https://github.com/easystats/parameters.git,1766.258101851852,12,53,0 -r-cran-pbdzmq,0.189171368145159,3.49264335571965,-0.747517249539651,https://salsa.debian.org/r-pkg-team/r-cran-pbdzmq, https://github.com/snoweye/pbdZMQ/issues/new,2746.3319791666668,2,17,0 -r-cran-plotly,-0.45520388568563,1.8075929068262,-0.890535753948724,https://salsa.debian.org/r-pkg-team/r-cran-plotly, https://github.com/plotly/plotly.R.git,3638.2152546296297,25,44,0 -r-cran-plyr,0.239691644485985,2.33977395447903,-0.192006137627096,https://salsa.debian.org/r-pkg-team/r-cran-plyr, https://github.com/hadley/plyr/issues/new,2746.3319791666668,2,17,0 -r-cran-processx,0.243085054203938,2.71632574875288,-0.325806653253233,https://salsa.debian.org/r-pkg-team/r-cran-processx, https://github.com/r-lib/processx.git,2669.6444791666668,12,67,0 -r-cran-ps,0.103587778708658,2.54927834438308,-0.34668451191656,https://salsa.debian.org/r-pkg-team/r-cran-ps, https://github.com/r-lib/ps/issues/new,2746.3319791666668,2,17,0 -r-cran-pscl,0.74280746678348,3.44738765449344,-0.155435064248443,https://salsa.debian.org/r-pkg-team/r-cran-pscl, https://github.com/atahk/pscl/issues/new,2746.3319791666668,2,17,0 -r-cran-raster,-0.0742369850961889,2.25679648386161,-0.523290840169459,https://salsa.debian.org/r-pkg-team/r-cran-raster, https://github.com/rspatial/raster.git,1952.0897800925925,9,23,0 -r-cran-rcmdcheck,0.214672699056145,2.68950202767157,-0.398818851753629,https://salsa.debian.org/r-pkg-team/r-cran-rcmdcheck, https://github.com/r-Lib/rcmdcheck/issues/new,2746.3319791666668,2,17,0 -r-cran-recipes,0.116374587337249,2.55036419862888,-0.465448478851658,https://salsa.debian.org/r-pkg-team/r-cran-recipes, https://github.com/tidymodels/recipes,2554.753935185185,31,80,0 -r-cran-repr,-0.420048623605369,1.36539798763435,-0.793148893401469,https://salsa.debian.org/r-pkg-team/r-cran-repr, https://github.com/IRkernel/repr.git,3009.431261574074,13,11,0 -r-cran-rgenoud,-0.34888007130644,2.08744919287088,-0.911719429299625,https://salsa.debian.org/r-pkg-team/r-cran-rgenoud, https://github.com/JasjeetSekhon/rgenoud/issues/new,2746.3319791666668,2,17,0 -r-cran-rhandsontable,-0.511695951267473,1.69672639029837,-0.952787574275437,https://salsa.debian.org/r-pkg-team/r-cran-rhandsontable, https://github.com/jrowen/rhandsontable.git,2472.1080902777776,10,16,0 -r-cran-ritis,-0.299376176431199,1.95347342057625,-0.798006459910535,https://salsa.debian.org/r-pkg-team/r-cran-ritis, https://github.com/ropensci/ritis.git,3983.0266666666666,1,4,0 -r-cran-rlang,0.263663531572991,1.94458658770401,-0.176709439999872,https://salsa.debian.org/r-pkg-team/r-cran-rlang, https://github.com/r-lib/rlang.git,3372.9181828703704,69,87,0 -r-cran-rmarkdown,0.188115907474438,1.38844060452878,-0.201707073559215,https://salsa.debian.org/r-pkg-team/r-cran-rmarkdown, https://github.com/rstudio/rmarkdown,3609.997164351852,81,81,1 -r-cran-rncl,-0.337131945422757,1.91037356037586,-0.787455321570332,https://salsa.debian.org/r-pkg-team/r-cran-rncl, https://github.com/fmichonneau/rncl/issues/new,2746.3319791666668,2,17,0 -r-cran-rnexml,-0.307546135054736,1.80867512306941,-0.79915015729506,https://salsa.debian.org/r-pkg-team/r-cran-rnexml, https://github.com/ropensci/RNeXML.git,3480.1707407407407,2,22,0 -r-cran-roxygen2,0.0295105312390775,2.14089441888291,-0.408973516077404,https://salsa.debian.org/r-pkg-team/r-cran-roxygen2, https://github.com/r-lib/roxygen2,5674.991238425926,84,74,1 -r-cran-rpostgresql,0.105524003481434,2.61284189918854,-0.485387128530082,https://salsa.debian.org/r-pkg-team/r-cran-rpostgresql, https://github.com/tomoakin/RPostgreSQL/issues/new,2746.3319791666668,2,17,0 -r-cran-rprotobuf,-0.636635231772753,1.62336210163628,-1.07827539002261,https://salsa.debian.org/r-pkg-team/r-cran-rprotobuf, https://github.com/eddelbuettel/rprotobuf/issues/new,2746.3319791666668,2,17,0 -r-cran-rredlist,-0.293858463463729,2.02268340231916,-0.79431406831363,https://salsa.debian.org/r-pkg-team/r-cran-rredlist, https://github.com/ropensci/rredlist/issues/new,2746.3319791666668,2,17,0 -r-cran-rsdmx,0.086383468937053,2.71678789753042,-0.531994360053732,https://salsa.debian.org/r-pkg-team/r-cran-rsdmx, https://github.com/opensdmx/rsdmx.git,3728.8602314814816,3,10,0 -r-cran-rsqlite,0.107679797248895,1.58478465703349,-0.228522632965705,https://salsa.debian.org/r-pkg-team/r-cran-rsqlite, https://github.com/r-dbi/RSQLite.git,5762.889699074074,5,55,0 -r-cran-rstan,-0.447744630896052,2.09651500247125,-0.994687967822236,https://salsa.debian.org/r-pkg-team/r-cran-rstan, https://github.com/stan-dev/rstan,4456.938368055556,19,72,3 -r-cran-scales,0.339304747745806,2.67541230737203,-0.18233206889075,https://salsa.debian.org/r-pkg-team/r-cran-scales, https://github.com/r-lib/scales,4768.619074074074,32,47,1 -r-cran-scatterd3,-0.535656644392216,0.99411321932811,-0.809953264867216,https://salsa.debian.org/r-pkg-team/r-cran-scatterd3, https://github.com/juba/scatterD3.git,3041.2167939814813,1,11,0 -r-cran-sendmailr,-0.310367019043398,1.27318906199562,-0.586067363523717,https://salsa.debian.org/r-pkg-team/r-cran-sendmailr, https://github.com/olafmersmann/sendmailR/issues/new,2746.3319791666668,2,17,0 -r-cran-sf,-0.180866553521019,1.4870487256948,-0.672371581276744,https://salsa.debian.org/r-pkg-team/r-cran-sf, https://github.com/r-spatial/sf,2960.682152777778,52,104,0 -r-cran-shiny,0.05483461577447,1.00969549525166,-0.205415643563731,https://salsa.debian.org/r-pkg-team/r-cran-shiny, https://github.com/rstudio/shiny.git,4194.575162037037,42,82,0 -r-cran-sjlabelled,-0.393809496963129,1.94387711624621,-0.837912149640019,https://salsa.debian.org/r-pkg-team/r-cran-sjlabelled, https://github.com/strengejacke/sjlabelled,1972.0379861111112,0,10,0 -r-cran-sjmisc,-0.397357618721593,1.88980482031592,-0.848413921848364,https://salsa.debian.org/r-pkg-team/r-cran-sjmisc, https://github.com/strengejacke/sjmisc/issues/new,2746.3319791666668,2,17,0 -r-cran-sjplot,-0.423579227455836,1.7243482083958,-0.862471834321145,https://salsa.debian.org/r-pkg-team/r-cran-sjplot, https://github.com/strengejacke/sjPlot/issues/new,2746.3319791666668,2,17,0 -r-cran-sp,0.0394136667023216,1.27230166723756,-0.229566443741296,https://salsa.debian.org/r-pkg-team/r-cran-sp, https://github.com/edzer/sp.git,2848.9715277777777,1,18,0 -r-cran-stringr,0.0964776845371271,1.65341813554563,-0.188164763711549,https://salsa.debian.org/r-pkg-team/r-cran-stringr, https://github.com/tidyverse/stringr/issues/new,2746.3319791666668,2,17,0 -r-cran-svglite,-0.188558737538566,2.58904721181817,-0.918190731949655,https://salsa.debian.org/r-pkg-team/r-cran-svglite, https://github.com/r-lib/svglite.git,4029.9752546296295,5,22,0 -r-cran-taxize,-0.552436628653171,0.951437613723233,-0.817524160401268,https://salsa.debian.org/r-pkg-team/r-cran-taxize, https://github.com/ropensci/taxize.git,4557.283946759259,10,50,0 -r-cran-testthat,0.215244880526394,2.41326805808583,-0.233952809485923,https://salsa.debian.org/r-pkg-team/r-cran-testthat, https://github.com/r-lib/testthat.git,5204.1229861111115,83,126,0 -r-cran-tibble,0.335422047522137,2.23920900578415,-0.16353602555831,https://salsa.debian.org/r-pkg-team/r-cran-tibble, https://github.com/tidyverse/tibble/issues/new,2746.3319791666668,2,17,0 -r-cran-tidyr,0.11463459757707,2.30280536077763,-0.312542347677699,https://salsa.debian.org/r-pkg-team/r-cran-tidyr, https://github.com/tidyverse/tidyr.git,3434.3552777777777,108,76,0 -r-cran-tidyselect,0.185267518845232,2.39532373350323,-0.243582616791874,https://salsa.debian.org/r-pkg-team/r-cran-tidyselect, https://github.com/r-lib/tidyselect/issues/new,2746.3319791666668,2,17,0 -r-cran-tikzdevice,0.385185772290936,2.94008323374348,-0.227082443969485,https://salsa.debian.org/r-pkg-team/r-cran-tikzdevice, https://github.com/daqana/tikzDevice.git,5310.743194444444,8,26,0 -r-cran-truncnorm,-0.0250364198134987,2.0343035584221,-0.466805583628948,https://salsa.debian.org/r-pkg-team/r-cran-truncnorm, https://github.com/olafmersmann/truncnorm/issues/new,2746.3319791666668,2,17,0 -r-cran-utf8,0.429272788305781,3.08213820278364,-0.177641356425825,https://salsa.debian.org/r-pkg-team/r-cran-utf8, https://github.com/patperry/r-utf8/issues/new,2746.3319791666668,2,17,0 -r-cran-uwot,-2.1360077926584,0.163727343926423,-2.61564210224675,https://salsa.debian.org/r-pkg-team/r-cran-uwot, https://github.com/jlmelville/uwot.git,2010.5388078703704,2,8,0 -r-cran-vcdextra,-0.135967502704198,2.07328533632195,-0.564516556795123,https://salsa.debian.org/r-pkg-team/r-cran-vcdextra, https://github.com/friendly/vcdExtra.git,5383.465752314814,0,9,0 -r-cran-vctrs,-0.148180650602676,1.44476403288996,-0.425809233028558,https://salsa.debian.org/r-pkg-team/r-cran-vctrs, https://github.com/r-lib/vctrs.git,2644.680474537037,32,219,0 -r-cran-vioplot,-0.511768817330579,1.7541359689658,-0.941240899930404,https://salsa.debian.org/r-pkg-team/r-cran-vioplot, https://github.com/TomKellyGenetics/vioplot,2457.8733912037037,2,6,0 -r-cran-webmockr,-0.431037610471389,1.82773866093092,-0.929927976157702,https://salsa.debian.org/r-pkg-team/r-cran-webmockr, https://github.com/ropensci/webmockr.git,3289.3273726851853,4,4,0 -r-cran-webshot,-0.0794526322566365,2.776629773039,-0.869570066604937,https://salsa.debian.org/r-pkg-team/r-cran-webshot, https://github.com/wch/webshot,3137.5207291666666,3,15,0 -r-cran-worrms,-0.599709034098878,1.14191147472859,-0.933477012696884,https://salsa.debian.org/r-pkg-team/r-cran-worrms, https://github.com/ropensci/worrms/issues/new,2746.3319791666668,2,17,0 -r-cran-xml2,0.181313985485075,2.17925046539153,-0.236825855428835,https://salsa.debian.org/r-pkg-team/r-cran-xml2, https://github.com/r-lib/xml2,3216.8915046296297,23,41,0 -r-cran-xts,0.241180191852726,2.50962877221991,-0.398654807154634,https://salsa.debian.org/r-pkg-team/r-cran-xts, https://github.com/joshuaulrich/xts.git,5770.948923611111,14,17,0 -r-cran-zelig,0.723417938548561,3.51362617841635,-0.195430979660789,https://salsa.debian.org/r-pkg-team/r-cran-zelig, https://github.com/IQSS/Zelig/issues/new,2746.3319791666668,2,17,0 -rabbit,-1.0753863465153,-0.452461320473391,-1.25152304417292,https://salsa.debian.org/ruby-team/rabbit, https://github.com/rabbit-shocker/rabbit,5766.766296296296,8,40,0 -rabbitvcs,1.67149460581492,3.54267837185063,0.706824886189823,https://salsa.debian.org/python-team/packages/rabbitvcs, https://github.com/rabbitvcs/rabbitvcs.git,5506.533148148148,17,45,0 -radare2,-0.00183548299945943,0.290941294023341,-0.173753601786813,https://salsa.debian.org/pkg-security-team/radare2, https://github.com/radareorg/radare2/issues/new,2746.3319791666668,2,17,0 -radcli,0.807789146444719,3.02842685283086,0.0485018399862098,https://salsa.debian.org/debian/radcli, https://github.com/radcli/radcli,0.00829861111111111,10,25,0 -radeontop,0.790515602302201,3.99542161046398,-0.132898223728508,https://salsa.debian.org/debian/radeontop, https://github.com/clbr/radeontop.git,3881.850023148148,5,20,0 -radio-beam,0.0745073318764811,3.003721160024,-0.655590414920625,https://salsa.debian.org/debian-astro-team/radio-beam, https://github.com/radio-astro-tools/radio_beam,3526.8169791666664,2,17,0 -radium-compressor,0.13559721945274,2.85723734513179,-0.724362607294689,https://salsa.debian.org/multimedia-team/radium-compressor, https://github.com/kmatheussen/radium_compressor.git,2426.0817361111112,0,1,0 -radon,-1.26364881199145,0.295243910296723,-1.53920836528047,https://salsa.debian.org/python-team/packages/radon, https://github.com/rubik/radon.git,4032.6238773148148,45,20,0 -radsecproxy,-1.22584025475683,0.348273776250536,-1.86439395619628,https://salsa.debian.org/debian/radsecproxy, https://github.com/radsecproxy/radsecproxy.git,5771.466006944444,15,23,0 -rainbow.js,-2.23151500380419,-0.964997212722147,-2.48128831395204,https://salsa.debian.org/js-team/rainbow.js, https://github.com/ccampbell/rainbow/issues/new,2746.3319791666668,2,17,0 -rake-compiler,-0.176590582755423,1.96809623096246,-0.899105552782092,https://salsa.debian.org/ruby-team/rake-compiler, https://github.com/rake-compiler/rake-compiler/issues/new,2746.3319791666668,2,17,0 -rakudo,0.956621847163002,2.10331558452598,0.324209403678667,https://salsa.debian.org/perl6-team/rakudo, https://github.com/Raku/nqp.git,5159.158784722223,24,165,0 -rally,-2.87869359307887,-1.55225765607196,-3.27600983949173,https://salsa.debian.org/openstack-team/services/rally, https://github.com/openstack/rally.git,3774.9832175925926,69,441,0 -ranger,0.158557832942648,0.887452810426949,-0.118876488946076,https://salsa.debian.org/debian/ranger, https://github.com/ranger/ranger.git,5250.5453472222225,73,205,0 -rapache,-1.9452855914647,-0.262638801188501,-2.42187532102225,https://salsa.debian.org/r-pkg-team/rapache, https://github.com/jeffreyhorner/rapache.git,4155.59349537037,1,13,0 -raphael,0.640627513769505,3.7045765254699,-0.250783438820433,https://salsa.debian.org/debian/raphael, https://github.com/DmitryBaranovskiy/raphael/issues/new,2746.3319791666668,2,17,0 -rapidjson,0.126299191689858,1.47915963521278,-0.31794313946329,https://salsa.debian.org/debian/rapidjson, https://github.com/miloyip/rapidjson.git,4414.841412037037,54,185,0 -raqm,0.257451032623431,1.96615544792693,-0.182400819579113,https://salsa.debian.org/debian/raqm, https://github.com/HOST-Oman/libraqm.git,2871.040451388889,22,19,0 -raspell,0.0344606052681667,2.18881918135865,-0.701525811921747,https://salsa.debian.org/ruby-team/raspell, https://github.com/evan/raspell/issues/new,2746.3319791666668,2,17,0 -rasterio,-0.107189830509874,2.01556534798503,-0.677966565838329,https://salsa.debian.org/debian-gis-team/rasterio, https://github.com/rasterio/rasterio.git,3692.9866550925926,96,61,0 -ratt,-0.437063012771801,1.1211106018962,-0.87106597729197,https://salsa.debian.org/go-team/packages/ratt, https://github.com/Debian/ratt,2545.9663194444443,4,6,0 -rawtherapee,0.359759282780287,1.09354570401025,-0.00488200001153749,https://salsa.debian.org/debian/rawtherapee, https://github.com/Beep6581/RawTherapee,4840.925486111111,48,164,2 -rbdoom3bfg,-0.492504028084634,0.802143110089703,-0.84281399652303,https://salsa.debian.org/games-team/rbdoom3bfg, https://github.com/RobertBeckebans/RBDOOM-3-BFG,4030.942662037037,14,74,0 -rbenv,0.566539915958547,3.41510922632661,-0.301697211783975,https://salsa.debian.org/ruby-team/rbenv, https://github.com/rbenv/rbenv,4512.975162037037,36,100,0 -rblcheck,0.244294100136855,1.16990268652702,-0.176956618224791,https://github.com/rfc1036/rblcheck,https://github.com/rfc1036/rblcheck,5711.447627314815,2,1,0 -rc,3.26364583749779,5.89194735951154,1.96439915463499,https://salsa.debian.org/debian/rc, https://github.com/rakitzis/rc,3601.3893981481483,12,15,1 -rclone,0.33204200535613,1.71723277880513,-0.123665624108888,https://salsa.debian.org/go-team/packages/rclone, https://github.com/rclone/rclone.git,4043.695185185185,821,36,0 -rdate,0.438280809173624,1.32034165331615,0.017779896331518,https://salsa.debian.org/debian/rdate, https://github.com/resurrecting-open-source-projects/openrdate,876.4736111111112,0,4,0 -rdflib,0.448304039356425,1.42208597185608,-0.00427861405551744,https://salsa.debian.org/python-team/packages/rdflib, https://github.com/RDFLib/rdflib.git,5415.848773148148,61,129,0 -rdiff-backup,1.05680397622738,1.56640486119337,0.690404361845759,https://salsa.debian.org/python-team/applications/rdiff-backup, https://github.com/rdiff-backup/rdiff-backup.git,5728.728240740741,45,27,0 -rdma-core,0.880252173714993,1.90324968281694,0.348862444587319,https://github.com/linux-rdma/rdma-core,https://github.com/linux-rdma/rdma-core,5201.698912037037,285,181,0 -re2c,0.049047964610728,0.536436632360368,-0.093390292337921,https://salsa.debian.org/jcfp/re2c, https://github.com/skvadrik/re2c,5784.050370370371,20,22,0 -rear,-0.314712315367848,0.588088744437776,-0.648431856214207,https://salsa.debian.org/debian/rear, https://github.com/rear/rear.git,5387.781423611111,35,162,0 -recoll,0.514867802650568,1.17353374450647,0.105710656968431,https://salsa.debian.org/debian/recoll, https://framagit.org/medoc92/recoll/issues/new,2746.3319791666668,2,17,0 -recommonmark,0.0137812846115271,1.86099194261938,-0.364642881828289,https://salsa.debian.org/python-team/packages/recommonmark, https://github.com/readthedocs/recommonmark.git,2822.8469328703704,10,35,0 -recon-ng,-0.343248984425756,1.43479090782362,-0.808003622211749,https://salsa.debian.org/pkg-security-team/recon-ng, https://github.com/lanmaster53/recon-ng.git,3226.8799074074072,8,37,0 -redis,-0.0771619628779408,-0.0349183767139958,-0.101407645972437,https://salsa.debian.org/lamby/pkg-redis, https://github.com/redis/redis.git,5381.244467592593,506,365,0 -redis-py-cluster,-1.8001809262726,0.77314251096035,-2.53080983822876,https://salsa.debian.org/python-team/packages/redis-py-cluster, https://github.com/Grokzen/redis-py-cluster,3217.2146527777777,55,25,3 -redmine,0.340745776691562,0.632489380436174,0.115689305514966,https://salsa.debian.org/ruby-team/redmine, https://www.redmine.org/projects/redmine/issues/new,2746.3319791666668,2,17,0 -redmine-plugin-local-avatars,-1.45727275612402,1.48273077875676,-2.26016283524095,https://salsa.debian.org/debian/redmine-plugin-local-avatars, https://github.com/ncoders/redmine_local_avatars,3991.558761574074,3,11,0 -redsocks,0.632860140631218,4.22034263430101,-0.399882660233773,https://salsa.debian.org/debian/redsocks, https://github.com/darkk/redsocks.git,4174.7984027777775,2,11,0 -ree,0.455206433998999,2.71266505432586,-0.294302160663744,https://salsa.debian.org/debian/ree, https://github.com/alexmyczko/ree,1112.039074074074,3,1,0 -reflex,-0.974725206595286,2.01787465644879,-1.63618860105416,https://salsa.debian.org/debian/reflex, https://github.com/cespare/reflex.git,3024.801863425926,4,7,0 -regexxer,-0.187874635455234,0.546453634338284,-0.523091273300742,https://salsa.debian.org/debian/regexxer, https://gitlab.gnome.org/Archive/regexxer,4953.109502314815,32,53,0 -remaster-iso,-2.04735169290534,0.120221137207675,-2.47701014149201,https://github.com/unixabg/remaster-iso,https://github.com/unixabg/remaster-iso,251.80447916666665,1,3,0 -renderdoc,-0.571652215528999,1.36822849692371,-1.076460589554,https://salsa.debian.org/xorg-team/app/renderdoc, https://github.com/baldurk/renderdoc.git,3576.9787268518517,255,31,0 -reptyr,0.95907542468885,3.54103164497108,0.0685934083853369,https://github.com/nelhage/reptyr/tree/debian,https://github.com/nelhage/reptyr,4619.470868055556,13,37,0 -requests,0.131413181425157,0.342506557933246,0.0347416957236309,https://salsa.debian.org/python-team/packages/requests, https://github.com/psf/requests,4683.8957060185185,185,623,2 -requests-aws,-0.761720487886986,2.82521722934703,-1.72794352693126,https://salsa.debian.org/python-team/packages/requests-aws, https://github.com/tax/python-requests-aws,1319.2575,2,12,1 -requirejs,0.307781270973243,1.84507662111504,-0.106112137855613,https://salsa.debian.org/js-team/requirejs, https://github.com/requirejs/r.js.git,4511.829074074074,2,70,0 -requirejs-text,-1.241408016909,1.05090711877994,-1.68505455895055,https://salsa.debian.org/js-team/requirejs-text, https://github.com/requirejs/text,2533.6334375,0,20,0 -rerun,-0.43146128537555,3.31527544807476,-1.49876771113085,https://salsa.debian.org/ruby-team/rerun, https://github.com/alexch/rerun/issues/new,2746.3319791666668,2,17,0 -responses,0.19334639235531,2.69047136159574,-0.537774518031231,https://salsa.debian.org/python-team/packages/responses, https://github.com/getsentry/responses,3678.9310416666667,55,78,0 -restorecond,0.567588551889924,4.5013957134859,-0.824730361279045,https://salsa.debian.org/selinux-team/restorecond, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0 -resvg,-0.870696566167526,2.54291794214447,-1.70329165714545,https://salsa.debian.org/debian/resvg, https://github.com/RazrFalcon/resvg.git,2182.7898726851854,46,8,0 -rexical,-1.84147501924003,0.989505278765736,-2.75203863256459,https://salsa.debian.org/ruby-team/rexical, https://github.com/tenderlove/rexical,5447.083912037037,2,10,0 -rhythmbox,1.86573104003584,2.2024646089718,1.58849740376691,https://salsa.debian.org/gnome-team/rhythmbox, https://gitlab.gnome.org/GNOME/rhythmbox/issues/new,2746.3319791666668,2,17,0 -rhythmbox-plugin-alternative-toolbar,-0.296742282819441,1.13315191862386,-0.5644700994867,https://github.com/fossfreedom/alternative-toolbar/tree/debian,https://github.com/fossfreedom/alternative-toolbar,3255.9015277777776,2,19,0 -ring,0.595986806030574,1.53255743411163,0.0961278372371971,https://salsa.debian.org/pkg-voip-team/ring, https://git.jami.net/savoirfairelinux/jami-project/-/issues/new,2746.3319791666668,2,17,0 -ripe-atlas-cousteau,-0.976494488206626,1.39248633136781,-1.47029913144958,https://salsa.debian.org/python-team/packages/ripe-atlas-cousteau, https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,3286.994594907407,5,15,0 -ripe-atlas-sagan,-0.835078845819303,1.34467460370317,-1.32629970428769,https://salsa.debian.org/python-team/packages/ripe-atlas-sagan, https://github.com/RIPE-NCC/ripe.atlas.sagan,2585.8181481481483,2,22,0 -rkhunter,0.39366496411605,0.62067615127084,0.219556348105253,https://salsa.debian.org/pkg-security-team/rkhunter, https://git.code.sf.net/p/rkhunter/rkh_code,5365.808310185185,0,4,0 -rlwrap,-0.0178154569905868,0.234120064325572,-0.118926009362432,https://salsa.debian.org/debian/rlwrap, https://github.com/hanslub42/rlwrap,3317.1894560185187,6,18,2 -robocut,-0.282415143852063,2.37545743524338,-1.09231955050152,https://github.com/alpharesearch/robocut,https://github.com/alpharesearch/robocut,831.4363194444444,0,6,0 -robotfindskitten,0.0179376982386653,1.30782764538948,-0.485626997000214,https://github.com/rfinnie/robotfindskitten-pkg-debian,https://github.com/rfinnie/robotfindskitten-pkg-debian,1629.5291319444445,3,1,0 -rolo,-0.0498132258582514,2.13300277923018,-0.821682806617574,https://salsa.debian.org/debian/rolo, https://github.com/libvc/rolo,1738.299363425926,2,2,0 -rope,1.59784683611494,3.96719981773256,0.555193560378876,https://salsa.debian.org/python-team/packages/rope, https://github.com/python-rope/rope,5713.8836458333335,27,64,1 -ros-bond-core,-0.455791944414582,0.803086304426349,-0.74616134447602,https://salsa.debian.org/science-team/ros-bond-core, https://github.com/ros/bond_core,5161.858229166667,13,47,0 -ros-catkin,-0.489039781480851,0.118129140741579,-0.603039077347013,https://salsa.debian.org/science-team/ros-catkin, https://github.com/ros/catkin.git,3969.001458333333,64,80,0 -ros-catkin-pkg,-0.167203497358372,1.2861285448403,-0.485635068001556,https://salsa.debian.org/science-team/ros-catkin-pkg, https://github.com/ros-infrastructure/catkin_pkg.git,4009.4744097222224,38,38,0 -ros-common-msgs,-0.260735685857777,1.64188464097169,-0.68752787368347,https://salsa.debian.org/science-team/ros-common-msgs, https://github.com/ros/common_msgs,4220.657847222222,11,81,1 -ros-gencpp,-0.160091149063917,2.2557178524457,-0.719103076323962,https://salsa.debian.org/science-team/ros-gencpp, https://github.com/ros/gencpp,4002.012303240741,11,18,1 -ros-genlisp,-0.166354322533981,2.24866950739751,-0.730196442265192,https://salsa.debian.org/science-team/ros-genlisp, https://github.com/ros/genlisp.git,2913.2089930555558,2,16,0 -ros-genmsg,-0.0171725935327327,2.37579622587927,-0.582572657628371,https://salsa.debian.org/science-team/ros-genmsg, https://github.com/ros/genmsg,4008.1554976851853,10,28,1 -ros-genpy,-0.613699120149313,-0.610827108785914,-0.614165704647256,https://salsa.debian.org/science-team/ros-genpy, https://github.com/ros/genpy.git,4178.100347222222,21,31,0 -ros-geometry,-0.550655774788899,0.405821805097857,-0.73002531698746,https://salsa.debian.org/science-team/ros-geometry, https://github.com/ros/geometry,5094.815069444445,26,84,1 -ros-image-common,-0.458774321823753,0.0450984940995194,-0.609699198188623,https://salsa.debian.org/science-team/ros-image-common, https://github.com/ros-perception/image_common.git,5179.632361111111,38,47,0 -ros-interactive-markers,-0.252228085387444,2.12575864588487,-0.800390042312437,https://salsa.debian.org/science-team/ros-interactive-markers, https://github.com/ros-visualization/interactive_markers.git,5635.597268518519,21,62,0 -ros-kdl-parser,-0.338657284698037,2.27803009350466,-0.913848871906168,https://salsa.debian.org/science-team/ros-kdl-parser, https://github.com/ros/kdl_parser,4840.751701388889,32,70,0 -ros-laser-geometry,-0.418947578029671,0.783831601018165,-0.676036736607366,https://salsa.debian.org/science-team/ros-laser-geometry, https://github.com/ros-perception/laser_geometry,5200.342638888889,9,44,0 -ros-message-runtime,-0.290597528646356,1.63004819773672,-0.677192321668655,https://salsa.debian.org/science-team/ros-message-runtime, https://github.com/ros/message_runtime.git,2931.916921296296,1,6,0 -ros-navigation-msgs,-0.585376458044753,1.33810923404946,-0.980189712626315,https://salsa.debian.org/science-team/ros-navigation-msgs, https://github.com/ros-planning/navigation_msgs,4055.790902777778,6,14,0 -ros-nodelet-core,-0.0806493057174334,2.30627000374114,-0.651167814298841,https://salsa.debian.org/science-team/ros-nodelet-core, https://github.com/ros/nodelet_core,4750.036273148148,13,47,1 -ros-pluginlib,-0.663444382323728,0.718401032692024,-0.947010126436121,https://salsa.debian.org/science-team/ros-pluginlib, https://github.com/ros/pluginlib.git,5189.668819444444,29,44,0 -ros-robot-state-publisher,-0.592455886619176,1.35766053965836,-1.01093645133637,https://salsa.debian.org/science-team/ros-robot-state-publisher, https://github.com/ros/robot_state_publisher,4113.0053356481485,37,41,0 -ros-ros,-0.174542217173464,1.74371986214792,-0.570506770557411,https://salsa.debian.org/science-team/ros-ros, https://github.com/ros/ros.git,4392.927650462963,48,77,0 -ros-roscpp-core,-0.033152535279659,2.36549991232184,-0.501119620770985,https://salsa.debian.org/science-team/ros-roscpp-core, https://github.com/ros/roscpp_core,4254.705671296297,25,32,1 -ros-rosinstall-generator,-0.143025821600952,2.21106586662489,-0.69934292908189,https://salsa.debian.org/science-team/ros-rosinstall-generator, https://github.com/ros-infrastructure/rosinstall_generator,3820.0138425925925,11,14,2 -ros-rospack,-0.241466259153462,1.06888539413166,-0.555351711731847,https://salsa.debian.org/science-team/ros-rospack, https://github.com/ros/rospack.git,3438.9073958333333,20,26,0 -ros-rospkg,-0.0548646672144724,1.85803058546746,-0.500827790629517,https://salsa.debian.org/science-team/ros-rospkg, https://github.com/ros-infrastructure/rospkg.git,4295.652986111111,33,59,0 -ros-rviz,-0.34811395610373,0.660844254366699,-0.667684861920132,https://salsa.debian.org/science-team/ros-rviz, https://github.com/ros-visualization/rviz,5387.729837962963,93,123,0 -ros-std-msgs,-0.0206690342262183,2.38616687298903,-0.574705971669571,https://salsa.debian.org/science-team/ros-std-msgs, https://github.com/ros/std_msgs.git,3274.7244560185186,3,17,0 -ros-vision-opencv,-0.552104267660161,0.568246088619513,-0.82845187858941,https://salsa.debian.org/science-team/ros-vision-opencv, https://github.com/ros-perception/vision_opencv,5223.140868055556,33,82,0 -roundcube,0.198810674273811,0.367499133560016,0.0702870505712662,https://salsa.debian.org/roundcube-team/roundcube, https://github.com/roundcube/roundcubemail,5787.847337962963,173,156,3 -rows,-0.501673824942345,1.99965107262537,-1.29990789232841,https://salsa.debian.org/debian/rows, https://github.com/turicas/rows,3317.3650115740743,11,25,2 -rr,-0.552620006907096,-0.132008775568096,-0.661304843019997,https://salsa.debian.org/debian/rr, https://github.com/rr-debugger/rr.git,4494.401597222222,157,47,0 -rrdtool,0.950254756618488,1.35914529911784,0.649573967338916,https://salsa.debian.org/rrdtool-team/rrdtool, https://github.com/oetiker/rrdtool-1.x.git,5729.185787037037,45,105,0 -rsh-redone,0.243457992558058,2.47658433239746,-0.712551626094643,https://salsa.debian.org/debian/rsh-redone, https://github.com/gsliepen/rsh-redone,3762.4461458333335,1,2,0 -rsnapshot,1.0729522506442,1.80975669323537,0.593077525101759,https://salsa.debian.org/leepen/rsnapshot, https://github.com/rsnapshot/rsnapshot.git,5724.621736111111,13,34,0 -rss2email,0.331485550479245,0.715768198279115,0.0455417283932296,https://salsa.debian.org/python-team/packages/rss2email, https://github.com/rss2email/rss2email.git,3888.6072916666667,25,44,0 -rsyslog,0.611054977252425,0.879776364181071,0.415587732347873,https://salsa.debian.org/debian/rsyslog, https://github.com/rsyslog/rsyslog,5442.897013888889,186,283,2 -rsyslog-doc,-0.174161086047411,0.697221491849674,-0.374532196169732,https://salsa.debian.org/debian/rsyslog-doc, https://github.com/rsyslog/rsyslog-doc,5603.106863425926,74,286,3 -rt-extension-repeatticket,-1.27134555252742,2.44805775497717,-2.22060058578856,https://salsa.debian.org/request-tracker-team/rt-extension-repeatticket, https://github.com/bestpractical/rt-extension-repeatticket,4204.330740740741,0,5,0 -rtags,-0.526583945177203,1.63846865587325,-1.00982144320128,https://salsa.debian.org/emacsen-team/rtags, https://github.com/Andersbakken/rtags,4530.673564814815,27,123,0 -rtkit,1.59149349390773,3.47533416976839,0.681858358341844,https://salsa.debian.org/multimedia-team/rtkit, https://github.com/heftig/rtkit,3958.74318287037,18,3,0 -rtl-sdr,0.0392172563830607,0.692270396805751,-0.175721059549119,https://salsa.debian.org/bottoms/pkg-rtl-sdr, https://gitea.osmocom.org/sdr/rtl-sdr.git,4287.7309490740745,35,11,0 -rtmidi,0.145282775184932,1.33675807877344,-0.166139685942845,https://salsa.debian.org/multimedia-team/rtmidi, https://github.com/thestk/rtmidi.git,3632.2693287037036,22,64,0 -rubberband,0.918234975772985,2.62268885869139,0.214842324053143,https://salsa.debian.org/multimedia-team/rubberband, https://github.com/breakfastquay/rubberband.git,5683.900474537037,0,9,0 -ruby-actionpack-action-caching,-0.0195395792540849,2.02091975178512,-0.460855136539671,https://salsa.debian.org/ruby-team/ruby-actionpack-action-caching, https://github.com/rails/actionpack-action_caching/issues/new,2746.3319791666668,2,17,0 -ruby-actionpack-page-caching,-2.09797722824779,1.06298687158989,-2.91708784448414,https://salsa.debian.org/ruby-team/ruby-actionpack-page-caching, https://github.com/rails/actionpack-page_caching/issues/new,2746.3319791666668,2,17,0 -ruby-actionpack-xml-parser,-0.299618436401572,1.34280570721943,-0.595518475197761,https://salsa.debian.org/ruby-team/ruby-actionpack-xml-parser, https://github.com/rails/actionpack-xml_parser,1540.6708333333333,2,13,0 -ruby-active-model-serializers,-2.6276778242837,-0.192697543842701,-3.25923102671891,https://salsa.debian.org/ruby-team/ruby-active-model-serializers, https://github.com/rails-api/active_model_serializers/issues/new,2746.3319791666668,2,17,0 -ruby-activeldap,-1.41566976141054,-0.451102296476624,-1.59887747927363,https://salsa.debian.org/ruby-team/ruby-activeldap, https://github.com/activeldap/activeldap/issues/new,2746.3319791666668,2,17,0 -ruby-activerecord-import,-1.96877194883876,1.05126670889692,-2.71680418807644,https://salsa.debian.org/ruby-team/ruby-activerecord-import, https://github.com/zdennis/activerecord-import/issues/new,2746.3319791666668,2,17,0 -ruby-activerecord-nulldb-adapter,-2.92312935078363,0.233072790027474,-3.99191048859426,https://salsa.debian.org/ruby-team/ruby-activerecord-nulldb-adapter, https://github.com/nulldb/nulldb/issues/new,2746.3319791666668,2,17,0 -ruby-acts-as-list,-1.81996629124238,-1.46818516328738,-1.87078666457968,https://salsa.debian.org/ruby-team/ruby-acts-as-list, https://github.com/swanandp/acts_as_list,4913.702615740741,58,72,1 -ruby-addressable,0.410841687793814,2.87556373319275,-0.168590849404852,https://salsa.debian.org/ruby-team/ruby-addressable, https://github.com/sporkmonger/addressable/issues/new,2746.3319791666668,2,17,0 -ruby-ahoy-email,-4.44359504237849,-0.941064192833455,-5.36414002484502,https://salsa.debian.org/ruby-team/ruby-ahoy-email, https://github.com/ankane/ahoy_email/issues/new,2746.3319791666668,2,17,0 -ruby-amqp,-1.81499353466034,0.32880604492994,-2.3239990953829,https://salsa.debian.org/ruby-team/ruby-amqp, https://github.com/ruby-amqp/amqp.git,4994.888078703703,18,59,0 -ruby-api-pagination,-3.30441828753361,-0.0567093293971251,-4.19511106017158,https://salsa.debian.org/ruby-team/ruby-api-pagination, https://github.com/davidcelis/api-pagination.git,3040.7300578703703,2,39,0 -ruby-arbre,-4.80290503412611,-2.12734338718058,-5.44120198055126,https://salsa.debian.org/ruby-team/ruby-arbre, https://github.com/activeadmin/arbre/issues/new,2746.3319791666668,2,17,0 -ruby-arel,0.310658972557814,2.47463109703822,-0.21779483610281,https://salsa.debian.org/ruby-team/ruby-arel, https://github.com/rails/arel,3724.669027777778,28,165,0 -ruby-aruba,-1.36248515337412,0.743065431760748,-1.98539293413176,https://salsa.debian.org/ruby-team/ruby-aruba, https://github.com/cucumber/aruba.git,5041.539664351852,15,94,0 -ruby-ascii85,0.220682438911098,2.56872140292753,-0.209003065278562,https://salsa.debian.org/ruby-team/ruby-ascii85, https://github.com/datawraith/ascii85gem,5104.970185185185,3,5,0 -ruby-atomic,0.457757311957647,3.003545568227,-0.148860402089449,https://salsa.debian.org/ruby-team/ruby-atomic, https://github.com/headius/ruby-atomic,1459.8353125,0,15,2 -ruby-attr-encrypted,-0.45955151142566,2.34275527239645,-1.21001834977234,https://salsa.debian.org/ruby-team/ruby-attr-encrypted, https://github.com/attr-encrypted/attr_encrypted.git,5251.615393518518,13,31,0 -ruby-autoprefixer-rails,-0.23154495538642,2.83495046087984,-1.04541918572183,https://salsa.debian.org/ruby-team/ruby-autoprefixer-rails, https://github.com/ai/autoprefixer-rails/issues/new,2746.3319791666668,2,17,0 -ruby-awesome-print,-0.158900582763238,2.0284975515981,-0.84267525529854,https://salsa.debian.org/ruby-team/ruby-awesome-print, https://github.com/awesome-print/awesome_print/issues/new,2746.3319791666668,2,17,0 -ruby-backports,0.15391561758727,2.11834478467549,-0.456239938472782,https://salsa.debian.org/ruby-team/ruby-backports, https://github.com/marcandre/backports/issues/new,2746.3319791666668,2,17,0 -ruby-bacon,-1.49976971760681,0.698754739950412,-2.0358441624846,https://salsa.debian.org/ruby-team/ruby-bacon, https://github.com/leahneukirchen/bacon,5364.076365740741,3,17,0 -ruby-base62,-3.20078907627974,-0.571029493725026,-3.74084774166395,https://salsa.debian.org/ruby-team/ruby-base62, https://github.com/jtzemp/base62.git,1973.6897222222221,1,5,0 -ruby-batch-loader,-1.39118114002807,1.05190753100969,-1.96584211908986,https://salsa.debian.org/ruby-team/ruby-batch-loader, https://github.com/exAspArk/batch-loader/issues/new,2746.3319791666668,2,17,0 -ruby-bcrypt,-0.167036620741686,2.54858136586283,-0.784053430268986,https://salsa.debian.org/ruby-team/ruby-bcrypt, https://github.com/bcrypt-ruby/bcrypt-ruby/issues/new,2746.3319791666668,2,17,0 -ruby-beaneater,-1.36063596481779,1.16300557706997,-2.01759486752016,https://salsa.debian.org/ruby-team/ruby-beaneater, https://github.com/beanstalkd/beaneater,3900.032673611111,5,29,1 -ruby-beautify,-1.81793959236556,0.57235446169444,-2.42882213338449,https://salsa.debian.org/ruby-team/ruby-beautify.git, https://github.com/erniebrodeur/ruby-beautify,2708.080983796296,1,19,0 -ruby-bogus,-2.9701186800126,-1.153602326818,-3.32426310073135,https://salsa.debian.org/ruby-team/ruby-bogus, https://github.com/psyho/bogus/issues/new,2746.3319791666668,2,17,0 -ruby-bootsnap,0.496944658091214,4.04676993751869,-0.445365548074637,https://salsa.debian.org/ruby-team/ruby-bootsnap, https://github.com/Shopify/bootsnap/issues/new,2746.3319791666668,2,17,0 -ruby-bootstrap-sass,-0.228615909544893,1.71179017413852,-0.940744271917064,https://salsa.debian.org/ruby-team/ruby-bootstrap-sass, https://github.com/twbs/bootstrap-sass,4131.8156944444445,18,111,1 -ruby-browser,-0.166084666327556,3.38691321447145,-1.14642710761497,https://salsa.debian.org/ruby-team/ruby-browser, https://github.com/fnando/browser.git,4214.415902777778,56,56,0 -ruby-bson,-0.487645620629625,1.8841260261786,-1.11700567263908,https://salsa.debian.org/ruby-team/ruby-bson, https://github.com/mongodb/mongo-ruby-driver/issues/new,2746.3319791666668,2,17,0 -ruby-buff-config,-2.04061314286557,-0.580236765253771,-2.34695094555252,https://salsa.debian.org/ruby-team/ruby-buff-config, https://github.com/berkshelf/buff-config/issues/new,2746.3319791666668,2,17,0 -ruby-buff-extensions,-1.70013143313874,0.696134058330696,-2.14799551246605,https://salsa.debian.org/ruby-team/ruby-buff-extensions, https://github.com/RiotGames/buff-extensions,1162.522685185185,0,5,0 -ruby-build,0.789335491669495,3.75292604227743,-0.231175046370511,https://salsa.debian.org/ruby-team/ruby-build, https://github.com/rbenv/ruby-build.git,4513.894652777778,46,256,0 -ruby-builder,0.289179051437074,2.05675505807205,-0.148349001721914,https://salsa.debian.org/ruby-team/ruby-builder, https://github.com/tenderlove/builder/issues/new,2746.3319791666668,2,17,0 -ruby-byebug,0.118055396727265,2.30017116728878,-0.322097786269314,https://salsa.debian.org/ruby-team/ruby-byebug, https://github.com/deivid-rodriguez/byebug/issues/new,2746.3319791666668,2,17,0 -ruby-cairo,0.158164567061363,1.80859599070589,-0.244958071363958,https://salsa.debian.org/ruby-team/ruby-cairo, https://github.com/rcairo/rcairo,5677.594305555555,5,14,0 -ruby-capture-output,-2.89222629340586,-0.734271306130561,-3.32218789305711,https://salsa.debian.org/ruby-team/ruby-capture-output, https://github.com/jpastuszek/capture-output,0.017361111111111112,0,1,0 -ruby-capybara,0.24969906287306,2.43034290169591,-0.428255976860718,https://salsa.debian.org/ruby-team/ruby-capybara, https://github.com/teamcapybara/capybara/issues/new,2746.3319791666668,2,17,0 -ruby-cassiopee,-1.58515180287739,1.32712442607504,-2.36640774840569,https://salsa.debian.org/ruby-team/ruby-cassiopee, https://github.com/osallou/cassiopee/issues/new,2746.3319791666668,2,17,0 -ruby-celluloid,0.0913806587248057,1.18656118865903,-0.289219256918553,https://salsa.debian.org/ruby-team/ruby-celluloid, https://github.com/celluloid/celluloid/issues/new,2746.3319791666668,2,17,0 -ruby-certificate-authority,-2.00186704801149,0.461863199935484,-2.70393120071328,https://salsa.debian.org/ruby-team/ruby-certificate-authority, https://github.com/cchandler/certificate_authority/issues/new,2746.3319791666668,2,17,0 -ruby-charlock-holmes,-0.27414687778017,2.01520035456465,-0.834403772991921,https://salsa.debian.org/ruby-team/ruby-charlock-holmes, https://github.com/brianmario/charlock_holmes,3398.828090277778,5,21,0 -ruby-childprocess,0.652622912536639,3.23319286308203,-0.0924023392956883,https://salsa.debian.org/ruby-team/ruby-childprocess, https://github.com/jarib/childprocess.git,4814.209652777778,16,34,0 -ruby-clockwork,-1.61758937071582,0.289791082658143,-2.10484686805431,https://salsa.debian.org/ruby-team/ruby-clockwork, https://github.com/Rykian/clockwork,4663.075914351852,22,47,0 -ruby-cmdparse,0.678256473084961,4.50712040785227,-0.416431912985683,https://salsa.debian.org/ruby-team/ruby-cmdparse, https://github.com/gettalong/cmdparse/issues/new,2746.3319791666668,2,17,0 -ruby-coffee-rails,0.309182406496994,2.8142114503781,-0.273613392892316,https://salsa.debian.org/ruby-team/ruby-coffee-rails, https://github.com/rails/coffee-rails,3619.3450231481484,7,34,0 -ruby-color,-1.65949307627129,0.788139710366515,-2.22037033574251,https://salsa.debian.org/ruby-team/ruby-color, https://github.com/halostatue/color,4994.146018518519,1,11,1 -ruby-colorator,0.175629970047575,2.30243477808403,-0.263725524247246,https://salsa.debian.org/ruby-team/ruby-colorator, https://github.com/octopress/colorator/issues/new,2746.3319791666668,2,17,0 -ruby-combustion,-2.70776268644904,-0.507021984239335,-3.28146702867829,https://salsa.debian.org/ruby-team/ruby-combustion, https://github.com/pat/combustion/issues/new,2746.3319791666668,2,17,0 -ruby-commander,-0.354431334090354,2.55244637453894,-1.09106526796515,https://salsa.debian.org/ruby-team/ruby-commander, https://github.com/commander-rb/commander/issues/new,2746.3319791666668,2,17,0 -ruby-concurrent,0.55660306049591,2.94416936579305,-0.071754255411524,https://salsa.debian.org/ruby-team/ruby-concurrent, https://github.com/ruby-concurrency/concurrent-ruby.git,3789.0811458333333,43,132,0 -ruby-connection-pool,-0.107782788984787,2.76083163019692,-0.90838986837342,https://salsa.debian.org/ruby-team/ruby-connection-pool, https://github.com/mperham/connection_pool/issues/new,2746.3319791666668,2,17,0 -ruby-coveralls,-1.06398429249964,0.688688365743175,-1.62146319312924,https://salsa.debian.org/ruby-team/ruby-coveralls, https://github.com/lemurheavy/coveralls-ruby/issues/new,2746.3319791666668,2,17,0 -ruby-crack,-0.256144909790271,2.08731653197277,-0.877244085082554,https://salsa.debian.org/ruby-team/ruby-crack, https://github.com/jnunemaker/crack,4290.858148148148,10,28,0 -ruby-crb-blast,-0.696750147622397,1.56368796434261,-1.48542851447807,https://salsa.debian.org/ruby-team/ruby-crb-blast, https://github.com/cboursnell/crb-blast,1070.1020717592592,0,5,0 -ruby-cri,-0.234304524281558,2.33067119186735,-0.792949171408189,https://salsa.debian.org/ruby-team/ruby-cri, https://github.com/ddfreyne/cri,5399.781666666667,2,13,0 -ruby-css-parser,0.470298843201986,3.07318375118842,-0.226276662018377,https://salsa.debian.org/ruby-team/ruby-css-parser, https://github.com/premailer/css_parser/issues/new,2746.3319791666668,2,17,0 -ruby-curb,-0.951993628573659,0.5852000442618,-1.37029978991923,https://salsa.debian.org/ruby-team/ruby-curb, https://github.com/taf2/curb/issues/new,2746.3319791666668,2,17,0 -ruby-curses,0.239732109116517,3.76387260758644,-0.662728525606041,https://salsa.debian.org/ruby-team/ruby-curses, https://github.com/ruby/curses.git,5368.611724537037,1,10,0 -ruby-dalli,-0.749352215094772,1.73458354649505,-1.48489533094825,https://salsa.debian.org/ruby-team/ruby-dalli, https://github.com/petergoldstein/dalli/issues/new,2746.3319791666668,2,17,0 -ruby-database-cleaner,-1.74832922405947,0.739101823454802,-2.48508035548362,https://salsa.debian.org/ruby-team/ruby-database-cleaner, https://github.com/DatabaseCleaner/database_cleaner,5351.424652777778,37,192,0 -ruby-dataobjects,-0.605228635488907,1.92390901443385,-1.17035093052897,https://salsa.debian.org/ruby-team/ruby-dataobjects, https://github.com/datamapper/do,2417.1817939814814,23,80,0 -ruby-dataobjects-mysql,-0.542001589996934,1.3308331180041,-1.1220383383456,https://salsa.debian.org/ruby-team/ruby-dataobjects-mysql, https://github.com/datamapper/do/issues/new,2746.3319791666668,2,17,0 -ruby-dataobjects-postgres,-1.00904402256637,0.617540968332533,-1.30029321205638,https://salsa.debian.org/ruby-team/ruby-dataobjects-postgres, https://github.com/datamapper/do,2417.1817939814814,23,80,0 -ruby-dbf,-2.17293544580287,-1.12492567577822,-2.3569268761111,https://salsa.debian.org/ruby-team/ruby-dbf, https://github.com/infused/dbf/issues/new,2746.3319791666668,2,17,0 -ruby-dbus,-0.596798172154282,1.74535265452641,-1.28034864886111,https://salsa.debian.org/ruby-team/ruby-dbus, https://github.com/mvidner/ruby-dbus,4746.807060185185,9,33,0 -ruby-default-value-for,-0.844820367657218,1.50582615601139,-1.30792200429198,https://salsa.debian.org/ruby-team/ruby-default-value-for, https://github.com/FooBarWidget/default_value_for/issues/new,2746.3319791666668,2,17,0 -ruby-delayed-job,-0.228642407062013,2.47027908897614,-0.961746735723591,https://salsa.debian.org/ruby-team/ruby-delayed-job, http://github.com/collectiveidea/delayed_job/issues/new,2746.3319791666668,2,17,0 -ruby-devise-two-factor,-0.662426218528405,1.64671262728262,-1.27531542217528,https://salsa.debian.org/ruby-team/ruby-devise-two-factor, https://github.com/tinfoil/devise-two-factor.git,3466.0953935185184,20,37,0 -ruby-diaspora-federation,-4.73760544976791,-2.27340660516414,-5.40378423014188,https://salsa.debian.org/ruby-team/ruby-diaspora-federation, https://github.com/diaspora/diaspora_federation/issues/new,2746.3319791666668,2,17,0 -ruby-diff-lcs,0.307179615211835,2.563580346669,-0.262824001563441,https://salsa.debian.org/ruby-team/ruby-diff-lcs, https://github.com/halostatue/diff-lcs/issues/new,2746.3319791666668,2,17,0 -ruby-diffy,-0.225522029436628,2.81318448723136,-1.02832995269193,https://salsa.debian.org/ruby-team/ruby-diffy, https://github.com/samg/diffy,4494.668576388889,5,31,0 -ruby-distribution,-2.10117930738803,0.911261784935495,-3.05791627241738,https://salsa.debian.org/ruby-team/ruby-distribution, https://github.com/sciruby/distribution/issues/new,2746.3319791666668,2,17,0 -ruby-docker-api,0.290632159627153,4.20394012920714,-1.01215234748311,https://salsa.debian.org/ruby-team/ruby-docker-api, https://github.com/swipely/docker-api,3249.0699421296295,17,99,0 -ruby-domain-name,0.265149501486431,2.34547358088521,-0.138865391949013,https://salsa.debian.org/ruby-team/ruby-domain-name, https://github.com/knu/ruby-domain_name/issues/new,2746.3319791666668,2,17,0 -ruby-doorkeeper,-0.588646275098162,1.37716616398746,-1.16325496258011,https://salsa.debian.org/ruby-team/ruby-doorkeeper, https://github.com/doorkeeper-gem/doorkeeper,4399.01355324074,90,260,2 -ruby-doorkeeper-openid-connect,-1.43273759688198,1.03329360763674,-1.96620705240557,https://salsa.debian.org/ruby-team/ruby-doorkeeper-openid-connect, https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git,3262.613611111111,16,56,0 -ruby-dotenv,-0.706740654889572,1.55651802523664,-1.22867096870018,https://salsa.debian.org/ruby-team/ruby-dotenv, https://github.com/bkeepers/dotenv,4059.5279976851853,18,99,0 -ruby-eim-xml,-0.714678234659335,2.40949988120359,-1.5508131873095,https://salsa.debian.org/ruby-team/ruby-eim-xml, https://github.com/hirakuro/eim_xml/issues/new,2746.3319791666668,2,17,0 -ruby-elasticsearch,-1.30512671724407,1.04267072334105,-1.80054081139506,https://salsa.debian.org/ruby-team/ruby-elasticsearch, https://github.com/elastic/elasticsearch-ruby,3879.9172106481483,171,15,0 -ruby-em-http-request,-0.182257018001517,2.14321979325515,-1.01105313498018,https://salsa.debian.org/ruby-team/ruby-em-http-request, https://github.com/igrigorik/em-http-request/issues/new,2746.3319791666668,2,17,0 -ruby-em-redis,-2.43222753138059,0.322025242223316,-3.23835955419271,https://salsa.debian.org/ruby-team/ruby-em-redis, https://github.com/libc/em-redis,3058.3058101851852,3,10,0 -ruby-em-synchrony,-2.05987381556942,0.456421509321353,-2.97866035749162,https://salsa.debian.org/ruby-team/ruby-em-synchrony, https://github.com/igrigorik/em-synchrony,2910.8221180555556,2,57,0 -ruby-encryptor,0.4811221705223,4.05605298671928,-0.745539049132522,https://salsa.debian.org/ruby-team/ruby-encryptor, https://github.com/attr-encrypted/encryptor,2635.9583564814816,1,9,0 -ruby-entypo-rails,0.53910177861472,4.35300017839131,-0.514820639301322,https://salsa.debian.org/ruby-team/ruby-entypo-rails, https://github.com/lwe/entypo-rails,1757.4358333333332,1,10,0 -ruby-enumerize,-3.5842960195173,-1.06007577005636,-4.26311507615177,https://salsa.debian.org/ruby-team/ruby-enumerize, https://github.com/brainspec/enumerize/issues/new,2746.3319791666668,2,17,0 -ruby-escape-utils,-0.352072358197853,1.32045383709062,-0.803022834602165,https://salsa.debian.org/ruby-team/ruby-escape-utils, https://github.com/brianmario/escape_utils.git,4731.6076041666665,5,24,0 -ruby-espeak,-0.728675124699545,2.03520786367694,-1.48742188719036,https://salsa.debian.org/ruby-team/ruby-espeak, https://github.com/dejan/espeak-ruby/issues/new,2746.3319791666668,2,17,0 -ruby-ethon,-0.00428605340229343,2.23013091505627,-0.563387695078941,https://salsa.debian.org/ruby-team/ruby-ethon, https://github.com/typhoeus/ethon/issues/new,2746.3319791666668,2,17,0 -ruby-excon,0.324164795050424,2.11616601443465,-0.182728422506557,https://salsa.debian.org/ruby-team/ruby-excon, https://github.com/excon/excon/issues/new,2746.3319791666668,2,17,0 -ruby-execjs,0.812895928343861,3.68763630539758,-0.0541606598301758,https://salsa.debian.org/ruby-team/ruby-execjs, https://github.com/rails/execjs/issues/new,2746.3319791666668,2,17,0 -ruby-factory-bot,-2.80311103852854,-0.753937488732488,-3.29655624488076,https://salsa.debian.org/ruby-team/ruby-factory-bot, https://github.com/thoughtbot/factory_bot/issues/new,2746.3319791666668,2,17,0 -ruby-factory-bot-rails,-4.33627538423677,-1.18492514059182,-5.29644821746184,https://salsa.debian.org/ruby-team/ruby-factory-bot-rails, https://github.com/thoughtbot/factory_bot_rails/issues/new,2746.3319791666668,2,17,0 -ruby-factory-girl,-1.42630613643365,0.543363319899027,-1.9953583846548,https://salsa.debian.org/ruby-team/ruby-factory-girl, https://github.com/thoughtbot/factory_girl.git,4913.916967592592,224,76,0 -ruby-faker,-2.04326808399287,0.455823211180947,-2.72605456068932,https://salsa.debian.org/ruby-team/ruby-faker, https://github.com/faker-ruby/faker/issues/new,2746.3319791666668,2,17,0 -ruby-fakeredis,-3.90276111658524,-1.91100186972822,-4.33404769776494,https://salsa.debian.org/ruby-team/ruby-fakeredis, https://github.com/guilleiguaran/fakeredis.git,3981.188900462963,20,88,0 -ruby-fakeweb,-2.14550452774702,-0.773187458569225,-2.56679662246972,https://salsa.debian.org/ruby-team/ruby-fakeweb, https://github.com/chrisk/fakeweb.git,3218.664386574074,6,19,0 -ruby-faraday-middleware,-0.269047678836487,2.06194722235424,-0.769690537232575,https://salsa.debian.org/ruby-team/ruby-faraday-middleware, https://github.com/lostisland/faraday_middleware,4563.581898148148,47,29,1 -ruby-fast-gettext,-0.120940172494493,1.23606882337898,-0.568830782487987,https://salsa.debian.org/ruby-team/ruby-fast-gettext, https://github.com/grosser/fast_gettext,5110.33400462963,3,48,0 -ruby-fastimage,-0.925969085128097,1.72194061279016,-1.48478102561478,https://salsa.debian.org/ruby-team/ruby-fastimage, https://github.com/sdsykes/fastimage,5223.717372685185,7,44,0 -ruby-faye,-2.00693218272051,1.4374394085277,-2.90993526775194,https://salsa.debian.org/ruby-team/ruby-faye, https://github.com/faye/faye,4073.248483796296,5,46,0 -ruby-fcgi,0.30050437468813,2.21535271819044,-0.345605661846562,https://salsa.debian.org/ruby-team/ruby-fcgi, https://github.com/alphallc/ruby-fcgi-ng,3559.9222685185186,1,6,0 -ruby-ferret,-1.15248219703875,0.980270687393673,-1.83774544566306,https://salsa.debian.org/ruby-team/ruby-ferret, https://github.com/dbalmain/ferret/issues/new,2746.3319791666668,2,17,0 -ruby-ffaker,-2.54897143551112,0.502835365193304,-3.5038139593458,https://salsa.debian.org/ruby-team/ruby-ffaker, https://github.com/ffaker/ffaker/issues/new,2746.3319791666668,2,17,0 -ruby-ffi,0.750741192878868,2.07867676362597,0.167784286080403,https://salsa.debian.org/ruby-team/ruby-ffi, https://github.com/ffi/ffi/wiki/issues/new,2746.3319791666668,2,17,0 -ruby-ffi-rzmq,-1.7723964357575,0.107292611880037,-2.43194679695625,https://salsa.debian.org/ruby-team/ruby-ffi-rzmq, https://github.com/chuckremes/ffi-rzmq,3424.713391203704,1,37,0 -ruby-ffi-yajl,0.0311669559746006,2.34139322033609,-0.404647741092596,https://salsa.debian.org/ruby-team/ruby-ffi-yajl, https://github.com/chef/ffi-yajl.git,3568.588298611111,5,25,0 -ruby-filepath,-2.30534812675825,0.140990396146128,-2.95104915686477,https://salsa.debian.org/ruby-team/ruby-filepath, https://github.com/gioele/filepath/issues/new,2746.3319791666668,2,17,0 -ruby-fission,-1.65620957430192,0.838811530614959,-2.21924811710672,https://salsa.debian.org/ruby-team/ruby-fission, https://github.com/thbishop/fission,876.3192708333333,0,10,0 -ruby-flexmock,-0.34548783673236,2.57111292603163,-1.07191829387234,https://salsa.debian.org/ruby-team/ruby-flexmock, https://github.com/doudou/flexmock/issues/new,2746.3319791666668,2,17,0 -ruby-flipper,-1.21253738932967,1.21489209769407,-1.85799545175152,https://salsa.debian.org/ruby-team/ruby-flipper, https://github.com/jnunemaker/flipper,4162.091701388889,31,105,1 -ruby-fog-core,0.609150673420472,3.44790091720947,-0.153332087984738,https://salsa.debian.org/ruby-team/ruby-fog-core, https://github.com/fog/fog-core/issues/new,2746.3319791666668,2,17,0 -ruby-fog-libvirt,0.217863287846909,2.50351307596338,-0.236950089821332,https://salsa.debian.org/ruby-team/ruby-fog-libvirt, https://github.com/fog/fog-libvirt,3115.7615162037036,9,33,0 -ruby-fog-local,-0.560496887059474,1.94240758554345,-1.17254102052718,https://salsa.debian.org/ruby-team/ruby-fog-local, https://github.com/fog/fog-local,5023.447175925926,4,29,0 -ruby-fog-rackspace,-0.49913712640418,1.90824177376792,-1.14481630838024,https://salsa.debian.org/ruby-team/ruby-fog-rackspace, https://github.com/fog/fog-rackspace,1479.8924537037037,3,5,0 -ruby-fogbugz,-0.712082494968256,1.92305783373217,-1.27598467118291,https://salsa.debian.org/ruby-team/ruby-fogbugz, https://github.com/firmafon/ruby-fogbugz,2091.224988425926,2,11,0 -ruby-font-awesome-rails,-0.818075553073728,0.43473253749754,-1.0809960446575,https://salsa.debian.org/ruby-team/ruby-font-awesome-rails, https://github.com/bokmann/font-awesome-rails,4227.784085648148,7,30,0 -ruby-foreman,-0.827261813145368,1.5097537203568,-1.37556352361594,https://salsa.debian.org/ruby-team/ruby-foreman, http://github.com/ddollar/foreman/issues/new,2746.3319791666668,2,17,0 -ruby-fssm,-0.434816917112639,2.36422881279322,-1.13137984553414,https://salsa.debian.org/ruby-team/ruby-fssm, https://github.com/ttilley/fssm.git,2641.922002314815,2,11,0 -ruby-gelf,-2.04734038121914,0.385090259919112,-2.71689816769282,https://salsa.debian.org/ruby-team/ruby-gelf, https://github.com/Graylog2/gelf-rb,4546.170115740741,9,25,0 -ruby-gettext-i18n-rails,-0.761306952871014,2.02562934857725,-1.50917719235857,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails, https://github.com/grosser/gettext_i18n_rails,5235.78025462963,11,59,0 -ruby-gettext-i18n-rails-js,-0.961258328672556,2.48725603834977,-1.87852032130149,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails-js, https://github.com/webhippie/gettext_i18n_rails_js,4076.987175925926,2,24,0 -ruby-gettext-setup,-0.528047027616317,1.2500737380164,-0.959638692207441,https://salsa.debian.org/puppet-team/ruby-gettext-setup, https://github.com/puppetlabs/gettext-setup-gem,2424.9263310185183,17,20,0 -ruby-gir-ffi,-1.52318008763164,0.47543873145472,-2.13105532177141,https://salsa.debian.org/ruby-team/ruby-gir-ffi, https://github.com/mvz/ruby-gir-ffi,5437.5734375,3,7,0 -ruby-git,-0.610861650916398,1.21228795801147,-1.0441459189093,https://salsa.debian.org/ruby-team/ruby-git, https://github.com/ruby-git/ruby-git/issues/new,2746.3319791666668,2,17,0 -ruby-github-api,-2.31364882786132,0.325639108637881,-2.97394980033171,https://salsa.debian.org/ruby-team/ruby-github-api,https://salsa.debian.org/ruby-team/ruby-github-api,2392.401226851852,0,6,0 -ruby-github-linguist,-0.649517699033064,1.75915565179493,-1.16324791291581,https://salsa.debian.org/ruby-team/ruby-github-linguist,https://salsa.debian.org/ruby-team/ruby-github-linguist,3497.9967939814815,0,11,0 -ruby-github-markdown,-1.10514320300276,0.531227105443483,-1.45520269274711,https://salsa.debian.org/ruby-team/ruby-github-markdown,https://salsa.debian.org/ruby-team/ruby-github-markdown,3170.9246875,0,7,0 -ruby-github-markup,-0.0402315958246687,2.26585122072999,-0.751462188010826,https://salsa.debian.org/ruby-team/ruby-github-markup,https://salsa.debian.org/ruby-team/ruby-github-markup,3514.504826388889,0,15,0 -ruby-globalid,0.566794425706185,3.05185208343155,-0.164807864980667,https://salsa.debian.org/ruby-team/ruby-globalid, https://github.com/rails/globalid/issues/new,2746.3319791666668,2,17,0 -ruby-gnome,-0.106105381391262,0.104307946696826,-0.210664593253203,https://salsa.debian.org/ruby-team/ruby-gnome, https://github.com/ruby-gnome/ruby-gnome.git,5781.758344907407,22,71,0 -ruby-gollum-rugged-adapter,-0.50462831375961,1.69317878690315,-0.950759709482016,https://salsa.debian.org/ruby-team/ruby-gollum-rugged-adapter, https://gitlab.com/gitlab-org/gitlab-gollum-rugged_adapter,2512.6936226851853,5,19,0 -ruby-gon,-0.661728283020308,1.46659859934487,-1.21326572391047,https://salsa.debian.org/ruby-team/ruby-gon, https://github.com/gazay/gon,3627.614236111111,4,70,2 -ruby-gpgme,-0.0751654777035372,2.58317423696136,-0.661293747574332,https://salsa.debian.org/ruby-team/ruby-gpgme, https://github.com/ueno/ruby-gpgme,5752.710405092593,29,17,0 -ruby-graffiti,-1.48469353838555,1.55033799294536,-2.39301056583199,https://salsa.debian.org/ruby-team/ruby-graffiti, https://github.com/angdraug/graffiti,3536.2679166666667,0,3,0 -ruby-grape,-0.435041529529147,1.40064199170097,-1.07062958903344,https://salsa.debian.org/ruby-team/ruby-grape, https://github.com/ruby-grape/grape/issues/new,2746.3319791666668,2,17,0 -ruby-grape-entity,-0.541811296821899,2.00045621748763,-1.19901009991805,https://salsa.debian.org/ruby-team/ruby-grape-entity, https://github.com/intridea/grape-entity,3988.0353587962964,43,59,0 -ruby-graphviz,-0.281553724005688,2.15242607228157,-1.12674606922721,https://salsa.debian.org/ruby-team/ruby-graphviz, https://github.com/glejeune/Ruby-Graphviz/issues/new,2746.3319791666668,2,17,0 -ruby-grit,-0.85379085921112,1.11551762328449,-1.34489454389022,https://salsa.debian.org/ruby-team/ruby-grit, https://gitlab.com/gitlab-org/gitlab-grit/issues/new,2746.3319791666668,2,17,0 -ruby-gruff,-1.42880636005629,1.00953687084435,-2.24425388199573,https://salsa.debian.org/ruby-team/ruby-gruff, https://github.com/topfunky/gruff,5638.625555555555,13,44,1 -ruby-gsl,-0.323076670655221,0.701457516977852,-0.74646383331037,https://salsa.debian.org/ruby-team/ruby-gsl, https://github.com/SciRuby/rb-gsl/issues/new,2746.3319791666668,2,17,0 -ruby-guard,-2.98071324834753,-1.61784676093903,-3.31281269568528,https://salsa.debian.org/ruby-team/ruby-guard, https://github.com/guard/guard.git,4726.434537037037,21,191,0 -ruby-haml,-0.228856011070315,0.778998558187712,-0.558541396829887,https://salsa.debian.org/ruby-team/ruby-haml, https://github.com/haml/haml/issues/new,2746.3319791666668,2,17,0 -ruby-haml-rails,-1.79867361767118,0.276940048357399,-2.40107154206579,https://salsa.debian.org/ruby-team/ruby-haml-rails, https://github.com/haml/haml-rails/issues/new,2746.3319791666668,2,17,0 -ruby-hamster,0.191010877071582,2.65680223865782,-0.360802440419047,https://salsa.debian.org/ruby-team/ruby-hamster, https://github.com/hamstergem/hamster/issues/new,2746.3319791666668,2,17,0 -ruby-hangouts-chat,-1.2144339097396,0.481810852436541,-1.56375669183369,https://salsa.debian.org/ruby-team/ruby-hangouts-chat, https://github.com/enzinia/hangouts-chat,1065.9778472222222,3,4,0 -ruby-hashie,0.572255045721982,3.40853235744765,-0.235541161791668,https://salsa.debian.org/ruby-team/ruby-hashie, https://github.com/hashie/hashie/issues/new,2746.3319791666668,2,17,0 -ruby-highline,0.245316704669275,2.4988399297125,-0.223584690391328,https://salsa.debian.org/ruby-team/ruby-highline, https://github.com/JEG2/highline/issues/new,2746.3319791666668,2,17,0 -ruby-hipchat,-0.656642499184759,1.64698920332921,-1.26290406547913,https://salsa.debian.org/ruby-team/ruby-hipchat, https://github.com/hipchat/hipchat-rb,2705.747349537037,7,102,0 -ruby-hiredis,-0.864125054810679,1.25971635974218,-1.35984364268179,https://salsa.debian.org/ruby-team/ruby-hiredis, https://github.com/redis/hiredis-rb.git,4451.3495601851855,10,19,0 -ruby-hitimes,0.106810087584044,2.6613098356851,-0.447701454992152,https://salsa.debian.org/ruby-team/ruby-hitimes, https://github.com/copiousfreetime/hitimes/issues/new,2746.3319791666668,2,17,0 -ruby-html-pipeline,-0.378214180646391,2.49992590428495,-1.14702469076061,https://salsa.debian.org/ruby-team/ruby-html-pipeline, https://github.com/jch/html-pipeline,4034.7769328703703,33,88,0 -ruby-html2haml,-0.284722491017832,1.17087715522143,-0.644912982664216,https://salsa.debian.org/ruby-team/ruby-html2haml, https://github.com/haml/html2haml/issues/new,2746.3319791666668,2,17,0 -ruby-http,0.53289195958659,3.15871460361099,-0.50414125027534,https://salsa.debian.org/ruby-team/ruby-http, https://github.com/httprb/http.rb,4428.906041666667,68,68,2 -ruby-http-parser.rb,0.185483539780022,2.30025907431261,-0.258298363804737,https://salsa.debian.org/ruby-team/ruby-http-parser.rb, https://github.com/tmm1/http_parser.rb.git,4794.1611111111115,3,23,0 -ruby-httparty,-0.229631929392527,1.81011336926819,-0.82172007971742,https://salsa.debian.org/ruby-team/ruby-httparty, https://github.com/jnunemaker/httparty/issues/new,2746.3319791666668,2,17,0 -ruby-httpclient,3.15602227822802,6.33967013332377,1.79331322235043,https://salsa.debian.org/ruby-team/ruby-httpclient, https://github.com/nahi/httpclient,4669.173564814815,7,81,0 -ruby-i18n,0.815241575738999,2.76960840689102,0.10314134149848,https://salsa.debian.org/ruby-team/ruby-i18n, https://github.com/ruby-i18n/i18n/issues/new,2746.3319791666668,2,17,0 -ruby-i18n-inflector-rails,-3.61019103915543,-1.20359084861927,-4.2660614395271,https://salsa.debian.org/ruby-team/ruby-i18n-inflector-rails, https://github.com/siefca/i18n-inflector-rails/issues/new,2746.3319791666668,2,17,0 -ruby-icalendar,-0.996770381111859,1.76166143807078,-1.71330455920203,https://salsa.debian.org/ruby-team/ruby-icalendar, https://github.com/icalendar/icalendar/issues/new,2746.3319791666668,2,17,0 -ruby-ice-cube,-2.94478508305423,0.324568903500346,-3.69671581096293,https://salsa.debian.org/ruby-team/ruby-ice-cube, http://seejohnrun.github.com/ice_cube/issues/new,2746.3319791666668,2,17,0 -ruby-image-science,-0.610985542772413,1.33569112628339,-1.2647438357866,https://salsa.debian.org/ruby-team/ruby-image-science, https://github.com/seattlerb/image_science/issues/new,2746.3319791666668,2,17,0 -ruby-influxdb,0.0573197432450962,3.22712043301564,-0.969059483860832,https://salsa.debian.org/ruby-team/ruby-influxdb, https://github.com/InfluxCommunity/influxdb-ruby/issues/new,2746.3319791666668,2,17,0 -ruby-inherited-resources,-4.48052443954816,-1.61258213545085,-5.32369698201447,https://salsa.debian.org/ruby-team/ruby-inherited-resources, https://github.com/activeadmin/inherited_resources/issues/new,2746.3319791666668,2,17,0 -ruby-inline,-0.54884630779506,1.5864609290271,-1.15399526279571,https://salsa.debian.org/ruby-team/ruby-inline, https://github.com/seattlerb/rubyinline.git,5600.426180555555,0,4,0 -ruby-innertube,-0.886990320114069,1.6021467976891,-1.65441585233883,https://salsa.debian.org/ruby-team/ruby-innertube, https://github.com/basho/innertube.git,1008.2290162037037,0,4,0 -ruby-ipaddress,0.378587410138154,3.19339794313925,-0.219616169183229,https://salsa.debian.org/ruby-team/ruby-ipaddress, https://github.com/bluemonk/ipaddress/issues/new,2746.3319791666668,2,17,0 -ruby-jar-dependencies,0.0460603945775547,2.81731177676538,-0.740787607467543,https://salsa.debian.org/ruby-team/ruby-jar-dependencies, https://github.com/mkristian/jar-dependencies,3114.244027777778,4,15,0 -ruby-jbuilder,0.92681589329609,3.90243591134881,-0.0482062972627307,https://salsa.debian.org/ruby-team/ruby-jbuilder, https://github.com/rails/jbuilder,4285.470613425926,42,114,1 -ruby-jekyll-commonmark,-3.90576114957025,-1.6518132292317,-4.34337050456475,https://salsa.debian.org/ruby-team/ruby-jekyll-commonmark, https://github.com/jekyll/jekyll-commonmark/issues/new,2746.3319791666668,2,17,0 -ruby-jekyll-feed,0.16757711349694,2.24946846719559,-0.262725953864251,https://salsa.debian.org/ruby-team/ruby-jekyll-feed, https://github.com/jekyll/jekyll-feed/issues/new,2746.3319791666668,2,17,0 -ruby-jekyll-watch,0.772836920458749,3.72970144863419,-0.0961095867826059,https://salsa.debian.org/ruby-team/ruby-jekyll-watch, https://github.com/jekyll/jekyll-watch,2617.311053240741,6,10,1 -ruby-jira,-1.16356767527732,1.64198560988932,-1.8195005803007,https://salsa.debian.org/ruby-team/ruby-jira, https://github.com/sumoheavy/jira-ruby,4065.446701388889,15,112,0 -ruby-joiner,-0.89957338803928,2.13297414652465,-1.70307717319651,https://salsa.debian.org/ruby-team/ruby-joiner, https://github.com/pat/joiner/issues/new,2746.3319791666668,2,17,0 -ruby-jquery-atwho-rails,-0.74233755165034,1.49807671963935,-1.28419117733237,https://salsa.debian.org/ruby-team/ruby-jquery-atwho-rails, https://github.com/ichord/jquery-atwho-rails/issues/new,2746.3319791666668,2,17,0 -ruby-jquery-rails,0.47629162422549,2.52894039288237,-0.167140999616939,https://salsa.debian.org/ruby-team/ruby-jquery-rails, https://github.com/rails/jquery-rails.git,4697.095868055556,14,69,0 -ruby-jquery-ui-rails,-0.555310039918061,1.25474851696358,-1.14962975443231,https://salsa.debian.org/ruby-team/ruby-jquery-ui-rails, https://github.com/joliss/jquery-ui-rails,4080.96974537037,4,20,0 -ruby-js-routes,-3.46443888085801,-0.448912427867101,-4.25770793969142,https://salsa.debian.org/ruby-team/ruby-js-routes, https://github.com/railsware/js-routes,3471.6076620370372,19,61,0 -ruby-json-jwt,-0.664678173904206,1.82433301242804,-1.33767207744544,https://salsa.debian.org/ruby-team/ruby-json-jwt, https://github.com/nov/json-jwt/issues/new,2746.3319791666668,2,17,0 -ruby-json-schema,-2.10309419888235,-0.252835633222006,-2.47580554866367,https://salsa.debian.org/ruby-team/ruby-json-schema, https://github.com/voxpupuli/json-schema/issues/new,2746.3319791666668,2,17,0 -ruby-json-spec,-2.59624622223757,0.235746645393774,-3.26976487622892,https://salsa.debian.org/ruby-team/ruby-json-spec, https://github.com/collectiveidea/json_spec,2153.749525462963,1,19,0 -ruby-jwt,-0.00893106066581602,2.92991582128566,-0.735893301336851,https://salsa.debian.org/ruby-team/ruby-jwt, https://github.com/jwt/ruby-jwt/issues/new,2746.3319791666668,2,17,0 -ruby-kakasi-ffi,-3.43512770438635,-0.663996376780859,-4.21888845591111,https://salsa.debian.org/ruby-team/ruby-kakasi-ffi, https://github.com/knu/kakasi_ffi/issues/new,2746.3319791666668,2,17,0 -ruby-kaminari,-0.548518597486277,1.04639899006081,-0.964026637366687,https://salsa.debian.org/ruby-team/ruby-kaminari, https://github.com/kaminari/kaminari,4634.299247685185,35,152,3 -ruby-kitchen-salt,-5.03892668763929,-2.91003595314571,-5.47880252364296,https://salsa.debian.org/ruby-team/ruby-kitchen-salt, https://github.com/saltstack/kitchen-salt/issues/new,2746.3319791666668,2,17,0 -ruby-kramdown,0.158542489753522,1.28859181697314,-0.177482119377244,https://salsa.debian.org/ruby-team/ruby-kramdown, https://github.com/gettalong/kramdown/issues/new,2746.3319791666668,2,17,0 -ruby-ldap,0.972369716159411,3.84112355567061,-0.148730482711379,https://salsa.debian.org/ruby-team/ruby-ldap, https://github.com/bearded/ruby-ldap,3395.5528703703703,4,15,0 -ruby-libvirt,0.410084044379931,1.97041620158512,-0.135206171987803,https://salsa.debian.org/libvirt-team/ruby-libvirt, https://gitlab.com/libvirt/libvirt-ruby.git,5783.487592592593,10,22,0 -ruby-libxml,-0.165243964204388,1.55273545183271,-0.754044250255796,https://salsa.debian.org/ruby-team/ruby-libxml, https://github.com/xml4r/libxml-ruby/issues/new,2746.3319791666668,2,17,0 -ruby-licensee,-0.55948107153302,1.99789361583985,-1.13384652936332,https://salsa.debian.org/ruby-team/ruby-licensee, https://github.com/licensee/licensee,3404.3053819444444,14,56,2 -ruby-locale,0.380380223126928,1.52427631900364,-0.0365821888585531,https://salsa.debian.org/ruby-team/ruby-locale, https://github.com/ruby-gettext/locale/issues/new,2746.3319791666668,2,17,0 -ruby-loofah,0.283654649580742,2.33072355969229,-0.235889640246842,https://salsa.debian.org/ruby-team/ruby-loofah, https://github.com/flavorjones/loofah,5476.03337962963,22,39,1 -ruby-magic,-0.136206368002505,2.21068559500228,-0.795703621059015,https://salsa.debian.org/ruby-team/ruby-magic, https://github.com/qoobaa/magic,2808.462199074074,0,9,0 -ruby-mail,0.569824391096844,2.94293194786905,-0.128185244140694,https://salsa.debian.org/ruby-team/ruby-mail, https://github.com/mikel/mail,5260.285740740741,90,197,6 -ruby-mail-gpg,-0.940901595184913,1.98535203535049,-1.67524625904703,https://salsa.debian.org/ruby-team/ruby-mail-gpg, https://github.com/jkraemer/mail-gpg,4267.955972222222,18,136,0 -ruby-mail-room,-0.784838576862949,1.30510875264002,-1.26052220663553,https://salsa.debian.org/ruby-team/ruby-mail-room, https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git,3975.701203703704,4,30,0 -ruby-markdown-it-html5-embed,-2.86486474479113,0.594360286756556,-3.6881215540136,https://salsa.debian.org/ruby-team/ruby-markdown-it-html5-embed, https://github.com/cmrd-senya/markdown-it-html5-embed,2489.0705555555555,3,10,0 -ruby-maruku,-0.216540430898513,2.43948015322271,-0.770076020372455,https://salsa.debian.org/ruby-team/ruby-maruku, https://github.com/bhollis/maruku,3523.0504282407405,0,23,2 -ruby-maxitest,-2.35074630913767,0.201116804343594,-2.98216649465015,https://salsa.debian.org/ruby-team/ruby-maxitest, https://github.com/grosser/maxitest,3302.378009259259,0,10,0 -ruby-mechanize,-0.385894178600464,1.23312762061377,-0.880550223257063,https://salsa.debian.org/ruby-team/ruby-mechanize, https://github.com/sparklemotion/mechanize.git,5735.6054513888885,5,12,0 -ruby-method-source,0.396769088701388,3.23180240512107,-0.291360508747447,https://salsa.debian.org/ruby-team/ruby-method-source, https://github.com/banister/method_source,3988.609039351852,4,19,0 -ruby-mime-types,0.371762936483795,2.68786545390583,-0.130086496626921,https://salsa.debian.org/ruby-team/ruby-mime-types, https://github.com/mime-types/ruby-mime-types/issues/new,2746.3319791666668,2,17,0 -ruby-mini-magick,-1.0439670842072,0.215784061195154,-1.39971451925144,https://salsa.debian.org/ruby-team/ruby-mini-magick, https://github.com/minimagick/minimagick/issues/new,2746.3319791666668,2,17,0 -ruby-minitar,-0.0660695837931518,1.75541674831937,-0.563916374141107,https://salsa.debian.org/ruby-team/ruby-minitar, https://github.com/halostatue/minitar,5658.657685185185,8,6,1 -ruby-minitest,0.629154319712798,3.25304256882526,0.00592596452483081,https://salsa.debian.org/ruby-team/ruby-minitest, https://github.com/seattlerb/minitest/issues/new,2746.3319791666668,2,17,0 -ruby-minitest-around,-1.76980687764466,0.751078811392686,-2.51140545626551,https://salsa.debian.org/ruby-team/ruby-minitest-around, https://github.com/splattael/minitest-around,2552.446770833333,2,14,0 -ruby-minitest-shared-description,-3.20574342894966,-0.753679344617953,-3.73552024295197,https://salsa.debian.org/ruby-team/ruby-minitest-shared-description, https://github.com/jeremyevans/minitest-shared_description,2605.2266666666665,0,2,0 -ruby-mixlib-install,-0.638529832096739,2.18892079534196,-1.48474483611124,https://salsa.debian.org/ruby-team/ruby-mixlib-install, https://github.com/chef/mixlib-install/issues/new,2746.3319791666668,2,17,0 -ruby-mmap2,-2.5031482679413,1.20266390361551,-3.56780869540354,https://salsa.debian.org/ruby-team/ruby-mmap2, https://gitlab.com/gitlab-org/mmap2,2959.9497569444443,0,8,0 -ruby-mocha,-0.0854006270884438,1.53284165567993,-0.586575378706611,https://salsa.debian.org/ruby-team/ruby-mocha, https://github.com/freerange/mocha/issues/new,2746.3319791666668,2,17,0 -ruby-moneta,-0.564013249665526,0.251590548161168,-0.810395607362015,https://salsa.debian.org/ruby-team/ruby-moneta, https://github.com/moneta-rb/moneta,5182.159502314815,20,32,0 -ruby-mousetrap-rails,-0.541447339095833,2.29951150532759,-1.30228887386486,https://salsa.debian.org/ruby-team/ruby-mousetrap-rails, https://github.com/kugaevsky/mousetrap-rails,2627.8625810185185,0,4,0 -ruby-msgpack,0.289349615724596,2.75057422607797,-0.316936287829029,https://salsa.debian.org/ruby-team/ruby-msgpack, https://github.com/msgpack/msgpack-ruby,4471.12474537037,7,115,0 -ruby-multi-json,0.658299961622085,3.18113451815751,-0.0546345167045796,https://salsa.debian.org/ruby-team/ruby-multi-json, https://github.com/intridea/multi_json,3679.9527430555554,10,44,1 -ruby-mustache,0.386389823638064,2.98197077093261,-0.405227461396917,https://salsa.debian.org/ruby-team/ruby-mustache, https://github.com/defunkt/mustache,4729.490868055555,23,58,1 -ruby-mysql2,0.313451297472591,1.47310324925672,-0.133008215537017,https://salsa.debian.org/ruby-team/ruby-mysql2, https://github.com/brianmario/mysql2,4877.841319444445,60,107,4 -ruby-net-ldap,0.247373085030764,1.93903824820872,-0.292711252233112,https://salsa.debian.org/ruby-team/ruby-net-ldap, https://github.com/ruby-ldap/ruby-net-ldap.git,5396.769085648149,19,114,0 -ruby-net-sftp,0.512822572952379,2.64276927064739,-0.120075758301409,https://salsa.debian.org/ruby-team/ruby-net-sftp, https://github.com/net-ssh/net-sftp/issues/new,2746.3319791666668,2,17,0 -ruby-net-ssh,0.342371248269138,1.57085056316473,-0.0962002824518287,https://salsa.debian.org/ruby-team/ruby-net-ssh, https://github.com/net-ssh/net-ssh/issues/new,2746.3319791666668,2,17,0 -ruby-net-ssh-gateway,0.0949247840517942,2.40618794880946,-0.388358293282975,https://salsa.debian.org/ruby-team/ruby-net-ssh-gateway, https://github.com/net-ssh/net-ssh-gateway/issues/new,2746.3319791666668,2,17,0 -ruby-netrc,0.668940426764325,3.56001631169099,-0.123759768859117,https://salsa.debian.org/ruby-team/ruby-netrc, https://github.com/heroku/netrc,3633.5661342592593,0,30,0 -ruby-nio4r,0.40656514695811,3.34025237171565,-0.350924625736781,https://salsa.debian.org/ruby-team/ruby-nio4r, https://github.com/socketry/nio4r,5508.923969907408,25,41,8 -ruby-nokogiri,0.0984970577234731,0.746815474857061,-0.106324428267698,https://salsa.debian.org/ruby-team/ruby-nokogiri, https://github.com/sparklemotion/nokogiri/issues/new,2746.3319791666668,2,17,0 -ruby-nokogumbo,0.0754524159369966,3.17700900735038,-0.752017734490445,https://salsa.debian.org/ruby-team/ruby-nokogumbo, https://github.com/rubys/nokogumbo,3061.6749537037035,9,20,1 -ruby-ntlm,-0.0624150923196188,2.58623929509879,-0.720512222861156,https://salsa.debian.org/ruby-team/ruby-ntlm, https://github.com/winrb/rubyntlm/issues/new,2746.3319791666668,2,17,0 -ruby-oauth,0.0832778896486886,2.84531471759718,-0.592601217275356,https://salsa.debian.org/ruby-team/ruby-oauth, https://github.com/oauth-xx/oauth-ruby,5341.0796643518515,47,77,3 -ruby-oauth2,-0.165607622047308,2.31959119320538,-0.900513508845379,https://salsa.debian.org/ruby-team/ruby-oauth2, https://github.com/intridea/oauth2,4856.243298611111,41,112,2 -ruby-oily-png,0.145318381586283,3.15074053383197,-0.713115473924132,https://salsa.debian.org/ruby-team/ruby-oily-png, https://github.com/wvanbergen/oily_png/issues/new,2746.3319791666668,2,17,0 -ruby-oj,0.200960134409374,1.56482055224045,-0.138033863850096,https://salsa.debian.org/ruby-team/ruby-oj, https://github.com/ohler55/oj/issues/new,2746.3319791666668,2,17,0 -ruby-ole,-0.662169216695503,1.43035765378809,-1.30551794649748,https://salsa.debian.org/ruby-team/ruby-ole, https://github.com/aquasync/ruby-ole/issues/new,2746.3319791666668,2,17,0 -ruby-omniauth-cas3,-0.595254702805624,1.82175762271394,-1.2467001517361,https://salsa.debian.org/ruby-team/ruby-omniauth-cas3, https://github.com/tduehr/omniauth-cas3,3904.238402777778,7,20,0 -ruby-omniauth-crowd,-0.539391002340597,2.01960410227116,-1.23274022351139,https://salsa.debian.org/ruby-team/ruby-omniauth-crowd, https://github.com/robdimarco/omniauth_crowd,3405.9749189814816,0,18,0 -ruby-omniauth-facebook,-0.441980618406242,2.42414527178039,-1.18102722181732,https://salsa.debian.org/ruby-team/ruby-omniauth-facebook, https://github.com/simi/omniauth-facebook,4035.1388425925925,21,43,0 -ruby-omniauth-github,-0.643273362222477,1.92259855385143,-1.22304663941278,https://salsa.debian.org/ruby-team/ruby-omniauth-github,https://salsa.debian.org/ruby-team/ruby-omniauth-github,3158.4246296296296,0,8,0 -ruby-omniauth-gitlab,-0.863455311873375,1.3390999824916,-1.29446320996902,https://salsa.debian.org/ruby-team/ruby-omniauth-gitlab, https://github.com/linchus/omniauth-gitlab/issues/new,2746.3319791666668,2,17,0 -ruby-omniauth-openid,-2.39935741291074,-0.171642674226449,-2.97783480212631,https://salsa.debian.org/ruby-team/ruby-omniauth-openid, https://github.com/intridea/omniauth-openid,4671.711388888889,3,19,0 -ruby-omniauth-saml,-0.557953172451022,2.35318785298679,-1.24973080467682,https://salsa.debian.org/ruby-team/ruby-omniauth-saml, https://github.com/PracticallyGreen/omniauth-saml.git,4118.115821759259,12,46,0 -ruby-open4,0.090734973072439,2.65910426156055,-0.492171246465847,https://salsa.debian.org/ruby-team/ruby-open4, https://github.com/ahoward/open4,1740.4206597222221,2,8,0 -ruby-openid-connect,-1.15024906069492,2.00418171418765,-2.12720173001155,https://salsa.debian.org/ruby-team/ruby-openid-connect, https://github.com/nov/openid_connect,4182.979143518519,0,17,0 -ruby-ox,-1.6650363011954,1.17267166877634,-2.48580643437399,https://salsa.debian.org/ruby-team/ruby-ox, https://github.com/ohler55/ox.git,4590.917442129629,19,32,0 -ruby-packable,-3.09922503917592,-0.707774452569116,-3.6975414863465,https://salsa.debian.org/ruby-team/ruby-packable, https://github.com/marcandre/packable/issues/new,2746.3319791666668,2,17,0 -ruby-paint,0.034074675246231,1.78292088202141,-0.28505659017706,https://salsa.debian.org/ruby-team/ruby-paint, https://github.com/janlelis/paint.git,4285.910474537037,4,14,0 -ruby-parallel,0.619323841529007,3.53983659817764,-0.37749908332836,https://salsa.debian.org/ruby-team/ruby-parallel, https://github.com/grosser/parallel/issues/new,2746.3319791666668,2,17,0 -ruby-paranoia,-0.101286641645732,3.71762886739992,-1.26110699558109,https://salsa.debian.org/ruby-team/ruby-paranoia, https://github.com/rubysherpas/paranoia/issues/new,2746.3319791666668,2,17,0 -ruby-parser,-0.200841478928632,1.50057956701578,-0.620073214667594,https://salsa.debian.org/ruby-team/ruby-parser, https://github.com/seattlerb/ruby_parser.git,5671.90619212963,0,3,0 -ruby-pathname2,-0.96248613784877,1.76464567481222,-1.570334828767,https://salsa.debian.org/ruby-team/ruby-pathname2, https://github.com/djberg96/pathname2,4825.428090277778,0,6,0 -ruby-pdf-core,0.490430148718243,3.03857743093467,-0.172093655493011,https://salsa.debian.org/ruby-team/ruby-pdf-core, https://github.com/prawnpdf/pdf-core,3635.7233912037036,6,16,0 -ruby-pdf-reader,0.56157350663903,2.96765316017272,-0.114351047892046,https://salsa.debian.org/ruby-team/ruby-pdf-reader, https://github.com/yob/pdf-reader,5741.409398148148,14,55,0 -ruby-pgplot,-2.63639643317991,-2.16809943853412,-2.77777035296684,https://salsa.debian.org/ruby-team/ruby-pgplot, https://github.com/masa16/ruby-pgplot,1430.3931597222222,0,3,0 -ruby-pkg-config,0.398895663512402,1.83858881682792,-0.0542821557497998,https://salsa.debian.org/ruby-team/ruby-pkg-config, https://github.com/ruby-gnome/pkg-config/issues/new,2746.3319791666668,2,17,0 -ruby-posix-spawn,0.130926224266965,1.69200705818284,-0.24756890586097,https://salsa.debian.org/ruby-team/ruby-posix-spawn, https://github.com/rtomayko/posix-spawn,3425.523310185185,3,31,0 -ruby-powerpack,-0.193408494365459,2.13396410068404,-0.895456644971313,https://salsa.debian.org/ruby-team/ruby-powerpack, https://github.com/bbatsov/powerpack.git,2684.7776041666666,4,14,0 -ruby-prawn,0.339025264475573,2.71755748916454,-0.197088019162237,https://salsa.debian.org/ruby-team/ruby-prawn, https://github.com/prawnpdf/prawn,5724.928298611111,63,142,0 -ruby-premailer,-0.517330437525135,2.18816634119045,-1.16789176830498,https://salsa.debian.org/ruby-team/ruby-premailer, https://github.com/premailer/premailer,5001.079988425926,26,100,0 -ruby-prof,-0.194910751417617,1.33267203442195,-0.840733494398847,https://salsa.debian.org/ruby-team/ruby-prof, https://github.com/ruby-prof/ruby-prof,5272.258287037037,11,69,0 -ruby-progressbar,0.849508504091254,3.82843133452004,-0.158369708372988,https://salsa.debian.org/ruby-team/ruby-progressbar, https://github.com/jfelchner/ruby-progressbar/issues/new,2746.3319791666668,2,17,0 -ruby-psych,0.135690557163489,2.48138994706061,-0.628764755678332,https://salsa.debian.org/ruby-team/ruby-psych, https://github.com/ruby/psych/issues/new,2746.3319791666668,2,17,0 -ruby-pundit,-0.81828289247634,2.78819104516578,-1.78787902387636,https://salsa.debian.org/ruby-team/ruby-pundit, https://github.com/varvet/pundit,3993.962199074074,28,115,2 -ruby-puppet-syntax,-1.42749295138573,0.597721472999949,-2.00502749928488,https://salsa.debian.org/ruby-team/ruby-puppet-syntax, https://github.com/voxpupuli/puppet-syntax/issues/new,2746.3319791666668,2,17,0 -ruby-puppetlabs-spec-helper,-1.70744568853256,0.801746812877152,-2.38468119727799,https://salsa.debian.org/ruby-team/ruby-puppetlabs-spec-helper, https://github.com/puppetlabs/puppetlabs_spec_helper/issues/new,2746.3319791666668,2,17,0 -ruby-rabl,-0.395350806776283,1.92981539670029,-1.123738466312,https://salsa.debian.org/ruby-team/ruby-rabl, https://github.com/nesquena/rabl,4283.3594907407405,15,107,3 -ruby-rabl-rails,-0.911642608019443,0.595751159646387,-1.27771761831235,https://salsa.debian.org/ruby-team/ruby-rabl-rails, https://github.com/ccocchi/rabl-rails/issues/new,2746.3319791666668,2,17,0 -ruby-rack,0.52370663708963,1.79028699983549,0.0263794791708582,https://salsa.debian.org/ruby-team/ruby-rack, https://github.com/rack/rack,5772.416944444444,210,362,9 -ruby-rack-cors,-0.412726660959519,2.46160287340637,-1.15800554277139,https://salsa.debian.org/ruby-team/ruby-rack-cors, https://github.com/cyu/rack-cors,4892.222060185185,37,39,0 -ruby-rack-google-analytics,-2.186121538552,0.639272713225041,-2.93501367725167,https://salsa.debian.org/ruby-team/ruby-rack-google-analytics, https://github.com/kangguru/rack-google-analytics,1720.5543634259259,2,20,0 -ruby-rack-oauth2,-0.499811172924045,2.35249704569695,-1.20893692451136,https://salsa.debian.org/ruby-team/ruby-rack-oauth2, https://github.com/nov/rack-oauth2/issues/new,2746.3319791666668,2,17,0 -ruby-rack-test,0.185980391868275,2.38630751083892,-0.251554735743938,https://salsa.debian.org/ruby-team/ruby-rack-test, https://github.com/rack/rack-test/issues/new,2746.3319791666668,2,17,0 -ruby-rails-assets-emojione,0.130338252415858,4.01962842208951,-1.06919854163412,https://salsa.debian.org/ruby-team/ruby-rails-assets-emojione, https://github.com/Ranks/emojione,1788.274675925926,10,68,0 -ruby-rails-assets-highlightjs,-1.77605765301384,0.676887866951787,-2.56920388232996,https://salsa.debian.org/ruby-team/ruby-rails-assets-highlightjs, https://github.com/components/highlightjs,2389.9739467592594,1,13,0 -ruby-rails-assets-jquery,-1.17764666735666,1.66890579612271,-1.95475025240595,https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery, https://github.com/jquery/jquery.git,5765.403738425926,280,64,0 -ruby-rails-assets-jquery-fullscreen-plugin,-0.306966371654775,3.42597380601137,-1.50239049779986,https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery-fullscreen-plugin, https://github.com/private-face/jquery.fullscreen,928.6241898148148,0,10,3 -ruby-rails-assets-markdown-it,-1.30498278677331,1.42483112887684,-2.06314188203351,https://salsa.debian.org/ruby-team/ruby-rails-assets-markdown-it, https://github.com/markdown-it/markdown-it,3.7407291666666667,40,47,0 -ruby-rails-assets-perfect-scrollbar,-0.374351450994704,3.36511536906709,-1.67154886221496,https://salsa.debian.org/ruby-team/ruby-rails-assets-perfect-scrollbar, https://github.com/mdbootstrap/perfect-scrollbar,4.933356481481481,1,3,0 -ruby-rails-assets-punycode,0.584390939421985,4.04641621942173,-0.466230817616351,https://salsa.debian.org/ruby-team/ruby-rails-assets-punycode, https://github.com/bestiejs/punycode.js,4371.203738425926,18,3,0 -ruby-rails-deprecated-sanitizer,0.511323456994779,3.27093476289413,-0.223223312521469,https://salsa.debian.org/ruby-team/ruby-rails-deprecated-sanitizer, https://github.com/rails/rails-deprecated_sanitizer/issues/new,2746.3319791666668,2,17,0 -ruby-rails-dom-testing,1.13952579591952,2.31865099965018,0.452605243049856,https://salsa.debian.org/ruby-team/ruby-rails-dom-testing, https://github.com/rails/rails-dom-testing,3596.7865625,8,32,0 -ruby-rails-html-sanitizer,0.00358306448423504,1.43815596943868,-0.287191274895917,https://salsa.debian.org/ruby-team/ruby-rails-html-sanitizer, https://github.com/rails/rails-html-sanitizer,3530.5188078703704,6,25,0 -ruby-rails-i18n,-0.887390700249912,1.47922930291553,-1.44004516765411,https://salsa.debian.org/ruby-team/ruby-rails-i18n, https://github.com/svenfuchs/rails-i18n/issues/new,2746.3319791666668,2,17,0 -ruby-rainbow,-0.0554541407207594,2.18091363175457,-0.487487680104643,https://salsa.debian.org/ruby-team/ruby-rainbow, https://github.com/sickill/rainbow/issues/new,2746.3319791666668,2,17,0 -ruby-rbnacl,-0.510179805944679,1.81844098221407,-1.1442616341555,https://salsa.debian.org/ruby-team/ruby-rbnacl, https://github.com/RubyCrypto/rbnacl,3765.2138425925928,11,37,2 -ruby-rbpdf,0.317074769161044,3.30877334866402,-0.483811180367475,https://salsa.debian.org/ruby-team/ruby-rbpdf, https://github.com/naitoh/rbpdf/issues/new,2746.3319791666668,2,17,0 -ruby-rchardet,0.889800789303886,4.37087239942861,-0.123910973821463,https://salsa.debian.org/ruby-team/ruby-rchardet, https://github.com/jmhodges/rchardet,5157.865810185185,2,16,0 -ruby-rdiscount,0.540077320253619,2.71375110214917,-0.139750341574188,https://salsa.debian.org/ruby-team/ruby-rdiscount, https://github.com/rtomayko/rdiscount,5495.396527777778,14,23,3 -ruby-re2,-0.397524074451073,2.06755776428374,-1.08083804499971,https://salsa.debian.org/ruby-team/ruby-re2, https://github.com/mudge/re2.git,4891.984027777778,5,6,0 -ruby-recaptcha,-0.72275248127782,1.51158444976084,-1.15631336278707,https://salsa.debian.org/ruby-team/ruby-recaptcha, https://github.com/ambethia/recaptcha,5167.506342592593,32,133,0 -ruby-recursive-open-struct,-0.958669414287883,1.86589840928355,-1.69647456196178,https://salsa.debian.org/ruby-team/ruby-recursive-open-struct, https://github.com/aetherknight/recursive-open-struct/issues/new,2746.3319791666668,2,17,0 -ruby-redcarpet,0.0453332853328228,0.861694552411162,-0.202762196920588,https://salsa.debian.org/ruby-team/ruby-redcarpet, https://github.com/vmg/redcarpet/issues/new,2746.3319791666668,2,17,0 -ruby-redcloth,0.395842245157601,2.28026811814275,-0.261658559087054,https://salsa.debian.org/ruby-team/ruby-redcloth, https://github.com/jgarber/redcloth.git,5745.453854166667,8,27,0 -ruby-redis,-0.18452947044888,1.6465311995778,-0.572559493439642,https://salsa.debian.org/ruby-team/ruby-redis, https://github.com/redis/redis-rb/issues/new,2746.3319791666668,2,17,0 -ruby-redis-actionpack,-0.836515157175233,1.4579951576454,-1.29168570618053,https://salsa.debian.org/ruby-team/ruby-redis-actionpack, https://github.com/redis-store/redis-actionpack,3755.356412037037,8,18,0 -ruby-redis-namespace,-0.513694902557104,1.56519782480238,-1.00788732904472,https://salsa.debian.org/ruby-team/ruby-redis-namespace, https://github.com/resque/redis-namespace,5080.32400462963,46,64,0 -ruby-redis-store,-0.695028864407541,1.47032729523593,-1.25288555418833,https://salsa.debian.org/ruby-team/ruby-redis-store, https://github.com/redis-store/redis-store,5265.79619212963,10,85,1 -ruby-responders,-0.15330835598425,2.50289434539084,-0.950455381858559,https://salsa.debian.org/ruby-team/ruby-responders, https://github.com/heartcombo/responders/issues/new,2746.3319791666668,2,17,0 -ruby-rest-client,0.862100138006452,3.06031048364358,0.07121209837491,https://salsa.debian.org/ruby-team/ruby-rest-client, https://github.com/rest-client/rest-client/issues/new,2746.3319791666668,2,17,0 -ruby-retryable,-0.609141916709646,3.24709459340838,-1.74685338816936,https://salsa.debian.org/ruby-team/ruby-retryable, https://github.com/nfedyashev/retryable/issues/new,2746.3319791666668,2,17,0 -ruby-riddle,-0.221356873126463,2.81907925283096,-1.30225364602043,https://salsa.debian.org/ruby-team/ruby-riddle, https://github.com/pat/riddle/issues/new,2746.3319791666668,2,17,0 -ruby-riot,-2.0988502372572,0.6683400663378,-2.91861417783192,https://salsa.debian.org/ruby-team/ruby-riot, https://github.com/thumblemonks/riot.git,3321.7834953703705,13,21,0 -ruby-rmagick,1.10270334226407,3.17854217199385,0.188185337272069,https://salsa.debian.org/ruby-team/ruby-rmagick, https://github.com/rmagick/rmagick/issues/new,2746.3319791666668,2,17,0 -ruby-roadie,-0.196136661447594,1.23963174601796,-0.568233738832736,https://salsa.debian.org/ruby-team/ruby-roadie, https://github.com/Mange/roadie/issues/new,2746.3319791666668,2,17,0 -ruby-roadie-rails,0.247471914364286,3.18990024514054,-0.527731502637486,https://salsa.debian.org/ruby-team/ruby-roadie-rails, https://github.com/Mange/roadie-rails/issues/new,2746.3319791666668,2,17,0 -ruby-ronn,0.00519738031241713,1.35292803717205,-0.513322958865165,https://salsa.debian.org/ruby-team/ruby-ronn, https://github.com/apjanke/ronn-ng,5091.883310185185,3,20,4 -ruby-roxml,-2.58394727436343,-1.4732125607397,-2.79337602661121,https://salsa.debian.org/ruby-team/ruby-roxml, https://github.com/Empact/roxml/issues/new,2746.3319791666668,2,17,0 -ruby-rr,-1.12124169103743,1.65404016022481,-1.898861260476,https://salsa.debian.org/ruby-team/ruby-rr, https://github.com/rr/rr/issues/new,2746.3319791666668,2,17,0 -ruby-rspec-its,0.317141675558321,3.0292623368928,-0.387267448243735,https://salsa.debian.org/ruby-team/ruby-rspec-its, https://github.com/rspec/rspec-its/issues/new,2746.3319791666668,2,17,0 -ruby-rspec-puppet,-1.57505518556354,-0.127794468656788,-2.10326137554857,https://salsa.debian.org/ruby-team/ruby-rspec-puppet, https://github.com/rodjek/rspec-puppet/issues/new,2746.3319791666668,2,17,0 -ruby-rspec-rails,-1.58440384321345,-0.160683101917334,-1.95387603820538,https://salsa.debian.org/ruby-team/ruby-rspec-rails, https://github.com/rspec/rspec-rails/issues/new,2746.3319791666668,2,17,0 -ruby-rspec-retry,-2.31420707826412,-0.36166807127741,-2.77250568174112,https://salsa.debian.org/ruby-team/ruby-rspec-retry, https://github.com/NoRedInk/rspec-retry/issues/new,2746.3319791666668,2,17,0 -ruby-ruby2ruby,-1.2632583004141,0.512210389222625,-1.76094548187908,https://salsa.debian.org/ruby-team/ruby-ruby2ruby, https://github.com/seattlerb/ruby2ruby.git,5438.858877314815,0,3,0 -ruby-rubymail,0.76374705741195,3.39467995148873,-0.079811093830679,https://salsa.debian.org/ruby-team/ruby-rubymail, https://github.com/terceiro/rmail/issues/new,2746.3319791666668,2,17,0 -ruby-rufus-scheduler,-0.692929260878617,1.25020621762948,-1.09554363072272,https://salsa.debian.org/ruby-team/ruby-rufus-scheduler, https://github.com/jmettraux/rufus-scheduler/issues/new,2746.3319791666668,2,17,0 -ruby-rugged,0.173885888133108,1.97474689592367,-0.302862283028749,https://salsa.debian.org/ruby-team/ruby-rugged, https://github.com/libgit2/rugged/issues/new,2746.3319791666668,2,17,0 -ruby-safe-yaml,0.49233724538536,2.43802121884063,-0.0762986290888922,https://salsa.debian.org/ruby-team/ruby-safe-yaml, https://github.com/dtao/safe_yaml/issues/new,2746.3319791666668,2,17,0 -ruby-saml,-0.6292373352364,1.48886905334193,-1.21526779391873,https://salsa.debian.org/ruby-team/ruby-saml, https://github.com/onelogin/ruby-saml/issues/new,2746.3319791666668,2,17,0 -ruby-sanitize,0.11421111327246,2.75983627261209,-0.676703611506086,https://salsa.debian.org/ruby-team/ruby-sanitize, https://github.com/rgrove/sanitize/issues/new,2746.3319791666668,2,17,0 -ruby-sass-rails,0.129545967450833,2.34308051926344,-0.286962862145183,https://salsa.debian.org/ruby-team/ruby-sass-rails, https://github.com/rails/sass-rails,3032.8716550925924,10,70,2 -ruby-sassc-rails,-1.88958934755349,0.65430313583962,-2.54586936612922,https://salsa.debian.org/ruby-team/ruby-sassc-rails, https://github.com/sass/sassc-rails/issues/new,2746.3319791666668,2,17,0 -ruby-sdoc,0.206619457601786,2.53526253676117,-0.281999051202586,https://salsa.debian.org/ruby-team/ruby-sdoc, https://github.com/zzak/sdoc.git,5126.572337962963,22,57,0 -ruby-seamless-database-pool,-2.16431076750987,0.22602989853285,-2.61189474943737,https://salsa.debian.org/ruby-team/ruby-seamless-database-pool, https://github.com/bdurand/seamless_database_pool/issues/new,2746.3319791666668,2,17,0 -ruby-seed-fu,-0.340684315585129,2.69862979607183,-1.1723771613379,https://salsa.debian.org/ruby-team/ruby-seed-fu, https://github.com/mbleigh/seed-fu,3639.382974537037,1,34,0 -ruby-select2-rails,0.0255233967024308,4.01706300359317,-1.08293072621371,https://salsa.debian.org/ruby-team/ruby-select2-rails, https://github.com/argerim/select2-rails,3178.7430787037038,3,45,0 -ruby-selenium-webdriver,-0.208956862864649,1.54894059732864,-0.537375409127303,https://salsa.debian.org/ruby-team/ruby-selenium-webdriver, https://github.com/SeleniumHQ/selenium/issues/new,2746.3319791666668,2,17,0 -ruby-semantic-puppet,-0.622981461654574,0.856370005823135,-0.97652036226948,https://salsa.debian.org/puppet-team/ruby-semantic-puppet, https://github.com/puppetlabs/semantic_puppet/issues/new,2746.3319791666668,2,17,0 -ruby-sequel,0.0215932711127639,1.539562398394,-0.365885049503233,https://salsa.debian.org/ruby-team/ruby-sequel, https://github.com/jeremyevans/sequel,5789.4804861111115,84,308,0 -ruby-sequel-pg,0.61910876073865,3.8061270046357,-0.298153083726076,https://salsa.debian.org/ruby-team/ruby-sequel-pg, https://github.com/jeremyevans/sequel_pg.git,4773.662638888889,4,7,0 -ruby-serverengine,-4.34070263658114,-0.692870899303871,-5.33436155667691,https://salsa.debian.org/ruby-team/ruby-serverengine, https://github.com/treasure-data/serverengine.git,3572.2404166666665,4,25,0 -ruby-sexp-processor,0.254209462924838,3.03881786138173,-0.48296332880923,https://salsa.debian.org/ruby-team/ruby-sexp-processor, https://github.com/seattlerb/sexp_processor,5341.417743055556,0,2,0 -ruby-shadow,0.216126739015528,1.48901314525892,-0.115481619574996,https://salsa.debian.org/ruby-team/ruby-shadow, https://github.com/apalmblad/ruby-shadow/issues/new,2746.3319791666668,2,17,0 -ruby-sham-rack,-2.16081892166218,0.0182643743943309,-2.86088546215481,https://salsa.debian.org/ruby-team/ruby-sham-rack, https://github.com/mdub/sham_rack,3267.7854166666666,2,5,0 -ruby-shoulda-context,-1.26931658695482,0.648454141668671,-1.67760233399866,https://salsa.debian.org/ruby-team/ruby-shoulda-context, https://github.com/thoughtbot/shoulda-context,5722.016412037037,23,54,0 -ruby-shoulda-matchers,-0.706237213651119,2.33560308188144,-1.56236143585738,https://salsa.debian.org/ruby-team/ruby-shoulda-matchers, https://github.com/thoughtbot/shoulda-matchers,5766.004097222222,222,122,3 -ruby-sidekiq-cron,-0.460965442978789,1.89557658666716,-1.14176049181417,https://salsa.debian.org/ruby-team/ruby-sidekiq-cron, https://github.com/sidekiq-cron/sidekiq-cron,3762.2361805555556,37,72,0 -ruby-signet,-0.699993439256247,1.72426912653258,-1.231688395593,https://salsa.debian.org/ruby-team/ruby-signet, https://github.com/googleapis/signet,4807.42556712963,28,44,4 -ruby-simplecov,-0.3160772042202,2.20072149987644,-1.00263445115797,https://salsa.debian.org/ruby-team/ruby-simplecov, https://github.com/simplecov-ruby/simplecov/issues/new,2746.3319791666668,2,17,0 -ruby-sinatra,0.386749271599216,1.83009878817128,-0.175954383271379,https://salsa.debian.org/ruby-team/ruby-sinatra, https://github.com/sinatra/sinatra.git,5774.208402777777,157,401,0 -ruby-slack-notifier,-0.230077747524705,2.68139203868078,-0.961449581859591,https://salsa.debian.org/ruby-team/ruby-slack-notifier, https://github.com/slack-notifier/slack-notifier.git,2800.9713773148146,7,25,0 -ruby-slim,-0.391808708834569,1.09130623995818,-0.838495340833001,https://salsa.debian.org/ruby-team/ruby-slim, http://github.com/slim-template/slim//issues/new,2746.3319791666668,2,17,0 -ruby-soap4r,0.47567443978011,2.10032916991295,-0.0796726267762576,https://salsa.debian.org/ruby-team/ruby-soap4r, https://github.com/noeticpenguin/soap4r-noeticpenguin/issues/new,2746.3319791666668,2,17,0 -ruby-solve,-1.8731536972258,0.372254616415477,-2.34213555482145,https://salsa.debian.org/ruby-team/ruby-solve, https://github.com/berkshelf/solve,3205.955972222222,4,24,0 -ruby-spring,0.188968431861753,2.25824597474887,-0.275538878260492,https://salsa.debian.org/ruby-team/ruby-spring, https://github.com/rails/spring/issues/new,2746.3319791666668,2,17,0 -ruby-sprockets,0.212769678894906,2.15026296744478,-0.237219096457883,https://salsa.debian.org/ruby-team/ruby-sprockets, https://github.com/rails/sprockets.git,3278.045405092593,50,229,0 -ruby-sprockets-rails,0.627283901804314,2.93965546190262,-0.107048604332743,https://salsa.debian.org/ruby-team/ruby-sprockets-rails, https://github.com/rails/sprockets-rails/issues/new,2746.3319791666668,2,17,0 -ruby-sshkit,-0.0935961701361413,2.62044656197821,-0.913399959677309,https://salsa.debian.org/ruby-team/ruby-sshkit, https://github.com/capistrano/sshkit.git,3961.9651041666666,23,112,0 -ruby-state-machines,-0.862727506727865,0.738079157532498,-1.17169688542903,https://salsa.debian.org/ruby-team/ruby-state-machines, https://github.com/state-machines/state_machines,3342.349050925926,10,20,0 -ruby-state-machines-activemodel,-0.084562636327333,3.75946101182517,-1.08488627359562,https://salsa.debian.org/ruby-team/ruby-state-machines-activemodel, https://github.com/state-machines/state_machines-activemodel,3348.8396643518518,5,12,0 -ruby-state-machines-activerecord,-0.428004600202204,2.31132627094942,-1.14984166773314,https://salsa.debian.org/ruby-team/ruby-state-machines-activerecord, https://github.com/state-machines/state_machines-activerecord,3097.0762962962963,11,17,0 -ruby-stomp,-0.0622865151208568,2.27857480823714,-0.539926770630288,https://salsa.debian.org/ruby-team/ruby-stomp, https://github.com/stompgem/stomp.git,4485.674305555555,3,49,0 -ruby-svg-graph,-0.360620887245162,1.99990184204945,-1.03648271724593,https://salsa.debian.org/ruby-team/ruby-svg-graph, https://github.com/lumean/svg-graph2,5000.599039351852,3,24,0 -ruby-task-list,-0.797245273086402,1.53048217175323,-1.27304297708671,https://salsa.debian.org/ruby-team/ruby-task-list, https://github.com/deckar01/task_list.git,3500.9144675925927,4,16,0 -ruby-test-declarative,-3.18614029592163,-0.680294803942653,-3.73228161419542,https://salsa.debian.org/ruby-team/ruby-test-declarative, https://github.com/svenfuchs/test_declarative/issues/new,2746.3319791666668,2,17,0 -ruby-test-unit,0.508315918207015,3.11877845565933,-0.0204072697861418,https://salsa.debian.org/ruby-team/ruby-test-unit, https://github.com/test-unit/test-unit/issues/new,2746.3319791666668,2,17,0 -ruby-text,0.395193545718993,2.82878365350909,-0.139155166458522,https://salsa.debian.org/ruby-team/ruby-text, https://github.com/threedaymonk/text,2533.6334375,0,20,0 -ruby-thor,0.489838892813756,3.03231142436935,-0.108264355321474,https://salsa.debian.org/ruby-team/ruby-thor, https://github.com/erikhuda/thor/issues/new,2746.3319791666668,2,17,0 -ruby-thread-safe,0.789915331378537,3.40620163123357,-0.0364056561782537,https://salsa.debian.org/ruby-team/ruby-thread-safe, https://github.com/ruby-concurrency/thread_safe,1914.587175925926,2,18,1 -ruby-timecop,-1.62494755345376,-0.136572147007059,-1.97702859037335,https://salsa.debian.org/ruby-team/ruby-timecop, https://github.com/travisjeffery/timecop/issues/new,2746.3319791666668,2,17,0 -ruby-tins,-0.0184774494990259,2.34427565267072,-0.499428299338752,https://salsa.debian.org/ruby-team/ruby-tins, https://github.com/flori/tins.git,5186.4477893518515,2,5,0 -ruby-toml,0.545045010262784,3.0277601671675,-0.165994328608493,https://salsa.debian.org/ruby-team/ruby-toml, https://github.com/jm/toml,3202.477673611111,3,24,1 -ruby-toml-rb,-1.09659973074653,1.70545620655296,-1.72548269340447,https://salsa.debian.org/ruby-team/ruby-toml-rb, https://github.com/emancu/toml-rb.git,3791.6442361111112,5,30,0 -ruby-treetop,0.232585615110506,1.72460397874322,-0.167533812678352,https://salsa.debian.org/ruby-team/ruby-treetop, https://github.com/cjheath/treetop/issues/new,2746.3319791666668,2,17,0 -ruby-truncato,-0.892450421035401,1.07478492285798,-1.30787209149427,https://salsa.debian.org/ruby-team/ruby-truncato, https://github.com/jorgemanrubia/truncato,3523.929363425926,2,13,0 -ruby-twitter,-0.668262390127512,1.32590765847916,-1.14707438099745,https://salsa.debian.org/ruby-team/ruby-twitter, https://github.com/sferik/twitter,5668.765474537037,66,150,0 -ruby-twitter-stream,-0.499229118792877,2.32714869625143,-1.28245675345462,https://salsa.debian.org/ruby-team/ruby-twitter-stream, http://github.com/voloko/twitter-stream/issues/new,2746.3319791666668,2,17,0 -ruby-typed-array,-0.706178513933386,1.6402446002796,-1.14450212576801,https://salsa.debian.org/ruby-team/ruby-typed-array, https://github.com/yaauie/typed-array,63.58849537037037,0,2,0 -ruby-typhoeus,-0.1128851980755,2.35063206689134,-0.736261529106404,https://salsa.debian.org/ruby-team/ruby-typhoeus, https://github.com/typhoeus/typhoeus/issues/new,2746.3319791666668,2,17,0 -ruby-tzinfo,-0.183546315225275,-0.104369110443271,-0.204307169523358,https://salsa.debian.org/ruby-team/ruby-tzinfo, https://tzinfo.github.io/issues/new,2746.3319791666668,2,17,0 -ruby-unf-ext,0.524978609062779,2.44234370701177,-0.0572331882658427,https://salsa.debian.org/ruby-team/ruby-unf-ext, https://github.com/knu/ruby-unf_ext,4837.972118055555,5,11,0 -ruby-url-safe-base64,-1.0899769047182,2.78886544763424,-2.22028031017707,https://salsa.debian.org/ruby-team/ruby-url-safe-base64, https://github.com/joenoon/url_safe_base64,1866.2862384259258,0,2,0 -ruby-uuid,-0.141865507977082,3.1821978286278,-1.0595825239825,https://salsa.debian.org/ruby-team/ruby-uuid, https://github.com/assaf/uuid,4250.514537037037,5,18,0 -ruby-uuidtools,0.00821328631477487,1.78603683848367,-0.37982910828391,https://salsa.debian.org/ruby-team/ruby-uuidtools, https://github.com/sporkmonger/uuidtools,4302.551608796296,4,20,0 -ruby-validate-email,-1.57819224366837,0.748029997407314,-2.18342643578818,https://salsa.debian.org/ruby-team/ruby-validate-email, https://github.com/perfectline/validates_email.git,4596.211886574074,2,8,0 -ruby-validate-url,-1.57830950316622,0.694726122564468,-2.17291421883927,https://salsa.debian.org/ruby-team/ruby-validate-url, https://github.com/perfectline/validates_url.git,4598.7266782407405,25,34,0 -ruby-validates-hostname,-1.24152951224297,1.22111659694041,-1.75109192355112,https://salsa.debian.org/ruby-team/ruby-validates-hostname, https://github.com/KimNorgaard/validates_hostname,4293.845972222222,0,12,0 -ruby-varia-model,-1.86788049739169,-0.0930481581669085,-2.2356906542746,https://salsa.debian.org/ruby-team/ruby-varia-model, https://github.com/berkshelf/varia_model/issues/new,2746.3319791666668,2,17,0 -ruby-vcr,-1.83540817323998,0.345887647417514,-2.42997707111299,https://salsa.debian.org/ruby-team/ruby-vcr, https://github.com/vcr/vcr,5026.147708333333,86,97,0 -ruby-version-sorter,-0.895569228615223,1.31342488445887,-1.33338118944042,https://salsa.debian.org/ruby-team/ruby-version-sorter, https://github.com/github/version_sorter,5346.812303240741,4,15,0 -ruby-versionomy,-1.98756333781549,1.03654453818039,-2.7207117206547,https://salsa.debian.org/ruby-team/ruby-versionomy, https://github.com/dazuma/versionomy/issues/new,2746.3319791666668,2,17,0 -ruby-vips,-1.9788636547066,0.722079681962823,-2.70891310214909,https://salsa.debian.org/ruby-team/ruby-vips, https://github.com/libvips/ruby-vips.git,4866.200162037037,7,24,0 -ruby-virtus,-0.411418344093543,2.20061342245076,-1.06613131592634,https://salsa.debian.org/ruby-team/ruby-virtus, https://github.com/solnic/virtus.git,3718.9197800925926,2,63,0 -ruby-voight-kampff,-3.61221384180333,-1.18418687316036,-4.27474499320882,https://salsa.debian.org/ruby-team/ruby-voight-kampff, https://github.com/biola/Voight-Kampff/issues/new,2746.3319791666668,2,17,0 -ruby-warden,-0.483453656332785,2.18850334520879,-1.14592743404215,https://salsa.debian.org/ruby-team/ruby-warden, https://github.com/hassox/warden,4887.532384259259,10,50,1 -ruby-web-console,0.14043153449785,2.52112176327952,-0.323355623656487,https://salsa.debian.org/ruby-team/ruby-web-console, https://github.com/rails/web-console/issues/new,2746.3319791666668,2,17,0 -ruby-webmock,-0.872299603112153,1.42277934779794,-1.58056532672046,https://salsa.debian.org/ruby-team/ruby-webmock, https://github.com/bblimke/webmock/issues/new,2746.3319791666668,2,17,0 -ruby-websocket,-2.03022349548899,1.07639611677377,-2.89337064744319,https://salsa.debian.org/ruby-team/ruby-websocket, https://github.com/imanel/websocket-ruby.git,4172.19943287037,3,14,0 -ruby-websocket-driver,0.0321691446396087,2.32602763541323,-0.44016561045075,https://salsa.debian.org/ruby-team/ruby-websocket-driver, https://github.com/faye/websocket-driver-ruby,4307.723252314815,5,15,0 -ruby-xml-simple,0.281052711517463,2.94125522096609,-0.565082780205221,https://salsa.debian.org/ruby-team/ruby-xml-simple, https://github.com/maik/xml-simple,3655.0192476851853,4,12,0 -ruby-xpath,0.225392451072693,2.63540825142997,-0.453283494506241,https://salsa.debian.org/ruby-team/ruby-xpath, https://github.com/teamcapybara/xpath.git,4699.099942129629,4,29,0 -ruby-yajl,0.134286873728126,1.2952090225219,-0.198448627183705,https://salsa.debian.org/ruby-team/ruby-yajl, https://github.com/brianmario/yajl-ruby,4761.960428240741,20,41,0 -ruby-yaml-db,-1.69147543716954,0.844880210373094,-2.22594278212568,https://salsa.debian.org/ruby-team/ruby-yaml-db, https://github.com/yamldb/yaml_db,4943.554675925926,10,17,0 -ruby-yell,-2.29457708512619,0.136508445829378,-2.7815318187394,https://salsa.debian.org/ruby-team/ruby-yell, https://github.com/rudionrails/yell,3852.7088541666667,5,10,0 -rumur,-3.53607346628981,-0.829079108774929,-4.26893948325028,https://github.com/Smattr/rumur.git,https://github.com/Smattr/rumur.git,3378.926203703704,0,5,0 -runc,0.338641984896442,1.1345674604774,-0.00942789082386343,https://salsa.debian.org/go-team/packages/runc, https://github.com/opencontainers/runc,3584.075162037037,58,458,4 -runescape,-0.446268390108392,0.8123857936614,-0.865134214279526,https://salsa.debian.org/games-team/runescape, https://gitlab.com/coringao/runescape,910.2960648148148,0,2,0 -rush,-0.0393184521970871,2.05397042563029,-0.790226862387604,https://salsa.debian.org/debian/rush, https://git.gnu.org.ua/rush.git,5571.48,1,2,0 -rygel,0.594764460497958,1.37354058706236,0.215446551815635,https://salsa.debian.org/gnome-team/rygel, https://gitlab.gnome.org/GNOME/rygel.git,5651.793842592592,198,137,0 -s-nail,0.618878311996367,1.60191065386858,0.138406224240013,https://salsa.debian.org/debian/s-nail, https://git.sdaoden.eu/cgit/s-nail.git,5647.365219907408,2,2,0 -s3cmd,0.396939158659643,1.35042767410499,-0.0687453710811201,https://salsa.debian.org/debian/s3cmd, https://github.com/s3tools/s3cmd,5763.7318981481485,34,199,4 -s3fs-fuse,-0.0915466168720626,1.84663398463461,-0.538212085563754,https://salsa.debian.org/debian/s3fs-fuse, https://github.com/s3fs-fuse/s3fs-fuse,5771.405300925926,55,80,0 -safe-rm,1.84331648316449,4.30741275104388,0.707866875394397,https://salsa.debian.org/debian/safe-rm, https://git.launchpad.net/safe-rm,5109.717962962963,0,5,0 -safeclib,-1.46541924129083,0.986318726090318,-1.91892595175024,https://github.com/kilobyte/safeclib/tree/debian,https://github.com/kilobyte/safeclib,3855.424849537037,10,8,0 -safeeyes,0.149015816941472,2.7053025272624,-0.630061457331699,https://salsa.debian.org/debian/safeeyes, https://github.com/slgobinath/SafeEyes.git,2228.7321180555555,169,36,0 -sagetex,-0.154990457339111,0.51087324234677,-0.363447528026123,https://salsa.debian.org/tex-team/sagetex, https://github.com/dandrake/sagetex/issues/new,2746.3319791666668,2,17,0 -salmon,-0.36496313866009,1.5121758625399,-0.9283685843126,https://salsa.debian.org/med-team/salmon, https://github.com/COMBINE-lab/salmon/issues/new,2746.3319791666668,2,17,0 -samizdat,-2.14362263208926,0.0590823844460447,-2.86196074478856,https://salsa.debian.org/ruby-team/samizdat, https://github.com/angdraug/samizdat,3433.232013888889,0,3,0 -samplv1,0.131881997886185,2.38807427841235,-0.430180476778393,https://salsa.debian.org/multimedia-team/samplv1, https://github.com/rncbc/samplv1.git,4120.8180671296295,1,15,0 -sandsifter,-0.870299226201277,1.61527247134859,-1.59075399712535,https://salsa.debian.org/pkg-security-team/sandsifter, https://github.com/rigred/sandsifter,736.7519907407408,4,12,0 -sasmodels,-0.515347001431417,2.3276608098797,-1.29618828447438,https://salsa.debian.org/science-team/sasmodels, https://github.com/SasView/sasmodels.git,3421.8391666666666,7,67,0 -sasview,-1.06271646182923,0.250297261654951,-1.42489359843592,https://salsa.debian.org/science-team/sasview, https://github.com/SasView/sasview.git,5783.19738425926,20,119,0 -satpy,-3.49779966555568,-2.54134671282852,-3.74461522364392,https://salsa.debian.org/debian-gis-team/satpy, https://github.com/pytroll/satpy,4929.684895833333,47,140,4 -sbt-launcher-interface,-0.348365694220234,2.86404297701829,-1.18546461903963,https://salsa.debian.org/java-team/sbt-launcher-interface, https://github.com/sbt/launcher.git,4995.328263888889,11,32,0 -scala-mode-el,0.715851547017848,3.82621072464823,-0.398440121840251,https://salsa.debian.org/emacsen-team/scala-mode-el, https://github.com/hvesalai/emacs-scala-mode,3670.9045486111113,14,21,1 -scalpel,1.92355741339931,5.78891027054134,0.609139098428338,https://salsa.debian.org/pkg-security-team/scalpel, https://github.com/sleuthkit/scalpel.git,2828.853888888889,1,11,0 -scanlogd,1.02651720217611,3.31791709149868,-0.0529925024440523,https://salsa.debian.org/debian/scanlogd/, https://github.com/openwall/scanlogd.git,3573.359328703704,0,2,0 -scanmem,0.670925394719566,3.40388194703282,-0.241299981019016,https://salsa.debian.org/debian/scanmem, https://github.com/scanmem/scanmem.git,5016.30787037037,17,24,0 -scap-security-guide,-0.458623982274215,2.80856515912651,-1.34700149397721,https://salsa.debian.org/pkg-security-team/scap-security-guide, https://github.com/ComplianceAsCode/content,4572.688136574074,65,276,3 -scap-workbench,-0.362911064943978,2.65093298513151,-1.27246505615953,https://salsa.debian.org/debian/scap-workbench, https://github.com/OpenSCAP/scap-workbench.git,4660.289282407407,13,37,0 -scapy,0.857455882356376,1.87059600299798,0.304032557463684,https://salsa.debian.org/pkg-security-team/scapy, https://github.com/secdev/scapy/issues/new,2746.3319791666668,2,17,0 -schism,0.203050376678784,1.16663190262702,-0.240048323239523,https://salsa.debian.org/multimedia-team/schism, https://github.com/schismtracker/schismtracker,4666.610729166667,15,42,0 -schleuder,-2.00378498628861,-1.61885478682368,-2.21590172544454,https://salsa.debian.org/ruby-team/schleuder, https://0xacab.org/schleuder/schleuder.git,3437.0275462962964,3,26,0 -schroedinger-coordgenlibs,-0.665765923578571,1.57073877546974,-1.12540202298289,https://salsa.debian.org/science-team/schroedinger-coordgenlibs, https://github.com/schrodinger/coordgenlibs.git,2268.105428240741,12,9,0 -schroedinger-maeparser,-0.124025493624707,2.1383222642137,-0.755579689485537,https://salsa.debian.org/debichem-team/schroedinger-maeparser, https://github.com/schrodinger/maeparser.git,2087.134328703704,12,14,0 -science.js,-1.57916624719579,1.65342676602646,-2.47331359854044,https://salsa.debian.org/js-team/science.js/, https://github.com/jasondavies/science.js.git,2725.1817592592593,1,8,0 -scikit-learn,0.317781723391967,0.826049221628416,0.0289068471102178,https://salsa.debian.org/science-team/scikit-learn, https://github.com/scikit-learn/scikit-learn.git,5091.039907407408,2507,600,0 -scilab,0.965202543637835,1.34506962024098,0.671744216441213,https://salsa.debian.org/science-team/scilab, https://gitlab.com/scilab/scilab.git,5757.2188541666665,108,111,0 -scim,1.88005980071016,2.60669412693665,1.36187838590137,https://github.com/leggewie-DM/scim,https://github.com/leggewie-DM/scim,3009.7372800925928,4,5,0 -scim-anthy,0.00229379403991691,1.4287101867256,-0.657872343124407,https://github.com/leggewie-DM/scim-anthy,https://github.com/leggewie-DM/scim-anthy,1414.2472685185185,5,3,0 -scim-chewing,1.4542811690526,3.37154795427499,0.506177197770884,https://salsa.debian.org/debian/scim-chewing, https://github.com/chewing/scim-chewing.git,2973.6130092592593,0,11,0 -scim-pinyin,1.31247157570846,3.37757775327056,0.22807324086839,https://salsa.debian.org/input-method-team/scim-pinyin, https://github.com/scim-im/scim-pinyin/issues/new,2746.3319791666668,2,17,0 -scim-tables,0.935953021546993,2.24878515261399,0.255989102713328,https://github.com/leggewie-DM/scim-tables,https://github.com/leggewie-DM/scim-tables,793.6947685185186,3,3,0 -scipy,0.745441582487896,2.10099019163293,0.140022255827505,https://salsa.debian.org/python-team/packages/scipy, https://github.com/scipy/scipy.git,5788.272488425926,799,787,0 -scons,0.202807409455552,0.561727767359925,-0.00811222970810254,https://salsa.debian.org/debian/scons, https://github.com/SCons/scons,5736.151574074074,26,162,5 -scour,0.262403226060344,1.28944804880019,-0.0279418889182137,https://salsa.debian.org/debian/scour, https://github.com/codedread/scour.git,2869.1347569444442,6,14,0 -scram,0.0112378446993806,2.44512482739566,-0.690432285046287,https://salsa.debian.org/science-team/scram, https://github.com/rakhimov/scram.git,1943.5289930555555,2,6,0 -scrcpy,-0.0596273246573064,2.37005260907049,-0.583387617640955,https://salsa.debian.org/yangfl-guest/scrcpy, https://github.com/Genymobile/scrcpy,2194.2825462962965,140,11,2 -screenfetch,0.839371855423016,3.42069357217954,0.00646586870616207,https://salsa.debian.org/debian/screenfetch, https://github.com/KittyKatt/screenFetch.git,4948.576851851852,38,182,0 -screengrab,0.143264164157644,1.10782436445147,-0.138023746203509,https://salsa.debian.org/lxqt-team/screengrab, https://github.com/lxqt/screengrab.git,4829.588819444444,59,21,0 -screenkey,0.495334540254515,2.23960844036589,-0.213945436488643,https://salsa.debian.org/georgesk/screenkey, https://gitlab.com/screenkey/screenkey/-/issues/new,2746.3319791666668,2,17,0 -scrot,0.520776340410167,1.48835473530944,0.0924816727168656,https://salsa.debian.org/debian/scrot, https://github.com/resurrecting-open-source-projects/scrot,1711.9000347222222,19,22,0 -scrypt,-0.316007582739295,1.91704115949752,-0.753230531310013,https://salsa.debian.org/debian/scrypt, https://github.com/Tarsnap/scrypt.git,4121.472465277778,3,11,0 -sdate,-0.164409208102411,1.96637580417159,-0.758067793552963,https://github.com/df7cb/sdate,https://github.com/df7cb/sdate,5170.3786689814815,3,6,0 -sddm,2.44893359507041,3.57341426109473,1.75084126552759,https://salsa.debian.org/qt-kde-team/3rdparty/sddm, https://github.com/sddm/sddm.git,3975.3783333333336,142,78,0 -sddm-kcm,0.568845075680615,3.05782356696598,-0.026992283071802,https://salsa.debian.org/qt-kde-team/kde/sddm-kcm, https://invent.kde.org/plasma/sddm-kcm.git,3961.6219212962965,8,53,0 -sdl-kitchensink,0.096811683144318,3.44351138635357,-0.686171825165271,https://salsa.debian.org/debian/sdl-kitchensink, https://github.com/katajakasa/SDL_kitchensink,2883.83625,1,5,1 -seaborn,0.401570070300378,1.47763682761309,-0.0856172138866504,https://salsa.debian.org/science-team/seaborn, https://github.com/mwaskom/seaborn/issues/new,2746.3319791666668,2,17,0 -seafile,0.353337670179877,1.61052754289307,-0.15770893434906,https://salsa.debian.org/debian/seafile, https://github.com/haiwen/seafile.git,4133.861284722222,18,91,0 -seafile-client,0.133852343846332,1.96329307340086,-0.356905354832668,https://salsa.debian.org/debian/seafile-client, https://github.com/haiwen/seafile-client.git,3776.878263888889,21,46,0 -seascope,0.141854914147581,3.37647754585079,-0.951559083233916,https://salsa.debian.org/debian/seascope, https://github.com/anilFree/seascope.git,2921.7499305555557,1,15,0 -secilc,-1.94665621577352,0.751145752517991,-2.579195758696,https://salsa.debian.org/selinux-team/secilc, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0 -secure-delete,1.9359167992798,4.44745772446768,0.825156888893887,https://salsa.debian.org/debian/secure-delete, https://github.com/hackerschoice/THC-Archive,1834.166099537037,2,3,0 -sed,0.468970380866248,0.725502070505336,0.296988988866075,https://salsa.debian.org/debian/sed, https://git.savannah.gnu.org/git/sed.git,5553.668032407408,31,6,0 -selinux-python,0.764975420894951,3.39841558893333,-0.12971291673507,https://salsa.debian.org/selinux-team/selinux-python, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0 -semi,-0.00123158255265179,0.730430659414898,-0.363630362706879,https://salsa.debian.org/debian/semi, https://github.com/wanderlust/semi,5270.967534722222,3,13,0 -sendemail,0.514998759345651,2.58027424696462,-0.100100986305897,https://github.com/mogaal/sendemail,https://github.com/mogaal/sendemail,1084.8616782407407,0,2,0 -sendxmpp,1.69498029723781,3.9154198760279,0.672316801529384,https://salsa.debian.org/xmpp-team/sendxmpp, https://github.com/lhost/sendxmpp.git,3008.622476851852,2,6,0 -ser2net,0.64381086293887,1.93336201584087,-0.0355562237958406,https://salsa.debian.org/debian/ser2net, https://github.com/cminyard/ser2net,5671.705208333334,14,9,0 -serd,0.704270314732952,2.91139475526988,0.0669085772051469,https://salsa.debian.org/multimedia-team/serd, https://github.com/drobilla/serd.git ,4700.707199074074,5,1,0 -serverspec-runner,-1.6557747414546,0.93210010723936,-2.3818100795283,https://salsa.debian.org/ruby-team/serverspec-runner, https://github.com/hiracy/serverspec-runner,3100.293310185185,2,5,0 -setbfree,0.0170022664145474,2.02593146081277,-0.458724727295439,https://salsa.debian.org/multimedia-team/setbfree, https://github.com/pantherb/setBfree.git,3675.3818055555557,8,6,0 -setcolortemperature,0.114819975990264,2.83095535042819,-0.590823447371552,https://github.com/Tookmund/sct-deb,https://github.com/Tookmund/sct-deb,125.86403935185186,0,1,0 -setools,0.218347230135826,0.579446891988976,0.00232861363591905,https://salsa.debian.org/selinux-team/setools, https://github.com/SELinuxProject/setools.git,3445.0147569444443,3,26,0 -setuptools-scm,0.0218119152735271,1.07629001969169,-0.306073018102014,https://salsa.debian.org/python-team/packages/setuptools-scm, https://github.com/pypa/setuptools_scm/issues/new,2746.3319791666668,2,17,0 -setuptools-scm-git-archive,-1.12887485264727,1.43097061577832,-1.72452512462335,https://salsa.debian.org/python-team/packages/setuptools-scm-git-archive, https://github.com/Changaco/setuptools_scm_git_archive,2852.8371759259257,5,5,0 -sexplib310,-1.57198934052884,-0.308694772986967,-1.99075888375216,https://salsa.debian.org/ocaml-team/sexplib310, https://github.com/janestreet/sexplib.git,3950.7644444444445,1,18,0 -sfcgal,0.0501510799387709,0.83512344634786,-0.188864018773103,https://salsa.debian.org/debian-gis-team/sfcgal, https://gitlab.com/sfcgal/SFCGAL,4204.150648148148,3,40,0 -sfepy,-0.0221021791486423,1.61875970587686,-0.680330286712641,https://salsa.debian.org/science-team/sfepy, https://github.com/sfepy/sfepy,4839.152754629629,18,25,0 -sgabios,0.624843362504609,3.34479227724154,-0.100639314596397,https://github.com/ymc/sgabios-debian,https://github.com/ymc/sgabios-debian,1409.8465509259258,1,3,0 -shadow,0.837547936751078,0.972120546827943,0.718830912642781,https://salsa.debian.org/debian/shadow, https://github.com/shadow-maint/shadow,5786.8523958333335,108,113,0 -shadowsocks-libev,0.146155619802358,1.3775967683102,-0.342459202956474,https://salsa.debian.org/bridges-team/shadowsocks-libev, https://github.com/shadowsocks/shadowsocks-libev,3913.842800925926,124,129,0 -shapelib,0.283233851138818,1.15301871474865,-0.0270271593988786,https://salsa.debian.org/debian-gis-team/shapelib, https://github.com/OSGeo/shapelib.git,5762.861886574074,4,13,0 -shared-mime-info,1.26027320827258,1.86592187540404,0.852770080287914,https://salsa.debian.org/freedesktop-team/shared-mime-info, https://gitlab.freedesktop.org/xdg/shared-mime-info.git,5782.9944444444445,173,51,0 -shellinabox,1.4229551917284,3.54605114251154,0.453604030137298,https://github.com/shellinabox/shellinabox/,https://github.com/shellinabox/shellinabox,3681.188402777778,7,26,0 -shine,0.54493172140872,2.55858833775417,0.0206552893723799,https://salsa.debian.org/multimedia-team/shine, https://github.com/savonet/shine/issues/new,2746.3319791666668,2,17,0 -shortuuid,-0.457414490156552,1.88217252275336,-1.17536453453659,https://salsa.debian.org/python-team/packages/shortuuid, https://github.com/skorokithakis/shortuuid.git,4431.3497800925925,19,17,0 -shotcut,-0.037183512800606,1.38950281114524,-0.39566479111947,https://salsa.debian.org/multimedia-team/shotcut, https://github.com/mltframework/shotcut,4437.047048611111,40,29,1 -should.js,-1.54067696999616,-0.49279365015915,-1.76326878037244,https://salsa.debian.org/js-team/should.js, https://github.com/shouldjs/should.js.git,3267.859884259259,8,77,0 -showq,0.498024130459386,2.63844948678141,-0.299488158296805,https://salsa.debian.org/multimedia-team/showq, https://github.com/evandelisle/showq.git,4589.697418981482,2,9,0 -shutdown-qapps,0.0832292459848511,2.57545743116058,-0.646790906977106,https://github.com/hakaishi/shutdown-qapps,https://github.com/hakaishi/shutdown-qapps,4242.518321759259,1,5,0 -sidedoor,-1.20700835985188,0.905385237011351,-1.64427757076298,https://github.com/daradib/sidedoor,https://github.com/daradib/sidedoor,1283.144525462963,0,2,0 -siege,0.975479779976296,2.03353006708065,0.360323000471227,https://salsa.debian.org/debian/siege, https://github.com/JoeDog/siege/issues/new,2746.3319791666668,2,17,0 -sight,-2.41423003373991,-1.19235152673398,-2.62469605752248,https://salsa.debian.org/med-team/sight, https://github.com/IRCAD/sight,5195.7820833333335,18,189,0 -sigil,-0.323308348587395,-0.116184004888836,-0.36947687564949,https://salsa.debian.org/debian/sigil, https://github.com/Sigil-Ebook/Sigil.git,5247.695578703704,9,52,0 -signify-openbsd,-0.429147729969375,1.99324872793013,-0.900265517104248,https://salsa.debian.org/debian/signify-openbsd, https://github.com/aperezdc/signify.git,3467.3640972222224,11,5,0 -signon-plugin-oauth2,1.0510282552625,4.56372292161376,0.0769973783562576,https://salsa.debian.org/qt-kde-team/3rdparty/signon-plugin-oauth2, https://gitlab.com/accounts-sso/signon-plugin-oauth2.git,3669.9502199074072,2,19,0 -signond,1.77395222431944,5.17009829367501,0.587212864474728,https://salsa.debian.org/qt-kde-team/extras/signond, https://gitlab.com/accounts-sso/signond.git,4503.093703703704,6,36,0 -sigscheme,0.00958409130340057,0.541181577533474,-0.176656140782611,https://salsa.debian.org/debian/sigscheme, https://github.com/uim/sigscheme.git,4570.484421296296,0,12,0 -sigviewer,0.711761571633753,3.98949524360161,-0.306494447507988,https://salsa.debian.org/med-team/sigviewer, https://github.com/cbrnr/sigviewer.git,5107.777777777777,5,12,0 -silver-platter,-2.12374390745825,-0.880478310171427,-2.3543625093061,https://salsa.debian.org/jelmer/silver-platter, https://github.com/jelmer/silver-platter/issues/new,2746.3319791666668,2,17,0 -silverjuke,0.103595622739308,3.11595746776886,-0.811889940249741,https://salsa.debian.org/debian/silverjuke, https://github.com/silverjuke/silverjuke.git,1877.2067592592593,5,8,0 -silx,-0.0327845403920309,2.0377980442067,-0.651214925501353,https://salsa.debian.org/science-team/silx, https://github.com/silx-kit/silx.git,3000.212337962963,22,79,0 -simde,-3.05019210980999,0.0441838934679328,-3.73044105717816,https://salsa.debian.org/med-team/simde, https://github.com/simd-everywhere/simde,2452.9409375,68,14,1 -simgrid,-1.87375922939717,-1.49321003943418,-2.03104413806051,https://salsa.debian.org/debian/simgrid, https://framagit.org/simgrid/simgrid.git,5764.699409722222,7,82,0 -simile-timeline,0.400768755793622,3.01545677890177,-0.484924713118073,https://salsa.debian.org/js-team/simile-timeline, https://github.com/simile-widgets/timeline/issues/new,2746.3319791666668,2,17,0 -simple-ccsm,-0.554899772116919,1.73951550401787,-1.00054422581826,https://salsa.debian.org/compiz-team/simple-ccsm, https://gitlab.com/compiz/simple-ccsm.git,5483.672685185185,11,15,0 -simple-image-reducer,0.173679013568053,2.60637622016956,-0.642372972620522,https://salsa.debian.org/python-team/packages/simple-image-reducer, https://github.com/henrythasler/simple-image-reducer,3392.7195833333335,3,5,0 -simple-obfs,-0.492148834725906,2.33628373367672,-1.2782165106548,https://salsa.debian.org/bridges-team/simple-obfs, https://github.com/shadowsocks/simple-obfs.git,958.8196412037037,21,12,0 -simple-scan,0.747875760267195,1.3548714638534,0.382682593184444,https://git.jff.email/cgit/simple-scan.git, https://gitlab.gnome.org/GNOME/simple-scan.git,5143.374479166667,148,96,0 -simple-tpm-pk11,-0.600240351741211,1.73399811281247,-1.33617384336962,https://salsa.debian.org/debian/simple-tpm-pk11, https://github.com/ThomasHabets/simple-tpm-pk11,3536.426689814815,8,13,0 -simpleburn,1.13215085973516,4.02733974606994,0.01538467210918,https://github.com/mati75/simpleburn.git,https://github.com/mati75/simpleburn.git,1916.8323611111111,0,3,0 -simpleeval,-1.05139430806975,0.656524120520537,-1.37257689371325,https://salsa.debian.org/tryton-team/simpleeval, https://github.com/danthedeckie/simpleeval.git,3363.307037037037,10,23,0 -simplejson,0.778161234664623,2.53070479102907,0.112236973748674,https://salsa.debian.org/python-team/packages/simplejson, https://github.com/simplejson/simplejson,5762.085011574074,6,42,0 -simplescreenrecorder,0.507476794391828,2.51726533234679,-0.0714681759267078,https://salsa.debian.org/multimedia-team/simplescreenrecorder, https://github.com/MaartenBaert/ssr,3464.059097222222,13,48,0 -simplesnap,-0.347860080547578,2.48931577684738,-1.25124848753621,https://github.com/jgoerzen/simplesnap,https://github.com/jgoerzen/simplesnap,3116.7912384259257,1,6,0 -sinntp,-0.748613253900264,2.22419119031069,-1.86443126897777,https://salsa.debian.org/python-team/packages/sinntp, https://github.com/jwilk/sinntp.git,5461.030625,0,2,0 -sip-tester,0.431093900474545,1.70280916773375,-0.172401238135058,https://salsa.debian.org/pkg-voip-team/sip-tester, https://github.com/SIPp/sipp.git,5712.875798611111,33,39,0 -siridb-server,-3.63207643109074,-1.50415633583536,-4.26146957846803,https://salsa.debian.org/siridb-team/siridb-server, https://github.com/transceptor-technology/siridb-server.git,2764.489212962963,4,15,0 -sirikali,0.196083927078078,2.71706034314805,-0.540511922289614,https://github.com/davesteele/sirikali,https://github.com/davesteele/sirikali,2544.706099537037,10,19,0 -six,0.236432266853317,1.3996579195264,-0.000829034682707645,https://salsa.debian.org/python-team/packages/six, https://github.com/benjaminp/six,4717.273831018519,33,35,0 -sizzle,-0.915623611104192,3.17742231785459,-2.21471479328194,https://salsa.debian.org/js-team/sizzle, https://github.com/jquery/sizzle.git,5491.758078703704,47,19,0 -skiboot,-1.22677087538962,0.808340910133992,-1.80235669035316,https://salsa.debian.org/debian/skiboot, https://github.com/open-power/skiboot.git,3435.5121180555557,156,19,0 -skkdic,-0.134196512292479,0.494021828155821,-0.352987531773523,https://salsa.debian.org/debian/skkdic, https://github.com/skk-dev/dict,2069.106724537037,1,13,0 -skktools,-0.773911555730666,-0.492281698042003,-0.830438258275182,https://salsa.debian.org/debian/skktools, https://github.com/skk-dev/skktools,4603.994340277778,1,14,0 -sklearn-pandas,-0.184681427254363,2.40603523310898,-0.975232330516116,https://salsa.debian.org/debian/sklearn-pandas, https://github.com/scikit-learn-contrib/sklearn-pandas/issues/new,2746.3319791666668,2,17,0 -skypat,-3.66221900907517,-1.25524656033434,-4.29019297580951,https://salsa.debian.org/debian/skypat, https://github.com/skymizer/SkyPat,1330.085451388889,4,12,0 -sl,0.323098944963659,1.32688290746574,-0.0654472920321516,https://salsa.debian.org/debian/sl, https://github.com/mtoyoda/sl,1446.5538657407408,0,15,0 -sleef,-2.21049471283947,0.330632286445883,-2.7673859805071,https://salsa.debian.org/science-team/sleef, https://github.com/shibatch/sleef.git,2789.4703935185184,24,7,0 -sleuthkit,0.248789793977087,0.732207057194791,0.0073823656560896,https://salsa.debian.org/pkg-security-team/sleuthkit, https://github.com/sleuthkit/sleuthkit,5541.681574074074,21,144,0 -slick-greeter,0.230041087987972,2.48835166094265,-0.403804259040225,https://github.com/UbuntuBudgie/slick-greeter/tree/debian,https://github.com/UbuntuBudgie/slick-greeter,2438.314976851852,27,9,0 -slime,0.561202780767878,1.18150853183332,0.152283211060436,https://salsa.debian.org/common-lisp-team/slime, https://github.com/slime/slime,3579.6025925925924,96,60,1 -slimit,0.0430877829700636,2.40119461892732,-0.731896407881214,https://salsa.debian.org/python-team/packages/slimit, https://github.com/rspivak/slimit.git,2655.1229050925926,2,13,0 -slirp4netns,-0.378373829466941,1.42945025502983,-0.836749478446671,https://salsa.debian.org/debian/slirp4netns, https://github.com/rootless-containers/slirp4netns.git,1916.5166203703704,4,19,0 -slop,0.0256215961075906,2.45311354514318,-0.421261828310582,https://salsa.debian.org/debian/slop, https://github.com/naelstrof/slop,3674.1057638888888,8,37,0 -slowhttptest,-0.528541826828133,1.65417138824375,-0.983695793534047,https://salsa.debian.org/debian/slowhttptest, https://github.com/shekyan/slowhttptest,4436.458900462963,5,15,0 -smarty-gettext,-0.117276402086362,0.921326595853675,-0.430887242301544,https://salsa.debian.org/debian/smarty-gettext/, https://github.com/smarty-gettext/smarty-gettext.git,3367.1055439814813,3,7,0 -smarty-lexer,-2.17711730583163,0.822422051478566,-2.93396050046646,https://salsa.debian.org/debian/smarty-lexer/, https://github.com/smarty-php/smarty-lexer.git,2967.1062731481484,1,5,0 -smarty3,0.35043741674187,1.55405515874399,-0.150511039092155,https://salsa.debian.org/debian/smarty3, https://github.com/smarty-php/smarty.git,3318.9346180555553,45,52,0 -smash,-1.60214483830597,1.0169317150364,-2.20705530835649,https://salsa.debian.org/js-team/smash, https://github.com/mbostock/smash.git,1268.6711921296296,0,6,0 -smb4k,0.265459778239033,0.784111297068751,-0.0223425412613282,https://salsa.debian.org/qt-kde-team/extras/smb4k, https://invent.kde.org/network/smb4k.git,5158.736805555555,5,28,0 -smbldap-tools,4.09921699231862,6.29737661623347,2.97789673101773,https://salsa.debian.org/debian/smbldap-tools, https://github.com/fumiyas/smbldap-tools,3527.4513194444444,0,4,0 -smbmap,-0.0942111376502886,1.27295716550052,-0.389455048445473,https://salsa.debian.org/pkg-security-team/smbmap, https://github.com/ShawnDEvans/smbmap.git,3137.721273148148,5,16,0 -smcroute,-0.54953051706228,0.137923258974923,-0.812248141095543,https://salsa.debian.org/debian/smcroute, https://github.com/troglobit/smcroute.git,5055.776608796296,11,24,0 -smokeping,0.190958325155639,0.495116965494432,-0.0114998502528639,https://salsa.debian.org/debian/smokeping, https://github.com/oetiker/SmokePing.git,5773.893090277777,41,36,0 -snake4,0.0951486980326435,1.36969174716035,-0.412056003147892,https://github.com/alexdantas/snake4.debian,https://github.com/alexdantas/snake4.debian,10.477638888888889,5,4,0 -snap-aligner,-0.28800104820706,1.71992462859508,-0.924480898370672,https://salsa.debian.org/med-team/snap-aligner, https://github.com/amplab/snap.git,3911.3341898148146,1,64,0 -snapd-glib,0.445838997796278,2.31111804219363,-0.199812079793849,https://salsa.debian.org/debian-ayatana-team/snapd-glib, https://github.com/snapcore/snapd-glib,2535.747037037037,8,7,0 -snapper,0.129296198577568,1.09017049489567,-0.260152133283937,https://salsa.debian.org/debian/snapper, https://github.com/openSUSE/snapper.git,4746.8166435185185,93,64,0 -sndfile-tools,0.744383715115666,2.92719004320123,0.00398928410376561,https://salsa.debian.org/multimedia-team/sndfile-tools, https://github.com/libsndfile/sndfile-tools.git,5283.239212962963,10,6,0 -snetz,-0.193517133858685,3.29048219747402,-1.22643639819588,https://github.com/paniagua-gustavo/debian-snetz,https://github.com/paniagua-gustavo/debian-snetz,0.188125,0,2,0 -sngrep,0.161996699814292,2.12341565271673,-0.254532224423137,https://salsa.debian.org/pkg-voip-team/sngrep/, https://github.com/irontec/sngrep.git,2955.106585648148,38,17,0 -sniffit,0.265285152987945,1.43001426642407,-0.284980823336671,https://salsa.debian.org/debian/sniffit, https://github.com/resurrecting-open-source-projects/sniffit,1171.9152430555555,0,4,0 -snimpy,-1.17107205814411,-0.36336963815243,-1.35154776735059,https://salsa.debian.org/debian/snimpy, https://github.com/vincentbernat/snimpy/issues/new,2746.3319791666668,2,17,0 -snoopy,1.16698249164871,2.87538335813065,0.327958550422538,https://salsa.debian.org/pkg-security-team/snoopy, https://github.com/a2o/snoopy,3060.3719097222224,6,34,4 -soapyhackrf,0.160509808114309,2.66735657628688,-0.32455558496388,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyhackrf, https://github.com/pothosware/SoapyHackRF.git,2556.476736111111,1,9,0 -soapyosmo,0.115687169424095,2.54060577678283,-0.333920923800992,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyosmo, https://github.com/pothosware/SoapyOsmo.git,2779.5272569444446,0,2,0 -soapysdr,0.575702929361127,3.27154873781337,-0.200934298225776,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapysdr, https://github.com/pothosware/SoapySDR.git,3219.8508912037037,4,27,0 -social-auth-app-django,-2.49444512050596,0.472413701432478,-3.25350856455982,https://salsa.debian.org/python-team/packages/social-auth-app-django, https://github.com/python-social-auth/social-app-django.git,4020.1488541666668,30,314,0 -socket-wrapper,-1.06369631397619,0.417701771235503,-1.3872717115373,https://salsa.debian.org/sssd-team/socket-wrapper, https://git.samba.org/socket_wrapper.git,3793.818761574074,19,5,0 -socnetv,-0.301338451833309,1.86709531843907,-1.06968262078306,https://github.com/socnetv/app/tree/master/,https://github.com/socnetv/app,5571.654675925926,1,6,1 -sogo,0.10209166671418,0.747413281918718,-0.235558272838706,https://salsa.debian.org/debian/sogo, https://github.com/inverse-inc/sogo.git,5788.112997685185,39,76,0 -solaar,1.429922041869,3.86329499060927,0.424051977140571,https://salsa.debian.org/debian/solaar, https://github.com/pwr/Solaar.git,4403.731666666667,124,59,0 -solarized-emacs,-0.424854238654394,1.5203978009835,-0.828362845532867,https://salsa.debian.org/emacsen-team/solarized-emacs, https://github.com/bbatsov/solarized-emacs.git,4384.003761574074,42,71,0 -solarpowerlog,-1.77959704977027,0.0950109384749429,-2.37051827818887,https://github.com/coldtobi/solarpowerlog/tree/debian,https://github.com/coldtobi/solarpowerlog,5143.718831018518,1,8,0 -solvespace,0.340007831139215,2.47509748354308,-0.301409968232717,https://salsa.debian.org/science-team/solvespace, https://github.com/solvespace/solvespace/issues/new,2746.3319791666668,2,17,0 -sombok,0.300678887273768,1.83749455881472,-0.0607142369196268,https://salsa.debian.org/kolter/sombok, https://github.com/hatukanezumi/sombok,1612.4445949074075,0,1,0 -sonata,0.290550559525298,0.957624544235178,-0.0885666060937319,https://salsa.debian.org/mpd-team/sonata, https://github.com/multani/sonata,4950.701516203703,15,21,0 -sonic,0.343633917217908,1.44741963728112,0.0197565432416776,https://salsa.debian.org/a11y-team/sonic, https://github.com/waywardgeek/sonic,4727.140219907407,3,21,0 -sope,-0.250285844022473,0.998766195634201,-0.728051886695358,https://salsa.debian.org/debian/sope, https://github.com/inverse-inc/sope.git,4884.871064814814,9,32,0 -sopel,-1.56080776429173,0.664457797489186,-2.30593614410338,https://salsa.debian.org/debian/sopel/, https://github.com/sopel-irc/sopel.git,5115.821666666667,38,170,0 -sord,0.619629004721592,2.45030284792165,0.0661140315984046,https://salsa.debian.org/multimedia-team/sord, https://github.com/drobilla/sord.git ,4651.040289351852,0,1,0 -sortedcollections,0.0282138035236776,2.56305714012386,-0.456352007786175,https://salsa.debian.org/python-team/packages/sortedcollections, https://github.com/grantjenks/python-sortedcollections,2101.492488425926,2,4,0 -sosi2osm,-0.0665032677422347,2.74148881026682,-0.739957807362317,https://salsa.debian.org/debian-gis-team/sosi2osm, https://github.com/Gnonthgol/sosi2osm.git,3689.8328125,3,10,0 -sound-theme-freedesktop,1.18892929984823,3.94697356938022,0.259186487683956,https://salsa.debian.org/gnome-team/sound-theme-freedesktop, https://gitlab.freedesktop.org/xdg/xdg-sound-theme,1452.9854050925926,0,3,0 -soundconverter,0.454074081616164,1.01430049712361,0.117664664998543,https://salsa.debian.org/multimedia-team/soundconverter, https://github.com/kassoulet/soundconverter/issues/new,2746.3319791666668,2,17,0 -soundkonverter,1.09084727263379,2.47482419920947,0.374357897228152,https://salsa.debian.org/qt-kde-team/extras/soundkonverter, https://github.com/dfaust/soundkonverter.git,4518.085289351852,5,14,0 -soundscaperenderer,-0.821373609601104,-0.178003764129028,-0.981849588747921,https://salsa.debian.org/multimedia-team/soundscaperenderer, https://github.com/SoundScapeRenderer/ssr,3464.059097222222,13,48,0 -soundtouch,0.223686210544631,0.610643094945575,0.0434870232265249,https://salsa.debian.org/multimedia-team/soundtouch, https://gitlab.com/soundtouch/soundtouch.git,5384.998738425926,1,20,0 -spacefm,0.0215364284786288,0.701913588830265,-0.280297613289711,https://github.com/mati75/spacefm.git,https://github.com/mati75/spacefm.git,3876.4630671296295,0,4,0 -sparkleshare,0.916751869868698,2.53495974704413,0.0535700536046131,https://salsa.debian.org/debian/sparkleshare, https://github.com/hbons/SparkleShare,4856.867974537037,90,134,3 -sparql-wrapper-python,0.329621999659475,1.7050780354957,-0.145721053438597,https://salsa.debian.org/python-team/packages/sparql-wrapper-python, https://github.com/RDFLib/sparqlwrapper.git,3062.5503703703703,8,32,0 -spatialindex,0.378346817539736,1.92195571516466,-0.146304498974042,https://salsa.debian.org/debian-gis-team/libspatialindex, https://github.com/libspatialindex/libspatialindex.git,5433.052118055555,20,25,0 -spdlog,-0.43400767527187,0.66524672734892,-0.751466475971455,https://salsa.debian.org/med-team/spdlog, https://github.com/gabime/spdlog,3288.9864467592593,120,297,0 -spectre-meltdown-checker,-0.0949527296452296,0.512522919004191,-0.231739873589525,https://salsa.debian.org/debian/spectre-meltdown-checker, https://github.com/speed47/spectre-meltdown-checker,2139.8867708333332,54,16,0 -spectrwm,0.874032047401929,3.39956600370536,-0.110628773759858,https://salsa.debian.org/debian/spectrwm, https://github.com/conformal/spectrwm,5428.753796296296,35,24,0 -specutils,-0.350916287824722,1.18037676895832,-0.622702586963365,https://salsa.debian.org/debian-astro-team/specutils, https://github.com/astropy/specutils.git,2922.715289351852,32,95,0 -speech-dispatcher,1.14487738203106,1.69796551860275,0.77453377738692,https://salsa.debian.org/tts-team/speech-dispatcher, https://github.com/brailcom/speechd,5766.346284722223,67,19,0 -speech-dispatcher-contrib,-1.10658923706591,-0.723077412570435,-1.16530086770019,https://salsa.debian.org/tts-team/speech-dispatcher, https://github.com/brailcom/speechd,5766.346284722223,67,19,0 -speechd-up,-1.27896077062787,1.29297055271201,-2.07753108381263,https://salsa.debian.org/a11y-team/speechd-up, https://github.com/williamh/speechd-up.git,1059.327372685185,1,4,0 -speedpad,-0.391190230068984,0.972185266047026,-0.693933608767308,https://github.com/ltworf/speedpad-debian,https://github.com/ltworf/speedpad-debian,829.1033101851851,0,2,0 -speex,0.280545038601064,0.639159762753548,0.0931353775792618,https://salsa.debian.org/debian/speex, https://gitlab.xiph.org/xiph/speex.git,5580.3190625,17,18,0 -sphinx,0.216083829455952,0.400977655555476,0.100707072595038,https://salsa.debian.org/python-team/packages/sphinx, https://github.com/sphinx-doc/sphinx.git,5782.979097222223,209,614,0 -sphinx-argparse,-0.754937349353123,1.00889449330127,-1.21699686553265,https://salsa.debian.org/python-team/packages/sphinx-argparse, https://github.com/ribozz/sphinx-argparse,2938.517141203704,2,31,0 -sphinx-astropy,-1.42712350122077,-0.78677703713293,-1.54218456988202,https://salsa.debian.org/debian-astro-team/sphinx-astropy, https://github.com/astropy/sphinx-astropy,4334.915173611111,3,25,1 -sphinx-autorun,-1.09177585256997,1.72685500319585,-1.80454006267331,https://salsa.debian.org/python-team/packages/sphinx-autorun, https://github.com/hobarrera/sphinx-autorun,4960.184594907408,3,8,0 -sphinx-bootstrap-theme,0.675960533429016,3.44532606381747,-0.223831369521672,https://salsa.debian.org/python-team/packages/sphinx-bootstrap-theme, https://github.com/ryan-roemer/sphinx-bootstrap-theme.git,3711.2313078703705,16,30,0 -sphinx-celery,-1.29378276863836,0.493807507851888,-1.99514716111722,https://salsa.debian.org/python-team/packages/sphinx-celery, https://github.com/celery/sphinx_celery,2803.725,12,7,1 -sphinx-paramlinks,-1.16822532351043,0.386873444258785,-1.56849327813973,https://salsa.debian.org/python-team/packages/sphinx-paramlinks, https://github.com/sqlalchemyorg/sphinx-paramlinks,3511.552777777778,5,5,0 -sphinxcontrib-autoprogram,-1.45604526149334,-0.259677294646666,-1.66121422064934,https://salsa.debian.org/python-team/packages/sphinxcontrib-autoprogram, https://github.com/sphinx-contrib/autoprogram.git,3291.9937962962963,8,16,0 -sphinxcontrib-bibtex,0.111160598031209,2.11318272129199,-0.419729806860031,https://salsa.debian.org/science-team/sphinxcontrib-bibtex, https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git,4544.649305555556,11,9,0 -sphinxcontrib-restbuilder,-1.17641651624647,1.28466903560404,-1.67559401147086,https://salsa.debian.org/python-team/packages/sphinxcontrib-restbuilder, https://github.com/sphinx-contrib/restbuilder.git,2987.8306828703703,1,10,0 -sphinxcontrib-spelling,-0.787411678299217,1.02874816450239,-1.41992962385352,https://salsa.debian.org/python-team/packages/sphinxcontrib-spelling, https://github.com/sphinx-contrib/spelling,5270.833333333333,12,76,0 -sphinxcontrib-websupport,-1.48901538602213,0.0929123660126154,-1.89594760691602,https://salsa.debian.org/python-team/packages/sphinxcontrib-websupport, https://github.com/sphinx-doc/sphinxcontrib-websupport,4818.693842592593,8,17,0 -sphinxtesters,-1.0316070726279,1.44784447235123,-1.60460073897989,https://salsa.debian.org/python-team/packages/sphinxtesters, https://github.com/matthew-brett/sphinxtesters.git,2155.7952314814816,0,3,0 -spice-gtk,0.582080287748955,1.11585902191801,0.272667410546572,https://salsa.debian.org/gnome-team/spice-gtk, https://gitlab.freedesktop.org/spice/spice-gtk.git,4729.975856481481,67,33,0 -spin,-0.53072399035707,2.5263569151805,-1.40162814120316,https://github.com/thomaslee/spin-debian,https://github.com/thomaslee/spin-debian,1934.3454282407408,2,4,0 -spip,-0.989231977175271,-0.553132853575872,-1.24244741931153,https://salsa.debian.org/debian/spip, https://git.spip.net/SPIP/spip,5789.43744212963,39,165,0 -spirv-llvm-translator,-0.442246414626952,2.02512403884149,-1.02851898790274,https://salsa.debian.org/opencl-team/spirv-llvm-translator, https://github.com/KhronosGroup/SPIRV-LLVM-Translator,3136.491087962963,135,37,1 -spyder,0.411511880773028,0.994130161599334,0.0861703012302276,https://salsa.debian.org/science-team/spyder, https://github.com/spyder-ide/spyder,5241.703645833333,64,273,11 -spyder-kernels,0.555849164092982,3.55619390632733,-0.191381956314294,https://salsa.debian.org/science-team/spyder-kernels, https://github.com/spyder-ide/spyder-kernels,1977.064375,17,27,1 -spyder-reports,-0.385959125205035,2.14277517505884,-1.10947796042442,https://salsa.debian.org/science-team/spyder-reports, https://github.com/spyder-ide/spyder-reports/issues/new,2746.3319791666668,2,17,0 -spyder-unittest,-0.361483755206695,2.64062718865038,-1.15320126676733,https://salsa.debian.org/science-team/spyder-unittest, https://github.com/spyder-ide/spyder-unittest.git,3668.976446759259,5,13,0 -sqitch,-1.09874968177566,-0.371705701400283,-1.28992586447073,https://salsa.debian.org/perl-team/modules/packages/sqitch, https://github.com/sqitchers/sqitch/issues/new,2746.3319791666668,2,17,0 -sqldeveloper-package,0.317846262180643,2.55125211219562,-0.549806455358977,https://github.com/lazarusllong/sqldeveloper-package.git,https://github.com/lazarusllong/sqldeveloper-package.git,2130.3049189814815,0,3,0 -sqlgrey,-0.447394696995026,1.28759403696547,-1.09288612680833,https://github.com/bobek/sqlgrey-debian,https://github.com/bobek/sqlgrey-debian,4172.383530092593,1,3,0 -sqlitebrowser,0.611020495288522,1.49882717475728,0.161098396255623,https://salsa.debian.org/sqlitebrowser-team/sqlitebrowser, https://github.com/sqlitebrowser/sqlitebrowser,5467.0491203703705,104,102,1 -sqlmap,-0.0436656035553366,1.22987637940851,-0.407677419447587,https://salsa.debian.org/pkg-security-team/sqlmap, https://github.com/sqlmapproject/sqlmap.git,5537.8440625,75,67,0 -sqlparse,0.376152151958792,1.87430200560609,-0.0843362549363085,https://salsa.debian.org/python-team/packages/sqlparse, https://github.com/andialbrecht/sqlparse.git,5305.0009375,44,69,0 -sqlsmith,-2.05500702591459,1.49887966083461,-2.92634193878314,https://github.com/anse1/sqlsmith,https://github.com/anse1/sqlsmith,3058.1757291666668,4,17,1 -squashfuse,0.310431919105569,3.2539784341741,-0.44046120680797,https://salsa.debian.org/sgmoore/squashfuse, https://github.com/vasi/squashfuse.git,4403.080740740741,10,20,0 -sratom,0.540164976123721,2.85121389532424,0.0136305168021881,https://salsa.debian.org/multimedia-team/sratom, https://github.com/lv2/sratom.git ,4263.558912037037,3,1,0 -srt,0.831422936222882,3.51543847579158,0.0299116916770801,https://salsa.debian.org/debian/libsrt, https://github.com/Haivision/srt.git,2427.4407523148147,125,23,0 -ssh-audit,0.212805109619305,2.71000373552659,-0.378794663244851,https://salsa.debian.org/debian/ssh-audit, https://github.com/jtesta/ssh-audit.git,2897.0719328703703,19,7,0 -ssh-cron,-0.930317575980903,0.595113933437213,-1.21954866919577,https://salsa.debian.org/debian/ssh-cron, https://gitlab.com/fbb-git/ssh-cron.git,2757.0456365740743,0,1,0 -sshguard,0.512155474236336,1.58252922911856,0.00220071430288337,https://salsa.debian.org/debian/sshguard, https://bitbucket.org/sshguard/sshguard.git,5304.903900462963,15,17,0 -sshpubkeys,-1.91211407478949,-0.189481850931877,-2.33126292007642,https://salsa.debian.org/python-team/packages/sshpubkeys, https://github.com/ojarva/python-sshpubkeys.git,3267.352175925926,3,17,0 -sshuttle,0.468621287315097,1.59020401281724,-0.0562158764438331,https://salsa.debian.org/debian/sshuttle, https://github.com/sshuttle/sshuttle.git,4975.084467592593,104,46,0 -sslsniff,0.722916790176053,2.75912507773281,-0.184867548032003,https://salsa.debian.org/pkg-security-team/sslsniff, https://github.com/moxie0/sslsniff.git,177.08484953703703,0,2,0 -sslsplit,0.0482855639097266,2.12289962740315,-0.637127829077254,https://salsa.debian.org/debian/sslsplit, https://github.com/droe/sslsplit,4093.935185185185,9,20,2 -ssreflect,-0.665953623671051,1.90129266209496,-1.50516716550136,https://salsa.debian.org/ocaml-team/ssreflect, https://github.com/math-comp/math-comp,3203.2040162037038,24,40,2 -st-console,-1.79056507667605,0.676950554514186,-2.33256709726343,https://salsa.debian.org/debian/st-console, https://github.com/nferraz/st,3551.6255439814813,0,6,0 -starfighter,1.13150563626708,2.44836061787832,0.407142053639967,https://salsa.debian.org/fmneto-guest/starfighter, https://github.com/pr-starfighter/starfighter,4492.057523148148,7,18,0 -starjava-topcat,-0.548485425839103,1.02382155067597,-0.839890616479756,https://salsa.debian.org/debian-astro-team/starjava-topcat, https://github.com/Starlink/starjava/issues/new,2746.3319791666668,2,17,0 -starjava-ttools,-0.697556190670108,0.0612089874444767,-0.830940236181544,https://salsa.debian.org/debian-astro-team/starjava-ttools, https://github.com/Starlink/starjava/issues/new,2746.3319791666668,2,17,0 -starjava-util,-0.57242176224608,0.51679215541116,-0.789078068589272,https://salsa.debian.org/debian-astro-team/starjava-util, https://github.com/Starlink/starjava,5785.07400462963,2,26,0 -starman,-0.416737047926963,0.488737231083704,-0.575547278316765,https://salsa.debian.org/perl-team/modules/packages/starman, https://github.com/miyagawa/Starman/issues/new,2746.3319791666668,2,17,0 -staticsite,-0.455044516827622,2.62595341392491,-1.40040151763546,https://salsa.debian.org/enrico/staticsite, https://github.com/spanezz/staticsite,2745.097152777778,0,7,1 -stdeb,3.14781101418758,6.15768495102257,1.77610980714421,https://salsa.debian.org/python-team/packages/stdeb, https://github.com/astraw/stdeb.git,4840.605879629629,28,21,0 -stealth,-1.67969378338276,-1.52363729898408,-1.72552357934859,https://salsa.debian.org/debian/stealth, https://gitlab.com/fbb-git/stealth,5511.153113425926,1,1,0 -stenographer,-4.13435362249319,-3.23470721568911,-4.34272066033712,https://salsa.debian.org/go-team/packages/stenographer, https://github.com/google/stenographer,2239.756412037037,19,20,0 -stex,-4.06683154544822,-2.49549281009036,-4.34962454010856,https://salsa.debian.org/debian/stex, https://github.com/dybvig/stex,1828.8861226851852,1,7,0 -stk,0.161350986961681,0.635151894250557,-0.0757101643146169,https://salsa.debian.org/multimedia-team/stk, https://github.com/thestk/stk,5255.633298611111,6,33,2 -stlink,0.233057864230876,3.04988378479478,-0.467680219154583,https://github.com/bluca/stlink,https://github.com/bluca/stlink,4380.028472222222,78,192,0 -stopmotion,1.7364098877277,3.46333795703178,0.826063585424022,https://salsa.debian.org/debian/stopmotion, https://invent.kde.org/multimedia/stopmotion.git,4309.425405092593,11,19,0 -stress,0.779179494126401,3.53680266613907,-0.0279634009643242,https://salsa.debian.org/debian/stress, https://github.com/resurrecting-open-source-projects/stress,489.80528935185185,0,3,0 -strip-nondeterminism,0.0265407070750725,0.140289764990438,-0.0315549037362641,https://salsa.debian.org/reproducible-builds/strip-nondeterminism, https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/issues/new,2746.3319791666668,2,17,0 -stumpwm,0.244744366061042,1.16892369336062,-0.266497312403179,https://salsa.debian.org/common-lisp-team/stumpwm, https://github.com/stumpwm/stumpwm.git,5783.58130787037,82,149,0 -subdownloader,0.257673813794888,1.41620806504126,-0.267795596118916,https://salsa.debian.org/python-team/packages/subdownloader, https://github.com/subdownloader/subdownloader,4731.6769560185185,4,22,3 -subliminal,0.719007050611934,3.14219027867566,-0.207924080626069,https://salsa.debian.org/python-team/packages/subliminal, https://github.com/Diaoul/subliminal.git,3790.6726273148147,11,36,0 -subtitleeditor,0.471518900266572,1.21730778912594,0.0459581289668194,https://salsa.debian.org/debian/subtitleeditor, https://github.com/kitone/subtitleeditor,5679.7465856481485,2,6,0 -subtle,-0.105745634673122,2.62918443450635,-1.126139338849,http://github.com/formorer/pkg-subtle,http://github.com/formorer/pkg-subtle,305.31677083333335,0,1,0 -subvertpy,-0.0856463378556415,0.91749868593295,-0.528150646670691,https://salsa.debian.org/python-team/packages/subvertpy, https://github.com/jelmer/subvertpy,3827.0174421296297,14,36,0 -suds,-0.20613769522305,0.133500224279092,-0.280338126116505,https://salsa.debian.org/python-team/packages/suds, https://github.com/suds-community/suds.git,3431.642199074074,14,23,0 -suil,0.666624473070575,2.94988240352733,0.0198598554375319,https://salsa.debian.org/multimedia-team/suil, https://github.com/lv2/suil.git ,4625.665625,6,1,0 -sundials,0.130483493734379,1.32951513697455,-0.421432426655231,https://salsa.debian.org/science-team/sundials, https://github.com/LLNL/sundials.git,5750.416412037037,17,59,0 -sup-mail,0.728940870273554,1.64564406403328,0.201429465862888,https://salsa.debian.org/ruby-team/sup-mail, https://github.com/sup-heliotrope/sup/issues/new,2746.3319791666668,2,17,0 -supercollider,0.528850069584964,1.1642808747998,0.139110574443801,https://salsa.debian.org/multimedia-team/supercollider, https://github.com/supercollider/supercollider.git,5761.273125,106,286,0 -supercollider-sc3-plugins,0.49190960898079,3.08416227108235,-0.258172549283888,https://salsa.debian.org/multimedia-team/supercollider-sc3-plugins, https://github.com/supercollider/sc3-plugins,5663.603368055556,11,73,0 -superlu,0.269433577736656,1.81802053715799,-0.0626900614158059,https://salsa.debian.org/science-team/superlu, https://github.com/xiaoyeli/superlu.git,3055.1216435185183,5,29,0 -surfraw,0.167020774751074,0.640915459615742,-0.1279559944959,https://salsa.debian.org/debian/surfraw, https://gitlab.com/surfraw/Surfraw.git,5453.205810185185,6,24,0 -suricata,-0.468742762119758,-0.261206083572737,-0.589725098936138,https://salsa.debian.org/pkg-suricata-team/pkg-suricata, https://github.com/OISF/suricata,5277.269143518519,244,62,5 -suricata-update,-0.875566862243854,1.43351539555108,-1.31573448531461,https://salsa.debian.org/pkg-suricata-team/pkg-suricata-update, https://github.com/OISF/suricata-update,2073.188449074074,16,11,0 -svgpp,-1.88545594094944,-0.538517313828018,-2.21882754773418,https://salsa.debian.org/debian/svgpp, https://github.com/svgpp/svgpp.git,3480.624872685185,6,8,0 -svgtune,0.136601990572802,2.76037877899855,-0.708785107010438,http://github.com/yarikoptic/svgtune,http://github.com/yarikoptic/svgtune,4268.484155092593,0,2,0 -svgwrite,0.163001514332914,2.89783146632471,-0.643165752630008,https://salsa.debian.org/python-team/packages/svgwrite, https://github.com/mozman/svgwrite.git,2562.4058912037035,4,22,0 -svn-all-fast-export,0.073570404336437,2.21477992704799,-0.698915696708374,https://salsa.debian.org/debian/svn-all-fast-export, https://github.com/svn-all-fast-export/svn2git.git,5311.248136574074,28,29,0 -svtplay-dl,-0.259583483993522,1.49093197580035,-0.73300505771981,https://salsa.debian.org/olof/svtplay-dl, https://github.com/spaam/svtplay-dl,4669.1490162037035,48,26,3 -svxlink,-0.363501834070498,1.31601159062806,-0.862809513000875,https://salsa.debian.org/debian-hamradio-team/svxlink, https://github.com/sm0svx/svxlink/issues/new,2746.3319791666668,2,17,0 -swaks,-0.0249524641953267,0.321857900912028,-0.148643973333566,https://salsa.debian.org/debian/swaks, https://github.com/jetmore/swaks,5448.060069444445,0,9,5 -swami,0.147652628802903,1.51831488143364,-0.462498226293679,https://salsa.debian.org/multimedia-team/swami, https://github.com/swami/swami,4547.478796296296,6,10,0 -swauth,-2.42549018476981,-0.857079313858978,-2.77954426667766,https://salsa.debian.org/openstack-team/services/swauth, https://github.com/openstack/swauth.git,3045.1673958333336,5,41,0 -sway,-0.000314428067310687,1.82114971457078,-0.460273981510936,https://salsa.debian.org/swaywm-team/sway, https://github.com/swaywm/sway/issues/new,2746.3319791666668,2,17,0 -swayidle,-0.101420118028715,2.20364200886325,-0.6198513899419,https://salsa.debian.org/swaywm-team/swayidle, https://github.com/swaywm/swayidle,1867.500775462963,24,22,0 -swh-lv2,0.0271485834407405,2.31968936226794,-0.405826923040319,https://salsa.debian.org/multimedia-team/swh-lv2, https://github.com/swh/lv2,4769.927280092593,1,14,0 -swh-plugins,0.708394962150775,1.45205716079245,0.284208147622619,https://salsa.debian.org/multimedia-team/swh-plugins, https://github.com/swh/ladspa.git,5572.583993055556,1,25,0 -swift,-0.744860549436327,-0.508114788689935,-0.849748517290689,https://salsa.debian.org/openstack-team/services/swift, https://github.com/openstack/swift.git,4902.789189814815,50,447,0 -swift-bench,-3.69716188934169,-0.973889151522176,-4.31149029277086,https://salsa.debian.org/openstack-team/services/swift-bench, https://github.com/openstack/swift-bench.git,4746.026828703703,8,47,0 -sword-comm-scofield,-0.182879515505772,2.73477597327521,-0.967988600213752,https://salsa.debian.org/pkg-crosswire-team/sword-comm-scofield, https://gitlab.com/crosswire-bible-society/scofield,306.4266666666667,0,2,0 -sword-comm-tdavid,-0.299819515004449,2.54720432893952,-1.08238879710094,https://salsa.debian.org/pkg-crosswire-team/sword-comm-tdavid, https://gitlab.com/crosswire-bible-society/tdavid.git,206.141875,0,2,0 -sword-dict-naves,0.164634162031206,2.87521572040392,-0.727860853196278,https://salsa.debian.org/pkg-crosswire-team/sword-dict-naves, https://gitlab.com/crosswire-bible-society/nave,86.11121527777777,0,2,0 -sword-dict-strongs-greek,-0.0885680514378934,2.82242315502224,-0.850875474846951,https://salsa.debian.org/pkg-crosswire-team/sword-dict-strongs-greek, https://gitlab.com/crosswire-bible-society/strongsgreek,1035.2977314814814,0,3,0 -swupdate,-4.13804202084003,-0.376504653524451,-5.241034960621,https://salsa.debian.org/debian/swupdate, https://github.com/sbabic/swupdate,3657.108321759259,179,6,0 -sxid,0.33831696615764,2.49407650395556,-0.642779212415897,https://salsa.debian.org/debian/sxid, https://github.com/taem/sxid,1429.0293865740741,0,1,0 -symmetrica,0.00238259404754255,1.49912551135512,-0.320310437795057,https://salsa.debian.org/math-team/symmetrica, https://gitlab.com/sagemath/symmetrica,1219.7343055555555,1,5,0 -synaptic,4.07863208558205,4.62122051683102,3.64147371025369,https://github.com/mvo5/synaptic,https://github.com/mvo5/synaptic,5665.124976851852,20,60,0 -syncthing,0.116551399825498,0.685220699884462,-0.109925509533538,https://salsa.debian.org/go-team/packages/syncthing, https://github.com/syncthing/syncthing.git,3650.0363310185185,277,155,0 -syncthing-gtk,0.124981196436335,1.77018291615298,-0.350608561384194,https://salsa.debian.org/jelmer/syncthing-gtk, https://github.com/syncthing/syncthing-gtk,2902.734409722222,7,42,1 -synthv1,0.0241434868220623,1.37409351486715,-0.399365925014397,https://salsa.debian.org/multimedia-team/synthv1, https://github.com/rncbc/synthv1.git,4117.136076388889,0,14,0 -syrep,-0.384041012701151,1.56637993826751,-1.15004967985139,https://github.com/JonathonReinhart/syrep,https://github.com/JonathonReinhart/syrep,0.002361111111111111,1,1,0 -sysbench,1.36809504053709,3.19161177666942,0.518368806653643,https://salsa.debian.org/jcfp/sysbench, https://github.com/akopytov/sysbench.git,5395.9011574074075,9,45,0 -sysfsutils,1.46049393185949,2.50439380675384,0.820289131218092,https://git.hadrons.org/cgit/debian/pkgs/sysfsutils.git, https://github.com/linux-ras/sysfsutils/issues/new,2746.3319791666668,2,17,0 -syslog-ng,0.336088055168891,0.511763417260577,0.185971407157619,https://github.com/gcsideal/syslog-ng-debian,https://github.com/gcsideal/syslog-ng-debian,4178.44738425926,0,12,0 -syslog-ocaml,-0.996657340852441,1.25417313172268,-1.73225700632424,https://salsa.debian.org/ocaml-team/syslog-ocaml, https://github.com/geneanet/ocaml-syslog.git,690.8139351851852,1,3,0 -sysprof,0.699537696683132,2.1190333945787,0.068738789693761,https://salsa.debian.org/gnome-team/sysprof, https://gitlab.gnome.org/GNOME/sysprof.git,5697.530277777778,77,78,0 -system-config-printer,2.35534728653651,3.32976112957796,1.71704345034686,https://salsa.debian.org/gnome-team/system-config-printer, https://github.com/OpenPrinting/system-config-printer/commits/master,5185.326875,55,11,0 -systemd,0.206981263276473,0.233535317681592,0.182347659621236,https://salsa.debian.org/systemd-team/systemd, https://github.com/systemd/systemd,5140.484525462963,2040,582,2 -systemd-bootchart,0.0589352376469859,2.49482197170593,-0.521736994773931,https://salsa.debian.org/systemd-team/systemd-bootchart, https://github.com/systemd/systemd-bootchart,2813.8079282407407,13,11,0 -systemd-cron,0.243571307309259,1.06731842162835,-0.191790932788304,https://salsa.debian.org/systemd-team/systemd-cron, https://github.com/systemd-cron/systemd-cron.git,3852.632291666667,2,17,0 -systemfixtures,-2.62932315078521,-0.936424704435129,-3.00582436909892,https://salsa.debian.org/python-team/modules/systemfixtures, https://github.com/testing-cabal/systemfixtures.git,2181.133263888889,4,4,0 -systemsettings,2.48652539265963,3.73318298435503,1.68789238423762,https://salsa.debian.org/qt-kde-team/kde/systemsettings, https://invent.kde.org/plasma/systemsettings.git,5784.388645833334,14,140,0 -systray-mdstat,-0.49343389370703,2.37286975016287,-1.23916904427602,https://github.com/xtaran/systray-mdstat,https://github.com/xtaran/systray-mdstat,1731.202361111111,1,1,0 -systune,-0.265542267936075,0.938801310175914,-0.701848845741014,https://github.com/sudipm-mukherjee/systune.git,https://github.com/sudipm-mukherjee/systune.git,176.0601736111111,1,4,0 -sysvinit,1.52035499816916,1.68724376899493,1.3661977311182,https://salsa.debian.org/debian/sysvinit, https://github.com/slicer69/sysvinit,5198.300694444444,2,8,0 -taglib,0.636911281526059,1.17664097241677,0.319697620200093,https://salsa.debian.org/multimedia-team/taglib, https://github.com/taglib/taglib.git,5783.547962962963,42,108,0 -tali,1.97527182262253,6.09419787870816,0.614699396090351,https://salsa.debian.org/gnome-team/tali, https://gitlab.gnome.org/GNOME/tali/-/issues/new,2746.3319791666668,2,17,0 -tao-pegtl,-2.20048020847375,0.225180617239842,-2.76338788823184,https://salsa.debian.org/birger/tao-pegtl, https://github.com/taocpp/PEGTL/issues/new,2746.3319791666668,2,17,0 -tap-plugins,0.092380640002778,1.31045924107168,-0.180216737924224,https://salsa.debian.org/multimedia-team/tap-plugins, https://github.com/tomszilagyi/tap-plugins.git,5078.916828703704,3,8,0 -tap.py,-0.705784056930563,2.23851716592824,-1.50155112842669,https://salsa.debian.org/python-team/packages/tap.py, https://github.com/python-tap/tappy,3537.627025462963,10,7,0 -tarantool,-1.14359343681524,-0.641567634326068,-1.36909544523757,https://github.com/tarantool/tarantool,https://github.com/tarantool/tarantool,4846.285023148148,146,142,2 -tarantool-lts,-2.37041664166569,-0.116900586375532,-3.13494989367694,https://github.com/tarantool/tarantool,https://github.com/tarantool/tarantool,4846.285023148148,146,142,2 -tbb,0.634181656941655,1.22276786518191,0.288850631146131,https://salsa.debian.org/science-team/tbb, https://github.com/oneapi-src/oneTBB.git,2645.123414351852,84,33,0 -tcl-signal,0.119740533015725,2.23718684079051,-0.307511467566214,https://salsa.debian.org/tcltk-team/tcl-signal, https://github.com/wjoye/tclsignal,2449.858275462963,1,4,0 -tcpdf,1.43620503068368,4.03650783735055,0.445692893073574,https://salsa.debian.org/phpmyadmin-team/tcpdf, https://github.com/tecnickcom/TCPDF,5278.855648148148,85,42,0 -tcpdump,0.434765262117613,0.74183147025131,0.227171901688965,https://salsa.debian.org/rfrancoise/tcpdump, https://github.com/the-tcpdump-group/tcpdump,5536.880671296296,104,116,2 -tcpflow,0.199332153857178,0.768845369345533,-0.0915379508440729,https://salsa.debian.org/debian/tcpflow, https://github.com/simsong/tcpflow.git,4133.2346875,26,36,0 -tcpslice,0.335845590539134,2.6360959653613,-0.57091569500002,https://salsa.debian.org/debian/tcpslice, https://github.com/the-tcpdump-group/tcpslice,1218.7178356481481,4,7,0 -tdc,-0.586034764406804,1.72204976789029,-1.19185769505505,https://github.com/MTecknology/tdc,https://github.com/MTecknology/tdc,2078.208020833333,1,4,0 -tdiary,-0.520416650743385,0.978252886038865,-1.23821736610688,https://salsa.debian.org/ruby-team/tdiary, https://github.com/tdiary/tdiary-core,5778.206168981482,6,55,0 -tdiary-contrib,-1.49935485678369,-0.333006957206139,-2.04741697549019,https://salsa.debian.org/ruby-team/tdiary-contrib, https://github.com/tdiary/tdiary-contrib,5617.506469907407,4,81,0 -tdiary-style-gfm,-3.85195760998636,-1.62098730176518,-4.33521170538792,https://salsa.debian.org/ruby-team/tdiary-style-gfm, https://github.com/tdiary/tdiary-style-gfm,3042.210335648148,2,13,0 -tea,-0.281031083462774,0.168294716769303,-0.470037759021774,https://salsa.debian.org/debian/tea, https://github.com/psemiletov/tea-qt.git,2860.148009259259,4,9,0 -teckit,2.12616371380411,6.07678880295945,0.745055592667297,https://github.com/debian-tex/teckit,https://github.com/debian-tex/teckit,2563.6115277777776,1,6,0 -tegaki-zinnia-japanese,1.36181205070787,5.4067459556616,0.141079286593833,https://salsa.debian.org/debian/tegaki-zinnia-japanese, https://github.com/tegaki/tegaki.git,5118.392777777778,1,17,0 -telegram-desktop,0.68238459228586,1.5291754309194,0.217133532232924,https://salsa.debian.org/debian/telegram-desktop, https://github.com/telegramdesktop/tdesktop.git,3514.705775462963,164,48,0 -telepathy-accounts-signon,0.702641802439846,4.41875522721259,-0.258018656501347,https://salsa.debian.org/qt-kde-team/3rdparty/telepathy-accounts-signon, https://gitlab.com/accounts-sso/telepathy-accounts-signon.git,2553.5604166666667,0,15,0 -template-glib,0.168978602304256,2.37790325637827,-0.314162821116756,https://salsa.debian.org/gnome-team/template-glib, https://gitlab.gnome.org/GNOME/template-glib.git,2658.0133680555555,30,22,0 -tenace,0.597887409824028,2.57748271511221,-0.227459824540816,https://github.com/df7cb/tenace,https://github.com/df7cb/tenace,4952.623784722222,1,5,0 -tenshi,0.0367580557286976,2.66820756632001,-1.10944291002974,https://salsa.debian.org/debian/tenshi, https://github.com/f-secure-foundry/tenshi,3173.5105787037037,3,9,0 -termbox,-0.332071725272558,1.77596898541166,-0.759186002019704,https://salsa.debian.org/debian/termbox, https://github.com/nsf/termbox.git,4364.220393518519,12,41,0 -terminado,0.117041057623266,1.29203487095836,-0.163948297260027,https://salsa.debian.org/python-team/packages/terminado, https://github.com/jupyter/terminado,3771.3957407407406,25,31,0 -terminaltables,0.412492960577376,3.39801290706263,-0.31829907429068,https://git.progress-linux.org/users/daniel.baumann/debian/packages/terminaltables, https://github.com/matthewdeanmartin/terminaltables,2707.668125,1,11,0 -terminator,1.64585557970227,2.63784940135458,1.02540406737244,https://salsa.debian.org/python-team/packages/terminator, https://github.com/gnome-terminator/terminator,5766.056412037037,22,121,2 -terminus,-0.266211855514851,2.98981952257904,-1.07148647030409,https://salsa.debian.org/debian/terminus, https://gitlab.com/rastersoft/terminus,2614.014849537037,0,5,0 -termrec,-0.546232522023779,1.72389988124453,-0.995923304197279,https://github.com/kilobyte/termrec/tree/debian,https://github.com/kilobyte/termrec,5312.953356481482,0,2,0 -termshark,-0.790234191745614,1.4608630566174,-1.22828984579489,https://salsa.debian.org/go-team/packages/termshark, https://github.com/gcla/termshark.git,1476.2094328703704,6,14,0 -tesseract-lang,0.323928139030608,1.22799953306579,-0.0238272915900919,https://github.com/AlexanderP/tesseract-lang-debian,https://github.com/AlexanderP/tesseract-lang-debian,1566.6614814814816,0,5,0 -test-kitchen,-0.921041438391563,1.3276246051366,-1.60155632242379,https://salsa.debian.org/ruby-team/test-kitchen, https://github.com/test-kitchen/test-kitchen/issues/new,2746.3319791666668,2,17,0 -testpath,0.178377175042217,1.42515771828427,-0.146798279917223,https://salsa.debian.org/python-team/packages/testpath, https://github.com/jupyter/testpath.git,2578.920949074074,1,9,0 -testssl.sh,0.105101040021067,2.20883294259809,-0.342780074304721,https://salsa.debian.org/pkg-security-team/testssl.sh, https://github.com/drwetter/testssl.sh.git,3448.220810185185,24,122,0 -tetex-brev,-0.904214842582474,0.898660783815827,-1.49145773466644,https://salsa.debian.org/debian/tetex-brev, https://github.com/asgeirn/brev-cls.git,3127.5767708333333,2,4,0 -tex-common,0.151231889587086,0.257676560878312,0.0745875584946667,https://github.com/debian-tex/tex-common,https://github.com/debian-tex/tex-common,5410.6258333333335,2,8,0 -tex-gyre,1.31087093839402,3.21344168406271,0.456727081656784,https://github.com/debian-tex/tex-gyre,https://github.com/debian-tex/tex-gyre,5218.649583333333,2,7,0 -texext,-0.496601277128136,2.46929449464641,-1.38146468438323,https://salsa.debian.org/python-team/packages/texext, https://github.com/matthew-brett/texext.git,2951.808113425926,0,5,0 -texinfo,1.23808351862705,1.59441210728978,0.965763802542942,https://github.com/debian-tex/texinfo,https://github.com/debian-tex/texinfo,5779.881342592593,3,9,0 -texlive-base,1.15679629415715,1.362961610764,0.982152268763239,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-base,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0 -texlive-bin,0.977654238974201,1.26012038506653,0.750619670908532,https://github.com/debian-tex/texlive-bin,https://github.com/debian-tex/texlive-bin,4308.437662037037,3,11,0 -texlive-extra,0.870329898620217,1.0658084365154,0.708117771164046,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-extra,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0 -texlive-lang,0.729614425561058,1.07882617316548,0.459375405894902,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-lang,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0 -texttable,0.311067697139978,2.35503922009852,-0.12895849762201,https://salsa.debian.org/python-team/packages/texttable, https://github.com/foutaise/texttable,2877.983738425926,3,10,0 -texworks,0.345795577570427,1.30764122490873,-0.065304430583538,https://github.com/debian-tex/texworks,https://github.com/debian-tex/texworks,4991.678958333333,1,9,0 -texworks-manual,0.198739884732124,2.59400351517298,-0.321228007138928,https://github.com/debian-tex/texworks-manual,https://github.com/debian-tex/texworks-manual,1933.1899652777777,2,5,0 -thaixfonts,0.128162461196804,0.871921859343836,-0.225691647646668,https://salsa.debian.org/debian/thaixfonts, https://github.com/tlwg/thaixfonts/issues/new,2746.3319791666668,2,17,0 -thefuck,0.585395647883879,2.87730809158881,-0.22945139954812,https://salsa.debian.org/debian/thefuck, https://github.com/nvbn/thefuck.git,3035.171388888889,98,108,0 -three.js,0.115890084847779,1.68070508341261,-0.311409633612736,https://salsa.debian.org/js-team/three.js, https://github.com/mrdoob/three.js/issues/new,2746.3319791666668,2,17,0 -thunar-dropbox-plugin,0.115455536805288,2.18322066671253,-0.418052724678524,https://salsa.debian.org/xfce-extras-team/thunar-dropbox-plugin, https://github.com/jeinzi/thunar-dropbox.git,3052.1741319444445,2,6,0 -tidy-html5,2.58506214231347,3.66271559825143,1.85867571563008,https://salsa.debian.org/debian/tidy-html5, https://github.com/htacg/tidy-html5,3722.5229050925927,18,85,3 -tifffile,-0.495019139781536,1.09540225176633,-0.943295403808547,https://salsa.debian.org/python-team/packages/tifffile, https://github.com/cgohlke/tifffile.git,1876.595185185185,0,2,0 -tigervnc,0.386049951760157,0.977138634206926,0.0684855340794749,https://salsa.debian.org/debian-remote-team/tigervnc, https://github.com/TigerVNC/tigervnc.git,5713.216122685185,57,92,0 -tikzit,-0.316083266782456,1.71784040429033,-0.775896519955274,https://salsa.debian.org/debian/tikzit, https://github.com/tikzit/tikzit.git,4273.840902777778,1,14,0 -tiledarray,-1.7374267907978,0.176768633819741,-2.3518262419847,https://salsa.debian.org/debichem-team/tiledarray, https://github.com/ValeevGroup/tiledarray.git,5618.111967592593,7,39,0 -timbl,-0.401299298516659,1.39172224209644,-0.920665446876481,https://salsa.debian.org/science-team/timbl, https://github.com/LanguageMachines/timbl.git,2913.2087384259257,0,8,0 -timeshift,0.0156315640585256,1.06811864928072,-0.301132204362499,https://salsa.debian.org/debian/timeshift, https://github.com/linuxmint/timeshift.git,3711.4258449074073,52,39,0 -tint2,-0.141727602339628,0.211980436625202,-0.260976798000382,https://salsa.debian.org/debian/tint2, https://gitlab.com/o9000/tint2,5016.164016203704,2,38,0 -tinymux,-0.358104556573467,1.21116943335798,-0.974126882100601,https://github.com/brazilofmux/tinymux,https://github.com/brazilofmux/tinymux,5573.2325925925925,10,7,0 -tinyows,-1.98511151844238,-0.212331690029963,-2.347873619432,https://salsa.debian.org/debian-gis-team/tinyows, https://github.com/mapserver/tinyows.git,4838.9733680555555,4,22,0 -tinyssh,-1.47329206501662,0.864916972832623,-1.9165265439908,https://salsa.debian.org/debian/tinyssh, https://github.com/janmojzis/tinyssh.git,3264.9232175925927,1,18,0 -tinyxml,1.94511814165906,5.62991494170591,0.652575329514434,https://salsa.debian.org/debian/tinyxml, https://git.code.sf.net/p/tinyxml/git,4942.509212962963,5,40,0 -tinyxml2,1.09131672847064,3.21602890262065,0.245965835670316,https://salsa.debian.org/debian/tinyxml2, https://github.com/leethomason/tinyxml2.git,4345.918495370371,18,127,0 -tk-table,0.381122633675888,2.97249082624193,-0.224727752517437,https://salsa.debian.org/tcltk-team/tk-table, https://github.com/wjoye/tktable,2301.1677546296296,2,6,0 -tldp,-2.93877526859313,-1.08471981878398,-3.32269469184863,https://github.com/tLDP/python-tldp,https://github.com/tLDP/python-tldp,2447.0141319444447,0,4,0 -tldr-py,-0.849419117803017,1.58590203274484,-1.37358549608759,https://salsa.debian.org/python-team/packages/tldr-py, https://github.com/lord63/tldr.py,1740.1593055555556,4,6,0 -tlf,-0.874731641891955,-0.514588381934818,-0.988646862374724,https://salsa.debian.org/debian-hamradio-team/tlf, https://github.com/Tlf/tlf.git,5111.279826388889,15,21,0 -tmate,-0.00717787688764515,1.87830682312925,-0.450202181194144,https://salsa.debian.org/debian/tmate, https://github.com/tmate-io/tmate,5291.238715277777,13,35,0 -tmuxinator,-0.350033048899331,0.369162139645773,-0.52166143647151,https://salsa.debian.org/ruby-team/tmuxinator, https://github.com/tmuxinator/tmuxinator,4304.313865740741,50,102,2 -todoman,-0.633941656040399,1.01466560147069,-1.15564134757205,https://salsa.debian.org/python-team/packages/todoman, https://github.com/pimutils/todoman.git,3181.1360069444445,24,26,0 -todotxt-cli,0.0577600851525939,2.76685230170656,-0.554622830248362,https://salsa.debian.org/debian/todotxt-cli/, https://github.com/todotxt/todo.txt-cli.git,5276.743842592593,43,48,0 -tomb,-0.519440159582384,0.614700205390144,-0.853511595703441,https://salsa.debian.org/pkg-security-team/tomb, https://github.com/dyne/Tomb,4854.520347222222,29,55,3 -toolz,-0.0387707331718257,1.25079389482048,-0.32093010605156,https://salsa.debian.org/python-team/packages/toolz, https://github.com/pytoolz/toolz.git,3458.670486111111,19,61,0 -tootle,1.27112081484644,4.76922613168408,-0.0231156554212357,https://salsa.debian.org/debian/tootle, https://github.com/bleakgrey/tootle.git,1706.1450925925926,21,13,0 -toposort,-0.307720751568214,1.63375154695284,-0.661319014380573,https://salsa.debian.org/python-team/packages/toposort, https://gitlab.com/ericvsmith/toposort,3306.345613425926,3,2,0 -torbrowser-launcher,0.225449394393413,0.469008137444455,0.0615930109078143,https://salsa.debian.org/pkg-privacy-team/torbrowser-launcher, https://github.com/micahflee/torbrowser-launcher,3941.46244212963,20,66,6 -toro,-2.2006489718699,0.291807336130628,-2.76681916306593,https://salsa.debian.org/debian/toro, https://github.com/ajdavis/toro/issues/new,2746.3319791666668,2,17,0 -totalopenstation,-0.388922176582237,1.0156726480333,-0.733221024342593,https://salsa.debian.org/debian-gis-team/totalopenstation, https://github.com/totalopenstation/totalopenstation.git,3856.5791319444443,6,8,0 -tox,-0.0583857095686922,0.596675636995856,-0.328987056787798,https://salsa.debian.org/python-team/packages/tox, https://github.com/tox-dev/tox.git,4934.844641203704,209,140,0 -tp-smapi,0.844323368615497,2.0576796453675,0.253870626454108,https://salsa.debian.org/debian/tp-smapi, https://github.com/linux-thinkpad/tp_smapi,4476.696655092593,6,7,0 -tpm2-abrmd,0.340870617987244,1.64397862948565,-0.0279105882355243,https://salsa.debian.org/debian/tpm2-abrmd, https://github.com/tpm2-software/tpm2-abrmd.git,2473.815023148148,35,11,0 -tpm2-initramfs-tool,-1.40359125078696,1.80411121152826,-2.1934256166983,https://github.com/timchen119/tpm2-initramfs-tool,https://github.com/timchen119/tpm2-initramfs-tool,486.0112962962963,0,2,0 -tpm2-pkcs11,-4.89527293121841,-2.3012582462713,-5.45863290350755,https://salsa.debian.org/debian/tpm2-pkcs11, https://github.com/tpm2-software/tpm2-pkcs11.git,1624.0547222222222,39,5,0 -tpm2-tools,0.497439056760648,2.41672238410858,-0.0181300571584083,https://salsa.debian.org/debian/tpm2-tools, https://github.com/tpm2-software/tpm2-tools,3038.520497685185,147,25,10 -tqdm,0.0667368265292586,1.24615397967521,-0.220988008674571,https://salsa.debian.org/python-team/packages/tqdm, https://github.com/tqdm/tqdm.git,3584.292847222222,91,37,0 -trace-cmd,0.0998974636845,1.39787995621575,-0.354648084428709,https://github.com/sudipm-mukherjee/trace-cmd.git,https://github.com/sudipm-mukherjee/trace-cmd.git,1314.92875,139,17,0 -trackballs,0.245048124076464,1.03475591552092,-0.184206184392696,https://salsa.debian.org/games-team/trackballs, https://github.com/trackballs/trackballs.git,2063.1770717592594,6,7,0 -tracker-miners,2.96890808014034,5.21015700436881,1.85255715162121,https://salsa.debian.org/gnome-team/tracker-miners, https://gitlab.gnome.org/GNOME/tracker-miners,5786.805474537037,272,269,0 -trafficserver,-1.16370925011416,-0.640639878135633,-1.46923988013687,https://salsa.debian.org/debian/trafficserver, https://github.com/apache/trafficserver,5180.014004629629,430,166,14 -traitlets,0.252950024330779,1.86292382076619,-0.096233862213897,https://salsa.debian.org/python-team/packages/traitlets, https://github.com/ipython/traitlets.git,5659.035034722222,36,89,0 -tran,-0.550748882886256,1.93788478921821,-1.09138120074128,https://github.com/kilobyte/tran/tree/debian,https://github.com/kilobyte/tran,4999.4501736111115,0,1,0 -translate-toolkit,0.566615379923442,1.15966781659641,0.208775634460545,https://salsa.debian.org/l10n-team/translate-toolkit, https://github.com/translate/translate,5785.786030092592,95,49,2 -trash-cli,1.06684138530451,2.39764011651376,0.357979356353325,https://salsa.debian.org/debian/trash-cli, https://github.com/andreafrancia/trash-cli.git,5751.461631944445,18,35,0 -trayer,0.796093545331843,2.23608521534984,0.122409527381704,https://salsa.debian.org/skangas/trayer, https://github.com/sargon/trayer-srg/issues/new,2746.3319791666668,2,17,0 -trend,-0.247987083663429,1.23717926225835,-0.562715384853969,https://salsa.debian.org/debian/trend, https://gitlab.com/wavexx/trend,3870.7506481481482,0,1,0 -triangle,-0.171188651604536,3.13081859065391,-1.21547208500806,https://salsa.debian.org/science-team/triangle, https://github.com/libigl/triangle.git,2528.1501736111113,2,7,0 -triggerhappy,1.59828841578579,4.48320777881722,0.389062407879172,https://github.com/wertarbyte/triggerhappy,https://github.com/wertarbyte/triggerhappy,2171.0642708333335,5,5,0 -trimage,1.25538527576544,3.95852084110596,0.188688872097325,https://salsa.debian.org/debian-phototools-team/trimage, https://github.com/Kilian/Trimage,4077.9117708333333,2,17,0 -trinityrnaseq,-0.365244617454952,1.41599664321691,-0.974531329622039,https://salsa.debian.org/med-team/trinityrnaseq, https://github.com/trinityrnaseq/trinityrnaseq/issues/new,2746.3319791666668,2,17,0 -trivial-features,0.263794991500852,3.27674805866799,-0.566814757036491,https://salsa.debian.org/common-lisp-team/trivial-features, https://github.com/trivial-features/trivial-features,5548.67386574074,11,9,0 -trivial-gray-streams,-0.0499196074540647,1.94778085709933,-0.505259566151993,https://salsa.debian.org/common-lisp-team/trivial-gray-streams, https://github.com/trivial-gray-streams/trivial-gray-streams/issues/new,2746.3319791666668,2,17,0 -trocla,-1.12829437521708,1.85491509198581,-2.12969666349766,https://salsa.debian.org/ruby-team/trocla, https://github.com/duritong/trocla,4222.934444444444,2,25,0 -trollsift,-2.02827138272072,0.319975343977958,-2.47830426860654,https://salsa.debian.org/debian-gis-team/trollsift, https://github.com/pytroll/trollsift,3470.9592824074075,4,15,0 -tslib,0.13367892889746,0.999475000069537,-0.0934739230140975,https://github.com/merge/tslib-debian,https://github.com/merge/tslib-debian,1295.9506018518518,2,3,0 -tty-clock,-0.284505416950156,0.457570258657673,-0.496718793185656,https://github.com/anarcat/tty-clock/tree/debian,https://github.com/anarcat/tty-clock,3142.182175925926,0,24,0 -ttygif,-0.778474708141422,1.48512235508045,-1.29229074560786,https://salsa.debian.org/debian/ttygif, https://github.com/icholy/ttygif.git,3670.9607175925926,6,36,0 -tvdb-api,-0.533375297627363,2.09673545239005,-1.08109425650425,https://salsa.debian.org/python-team/packages/tvdb-api, https://github.com/dbr/tvdb_api.git,5264.897824074074,6,18,0 -tweepy,0.301492933185993,2.33320263624835,-0.527470147647839,https://salsa.debian.org/python-team/packages/tweepy, https://github.com/tweepy/tweepy.git,5164.931319444445,72,189,0 -twiggy,0.310050801803201,4.08800007368902,-0.852782604445895,https://salsa.debian.org/perl-team/modules/packages/twiggy, https://github.com/miyagawa/Twiggy/issues/new,2746.3319791666668,2,17,0 -twisted,0.98069491865066,1.43630376605807,0.65324495335309,https://salsa.debian.org/python-team/packages/twisted, https://github.com/twisted/twisted.git,5788.182372685185,71,239,0 -twms,-0.592208155086867,1.2383570593868,-1.19721999610909,https://salsa.debian.org/debian/twms, https://github.com/Komzpa/twms.git,2177.2821875,3,11,0 -twolame,0.84171127820373,2.60675697554107,0.181912310992012,https://salsa.debian.org/multimedia-team/twolame, https://github.com/njh/twolame,5003.766446759259,10,10,2 -txt2html,0.777425923402395,2.12212836016023,0.106308761047132,https://salsa.debian.org/debian/txt2html, https://github.com/resurrecting-open-source-projects/txt2html,5316.649085648148,1,4,0 -txt2man,0.40906456207929,1.5195694639647,-0.144245647631959,https://salsa.debian.org/debian/txt2man, https://github.com/mvertes/txt2man,2424.6791435185187,2,9,0 -txt2tags,0.0507302841798365,1.0615675265799,-0.385371985804156,https://salsa.debian.org/python-team/packages/txt2tags, https://github.com/txt2tags/txt2tags.git,5549.60462962963,9,22,0 -txws,-1.42880810465336,1.20791423379852,-2.03361810531591,https://salsa.debian.org/python-team/packages/txws, https://github.com/MostAwesomeDude/txWS,4288.208576388889,2,10,0 -txzmq,-0.602187662560627,0.900282208594241,-1.01882931151546,https://salsa.debian.org/python-team/packages/txzmq, https://github.com/smira/txZMQ,3989.2474074074075,3,25,0 -typogrify,-0.584140790363352,1.90994568662528,-1.17865021441541,https://salsa.debian.org/python-team/packages/typogrify, https://github.com/mintchaos/typogrify,4964.599270833333,2,13,0 -u-msgpack-python,0.710360090024701,3.61378246657055,-0.108216742854604,https://salsa.debian.org/python-team/packages/u-msgpack-python, https://github.com/vsergeev/u-msgpack-python,3518.0095949074075,11,3,1 -uap-core,-1.4950577767607,0.219577926393572,-1.90078729822547,https://salsa.debian.org/debian/uap-core, https://github.com/ua-parser/uap-core.git,3378.7186458333335,35,224,0 -ucblogo,0.551656527477274,2.14944337584563,-0.219713222671356,https://salsa.debian.org/debian/ucblogo, https://github.com/jrincayc/ucblogo-code.git,5543.044212962963,8,20,0 -ucimf-sunpinyin,-2.75218812211195,-0.0969608973488465,-3.57333436547928,https://salsa.debian.org/input-method-team/ucimf-sunpinyin, https://github.com/matlinuxer2/ucimf,2036.6533564814815,0,12,0 -udevil,0.693950478906608,2.69290241163787,-0.0993242318069802,https://github.com/mati75/udevil.git,https://github.com/mati75/udevil.git,2023.2994675925927,0,4,0 -udiskie,-0.303120067863482,0.358049612944352,-0.443415750379262,https://salsa.debian.org/debian/udiskie, https://github.com/coldfix/udiskie.git,4957.808217592593,8,28,0 -udisks2,1.63793026797211,2.67550873938926,1.00403938947919,https://salsa.debian.org/utopia-team/udisks2, https://github.com/storaged-project/udisks,5742.170138888889,64,76,1 -ufo2otf,-1.17996435820182,1.85875491159054,-1.92149448436678,https://github.com/Rudloff/ufo2otf-debian,https://github.com/Rudloff/ufo2otf-debian,893.8441666666666,1,3,0 -uftrace,-0.131657265816516,1.55514517845974,-0.754379279470194,https://salsa.debian.org/debian/uftrace, https://github.com/namhyung/uftrace,3614.2657175925924,76,47,1 -uglify-js,-0.463127891589347,1.31384250468291,-0.911019458295516,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333335,82,71,0 -uglifyjs,1.1390181603255,3.34213410908041,0.221625202037482,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333335,82,71,0 -uhd,0.689506997724099,1.81790968631972,0.140481592596126,https://salsa.debian.org/bottoms/pkg-uhd, https://github.com/EttusResearch/uhd,5060.909212962963,150,90,0 -uhub,-0.27968382255561,3.57423958905093,-1.58079944499814,https://github.com/tehnick/uhub-debian,https://github.com/tehnick/uhub-debian,4037.2023148148146,0,1,0 -uid-wrapper,0.0254574325312317,3.22199435334302,-0.82892760635685,https://salsa.debian.org/sssd-team/uid-wrapper, https://git.samba.org/uid_wrapper.git,3714.880324074074,9,3,0 -uim-chewing,-2.52130439285198,-0.41609696498638,-2.98686680003963,https://salsa.debian.org/debian/uim-chewing, https://github.com/uim/uim-chewing,1095.7200231481481,0,1,0 -ujson,-0.108236142708293,1.85161089732626,-0.619527986386755,https://salsa.debian.org/python-team/packages/ujson, https://github.com/ultrajson/ultrajson,4669.042858796296,23,77,1 -ukui-biometric-auth,-1.23108430429401,0.753704918102481,-1.67406120474206,https://github.com/ukui/ukui-biometric-auth,https://github.com/ukui/ukui-biometric-auth,1260.5815625,5,11,0 -ukui-control-center,-2.2036628317433,0.051194460625857,-2.89319770376583,https://github.com/ukui/ukui-control-center,https://github.com/ukui/ukui-control-center,1921.8410069444444,76,81,0 -ukui-indicators,-1.37780459404033,1.21578496384178,-2.1158896015095,https://github.com/ukui/ukui-indicators,https://github.com/ukui/ukui-indicators,1239.8214814814814,3,9,0 -ukui-menu,-2.26575967408986,0.386007748916095,-2.94069588169412,https://github.com/ukui/ukui-menu,https://github.com/ukui/ukui-menu,2046.8180787037038,5,22,0 -ukui-power-manager,-0.319097885609131,2.91285397358237,-1.12198117515138,https://github.com/ukui/ukui-power-manager,https://github.com/ukui/ukui-power-manager,1544.224537037037,3,19,0 -ukui-screensaver,-1.18001184636269,1.67462476079841,-1.90296775441038,https://github.com/ukui/ukui-screensaver,https://github.com/ukui/ukui-screensaver,1998.946712962963,5,27,0 -ukui-settings-daemon,0.121987577432568,3.29765073714863,-0.681836487667349,https://github.com/ukui/ukui-settings-daemon,https://github.com/ukui/ukui-settings-daemon,1595.2230439814814,10,31,0 -ukui-sidebar,-3.88902279029796,-1.541934669291,-4.33995496976508,https://github.com/ukui/ukui-sidebar,https://github.com/ukui/ukui-sidebar,770.8421412037037,16,52,0 -ukui-themes,-0.582696295183059,2.23845690954184,-1.29864612966744,https://github.com/ukui/ukui-themes,https://github.com/ukui/ukui-themes,1509.1822916666667,6,9,0 -ukui-window-switch,-0.0682235528980564,2.62493725995459,-0.710251638998653,https://github.com/ukui/ukui-window-switch,https://github.com/ukui/ukui-window-switch,1514.8197685185185,3,12,0 -ukwm,0.0241460016253101,2.48711438336197,-0.636125076966726,https://github.com/ukui/ukwm,https://github.com/ukui/ukwm,1267.0099189814814,3,5,0 -ulfius,-0.458742321847904,2.08972839714509,-1.01536367073215,https://salsa.debian.org/debian-iot-team/oauth2/ulfius.git, https://github.com/babelouest/ulfius,2934.047835648148,8,24,0 -umoci,-1.50497977737253,0.580898676945254,-2.03066533438468,https://salsa.debian.org/go-team/packages/umoci, https://github.com/opencontainers/umoci/issues/new,2746.3319791666668,2,17,0 -umockdev,0.131802460657025,1.53535382972005,-0.476066381561041,https://salsa.debian.org/debian/umockdev, https://github.com/martinpitt/umockdev,4165.230092592593,25,7,1 -unburden-home-dir,-0.501169022978581,0.195057165010135,-0.761338470340196,https://github.com/xtaran/unburden-home-dir,https://github.com/xtaran/unburden-home-dir,4201.546134259259,1,10,2 -uncertainties,0.719641640370187,3.29605667037932,-0.218762785384588,https://salsa.debian.org/debian/python-uncertainties, https://github.com/lebigot/uncertainties.git,4894.045891203704,5,16,0 -underscore,0.557720287676854,2.16700341091088,0.0619794848914645,https://salsa.debian.org/js-team/underscore, https://github.com/jashkenas/underscore.git,5084.80931712963,25,336,0 -underscore.string,0.0539301169423647,2.76779886655013,-0.5705994218765,https://salsa.debian.org/js-team/underscore.string, https://github.com/epeli/underscore.string,4650.389965277778,15,105,1 -unhide,1.70613888194707,3.87428749747735,0.737630650604256,https://salsa.debian.org/pkg-security-team/unhide, https://github.com/YJesus/Unhide.git,991.7221296296296,2,5,0 -unknown-horizons,0.102674823028065,1.11939276621926,-0.313958594363517,https://salsa.debian.org/games-team/unknown-horizons, https://github.com/unknown-horizons/unknown-horizons.git,5675.945324074074,263,167,0 -unorm.js,-1.31301044062931,0.898128280891819,-1.84441568418253,https://salsa.debian.org/js-team/unorm.js, https://github.com/walling/unorm/issues/new,2746.3319791666668,2,17,0 -unrar-nonfree,1.84732656052625,3.19890630535861,1.05955884452828,https://github.com/debian-calibre/unrar-nonfree,https://github.com/debian-calibre/unrar-nonfree,1876.6905902777778,7,5,0 -unrardll,-0.796002188822737,0.588836210457293,-1.10593812498378,https://github.com/debian-calibre/unrardll,https://github.com/debian-calibre/unrardll,1864.0022916666667,0,4,0 -unshield,1.07920181598955,2.90405112065956,0.246695801227494,https://salsa.debian.org/games-team/unshield, https://github.com/twogood/unshield.git,5774.091805555556,2,32,0 -unworkable,-0.495607914980261,1.10785294829239,-1.03878635306529,https://salsa.debian.org/debian/unworkable, https://github.com/niallo/Unworkable.git,3168.162650462963,2,5,0 -upower,2.76554538393053,3.92274545578761,2.01500827446746,https://salsa.debian.org/utopia-team/upower/, https://gitlab.freedesktop.org/upower/upower,5673.280150462963,95,32,0 -uprightdiff,-0.455823152662626,2.47603919950268,-1.32992748913164,https://salsa.debian.org/mediawiki-team/uprightdiff, https://gerrit.wikimedia.org/r/integration/uprightdiff.git,1498.113587962963,0,5,0 -urdfdom-headers,0.225495580814598,2.80049847563314,-0.51059708469249,https://salsa.debian.org/science-team/urdfdom-headers, https://github.com/ros/urdfdom_headers,4147.720625,11,23,0 -uriparser,0.789373414154612,2.19271181736327,0.201592645076251,https://jff.email/cgit/uriparser.git, https://github.com/uriparser/uriparser.git,5735.865532407407,19,13,0 -urlscan,1.3847799551226,3.38941091988752,0.382608734670069,https://salsa.debian.org/debian/urlscan, https://github.com/firecat53/urlscan,5177.948009259259,10,13,0 -urweb,-1.89586621324589,-0.570523369804673,-2.36517696157143,https://github.com/urweb/debian-urweb,https://github.com/urweb/debian-urweb,4447.221539351852,3,56,0 -urwid,0.555397851954473,1.39105322984086,0.115376558887944,https://salsa.debian.org/python-team/packages/urwid, https://github.com/urwid/urwid.git,5781.652222222222,48,112,0 -usbauth,-0.8486458400467,2.32483380511731,-1.57743961316718,https://salsa.debian.org/debian/usbauth, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0 -usbauth-notifier,-1.36183802482326,0.118912188339963,-1.68426853104591,https://salsa.debian.org/debian/usbauth-notifier, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0 -usbguard,-0.21450453002142,0.569139522677088,-0.563655349319627,https://salsa.debian.org/birger/usbguard, https://github.com/dkopecek/usbguard,3141.3933796296296,33,38,1 -usbmuxd,1.70181066687251,3.39962034301328,0.838549297398376,https://salsa.debian.org/imobiledevice-team/usbmuxd, https://github.com/libimobiledevice/usbmuxd,5280.244328703704,27,16,0 -usbredir,1.15196558165169,3.78033486017069,0.258981068143288,https://salsa.debian.org/debian/usbredir, https://gitlab.freedesktop.org/spice/usbredir.git,4662.795787037037,9,16,0 -usbview,0.28302889659432,1.2165170826129,-0.094514674433882,https://salsa.debian.org/debian/usbview, https://github.com/gregkh/usbview.git,5596.973240740741,7,11,0 -use-package,-0.264934557891152,2.07260727757563,-0.69435255362102,https://salsa.debian.org/emacsen-team/use-package, https://github.com/jwiegley/use-package.git,3965.777685185185,21,110,0 -usepackage,-0.97958224407164,1.52805547431667,-1.75977269436821,https://salsa.debian.org/debian/usepackage, https://github.com/jonathanhogg/usepackage.git,3462.962337962963,0,2,0 -ust,-0.0649462937870304,0.218756170048719,-0.171729756259435,https://salsa.debian.org/debian/ust, git://git.lttng.org/lttng-ust.git,5424.0034375,74,8,0 -utf8proc,0.0898643883809924,0.803464856892609,-0.0749520007022019,https://salsa.debian.org/julia-team/utf8proc, https://github.com/JuliaStrings/utf8proc,3420.2714930555558,31,18,0 -utidylib,0.431774858776101,1.49340949551563,0.028883751052801,https://salsa.debian.org/python-team/packages/utidylib, https://github.com/nijel/utidylib.git,5086.384525462963,8,4,0 -utox,0.381321219098594,3.91894124338963,-0.561164523552396,https://salsa.debian.org/yangfl-guest/uTox, https://github.com/uTox/uTox.git,2920.6360069444445,25,159,0 -uvloop,-0.409780345467941,1.61935534909145,-1.07518499430253,https://salsa.debian.org/python-team/packages/uvloop, https://github.com/MagicStack/uvloop,2912.1617939814814,58,10,0 -v4l2loopback,-0.119731467421868,0.406915249527638,-0.258798542702752,https://salsa.debian.org/debian/v4l2loopback, https://github.com/umlaeute/v4l2loopback.git,5406.21599537037,26,63,0 -vagalume,-1.45112742374597,-0.973288060828436,-1.54241323016244,https://salsa.debian.org/berto/vagalume, https://github.com/bertogg/vagalume,2090.3450578703705,26,3,0 -vagrant,0.229961961813965,0.628466998668734,0.00131144314637806,https://salsa.debian.org/ruby-team/vagrant, https://github.com/hashicorp/vagrant/issues/new,2746.3319791666668,2,17,0 -vagrant-libvirt,-0.122144245358309,0.318525309072922,-0.241653892135262,https://salsa.debian.org/ruby-team/vagrant-libvirt, https://github.com/vagrant-libvirt/vagrant-libvirt,3827.345138888889,87,210,0 -vagrant-lxc,0.803455628511559,4.60210269892023,-0.412211374017774,https://salsa.debian.org/ruby-team/vagrant-lxc, https://github.com/fgrehm/vagrant-lxc,3559.775474537037,9,55,2 -vagrant-mutate,-0.480140148499671,1.71494445381176,-0.907498911496296,https://salsa.debian.org/ruby-team/vagrant-mutate, https://github.com/sciurus/vagrant-mutate,1407.9479166666667,3,15,4 -vagrant-sshfs,-0.317771478584954,2.08390990189748,-0.841842578835168,https://salsa.debian.org/ruby-team/vagrant-sshfs, https://github.com/dustymabe/vagrant-sshfs,2305.192847222222,2,14,0 -vala,0.183041428595761,0.63808806437616,-0.0618459044219398,https://salsa.debian.org/gnome-team/vala, https://gitlab.gnome.org/GNOME/vala.git,5785.980219907407,299,93,0 -valabind,-1.2435397352149,-0.342890743894002,-1.60879507868754,https://salsa.debian.org/debian/valabind, https://github.com/radare/valabind,4839.981956018519,6,19,0 -valinor,-2.93685056919402,-1.10201026487098,-3.31937216080382,https://salsa.debian.org/python-team/packages/valinor, https://github.com/ARMmbed/valinor.git,1839.1786805555555,3,12,0 -variantslib,-2.09869686456814,0.447590858023176,-2.61031478335289,https://salsa.debian.org/ocaml-team/variantslib, https://github.com/janestreet/variantslib.git,3865.55619212963,0,7,0 -variety,-0.0519547059832828,0.90567764048997,-0.340837093516861,https://salsa.debian.org/jlu-guest/variety, https://github.com/varietywalls/variety.git,4151.289224537037,39,13,0 -varnish-modules,-0.173487857037183,1.59567199136253,-0.811005222779438,https://salsa.debian.org/varnish-team/varnish-modules, https://github.com/varnish/varnish-modules.git,2832.355162037037,28,18,0 -vc,-0.83922919502722,1.26504360368373,-1.28342200697765,https://salsa.debian.org/science-team/vc, https://github.com/VcDevel/Vc,5255.200833333333,28,24,2 -vcr.py,-0.572001835712735,0.836044556932713,-0.929665685959647,https://salsa.debian.org/python-team/packages/vcr.py, https://github.com/kevin1024/vcrpy,4215.4541898148145,65,92,2 -vcsh,1.14113160903232,4.26739967107077,0.026131949941663,https://github.com/RichiH/vcsh,https://github.com/RichiH/vcsh,4529.010185185185,11,57,0 -vcversioner,0.242716431004721,2.83146614743386,-0.333260856679997,https://salsa.debian.org/python-team/packages/vcversioner, https://github.com/habnabit/vcversioner,1010.4509143518519,0,4,0 -vdirsyncer,0.384354624689491,2.37349353862651,-0.296882334954882,https://salsa.debian.org/python-team/packages/vdirsyncer, https://github.com/pimutils/vdirsyncer,3574.7769560185184,36,34,3 -vfu,0.750219213886093,2.41948171192405,-0.0549697237600978,https://github.com/bbonev/vfu-deb,https://github.com/bbonev/vfu-deb,1063.877025462963,0,1,0 -vifm,0.590788082058191,1.84167994191702,-0.00791465097056356,https://salsa.debian.org/debian/vifm, https://github.com/vifm/vifm.git,5419.5621875,29,42,0 -vim-addon-mw-utils,-0.0766853354557368,2.43044562595864,-0.574914211629203,https://salsa.debian.org/debian/vim-addon-mw-utils, https://salsa.debian.org/debian/vim-addon-mw-utils.git,3078.45943287037,0,5,0 -vim-airline,-0.0816003185771032,1.89527837593904,-0.529576944148822,https://salsa.debian.org/vim-team/vim-airline, https://github.com/vim-airline/vim-airline.git,3754.6958796296294,73,309,0 -vim-autopep8,0.209865572834708,3.15312296708815,-0.559265887690645,https://salsa.debian.org/python-team/packages/vim-autopep8, https://github.com/tell-k/vim-autopep8.git,1821.7416782407408,1,10,0 -vim-command-t,-0.281217186974149,1.71193634099862,-0.803496041507535,https://github.com/yrro/command-t,https://github.com/yrro/command-t,4589.54300925926,66,14,0 -vim-pathogen,0.64140886163425,3.516837184417,-0.177762335768144,https://salsa.debian.org/debian/vim-pathogen, https://github.com/tpope/vim-pathogen.git,5052.654571759259,18,3,0 -vim-snipmate,-0.116572717140896,2.3205562099979,-0.668019296747243,https://salsa.debian.org/debian/vim-snipmate, https://github.com/garbas/vim-snipmate.git,5137.284826388889,35,58,0 -vim-snippets,0.284398153213413,3.63847090473935,-0.458271240949462,https://salsa.debian.org/debian/vim-snippets, https://github.com/honza/vim-snippets.git,4556.771770833333,295,399,0 -vim-syntastic,0.614055811699851,2.93048717304632,-0.139282277779869,https://salsa.debian.org/debian/vim-syntastic, https://github.com/vim-syntastic/syntastic,3869.629039351852,38,349,0 -vim-voom,-0.47858056016314,0.612680272233142,-0.659254773037264,https://salsa.debian.org/yyabuki/vim-voom, https://github.com/vim-voom/VOoM.git,1193.926273148148,0,1,0 -vim-youcompleteme,0.136246286285405,1.10003671888619,-0.249423105974193,https://salsa.debian.org/debian/vim-youcompleteme, https://github.com/ycm-core/YouCompleteMe,4190.571550925926,32,182,0 -vine,0.00903213571451471,2.39078861911377,-0.45113111473157,https://salsa.debian.org/python-team/packages/vine, https://github.com/celery/vine,2839.858310185185,19,6,1 -virglrenderer,0.489327340271896,1.66550659853085,0.0424190081135652,https://salsa.debian.org/debian/virglrenderer, https://gitlab.freedesktop.org/virgl/virglrenderer.git,3547.284259259259,48,79,0 -virt-manager,1.48542145426514,1.93187998181028,1.13233443238518,https://salsa.debian.org/libvirt-team/virt-manager, https://github.com/virt-manager/virt-manager,5726.728657407408,246,65,0 -virt-viewer,1.28903708720659,2.72457472964322,0.553112982679062,https://salsa.debian.org/libvirt-team/virt-viewer, https://gitlab.com/virt-viewer/virt-viewer.git,5755.500983796296,60,75,0 -virtualenv-clone,0.578602468279995,2.77082120867057,-0.115751121187041,https://salsa.debian.org/debian/virtualenv-clone, https://github.com/edwardgeorge/virtualenv-clone,3835.1669675925928,11,10,0 -virtualjaguar,-0.332382495932637,1.61861304132141,-0.767405895120304,https://github.com/glaubitz/virtualjaguar-debian,https://github.com/glaubitz/virtualjaguar-debian,1293.0757291666666,2,1,0 -virtuoso-opensource,1.69839747071231,3.00302489720183,0.954025041428312,https://salsa.debian.org/science-team/virtuoso-opensource, https://github.com/openlink/virtuoso-opensource,5789.126331018519,14,14,0 -vis,-0.114611962348205,2.32530079944326,-0.828150147708027,https://salsa.debian.org/debian/vis, https://github.com/martanne/vis,3439.6246875,66,84,0 -vit,0.0632096362254321,2.19418889832411,-0.575356221444179,https://salsa.debian.org/tasktools-team/vit, https://github.com/scottkosty/vit.git,3775.4418171296297,6,22,0 -vitetris,-0.324046869699416,1.25227578653804,-0.610507528658787,https://salsa.debian.org/debian/vitetris, https://github.com/vicgeralds/vitetris,918.6513310185185,0,4,0 -vlc-plugin-vlsub,0.381592360955553,2.14539147499431,-0.187705052723262,https://github.com/simongareste/vlsub-deb,https://github.com/simongareste/vlsub-deb,2.1037731481481483,1,2,0 -vmdb2,0.351979637658792,2.33797452526893,-0.423320227698169,https://salsa.debian.org/debian/vmdb2/, https://gitlab.com/larswirzenius/vmdb2.git,2442.9266666666667,9,24,0 -vmdk-stream-converter,-0.616171347781387,2.03715813958988,-1.40038375477191,https://salsa.debian.org/python-team/packages/vmdk-stream-converter, https://github.com/imcleod/VMDK-stream-converter.git,2430.6944328703703,1,3,0 -vmtouch,0.00852883917528887,3.06752347259447,-0.806734738329006,https://salsa.debian.org/debian/vmtouch, https://github.com/hoytech/vmtouch,4266.543483796297,8,25,0 -voctomix,-0.37274684122285,1.18109505710797,-0.649460373503614,https://salsa.debian.org/debian/voctomix, https://github.com/voc/voctomix.git,3329.1224189814816,7,54,0 -voctomix-outcasts,-1.68931304753971,-1.2420509412913,-1.76996344473364,https://salsa.debian.org/debian/voctomix-outcasts, https://github.com/CarlFK/voctomix-outcasts.git,2648.5362847222223,0,9,0 -vokoscreen-ng,0.210412109632221,1.29556919416146,-0.153171249826354,https://salsa.debian.org/debian/vokoscreen-ng, https://github.com/vkohaupt/vokoscreenNG/issues/new,2746.3319791666668,2,17,0 -volk,0.34903084552309,1.94774127451589,-0.157883477983144,https://salsa.debian.org/bottoms/pkg-volk, https://github.com/gnuradio/volk,4752.915,39,93,0 -voltron,-1.81394778451535,1.31850409040173,-2.80233837640787,https://salsa.debian.org/python-team/packages/voltron, https://github.com/snare/voltron.git,2775.5086458333335,5,31,0 -volumeicon,0.558223917947211,2.41170540163238,-0.117654542782822,https://github.com/mati75/volumeicon-debian.git,https://github.com/mati75/volumeicon-debian.git,4377.010659722222,0,5,0 -voluptuous,-0.403966828040137,1.23588372282756,-0.751460821473307,https://salsa.debian.org/python-team/packages/voluptuous, https://github.com/alecthomas/voluptuous,4900.054074074074,38,69,0 -voms,-0.756674276018952,-0.2090198319227,-0.920329345187395,https://salsa.debian.org/ellert/voms, https://github.com/italiangrid/voms,3745.526273148148,4,20,0 -vorbis-tools,1.34408292727086,1.78606301272687,1.0160939170788,https://salsa.debian.org/multimedia-team/vorbis-tools, https://gitlab.xiph.org/xiph/vorbis-tools.git,5697.020474537037,8,19,0 -votca-csg,-1.30159847034668,-0.129194673619744,-1.72369219754747,https://salsa.debian.org/debichem-team/votca-csg, https://github.com/votca/csg/issues/new,2746.3319791666668,2,17,0 -votca-tools,-1.88532927951672,-0.419758602929591,-2.30942517278951,https://salsa.debian.org/debichem-team/votca-tools, https://github.com/votca/tools/tools/new,2746.3319791666668,2,17,0 -vowpal-wabbit,1.6051587851371,4.78797055533608,0.325894581710917,http://github.com/yarikoptic/vowpal_wabbit,http://github.com/yarikoptic/vowpal_wabbit,3692.406203703704,66,280,0 -vows,-1.39394977454617,0.332424711359999,-1.79508445414443,https://salsa.debian.org/js-team/vows, https://github.com/cloudhead/vows/issues/new,2746.3319791666668,2,17,0 -vpcs,0.571960277380983,3.99052141997529,-0.298703196291969,https://github.com/dlintott/vpcs,https://github.com/dlintott/vpcs,302.5271875,0,2,0 -vpnc,0.755213249612064,1.24264527072147,0.417631646673197,https://salsa.debian.org/debian/vpnc, https://github.com/streambinder/vpnc,5629.841388888889,11,17,0 -vpnc-scripts,0.90547647237356,2.65285834576496,0.192517337965688,https://salsa.debian.org/debian/vpnc-scripts, https://gitlab.com/openconnect/vpnc-scripts.git,5096.961203703704,29,26,0 -vte2.91,1.40787079019936,2.88301253985415,0.664892175526805,https://salsa.debian.org/gnome-team/vte2.91, https://gitlab.gnome.org/GNOME/vte.git,5788.069803240741,175,182,0 -vue-router.js,-2.72398920690915,-0.137337360960268,-3.30687614930778,https://salsa.debian.org/js-team/vue-router.js, https://github.com/vuejs/vue-router/issues/new,2746.3319791666668,2,17,0 -vue.js,-1.09313560921421,1.01866826845148,-1.534333901562,https://salsa.debian.org/js-team/vue.js, https://github.com/vuejs/vue/issues/new,2746.3319791666668,2,17,0 -vulkan-tools,0.543928540132583,2.76202456914758,-0.0866599469150074,https://salsa.debian.org/xorg-team/vulkan/vulkan-tools, https://github.com/KhronosGroup/Vulkan-Tools,3430.9236458333335,186,91,0 -vulture,0.125704857141676,2.72955172344751,-0.674063773264105,https://salsa.debian.org/python-team/packages/vulture, https://github.com/jendrikseipp/vulture.git,4281.735949074074,37,5,0 -w1retap,-1.07743562218591,1.09662760267813,-1.7416580305916,https://salsa.debian.org/thomasdstewart/w1retap, https://salsa.debian.org/thomasdstewart-guest/w1retap,704.9797106481482,0,1,0 -w3c-linkchecker,1.07790841418658,3.05629720278721,0.115115099366742,https://salsa.debian.org/perl-team/modules/packages/w3c-linkchecker, https://github.com/w3c/link-checker/issues/new,2746.3319791666668,2,17,0 -w3m-el,0.0908536375899957,0.591510526314486,-0.17944561094957,https://salsa.debian.org/debian/w3m-el, https://github.com/emacs-w3m/emacs-w3m,5732.875613425926,8,17,0 -w3m-el-snapshot,-0.0316215167236012,0.794577588043076,-0.429835318014074,https://salsa.debian.org/debian/w3m-el-snapshot, https://github.com/emacs-w3m/emacs-w3m,5732.875613425926,8,17,0 -wabt,-0.215021509071835,1.53413133705831,-0.580080174118336,https://salsa.debian.org/debian/wabt, https://github.com/WebAssembly/wabt,3027.9831828703705,131,19,0 -wacomtablet,-0.00238465400842081,1.4588204917187,-0.394772078890501,https://salsa.debian.org/qt-kde-team/extras/wacomtablet, https://invent.kde.org/system/wacomtablet,4647.547592592593,16,36,0 -wadc,-1.31141977817888,1.14881536763015,-1.89429215614748,https://github.com/jmtd/wadc,https://github.com/jmtd/wadc,2669.3253125,2,7,0 -waffle,-0.124133098103598,1.58596720188666,-0.683970273893629,https://salsa.debian.org/xorg-team/lib/waffle, https://gitlab.freedesktop.org/mesa/waffle.git,4225.924317129629,37,30,0 -waitress,-0.001435194970412,0.779693615907078,-0.257745730653346,https://salsa.debian.org/python-team/packages/waitress, https://github.com/Pylons/waitress.git,4372.6596990740745,10,50,0 -wajig,-0.256364093339026,-0.204128093171791,-0.289877150989966,https://github.com/gjwgit/wajig/wajig,https://github.com/gjwgit/wajig,4746.4752546296295,1,8,0 -wakeonlan,0.53477622990398,2.39817694826765,-0.0392961396375341,https://salsa.debian.org/debian/wakeonlan, https://github.com/jpoliv/wakeonlan/issues/new,2746.3319791666668,2,17,0 -wal2json,-1.82757455393376,0.542460048832333,-2.34041711475106,https://salsa.debian.org/postgresql/wal2json, https://github.com/eulerto/wal2json.git,3393.25287037037,6,15,0 -wand,-0.67759884996555,-0.105630998138164,-0.896210432107274,https://salsa.debian.org/debian/wand, https://github.com/emcconville/wand,4461.499722222222,24,94,1 -wavbreaker,-0.304369264568198,1.30801973333578,-0.643451840201979,https://salsa.debian.org/multimedia-team/wavbreaker, https://github.com/thp/wavbreaker.git,5680.2477546296295,3,6,0 -wavpack,0.50064375084998,1.2816911597057,0.144201344064353,https://salsa.debian.org/multimedia-team/wavpack, https://github.com/dbry/WavPack,5719.907256944444,11,19,0 -wbar,0.720696362158809,2.63631785035618,-0.164067610906573,https://salsa.debian.org/debian/wbar, https://github.com/rodolf0/wbar,1881.7045949074075,0,2,0 -wbxml2,0.571657674707482,2.04396774912402,-0.0953236447349134,https://salsa.debian.org/debian/wbxml2, https://github.com/libwbxml/libwbxml.git,5170.821412037037,0,19,0 -wcc,-2.42817416014247,-0.918288734536828,-2.92054697879028,https://salsa.debian.org/pkg-security-team/wcc, https://github.com/endrazine/wcc.git,2370.653888888889,7,12,0 -wcwidth,0.333090955677371,1.89896419632852,-0.0738762363904112,https://salsa.debian.org/python-team/packages/wcwidth, https://github.com/jquast/wcwidth,3540.9241550925926,5,18,0 -webcamoid,0.171394174832068,1.53792175193165,-0.216775248868001,https://salsa.debian.org/debian/webcamoid, https://github.com/webcamoid/webcamoid.git,4311.354699074074,87,19,0 -webdis,-1.69183966054399,-0.0353134834683878,-2.35268445003252,https://salsa.debian.org/debian/webdis, https://github.com/nicolasff/webdis,4702.449155092592,12,22,0 -webpy,0.14033515329266,1.12357615488254,-0.249014705091637,https://salsa.debian.org/python-team/packages/webpy, https://github.com/webpy/webpy.git,5751.592037037037,35,67,0 -websocket-client,0.528626147884189,1.91779650029756,0.0141068119268952,https://salsa.debian.org/python-team/packages/websocket-client, https://github.com/websocket-client/websocket-client,4734.967708333334,73,159,1 -websocketpp,-0.373225960093031,1.27055620163145,-0.713422645811124,https://salsa.debian.org/debian/websocketpp, https://github.com/zaphoyd/websocketpp.git,3911.927326388889,7,63,0 -websploit,-0.422102819233558,2.10233668523303,-1.07261762366906,https://salsa.debian.org/pkg-security-team/websploit, https://github.com/websploit/websploit,0.0014814814814814814,1,1,0 -weevely,-0.250737217368348,2.17082901671367,-0.863642780532721,https://salsa.debian.org/pkg-security-team/weevely, https://github.com/epinna/weevely3.git,3185.5150578703706,7,21,0 -welle.io,-1.15037357918904,0.869870709239836,-1.55603759978621,https://salsa.debian.org/debian-hamradio-team/welle.io, https://github.com/AlbrechtL/welle.io,2902.9566203703703,11,44,0 -weresync,0.868622438506736,5.31491794179674,-0.611088821201198,https://salsa.debian.org/python-team/packages/weresync, https://github.com/DonyorM/weresync.git,2224.0163194444444,5,4,0 -weupnp,-1.92006896086912,0.314231076959153,-2.34792325109008,https://salsa.debian.org/debian/weupnp, https://github.com/bitletorg/weupnp.git,896.40375,1,9,0 -wfmath,-0.389387588299087,0.837955787968463,-0.979234500856992,https://salsa.debian.org/games-team/wfmath, https://github.com/worldforge/wfmath,5506.869699074074,0,8,0 -wfrench,0.470980954375383,1.32786474155482,0.0952385392566798,https://salsa.debian.org/gpernot/wfrench, https://gitlab.com/gpernot/wfrench.git,809.9374189814815,0,4,0 -wfuzz,0.349453190332924,3.03672551955603,-0.346839296038164,https://salsa.debian.org/pkg-security-team/wfuzz, https://github.com/xmendez/wfuzz.git,3000.734814814815,13,27,0 -whatthepatch,-1.2344880678377,1.1565131399966,-1.81435377941799,https://salsa.debian.org/python-team/packages/whatthepatch, https://github.com/cscorley/whatthepatch,3792.002951388889,6,11,0 -when,-0.247136554613533,1.47661843722832,-0.816593972653406,https://salsa.debian.org/carnil/when, https://github.com/bcrowell/when/issues/new,2746.3319791666668,2,17,0 -whichcraft,-0.303651311001637,1.96454741753557,-0.763838192557727,https://salsa.debian.org/python-team/packages/whichcraft, https://github.com/cookiecutter/whichcraft,2896.985810185185,2,14,0 -whipper,-1.00398472018607,-0.683619117439365,-1.05147392210145,https://salsa.debian.org/python-team/packages/whipper, https://github.com/whipper-team/whipper.git,4941.070474537037,23,44,0 -whois,0.0221996534200785,0.0551054976679655,0.000634214292726505,https://github.com/rfc1036/whois,https://github.com/rfc1036/whois,3907.4041550925926,44,4,0 -whysynth,1.62738774661893,4.79450236358576,0.384049585785024,https://salsa.debian.org/multimedia-team/whysynth, https://github.com/smbolton/whysynth.git,2132.1219444444446,2,3,0 -wifite,0.0691397747010047,1.35966478862449,-0.282196589925993,https://salsa.debian.org/pkg-security-team/wifite, https://github.com/kimocoder/wifite2.git,3100.78755787037,19,31,0 -wiki2beamer,0.107248403941003,2.96800339008793,-0.787443662742097,https://salsa.debian.org/debian/wiki2beamer, https://github.com/wiki2beamer/wiki2beamer/issues/new,2746.3319791666668,2,17,0 -wildmidi,1.12204490028689,2.8689328624495,0.393110689266044,https://salsa.debian.org/games-team/WildMIDI, https://github.com/psi29a/wildmidi.git,5284.747372685185,7,25,0 -willow,-0.305002642062236,2.68374602924338,-1.20068142812313,https://salsa.debian.org/python-team/packages/willow, https://github.com/torchbox/Willow/issues/new,2746.3319791666668,2,17,0 -win-iconv,-0.125318004334775,3.36110345064577,-1.27848577768421,https://salsa.debian.org/debian/win-iconv, https://github.com/win-iconv/win-iconv,2428.4399189814817,1,14,0 -winetricks,0.0341833109579469,0.232108973642183,-0.0668336085262125,https://salsa.debian.org/wine-team/winetricks, https://github.com/Winetricks/winetricks,3196.4553472222224,172,41,0 -winff,-0.0235891250217677,0.323895517700029,-0.170486079233655,https://salsa.debian.org/pascal-team/winff, https://github.com/WinFF/winff.git,5661.514710648148,3,18,0 -winregfs,0.150543294603686,2.56636307415316,-0.37925542532309,https://salsa.debian.org/pkg-security-team/winregfs, https://github.com/jbruchon/winregfs,3358.8025694444445,0,4,0 -wipe,0.0654274281112602,0.50992895708129,-0.121010634033988,https://salsa.debian.org/pkg-security-team/wipe, https://github.com/berke/wipe,5088.825243055556,3,5,0 -wit,-0.0137410527501382,2.25940176956232,-0.629581281765023,https://salsa.debian.org/debian/wit, https://github.com/Wiimm/wiimms-iso-tools,764.4320717592593,0,4,0 -with-simulated-input-el,-1.61364195339851,0.654279163527695,-2.0643984033587,https://salsa.debian.org/emacsen-team/with-simulated-input-el, https://github.com/DarwinAwardWinner/with-simulated-input.git,1593.3461921296296,0,2,0 -wl,-0.332550066820388,0.46879211996235,-0.662373670308098,https://salsa.debian.org/debian/wl, https://github.com/wanderlust/wanderlust,5747.071041666667,6,25,0 -wl-beta,-0.963388551835787,-0.684481816191185,-1.0856880816687,https://salsa.debian.org/debian/wl-beta, https://github.com/wanderlust/wanderlust,5747.071041666667,6,25,0 -wlroots,0.0364206204781222,1.81879752749773,-0.457287997177897,https://salsa.debian.org/swaywm-team/wlroots, https://github.com/swaywm/wlroots,1651.0250925925925,108,95,3 -wmaker,3.03181698153232,3.50497056467286,2.63335757483099,https://salsa.debian.org/wmaker-team/wmaker, https://github.com/window-maker/wmaker/issues/new,2746.3319791666668,2,17,0 -wmbubble,0.33133404478108,2.05515118058065,-0.500405698814647,https://salsa.debian.org/wmaker-team/wmbubble, https://github.com/rnjacobs/wmbubble.git,3203.159814814815,0,5,0 -wmcalc,0.624128732880151,3.16628466176831,-0.385700215949062,https://salsa.debian.org/wmaker-team/wmcalc, http://repo.or.cz/dockapps.git,4582.979189814815,44,1,0 -wmcalclock,-0.049968761031212,1.25874230845939,-0.491665853553351,https://salsa.debian.org/wmaker-team/wmcalclock, http://repo.or.cz/dockapps.git,4582.979189814815,44,1,0 -wmcoincoin,-1.11204703091166,0.942829877288574,-1.81265921816841,https://salsa.debian.org/wmaker-team/wmcoincoin, https://github.com/seeschloss/wmcoincoin/issues/new,2746.3319791666668,2,17,0 -wmfrog,-0.619500859159663,0.736280260241296,-1.1251650057348,https://salsa.debian.org/wmaker-team/wmfrog, https://github.com/tcolar/wmfrog,4191.395277777778,0,7,0 -wmhdplop,0.221022686233518,1.75296584947562,-0.371862750927289,https://salsa.debian.org/wmaker-team/wmhdplop, https://github.com/window-maker/dockapps/issues/new,2746.3319791666668,2,17,0 -wmifs,-0.00650648697877105,1.22789261388304,-0.556765389489967,https://salsa.debian.org/wmaker-team/wmifs, http://repo.or.cz/dockapps.git,4582.979189814815,44,1,0 -wmmisc,-1.51749952414667,0.0747864043565177,-1.94965295641597,https://salsa.debian.org/wmaker-team/wmmisc, http://repo.or.cz/dockapps.git,4582.979189814815,44,1,0 -wmpinboard,0.329930821019795,2.24815642539236,-0.583398239841013,https://salsa.debian.org/wmaker-team/wmpinboard, https://github.com/bbidulock/wmpinboard.git,274.6021412037037,0,3,0 -wmshutdown,-0.609293844085496,0.686899614022248,-1.02290046693241,https://salsa.debian.org/wmaker-team/wmshutdown, http://repo.or.cz/dockapps.git,4582.979189814815,44,1,0 -wmsysmon,3.68197866191118,6.94971947808117,2.22226845024141,https://salsa.debian.org/wmaker-team/wmsysmon, https://github.com/voyageur/wmsysmon.git,1940.3190625,0,3,0 -wokkel,-0.749441424580256,1.59602118915274,-1.35876773271944,https://salsa.debian.org/python-team/packages/wokkel, https://github.com/ralphm/wokkel.git,4842.8803125,0,5,0 -wondershaper,2.14935921040786,4.17917526317013,1.07231548122752,https://github.com/leggewie-DM/wondershaper,https://github.com/leggewie-DM/wondershaper,3187.669826388889,2,1,0 -wpebackend-fdo,0.573009598559966,3.29698066104163,-0.0681747088088377,https://salsa.debian.org/webkit-team/wpebackend-fdo, https://github.com/Igalia/WPEBackend-fdo,2058.3566319444444,11,16,1 -wreport,-0.179477642280507,1.61430545559584,-0.817271994381948,https://github.com/ARPA-SIMC/wreport,https://github.com/ARPA-SIMC/wreport,4700.94625,2,14,0 -writeboost,-0.609582993371514,2.65049314264865,-1.61241546218304,https://salsa.debian.org/debian/writeboost, https://gitlab.com/onlyjob/writeboost.git,765.2965393518518,0,2,0 -wslay,-0.323350583910332,2.00965793039539,-1.03163971198034,https://salsa.debian.org/debian/wslay, https://github.com/tatsuhiro-t/wslay,2229.7935185185183,3,18,1 -wtf-peewee,-1.19339204512468,1.30187625249524,-1.74169433804412,https://salsa.debian.org/python-team/packages/wtf-peewee, https://github.com/coleifer/wtf-peewee,4437.079965277778,3,18,0 -wtforms,0.473690829537951,2.21475090481196,-0.104867633225712,https://salsa.debian.org/python-team/packages/wtforms, https://github.com/wtforms/wtforms.git,5763.189351851852,40,134,0 -wxastrocapture,0.372735406937906,3.17349120443399,-0.408012519061559,https://salsa.debian.org/science-team/wxastrocapture, https://github.com/wxAstro/wxAstroCapture,45.059583333333336,0,3,0 -wxglade,-0.233526737230989,0.123389374689724,-0.423359705550465,https://salsa.debian.org/georgesk/wxglade, https://github.com/wxGlade/wxGlade/issues/new,2746.3319791666668,2,17,0 -wxmaxima,0.656211754489662,1.37672265321416,0.217238484968993,https://github.com/wxMaxima-developers/wxmaxima,https://github.com/wxMaxima-developers/wxmaxima,5772.890891203704,33,70,0 -x11-touchscreen-calibrator,-0.115498330161782,2.67222001368271,-0.787537421198142,https://github.com/fourdollars/x11-touchscreen-calibrator,https://github.com/fourdollars/x11-touchscreen-calibrator,2225.1995717592595,0,4,0 -x42-plugins,-0.152619050161196,0.59903751721685,-0.384890653970823,https://salsa.debian.org/multimedia-team/x42-plugins, https://github.com/x42/x42-plugins,3642.2395023148147,0,1,0 -xandikos,-1.70088935399086,-1.39473122815796,-1.76872834016456,https://salsa.debian.org/jelmer/xandikos, https://github.com/jelmer/xandikos/issues/new,2746.3319791666668,2,17,0 -xaos,0.669114339831232,1.52402877433181,0.174658634628856,https://salsa.debian.org/games-team/xaos, https://github.com/xaos-project/XaoS.git,5702.338518518519,3,31,0 -xapp,0.524021745964759,2.99257367132466,-0.0647749719721225,https://salsa.debian.org/cinnamon-team/xapp, https://github.com/linuxmint/xapp.git,2659.1398032407405,18,5,0 -xastir,0.108948248188163,0.863508814175857,-0.320286247787417,https://salsa.debian.org/debian-hamradio-team/xastir, https://github.com/Xastir/Xastir.git,5658.770590277778,2,27,0 -xawtv,0.577576502404875,0.823259074039796,0.386830762237297,https://salsa.debian.org/multimedia-team/xawtv, https://git.linuxtv.org/xawtv3.git,4836.915509259259,11,10,0 -xbomb,2.51679318751402,5.65106973361442,1.16673977834059,https://github.com/alexdantas/xbomb.debian,https://github.com/alexdantas/xbomb.debian,472.1825347222222,1,2,0 -xcape,0.103186649828254,2.66352443571924,-0.48817172462312,https://salsa.debian.org/debian/xcape, https://github.com/alols/xcape,2160.454236111111,3,26,0 -xcffib,0.342276607758732,1.64397362388373,-0.208917083473425,https://salsa.debian.org/python-team/packages/xcffib, https://github.com/tych0/xcffib.git,3466.6135069444445,10,9,0 -xchm,0.210695760790321,0.795971847871289,-0.0859691060763882,https://salsa.debian.org/debian/xchm, https://github.com/rzvncj/xCHM.git,5664.286203703704,3,5,0 -xcscope-el,0.22225671206335,2.73581330732423,-0.509665274216416,https://salsa.debian.org/debian/xcscope-el, https://github.com/dkogan/xcscope.el,3521.9445949074075,2,6,0 -xdffileio,-0.33703609329714,3.13997421391231,-1.51729011028527,https://salsa.debian.org/med-team/xdffileio, https://github.com/mmlabs-mindmaze/xdffileio.git,3980.6902777777777,1,9,0 -xdg-desktop-portal-kde,-0.022988703539194,1.91123023901397,-0.529200020582944,https://salsa.debian.org/qt-kde-team/kde/xdg-desktop-portal-kde, https://invent.kde.org/plasma/xdg-desktop-portal-kde.git,2709.383773148148,7,55,0 -xdg-user-dirs,3.53202993709844,7.68363385713955,1.97241245338635,https://salsa.debian.org/gnome-team/xdg-user-dirs, https://gitlab.freedesktop.org/xdg/xdg-user-dirs.git,5480.052395833333,13,6,0 -xdg-user-dirs-gtk,1.92417922772289,5.56514281894837,0.649576275469476,https://salsa.debian.org/gnome-team/xdg-user-dirs-gtk, https://gitlab.gnome.org/GNOME/xdg-user-dirs-gtk,5711.995127314814,35,74,0 -xdg-utils,2.22551422344209,3.04424569321381,1.64142523214845,https://salsa.debian.org/freedesktop-team/xdg-utils, https://gitlab.freedesktop.org/xdg/xdg-utils,5592.548287037037,48,22,0 -xdms,-0.324508549703597,1.11111882766628,-0.732719972201246,https://github.com/glaubitz/xdms-debian,https://github.com/glaubitz/xdms-debian,2621.1444212962965,2,1,0 -xdotool,1.29689129174718,2.6433354619352,0.585464050400781,https://salsa.debian.org/debian/xdotool, https://github.com/jordansissel/xdotool.git,5532.041435185185,34,28,0 -xdrawchem,0.73460039587154,1.63287595084186,0.184632660749495,https://salsa.debian.org/georgesk/xdrawchem, https://gitlab.com/yamanq/xdrawchem,1560.5482638888889,1,5,0 -xen-tools,0.184922680491655,0.404449991481267,0.029379649998388,https://github.com/xen-tools/xen-tools,https://github.com/xen-tools/xen-tools,5773.49619212963,25,18,2 -xfce4-battery-plugin,0.763075785635905,1.78807930897924,0.252267636198197,https://salsa.debian.org/xfce-team/goodies/xfce4-battery-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-battery-plugin,5729.708587962963,170,27,0 -xfce4-genmon-plugin,1.25529441368015,3.7318650826658,0.332952527022521,https://salsa.debian.org/xfce-team/goodies/xfce4-genmon-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-genmon-plugin,5731.551388888889,157,28,0 -xfce4-indicator-plugin,1.02260306779052,3.96507280673247,0.0389538740018694,https://salsa.debian.org/xfce-team/goodies/xfce4-indicator-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-indicator-plugin,5088.870277777778,169,14,0 -xfce4-notes-plugin,1.86723475582076,3.88780874730755,0.904594692110964,https://salsa.debian.org/xfce-team/goodies/xfce4-notes-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin,5107.4272106481485,145,30,0 -xfce4-panel,1.2810074316975,1.82329715574026,0.901496718371575,https://salsa.debian.org/xfce-team/desktop/xfce4-panel, https://gitlab.xfce.org/xfce/xfce4-panel,5779.059699074074,457,55,0 -xfce4-pulseaudio-plugin,2.87187694329892,7.36295820131155,1.34423373045739,https://salsa.debian.org/xfce-team/goodies/xfce4-pulseaudio-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-pulseaudio-plugin,3496.055671296296,109,12,0 -xfce4-timer-plugin,0.423777821664358,1.89702206087484,-0.00824579036181458,https://salsa.debian.org/xfce-team/goodies/xfce4-timer-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-timer-plugin.git,5681.629583333333,179,28,0 -xfce4-weather-plugin,1.9060191443879,3.33434612720338,1.10561279623766,https://salsa.debian.org/xfce-team/goodies/xfce4-weather-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-weather-plugin.git,5283.46994212963,238,35,0 -xfce4-whiskermenu-plugin,1.04059483232434,3.62974987104357,0.17268254981401,https://salsa.debian.org/xfce-team/goodies/xfce4-whiskermenu-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-whiskermenu-plugin/-/issues/new,2746.3319791666668,2,17,0 -xfce4-xkb-plugin,1.97794787591876,4.18496677563243,0.955580463561877,https://salsa.debian.org/xfce-team/goodies/xfce4-xkb-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-xkb-plugin,5629.938680555556,177,32,0 -xhtml2pdf,0.31979327115304,2.76807642207541,-0.633079702057243,https://salsa.debian.org/python-team/packages/xhtml2pdf, https://github.com/xhtml2pdf/xhtml2pdf,4912.199826388889,44,134,0 -xindy,0.182376395384361,0.882284251450977,-0.127451421745251,https://github.com/debian-tex/xindy,https://github.com/debian-tex/xindy,2719.8550694444443,2,6,0 -xl2tpd,1.75211845757271,3.55517088281134,0.815289827436144,https://github.com/xelerance/xl2tpd,https://github.com/xelerance/xl2tpd,5585.42306712963,26,42,0 -xlsx2csv,0.199802940957209,2.30482551068513,-0.394629471061364,https://salsa.debian.org/science-team/xlsx2csv, https://github.com/dilshod/xlsx2csv/issues/new,2746.3319791666668,2,17,0 -xlsxwriter,1.00161225049489,4.25666900675712,-0.0631588499421836,https://salsa.debian.org/python-team/packages/xlsxwriter, https://github.com/jmcnamara/XlsxWriter,3960.6774074074074,25,30,0 -xml-light,-0.359272413549481,1.18964691141487,-0.777231494285517,https://salsa.debian.org/ocaml-team/xml-light, https://github.com/ncannasse/xml-light.git,3963.0315046296296,3,8,0 -xml2,2.61649988284128,5.68193349270874,1.27455472686912,https://salsa.debian.org/debian/xml2, https://gitlab.gnome.org/GNOME/libxml2.git,5790.176203703703,255,40,0 -xml2rfc,-0.198581105892013,1.23540632692745,-0.77991768845012,https://salsa.debian.org/debian/pkg-xml2rfc, https://github.com/ietf-tools/xml2rfc.git,5078.432314814815,13,21,0 -xmldiff,0.559598995971893,1.58014148970041,0.00793295300146856,https://salsa.debian.org/debian/xmldiff, https://github.com/Shoobx/xmldiff.git,5659.724016203703,11,15,0 -xmltv,-0.0141973654544938,0.196827117268805,-0.146599190251928,https://salsa.debian.org/nickm/xmltv, https://github.com/XMLTV/xmltv.git,5729.325231481482,14,54,0 -xmoto,-0.0128577774958252,0.35047672104516,-0.221279370942503,https://salsa.debian.org/games-team/xmoto, https://github.com/xmoto/xmoto,5752.609814814815,7,30,1 -xmountains,-0.647359812157378,-0.40806180429333,-0.698514940296116,https://salsa.debian.org/debian/xmountains, https://github.com/spbooth/xmountains/issues/new,2746.3319791666668,2,17,0 -xnec2c,-0.243374577624682,0.791984406418207,-0.488906462737154,https://salsa.debian.org/debian-hamradio-team/xnec2c, https://github.com/KJ7LNW/xnec2c.git,5761.788194444444,5,7,0 -xonsh,-0.035903860098816,1.96204162259564,-0.679485985307193,https://salsa.debian.org/python-team/packages/xonsh, https://github.com/xonsh/xonsh.git,3248.5329976851854,105,226,0 -xplc,0.0651190779681454,1.58040935945994,-0.544187636272128,https://salsa.debian.org/debian/xplc, https://github.com/xplc/xplc/issues/new,2746.3319791666668,2,17,0 -xppaut,0.480332333017225,2.58739616444371,-0.461526976933745,https://github.com/neurodebian/pkg-xppaut,https://github.com/neurodebian/pkg-xppaut,171.36234953703703,6,2,0 -xpra,0.22900781722835,0.57250995955885,0.0141195261751206,https://salsa.debian.org/debian/xpra, https://github.com/xpra-org/xpra.git,4580.029629629629,18,44,0 -xprintidle,-0.142218839242467,0.624978745265832,-0.351898973864155,https://salsa.debian.org/debian/xprintidle, https://github.com/g0hl1n/xprintidle,3448.917986111111,2,6,2 -xqf,0.408563556878546,1.72223408414337,-0.290956621728465,https://salsa.debian.org/debian/xqf, https://github.com/XQF/xqf,4749.099050925926,9,17,1 -xsecurelock,-0.468159823630411,2.89008236417399,-1.35174511233414,https://github.com/google/xsecurelock/tree/debian,https://github.com/google/xsecurelock,3375.8872453703702,17,12,2 -xtermcontrol,-0.0117403008079696,1.58585456229801,-0.456954847845528,https://salsa.debian.org/debian/xtermcontrol, https://github.com/JessThrysoee/xtermcontrol.git,3429.399525462963,0,2,0 -xtl,-4.70407895592082,-1.58562060725813,-5.43056132857938,https://github.com/quantstack-debian/xtl,https://github.com/quantstack-debian/xtl,1473.7952662037037,0,3,0 -xttitle,0.893907750684752,4.27065681385221,-0.38194406923119,https://salsa.debian.org/debian/xttitle, https://github.com/mojotx/xttitle,2181.591273148148,2,3,0 -xwax,-0.56366293338678,0.727141420530347,-0.949811830305735,https://salsa.debian.org/multimedia-team/xwax, https://github.com/xwax/xwax.git,5550.865671296297,5,3,0 -xwiimote,0.356258867222465,2.6555026126071,-0.456300807432093,https://salsa.debian.org/debian/xwiimote, https://github.com/dvdhrm/xwiimote,195.97733796296296,4,2,1 -xxdiff,0.906100417502369,1.65106472605105,0.441369015329754,https://salsa.debian.org/debian/xxdiff, https://github.com/blais/xxdiff.git,5451.028113425926,4,11,0 -xxhash,0.368226115654407,2.54681154041285,-0.0707021272264233,https://salsa.debian.org/debian/xxhash, https://github.com/Cyan4973/xxHash,4259.841875,29,85,2 -xylib,0.696281579106391,3.86842676602693,-0.279699139750226,https://salsa.debian.org/science-team/xylib, https://github.com/wojdyr/xylib,5291.045370370371,4,4,0 -yadm,0.155795293007734,2.47899167336278,-0.534660961320123,https://salsa.debian.org/debian/yadm, https://github.com/TheLocehiliosan/yadm,1719.547361111111,26,32,0 -yafc,-0.0272314962318525,0.491639132124011,-0.325366651173439,https://salsa.debian.org/debian/yafc, https://github.com/sebastinas/yafc.git,4536.171655092593,4,14,0 -yagf,1.25648180449157,3.63195061091952,0.257748371556789,https://github.com/tehnick/yagf-debian,https://github.com/tehnick/yagf-debian,2966.796875,2,1,0 -yagv,-0.249310969091996,1.68054515280102,-0.758268769007919,https://salsa.debian.org/3dprinting-team/yagv, https://github.com/jonathanwin/yagv.git,1848.8749421296295,0,6,0 -yajl,0.143691094254928,0.815541964652964,-0.00995401630705011,https://github.com/jstamp/yajl,https://github.com/jstamp/yajl,5069.733125,7,28,0 -yaml-cpp,0.55728368479486,1.28442895724454,0.176235110737552,https://salsa.debian.org/debian/yaml-cpp, https://github.com/jbeder/yaml-cpp,5649.687106481481,135,20,0 -yanc,-1.50099926106038,1.46162195444987,-2.26685152937622,https://salsa.debian.org/python-team/packages/yanc, https://github.com/0compute/yanc,1361.9793865740742,0,3,0 -yank,-0.486981797429971,0.321536388587433,-0.872965607135782,https://salsa.debian.org/debian/yank, https://github.com/mptre/yank,2596.2438310185184,12,9,0 -yapf,-0.0722503180851905,0.997143004238659,-0.509532828712209,https://salsa.debian.org/python-team/packages/yapf, https://github.com/google/yapf.git,3193.809224537037,72,102,0 -yara,-0.105583037284771,0.102384022920219,-0.165940329485104,https://salsa.debian.org/pkg-security-team/yara, https://github.com/VirusTotal/yara.git,5553.008252314815,173,61,0 -yarl,0.512418375418204,2.80016159022665,-0.156096452616612,https://salsa.debian.org/python-team/packages/yarl, https://github.com/aio-libs/yarl.git,2690.946412037037,70,28,0 -yasnippet,0.266184238279277,1.64515443784159,-0.285930510814337,https://salsa.debian.org/emacsen-team/yasnippet, https://github.com/joaotavora/yasnippet,5674.0685300925925,34,42,0 -yatm,-0.99699425644898,0.469884003019665,-1.39594494269735,https://salsa.debian.org/debian/yatm, https://github.com/mlang/yatm.git,2272.488912037037,0,3,0 -ycmd,0.406991219423935,1.51165790487617,-0.100920254478806,https://salsa.debian.org/debian/ycmd, https://github.com/ycm-core/ycmd,3497.9243055555557,30,153,0 -yder,-0.573558670541915,1.49485584194788,-1.0176765614188,https://salsa.debian.org/debian-iot-team/oauth2/yder.git, https://github.com/babelouest/yder,1282.873275462963,2,11,0 -ydpdict,-1.66201223318566,-0.965022576149982,-1.88784607381972,https://github.com/porridge/ydpdict,https://github.com/porridge/ydpdict,5724.953773148148,0,4,0 -yelp,0.992463263167818,1.43170137487907,0.661293749002386,https://salsa.debian.org/gnome-team/yelp, https://gitlab.gnome.org/GNOME/yelp/commits/master,5185.326875,55,11,0 -yodl,-0.774085380239462,-0.469071167588,-0.89643712356631,https://salsa.debian.org/debian/yodl, https://gitlab.com/fbb-git/yodl.git,5470.840428240741,1,1,0 -yokadi,-0.624393892670881,1.70289828765903,-1.28550063632623,https://salsa.debian.org/debian/yokadi, https://github.com/agateau/yokadi/issues/new,2746.3319791666668,2,17,0 -yoshimi,-0.34447555327641,-0.150960844094766,-0.395152125475785,https://salsa.debian.org/multimedia-team/yoshimi, https://github.com/Yoshimi/yoshimi.git,4804.103599537037,11,39,0 -yotta,-3.01359857305743,-1.26445581786377,-3.32872420631888,https://salsa.debian.org/python-team/packages/yotta, https://github.com/ARMmbed/yotta.git,2536.0050925925925,9,55,0 -youtube-dl,0.25633398444058,0.432077804875997,0.127697632849977,https://salsa.debian.org/debian/youtube-dl, https://github.com/ytdl-org/youtube-dl.git,5615.23136574074,601,455,0 -yquake2,0.0785847680516405,1.95970971645533,-0.456273436433834,https://salsa.debian.org/games-team/yquake2, https://github.com/yquake2/yquake2,5404.035983796296,28,60,0 -yubikey-manager,-0.0363760553766849,1.77259373576135,-0.428048775217807,https://salsa.debian.org/auth-team/yubikey-manager, https://github.com/Yubico/yubikey-manager.git,2952.150324074074,21,28,0 -yubikey-personalization-gui,1.06602144433083,4.62142525692704,-0.0477907414072675,https://github.com/Yubico/yubikey-personalization-gui-dpkg,https://github.com/Yubico/yubikey-personalization-gui-dpkg,1527.8557986111111,0,2,0 -yubikey-val,-1.57967588205519,0.523057944462277,-2.22388558507811,https://github.com/Yubico/yubikey-val-dpkg,https://github.com/Yubico/yubikey-val-dpkg,2518.499560185185,1,7,0 -yydebug,-2.4807565790966,0.0572661246944069,-3.00168517708945,https://salsa.debian.org/java-team/yydebug, https://github.com/jruby/jay-yydebug,0.042951388888888886,0,1,0 -z3,0.569144470089926,1.40337122845376,0.145662858291124,https://salsa.debian.org/pkg-llvm-team/z3, https://github.com/Z3Prover/z3.git,4091.885185185185,200,176,0 -zabbix-cli,-0.116244430152616,2.82250935666635,-1.03888250780023,https://github.com/usit-gd/zabbix-cli,https://github.com/usit-gd/zabbix-cli,3337.010740740741,9,35,2 -zam-plugins,0.302800129289409,2.92045044376257,-0.310176637993487,https://salsa.debian.org/multimedia-team/zam-plugins, https://github.com/zamaudio/zam-plugins.git,3495.4258564814813,5,5,0 -zanshin,-0.343838731017306,1.50561586896897,-0.881190405551326,https://salsa.debian.org/qt-kde-team/kde/zanshin, https://invent.kde.org/pim/zanshin.git,5469.811365740741,7,57,0 -zbar,1.12742998615967,2.18040905717499,0.530466924475534,https://salsa.debian.org/debian/zbar, https://github.com/mchehab/zbar,5577.42005787037,30,27,0 -zc.lockfile,-0.0210256384171079,1.53795996465463,-0.455036022488046,https://salsa.debian.org/python-team/packages/zc-lockfile, https://github.com/zopefoundation/zc.lockfile,5245.597430555556,1,13,0 -zeal,-0.132563197199497,0.667485796220001,-0.360068855075588,https://salsa.debian.org/debian/zeal, https://github.com/zealdocs/zeal,3980.9958680555555,38,43,5 -zed,-0.763678522134998,-0.058695494498501,-1.01526923636153,https://salsa.debian.org/ocaml-team/zed, https://github.com/ocaml-community/zed.git,4544.756469907407,9,14,0 -zeroc-ice,-0.224627038585425,-0.0796274634500833,-0.317814944379456,https://github.com/zeroc-ice/ice-debian-packaging.git,https://github.com/zeroc-ice/ice-debian-packaging.git,2730.2990046296295,3,11,0 -zeroinstall-injector,-0.179017330883015,0.237341498461442,-0.353118964825079,https://github.com/0install/0install-debian,https://github.com/0install/0install-debian,5324.679594907408,19,12,0 -zfsnap,0.477233621433431,3.14948254064277,-0.443372693502268,https://github.com/jgoerzen/zfSnap,https://github.com/jgoerzen/zfSnap,4429.328888888889,1,13,0 -zim,-0.00183376157774413,0.183635307049717,-0.11847452891381,https://salsa.debian.org/debian/zim, https://github.com/jaap-karssenberg/zim-desktop-wiki.git,5538.07605324074,145,89,0 -zimlib,-0.798034760927649,0.429621192122037,-1.22373123850323,https://salsa.debian.org/debian/zimlib, https://github.com/openzim/libzim.git,5403.4984606481485,15,26,0 -zip4j,-3.67911306793161,-1.2013494729711,-4.30368217702272,https://salsa.debian.org/java-team/zip4j, https://github.com/srikanth-lingala/zip4j.git,1425.3305787037036,27,8,0 -zktop,-1.68344813592465,1.4483848388377,-2.50797629530837,https://salsa.debian.org/python-team/packages/zktop, https://github.com/phunt/zktop.git,4096.610011574074,1,12,0 -zope.component,0.331411273501163,1.43950443377212,-0.045615594773708,https://salsa.debian.org/python-team/packages/zope.component, https://github.com/zopefoundation/zope.component,5549.463564814815,5,38,0 -zope.deprecation,-0.400292316060671,1.29506945384903,-0.802284920023947,https://salsa.debian.org/python-team/packages/zope.deprecation, https://github.com/zopefoundation/zope.deprecation.git,5564.896354166666,6,19,0 -zope.event,0.480126030029771,2.4451618464987,-0.0440353102755944,https://salsa.debian.org/debian/zope.event, https://github.com/zopefoundation/zope.event,5503.514363425926,6,21,0 -zope.i18nmessageid,-0.504779274215239,1.17571582300164,-1.00381597667681,https://salsa.debian.org/detiste-guest/zope.i18nmessageid, https://github.com/zopefoundation/zope.i18nmessageid,5530.727175925926,3,23,0 -zope.interface,0.894756972646945,2.43572262976472,0.237909121040726,https://salsa.debian.org/python-team/packages/zope.interface, https://github.com/zopefoundation/zope.interface.git,5664.702754629629,13,51,0 -zope.proxy,-0.302827855762856,1.24124629949504,-0.795096325475252,https://salsa.debian.org/python-team/packages/zope.proxy, https://github.com/zopefoundation/zope.proxy,5686.584201388889,6,24,0 -zope.schema,-0.671127716306772,0.589860256267245,-1.03264000145762,https://salsa.debian.org/python-team/packages/zope.schema, https://github.com/zopefoundation/zope.schema,5503.583645833333,8,46,0 -zope.testing,-0.804639803803595,0.193231787220047,-1.16008686093468,https://salsa.debian.org/python-team/packages/zope.testing, https://github.com/zopefoundation/zope.testing,5685.868263888889,3,42,0 -zope.testrunner,-1.51782142309299,-0.947942576480612,-1.65561505690836,https://salsa.debian.org/python-team/packages/zope.testrunner, https://github.com/zopefoundation/zope.testrunner,4988.321666666667,11,30,0 -zpb-ttf,-0.540008259656094,2.49952861999287,-1.59014470949942,https://salsa.debian.org/debian/zpb-ttf, https://github.com/xach/zpb-ttf,4273.146041666667,0,6,0 -zram-tools,0.345347634472004,2.01425373353679,-0.25669757434266,https://salsa.debian.org/debian/zram-tools, https://salsa.debian.org/jcc/zram-tools.git,2430.02537037037,0,10,0 -zsh-antigen,0.149800855120852,2.19088935404706,-0.397594704692,https://salsa.debian.org/fladi/zsh-antigen, https://github.com/zsh-users/antigen,2767.235451388889,11,42,1 -zsh-autosuggestions,-0.208285089013366,1.32968816121745,-0.479669353132217,https://salsa.debian.org/debian/zsh-autosuggestions, https://github.com/zsh-users/zsh-autosuggestions.git,3602.992210648148,24,36,0 -zytrax,-1.29066749331229,2.06209338863123,-2.08887987418056,https://salsa.debian.org/multimedia-team/zytrax, https://github.com/reduz/zytrax,931.1719907407407,0,4,0 -zzz-to-char,-1.007512241683,0.849707901616413,-1.4231838868665,https://salsa.debian.org/emacsen-team/zzz-to-char, https://github.com/mrkkrp/zzz-to-char.git,3016.8861805555557,1,3,0 +0xffff,-0.510168673,1.4527994311,-1.0011708662,https://salsa.debian.org/debian/0xffff, https://github.com/pali/0xFFFF,5557.8427777778,3,11,0 +3270font,0.7956265926,4.3574626903,-0.214217071,https://github.com/kilobyte/3270font/tree/debian,https://github.com/kilobyte/3270font,3596.6082060185,6,15,0 +4pane,-0.2426279425,2.299894807,-0.8194220994,https://github.com/dghart/4pane-debian-dir/tree/master/,https://github.com/dghart/4pane-debian-dir,2236.6859722222,0,2,0 +4ti2,0.4764408337,3.0285400273,-0.2191943656,https://salsa.debian.org/math-team/4ti2, https://github.com/4ti2/4ti2.git,5656.5603819445,3,11,0 +6tunnel,-0.563131582,0.346490728,-0.8398599484,https://salsa.debian.org/debian/6tunnel, https://github.com/wojtekka/6tunnel,2673.0241203704,1,7,0 +7kaa,0.8733439141,3.7651893226,-0.0927531106,https://salsa.debian.org/games-team/7kaa, https://github.com/the3dfxdude/7kaa,5126.7096643519,24,23,0 +a2jmidid,0.3594669173,1.948434404,-0.1562277334,https://salsa.debian.org/multimedia-team/a2jmidid, https://github.com/linuxaudio/a2jmidid.git,4551.7947916667,8,8,0 +abgate,0.1706833434,2.3128885166,-0.4447167424,https://salsa.debian.org/multimedia-team/abgate, https://github.com/antanasbruzas/abGate.git,1677.5786226852,2,8,0 +ableton-link,0.2419062498,3.4521460543,-0.7141549374,https://salsa.debian.org/multimedia-team/ableton-link, https://github.com/Ableton/link.git,2835.8410648148,20,10,0 +accerciser,-0.0378163227,0.4929492925,-0.2462858075,https://salsa.debian.org/gnome-team/accerciser, https://gitlab.gnome.org/GNOME/accerciser,5770.6592939815,125,213,0 +acme-tiny,-0.0997740414,0.6982852517,-0.3572560835,https://salsa.debian.org/letsencrypt-team/acme-tiny, https://github.com/diafygi/acme-tiny.git,2161.2252314815,7,34,0 +acmetool,0.6219434866,2.6875450321,-0.2336905662,https://salsa.debian.org/go-team/packages/acmetool, https://github.com/hlandau/acmetool,2727.716875,7,20,1 +acorn,-0.3520987318,0.2081803138,-0.5979004994,https://salsa.debian.org/js-team/acorn, https://github.com/ternjs/acorn.git,4089.9737731482,125,21,0 +acpi-call,0.1056920793,1.3196660142,-0.2309830486,https://salsa.debian.org/moonsweep/acpi-call, https://github.com/nix-community/acpi_call.git,4711.2498958333,14,26,0 +acpica-unix,0.7040782233,1.4328185992,0.2501942145,https://salsa.debian.org/debian/acpica-unix, https://github.com/acpica/acpica,5757.1076157407,43,108,0 +actiona,0.2685921276,2.3898449586,-0.5658267823,https://salsa.debian.org/debian/actiona, https://github.com/Jmgr/actiona,4932.3205439815,3,17,0 +activemq,-0.707743979,-0.252194711,-0.929017814,https://salsa.debian.org/java-team/activemq, https://github.com/apache/activemq,5739.1228356482,56,141,2 +adapta-kde,-0.0885623802,2.0889906357,-0.5313636783,https://salsa.debian.org/debian/adapta-kde, https://github.com/PapirusDevelopmentTeam/adapta-kde.git,636.9053819444,2,5,0 +adcli,0.1564440861,1.9800921733,-0.1872258263,https://salsa.debian.org/debian/adcli, https://gitlab.freedesktop.org/realmd/adcli,3793.8986921296,7,9,0 +admesh,0.1260876875,1.8100481532,-0.381631879,https://salsa.debian.org/science-team/admesh, https://github.com/admesh/admesh,3319.1463078704,15,9,1 +adms,-0.6746373026,2.0836908399,-1.2638452949,https://salsa.debian.org/science-team/adms, https://github.com/Qucs/ADMS.git,3397.3394444445,6,10,0 +adolc,-0.218347665,0.2989988071,-0.4200973016,https://salsa.debian.org/science-team/adolc, https://github.com/coin-or/ADOL-C,5292.5953472222,11,44,0 +adplay,0.140410927,2.0277325924,-0.7179112908,https://salsa.debian.org/debian/adplay, https://github.com/adplug/adplay-unix,4930.808912037,1,9,0 +adql,-0.1607320251,2.2507776056,-0.6544297324,https://salsa.debian.org/debian-astro-team/adql, https://github.com/gmantele/taplib.git,3533.9449074074,2,12,0 +adwaita-qt,0.205201025,2.3560485193,-0.2873294601,https://salsa.debian.org/debian/adwaita-qt, https://github.com/FedoraQt/adwaita-qt.git,3324.8509953704,3,11,0 +aeskulap,-0.0079946864,0.7360602484,-0.280025211,https://salsa.debian.org/med-team/aeskulap, https://github.com/pipelka/aeskulap.git,0.1217013889,0,2,0 +afew,-0.174094467,3.0914363808,-1.0829316549,https://salsa.debian.org/python-team/packages/afew, https://github.com/afewmail/afew,4444.5631134259,14,62,1 +afflib,0.4855383072,1.2966231457,0.0866885423,https://salsa.debian.org/pkg-security-team/afflib, https://github.com/sshock/AFFLIBv3,3923.2419675926,1,18,0 +afio,0.7471975104,2.0817065146,0.0678453147,https://salsa.debian.org/debian/afio, https://github.com/kholtman/afio,3009.1574652778,0,6,0 +aflplusplus,-0.6866375311,2.5698791713,-1.4766466472,https://salsa.debian.org/pkg-security-team/aflplusplus, https://github.com/AFLplusplus/AFLplusplus.git,1658.7534375,94,190,0 +aggdraw,-1.0738283571,1.0896722547,-1.5311943301,https://salsa.debian.org/debian-gis-team/aggdraw, https://github.com/pytroll/aggdraw,4403.4778240741,4,15,2 +aha,-0.0329000287,2.2809487303,-0.5337481366,https://salsa.debian.org/debian/aha, https://github.com/theZiz/aha.git,3422.3746180556,1,26,0 +aiodns,0.1656826228,1.9021756708,-0.2783622395,https://salsa.debian.org/python-team/packages/aiodns, https://github.com/saghul/aiodns.git,3490.3476273148,13,17,0 +aiohttp-cors,-0.7596578577,2.1498024024,-1.6464654952,https://salsa.debian.org/python-team/packages/aiohttp-cors, https://github.com/aio-libs/aiohttp-cors.git,2984.285,8,13,0 +aiohttp-jinja2,-0.7753254437,2.2677824664,-1.615448147,https://salsa.debian.org/python-team/packages/aiohttp-jinja2, https://github.com/aio-libs/aiohttp-jinja2,3277.1723958333,24,22,0 +aiomysql,-3.2003794713,-0.7026792092,-3.7356561791,https://salsa.debian.org/python-team/packages/aiomysql, https://github.com/aio-libs/aiomysql.git,5227.9910763889,36,80,0 +aioprocessing,-1.8106172723,-0.4031506429,-2.0700475194,https://github.com/davesteele/aioprocessing,https://github.com/davesteele/aioprocessing,3054.801087963,3,13,0 +aircrack-ng,0.4800458155,1.0444543873,0.1475291133,https://salsa.debian.org/pkg-security-team/aircrack-ng, https://github.com/aircrack-ng/aircrack-ng,5761.9209490741,27,56,7 +airspy-host,0.135032826,1.7638004482,-0.2266634267,https://salsa.debian.org/bottoms/pkg-airspy-host, https://github.com/airspy/airspyone_host.git,3592.9147685185,9,15,0 +airspyhf,0.4277792447,3.1863173209,-0.2431051192,https://salsa.debian.org/debian-hamradio-team/airspyhf, https://github.com/airspy/airspyhf.git,2334.5221527778,3,13,0 +aiscm,-2.1266027747,-0.9022998492,-2.4482757524,https://github.com/wedesoft/aiscm,https://github.com/wedesoft/aiscm,3606.1918865741,0,8,0 +akonadi-calendar-tools,1.2751485703,3.4100386912,0.3552173333,https://salsa.debian.org/qt-kde-team/kde/akonadi-calendar-tools, https://invent.kde.org/pim/akonadi-calendar-tools,5771.3882523148,0,49,0 +akonadi-contacts,0.2672117803,1.7179390005,-0.0643570166,https://salsa.debian.org/qt-kde-team/kde/akonadi-contacts, https://invent.kde.org/pim/akonadi-contacts,5566.4750578704,4,105,0 +akonadi-import-wizard,0.7943245944,3.9117206927,-0.0034208706,https://salsa.debian.org/qt-kde-team/kde/akonadi-import-wizard, https://invent.kde.org/pim/akonadi-import-wizard,4309.2738078704,0,46,0 +akonadi-mime,0.8151290719,4.1262776093,-0.0049727087,https://salsa.debian.org/qt-kde-team/kde/akonadi-mime, https://invent.kde.org/pim/akonadi-mime,5764.8335069445,0,90,0 +alabaster,1.5840034231,5.0180871348,0.3754116681,https://github.com/jbouse-debian/alabaster,https://github.com/jbouse-debian/alabaster,3086.3917592593,1,6,0 +aldo,1.0601438671,3.2363855086,0.0731719801,https://salsa.debian.org/debian-hamradio-team/aldo, https://git.savannah.nongnu.org/git/aldo.git,1276.7806712963,0,3,0 +alfred,-1.3257983154,-0.9751376328,-1.3975721765,https://salsa.debian.org/communitywlan-team/alfred, https://git.open-mesh.org/alfred.git,4046.7051157407,13,7,0 +allegro4.4,0.2948599657,1.6549987253,-0.1099020714,https://salsa.debian.org/games-team/allegro4.4, https://github.com/liballeg/allegro5.git,5772.8158680556,110,47,0 +allegro5,-0.4762686219,-0.2153924343,-0.5311269802,https://salsa.debian.org/games-team/allegro5, https://github.com/liballeg/allegro5.git,5772.8158680556,110,47,0 +almanah,-0.0310059525,1.500537437,-0.7104655266,https://salsa.debian.org/debian/almanah, https://gitlab.gnome.org/GNOME/almanah,5624.9012152778,54,77,0 +alot,-0.2544265424,0.8533465971,-0.7289195127,https://salsa.debian.org/python-team/packages/alot, https://github.com/pazz/alot,4591.0241550926,49,67,1 +alsa-lib,2.8688335409,3.5129410786,2.3525996615,https://salsa.debian.org/alsa-team/alsa-lib, git://git.alsa-project.org/alsa-lib.git,5782.973587963,230,4,0 +alsa-oss,1.3554659285,3.0758606631,0.5260633344,https://salsa.debian.org/alsa-team/alsa-oss, git://git.alsa-project.org/alsa-oss.git,3884.0495949074,2,2,0 +alsa-plugins,0.5277965445,0.9916067483,0.2436145094,https://salsa.debian.org/alsa-team/alsa-plugins, git://git.alsa-project.org/alsa-plugins.git,5617.8231481482,50,5,0 +alsa-tools,0.7198242273,1.5459165158,0.2425714197,https://salsa.debian.org/alsa-team/alsa-tools, git://git.alsa-project.org/alsa-tools.git,5461.1300810185,21,5,0 +alsa-ucm-conf,0.7879532235,4.0110545465,-0.037986043,https://salsa.debian.org/alsa-team/alsa-ucm-conf, git://git.alsa-project.org/alsa-ucm-conf.git,1552.9167013889,109,3,0 +alsa-utils,0.8601242048,1.116437682,0.6506226004,https://salsa.debian.org/alsa-team/alsa-utils, git://git.alsa-project.org/alsa-utils.git,5783.0309143519,155,7,0 +alt-ergo,-0.166253454,1.6206698259,-0.6945227129,https://salsa.debian.org/ocaml-team/alt-ergo, https://github.com/OCamlPro/alt-ergo.git,2224.8810300926,19,33,0 +amavisd-milter,0.615386065,3.5879174633,-0.470593397,https://salsa.debian.org/debian/amavisd-milter, https://github.com/prehor/amavisd-milter,5582.9392824074,1,5,0 +amazon-ecr-credential-helper,-1.2935017996,1.3375714894,-1.8855602579,https://github.com/awslabs/amazon-ecr-credential-helper/tree/debian,https://github.com/awslabs/amazon-ecr-credential-helper,2759.7970717593,31,49,1 +amora-server,-0.6385985537,1.533812873,-1.3373354269,https://github.com/amora/amora/tree/master/amora-server,https://github.com/amora/amora,4404.2341666667,0,11,0 +ams,0.9222795756,2.5557995254,0.1135168045,https://salsa.debian.org/multimedia-team/ams, https://git.code.sf.net/p/alsamodular/ams.git,5466.3335300926,0,3,0 +amsynth,0.3306364812,1.2209617467,-0.1269359447,https://salsa.debian.org/multimedia-team/amsynth, https://github.com/nixxcode/amsynth.git ,5332.9271990741,11,24,0 +amule,0.4839430086,0.6876326423,0.3238736448,https://salsa.debian.org/debian/amule, https://github.com/amule-project/amule.git,5047.6080555556,11,25,0 +amule-emc,-0.3584249255,1.8578303929,-0.8058880504,https://salsa.debian.org/morph/amule-emc, https://github.com/palopezv/amule-emc,2735.137662037,0,2,0 +analitza,0.3766539585,1.5073575439,-0.0476586747,https://salsa.debian.org/qt-kde-team/kde/analitza, https://invent.kde.org/education/analitza,5784.1196759259,4,60,0 +analog,0.3100100337,0.6308951381,0.1129534728,https://salsa.debian.org/debian/analog, https://github.com/c-amie/analog-ce.git,798.2990509259,2,1,0 +androguard,0.2412970698,1.9696462371,-0.4136141318,https://salsa.debian.org/python-team/packages/androguard, https://github.com/androguard/androguard,4421.1416203704,25,102,1 +android-platform-dalvik,0.296093284,1.47591399,-0.0862142466,https://salsa.debian.org/android-tools-team/android-platform-dalvik, https://android.googlesource.com/platform/dalvik,5526.2436689815,59,229,0 +android-platform-libnativehelper,0.0017590271,1.5359533625,-0.2861541883,https://salsa.debian.org/android-tools-team/android-platform-libnativehelper, https://android.googlesource.com/platform/libnativehelper,5505.3903587963,15,100,0 +android-platform-system-core,0.6822360951,1.1663266913,0.3532935435,https://salsa.debian.org/android-tools-team/android-platform-system-core, https://android.googlesource.com/platform/system/core,5529.5838773148,375,1288,0 +android-platform-system-extras,0.6947093687,3.3063934814,-0.0338139622,https://salsa.debian.org/android-tools-team/android-platform-system-extras, https://android.googlesource.com/platform/system/extras,5529.4214236111,60,393,0 +android-platform-system-tools-aidl,0.44488227,3.1543616173,-0.2194044492,https://salsa.debian.org/android-tools-team/android-platform-system-tools-aidl, https://android.googlesource.com/platform/system/tools/aidl,3023.9934027778,27,150,0 +android-platform-system-tools-hidl,-3.357932383,0.1595976963,-4.2547733871,https://salsa.debian.org/android-tools-team/android-platform-system-tools-hidl, https://android.googlesource.com/platform/system/tools/hidl,2797.1883912037,16,123,0 +anfo,-0.5164343879,1.1141228746,-0.8858012402,https://salsa.debian.org/med-team/anfo, https://github.com/udo-stenzel/anfo,2083.7738310185,0,5,0 +angband,0.5240127373,1.1970440259,0.0938974142,https://salsa.debian.org/games-team/angband, https://github.com/angband/angband,5784.383275463,62,97,7 +anki,0.6488132909,1.2727622275,0.2451227984,https://salsa.debian.org/debian/anki, https://github.com/ankitects/anki.git,5553.5966435185,128,181,0 +anomaly,-2.6979232432,-0.9294432931,-3.0157661638,https://github.com/mogaal/anomaly,https://github.com/mogaal/anomaly,224.8161226852,0,2,0 +anosql,-1.7531962484,0.6178873531,-2.3213037286,https://salsa.debian.org/python-team/packages/anosql, https://github.com/honza/anosql,2207.9932523148,1,18,0 +ansible-lint,0.2113200286,2.3970134545,-0.4192549848,https://salsa.debian.org/python-team/packages/ansible-lint, https://github.com/ansible/ansible-lint,3772.1254976852,239,77,4 +antpm,-0.4257977771,1.2499417918,-0.9097264377,https://salsa.debian.org/debian/antpm, https://github.com/ralovich/antpm,5246.6502893519,2,16,0 +anypaper,-0.8366781332,1.8293957466,-1.525331321,https://github.com/mogaal/anypaper,https://github.com/mogaal/anypaper,358.8230671296,0,1,0 +aoeui,-1.5753745078,-0.1018330597,-2.0145689052,https://salsa.debian.org/debian/aoeui, https://github.com/pklausler/aoeui.git,0.0311342593,0,4,0 +apache-curator,-2.7625675468,-0.5530826956,-3.2933310021,https://salsa.debian.org/java-team/apache-curator, https://github.com/apache/curator.git,4523.4816435185,47,128,0 +apachetop,-0.1433968655,0.1384791106,-0.2436187019,https://salsa.debian.org/debian/apachetop, https://github.com/tessus/apachetop.git,4171.4287847222,1,5,0 +apbs,0.4039445163,1.99609576,-0.160703721,https://salsa.debian.org/debichem-team/apbs, https://github.com/Electrostatics/apbs,3265.3524074074,3,44,0 +apel,-0.1699911676,0.0467119457,-0.2503884599,https://salsa.debian.org/debian/apel, https://github.com/wanderlust/apel,5064.9154166667,2,8,0 +apgdiff,-0.5359221257,1.1581806376,-0.9984045327,https://salsa.debian.org/postgresql/apgdiff, https://github.com/fordfrog/apgdiff,4911.7404398148,14,33,0 +apipkg,0.1848523093,2.3386412167,-0.297646363,https://salsa.debian.org/python-team/packages/apipkg, https://github.com/pytest-dev/apipkg,4796.3536574074,4,14,0 +apktool,-0.1423647108,0.484434746,-0.329878944,https://salsa.debian.org/android-tools-team/apktool, https://github.com/JesusFreke/smali,4709.8444212963,28,24,0 +aplpy,-0.0173305787,1.6394741457,-0.5266587065,https://salsa.debian.org/debian-astro-team/aplpy, https://github.com/aplpy/aplpy.git,4761.8146296296,3,44,0 +appdirs,0.3458277639,1.9577727359,-0.1122252661,https://salsa.debian.org/python-team/packages/appdirs, https://github.com/ActiveState/appdirs.git,4580.7970601852,5,36,0 +appstream-generator,-1.1332713071,-0.1060546301,-1.4824521416,https://salsa.debian.org/pkgutopia-team/appstream-generator, https://github.com/ximion/appstream-generator,2846.9885185185,14,5,0 +appstream-glib,0.3065479396,0.9504153325,0.0390455587,https://salsa.debian.org/pkgutopia-team/appstream-glib, https://github.com/hughsie/appstream-glib,3530.064537037,77,29,0 +apriltag,-1.1179244852,1.091725818,-1.6047836993,https://salsa.debian.org/science-team/apriltag, https://github.com/AprilRobotics/apriltag.git,1884.0502083333,21,28,0 +aprsdigi,0.1781157768,2.7404004262,-0.7343395696,https://salsa.debian.org/debian-hamradio-team/aprsdigi, https://github.com/n2ygk/aprsdigi.git,5178.2461574074,2,9,0 +aprx,-0.2704326877,2.1233467944,-0.9280144637,https://salsa.debian.org/debian-hamradio-team/aprx, https://github.com/PhirePhly/aprx,4964.0779861111,6,4,1 +apt-forktracer,0.0547352043,1.112259075,-0.2401275584,https://github.com/porridge/apt-forktracer,https://github.com/porridge/apt-forktracer,5457.9246990741,1,3,0 +apt-offline,0.7681910278,1.8077281258,0.1487399152,https://github.com/rickysarraf/apt-offline,https://github.com/rickysarraf/apt-offline,5588.93,4,18,3 +apt-venv,0.5985278149,4.8192892935,-0.7291864283,https://salsa.debian.org/debian/apt-venv, https://github.com/LeoIannacone/apt-venv,1672.1250694445,0,3,0 +aptitude-robot,0.0330441368,2.6987643495,-0.6758866251,https://github.com/elmar/aptitude-robot,https://github.com/elmar/aptitude-robot,3822.3247685185,3,7,1 +aptly,-0.1552867696,0.754982118,-0.4606295889,https://salsa.debian.org/debian/aptly, https://github.com/aptly-dev/aptly.git,3570.9031944445,53,62,0 +apulse,-0.1771724569,1.2997369797,-0.4576897761,https://github.com/exaexa/apulse-debian,https://github.com/exaexa/apulse-debian,2693.7106712963,2,11,0 +apvlv,0.8026186076,2.4912926837,-0.0110446926,https://salsa.debian.org/debian/apvlv, https://github.com/naihe2010/apvlv,4571.1944675926,1,28,0 +arachne-pnr,-0.2393988119,0.9055823033,-0.5128499486,https://salsa.debian.org/science-team/arachne-pnr, https://github.com/cseed/arachne-pnr.git,1523.5826388889,1,29,0 +arbiterjs,-0.9372250205,1.3094171556,-1.3679284559,https://salsa.debian.org/js-team/arbiterjs, https://github.com/ArbiterJS/ArbiterJS,777.6784722222,0,1,0 +arc,1.0034305192,2.95692526,0.1704629703,https://git.hadrons.org/cgit/debian/pkgs/arc.git, https://github.com/ani6al/arc,0.1011921296,1,1,0 +arc-theme,0.0557512099,0.9470106383,-0.1788662281,https://github.com/UbuntuBudgie/arc-theme/tree/debian,https://github.com/UbuntuBudgie/arc-theme,2773.5425578704,36,30,0 +arch-test,0.0607618911,0.902121307,-0.1116504733,https://github.com/kilobyte/arch-test/tree/debian,https://github.com/kilobyte/arch-test,2721.0558912037,2,7,0 +archmage,-0.5766750111,-0.3037651495,-0.666439779,https://salsa.debian.org/python-team/packages/archmage, https://github.com/dottedmag/archmage,4875.1846412037,1,4,0 +arcp,-5.0400309655,-2.6837801512,-5.4802256243,https://salsa.debian.org/python-team/packages/arcp, https://github.com/stain/arcp-py.git,744.5613194444,0,3,0 +ardentryst,1.6336595561,4.7901963616,0.4114961199,https://salsa.debian.org/games-team/ardentryst, https://github.com/ardentryst/ardentryst,3087.7143865741,4,6,0 +arename,-0.7754375198,0.9646514013,-1.1302132776,https://salsa.debian.org/perl-team/modules/packages/arename, https://github.com/ft/arename.git,5509.5740972222,2,1,0 +argon2,0.743835667,2.5300173326,0.1203530186,https://salsa.debian.org/pkg-security-team/argon2, https://github.com/P-H-C/phc-winner-argon2,2090.9970833333,21,70,0 +ariba,-0.7249708667,0.7497238838,-1.1789923052,https://salsa.debian.org/med-team/ariba, https://github.com/sanger-pathogens/ariba,3026.1963541667,10,22,0 +arno-iptables-firewall,-0.0994853605,0.2382471007,-0.2885738031,https://salsa.debian.org/pkg-security-team/arno-iptables-firewall, https://github.com/arno-iptables-firewall/aif.git,5173.1893171296,1,13,0 +arp-scan,0.7973854024,2.157870748,0.1913515465,https://salsa.debian.org/pkg-security-team/arp-scan, https://github.com/royhills/arp-scan,5689.2689583333,1,16,0 +arpack,0.3837318586,0.9028165971,0.1090371111,https://salsa.debian.org/science-team/arpack, https://github.com/opencollab/arpack-ng.git,4374.6474884259,45,30,0 +arping,0.530645087,1.2970011805,0.131538231,https://salsa.debian.org/debian/arping, https://github.com/ThomasHabets/arping,5640.3308564815,6,8,1 +asn1crypto,0.9740729842,4.1853024005,0.0865816737,https://salsa.debian.org/python-team/packages/asn1crypto, https://github.com/wbond/asn1crypto.git,3074.7355092593,14,27,0 +assess-el,-1.4000321709,1.1332183932,-2.0278507888,https://salsa.debian.org/emacsen-team/assess-el, https://github.com/phillord/assess.git,2948.0093402778,0,8,0 +assimp,-0.0454824315,0.3019779381,-0.1767890603,https://salsa.debian.org/debian/assimp, https://github.com/assimp/assimp,5697.8977662037,208,641,2 +astlib,-0.4953363519,0.6080154454,-0.6729060494,https://salsa.debian.org/debian-astro-team/astlib, https://github.com/mattyowl/astLib.git,2666.6349305556,0,4,0 +astroid,0.2651129847,1.4509353815,-0.1131063928,https://salsa.debian.org/python-team/packages/astroid, https://github.com/PyCQA/astroid,5779.9301967593,144,70,4 +astromenace,-0.4083684893,0.5804361033,-0.6175886343,https://salsa.debian.org/games-team/astromenace, https://github.com/viewizard/astromenace.git,5567.4927893519,5,4,0 +astroplan,-0.4401176474,0.3680993554,-0.6183009298,https://salsa.debian.org/debian-astro-team/astroplan, https://github.com/astropy/astroplan.git,3067.3247685185,16,34,0 +astropy-healpix,-0.4944474025,0.2280631702,-0.7220614086,https://salsa.debian.org/debian-astro-team/astropy-healpix, https://github.com/astropy/astropy-healpix,2653.9758333333,3,14,5 +astropy-helpers,-0.9972229381,1.1442547348,-1.4302281515,https://salsa.debian.org/debian-astro-team/astropy-helpers, https://github.com/astropy/astropy-helpers,3097.3243981482,6,36,3 +astroquery,-0.5654734134,-0.391755871,-0.607108416,https://salsa.debian.org/debian-astro-team/astroquery, https://github.com/astropy/astroquery.git,4368.8726388889,63,141,0 +asymptote,0.2396900664,0.5861261584,0.0399132445,https://github.com/debian-tex/asymptote,https://github.com/debian-tex/asymptote,4223.6715162037,6,28,0 +at-spi2-atk,0.0604563992,0.2354391471,-0.0043090113,https://salsa.debian.org/a11y-team/at-spi2-atk, https://gitlab.gnome.org/GNOME/at-spi2-atk.git,5197.2038541667,33,112,0 +at-spi2-core,0.2194391518,0.5777570576,0.0562810741,https://salsa.debian.org/a11y-team/at-spi2-core, https://gitlab.gnome.org/GNOME/at-spi2-core.git,5749.2271643519,186,332,0 +atari800,0.2438262875,1.4111848908,-0.3223074512,https://github.com/bobek/aranym800-debian,https://github.com/bobek/aranym800-debian,4083.2988773148,1,3,0 +atig,-1.8648493244,0.279641993,-2.4212366269,https://salsa.debian.org/ruby-team/atig, https://github.com/atig/atig,4572.5188078704,2,14,1 +atkmm1.6,0.3847255523,2.3441443667,-0.0140246689,https://salsa.debian.org/gnome-team/atkmm, https://gitlab.gnome.org/GNOME/atkmm.git,4919.5924189815,1,11,0 +atlas-cpp,0.0341726983,1.1760438151,-0.4721381555,https://salsa.debian.org/games-team/atlas-cpp, https://github.com/worldforge/atlas-cpp,5588.9221643519,1,7,0 +atomix,-0.1273463408,0.3439564062,-0.2792513486,https://salsa.debian.org/games-team/atomix, https://gitlab.gnome.org/GNOME/atomix.git,5678.1426851852,64,61,0 +atril,0.5207732379,1.2869272543,0.1522121334,https://salsa.debian.org/debian-mate-team/atril, https://github.com/mate-desktop/atril.git,4392.8799768519,62,42,0 +audacious-plugins,1.7224717183,2.5284554407,1.1638170855,https://salsa.debian.org/multimedia-team/audacious-plugins, https://github.com/audacious-media-player/audacious-plugins,5769.3870138889,19,100,0 +audacity,2.0595760921,2.587904003,1.6528933115,https://salsa.debian.org/multimedia-team/audacity, https://github.com/audacity/audacity.git,5069.8878125,215,104,0 +audiofile,0.422362873,1.1370882832,0.0919717085,https://salsa.debian.org/multimedia-team/audiofile, https://github.com/mpruett/audiofile,1573.8945023148,10,2,0 +audioread,0.4790726237,2.8379723664,-0.2363043324,https://salsa.debian.org/python-team/packages/audioread, https://github.com/sampsyo/audioread.git,4407.0006944445,7,21,0 +austin,-1.9885885289,0.9749582973,-2.7198737394,https://github.com/P403n1x87/austin,https://github.com/P403n1x87/austin,1837.728599537,4,7,8 +autocutsel,0.1797843854,2.4764961713,-0.3873891003,https://github.com/elmar/autocutsel-debian,https://github.com/elmar/autocutsel-debian,3741.7552430556,3,8,0 +autokey,0.3157876973,1.3846933282,-0.1914982228,https://salsa.debian.org/python-team/packages/autokey, https://github.com/autokey/autokey.git,5672.2088194445,14,35,0 +autolog,-0.4586466955,0.5238636181,-1.0843460423,https://salsa.debian.org/pkg-security-team/autolog, https://github.com/JKDingwall/autolog.git,1891.041099537,4,11,0 +automat,0.5797311186,2.5651694206,-0.008165578,https://salsa.debian.org/python-team/packages/automat, https://github.com/glyph/Automat,3398.9362384259,12,27,0 +automx,-0.602057718,1.6606574872,-1.3781487507,https://github.com/wreiner/automx-debian.git,https://github.com/wreiner/automx-debian.git,38.1884490741,1,1,0 +autopep8,-0.0346799033,0.8597525379,-0.3117625021,https://salsa.debian.org/python-team/packages/autopep8, https://github.com/hhatto/autopep8.git,4684.4423148148,7,60,0 +autopostgresqlbackup,0.0717331465,1.1779509822,-0.3973782275,https://salsa.debian.org/kolter/autopostgresqlbackup, https://github.com/k0lter/autopostgresqlbackup,1670.5722222222,8,3,0 +autopsy,0.2673636292,1.4869813184,-0.2263355635,https://salsa.debian.org/debian/autopsy, https://github.com/sleuthkit/autopsy,5552.5233796296,24,149,0 +autorandr,-0.3527152165,0.3171262846,-0.518389331,https://salsa.debian.org/debian/autorandr, https://github.com/phillipberndt/autorandr.git,4779.7076736111,55,58,0 +autorenamer,-0.3876192426,1.6252404011,-0.8867624476,https://github.com/porridge/autorenamer,https://github.com/porridge/autorenamer,3637.0090277778,4,1,0 +autosuspend,-1.9250458428,0.6278109958,-2.4672708111,https://salsa.debian.org/python-team/packages/autosuspend, https://github.com/languitar/autosuspend.git,3337.5962847222,6,9,0 +averell,-3.3917060035,-0.2624325775,-4.2312153625,https://github.com/jeanparpaillon/averell,https://github.com/jeanparpaillon/averell,585.8797453704,0,1,0 +avr-evtd,0.7552713955,5.6393427141,-0.8294940805,https://github.com/rbrito/pkg-avr-evtd,https://github.com/rbrito/pkg-avr-evtd,3784.5630787037,0,1,0 +awesfx,0.8705331012,2.216301783,0.1561432022,https://salsa.debian.org/multimedia-team/awesfx, https://github.com/tiwai/awesfx.git,1324.8292592593,0,1,0 +awesome,1.7293797893,2.2990388902,1.298956452,https://salsa.debian.org/reiner/awesome, https://github.com/awesomeWM/awesome.git,5762.6976157407,347,141,0 +awl,0.2127384242,1.447322683,-0.283963228,https://gitlab.com/davical-project/awl, https://gitlab.com/davical-project/awl,5622.8299305556,8,27,0 +awscli,1.1170184884,2.8844280869,0.3094926846,https://salsa.debian.org/cloud-team/awscli, https://github.com/aws/aws-cli,4045.3834027778,222,285,0 +axel,0.8059641638,1.6580193301,0.3099258517,https://salsa.debian.org/debian/axel, https://github.com/axel-download-accelerator/axel.git,5432.0664814815,28,21,0 +backblaze-b2,-0.5856460264,1.0561324881,-0.982860591,https://salsa.debian.org/python-team/packages/backblaze-b2, https://github.com/Backblaze/B2_Command_Line_Tool,2942.6175925926,21,71,0 +backbone,0.6268399617,2.6012177885,-0.0272691106,https://salsa.debian.org/js-team/backbone, https://github.com/jashkenas/backbone,4697.0951736111,30,344,2 +backintime,0.7486127956,1.4857170508,0.2857209516,https://salsa.debian.org/jmw/pkg-backintime, https://github.com/bit-team/backintime,5520.9053125,17,50,3 +backuppc,0.439136868,0.738905733,0.2133448427,https://salsa.debian.org/debian/backuppc, https://github.com/backuppc/backuppc,4883.1674305556,21,39,0 +backuppc-rsync,-2.9537265247,0.2336355318,-3.706230506,https://salsa.debian.org/debian/backuppc-rsync, https://github.com/backuppc/rsync-bpc,2751.3212037037,2,9,0 +balsa,0.7653090728,1.1224399451,0.4850507084,https://salsa.debian.org/gnome-team/balsa, https://gitlab.gnome.org/GNOME/balsa,5766.8402083333,67,84,0 +bambam,0.3070932851,2.5075958172,-0.3413586452,https://github.com/porridge/bambam,https://github.com/porridge/bambam,5711.2973958333,24,13,0 +bamf,0.8890858564,2.6238515704,0.1652477113,https://salsa.debian.org/debian-mate-team/bamf, https://git.launchpad.net/bamf,4608.038900463,6,66,0 +baobab,1.4082957342,2.9969312857,0.6514876899,https://salsa.debian.org/gnome-team/baobab, https://gitlab.gnome.org/GNOME/baobab.git,5757.9049537037,199,211,0 +barclay,0.1851801588,3.0141581768,-0.6020424346,https://salsa.debian.org/java-team/barclay, https://github.com/broadinstitute/barclay.git,2356.7614351852,7,7,0 +bart,-0.177815138,2.1254373642,-0.6372145565,https://salsa.debian.org/med-team/bart, https://github.com/mrirecon/bart,3390.8110185185,61,30,0 +bash-completion,3.0467331996,3.5679204451,2.629027834,https://salsa.debian.org/debian/bash-completion, https://github.com/scop/bash-completion,5698.983125,170,39,0 +batctl,-0.446373578,0.5703726696,-0.6166773776,https://salsa.debian.org/communitywlan-team/batctl, https://git.open-mesh.org/batctl.git,5724.537349537,25,15,0 +batmand,-1.5150651093,-0.3066394903,-1.8398587009,https://salsa.debian.org/communitywlan-team/batmand, https://git.open-mesh.org/batmand.git,5440.5033564815,1,12,0 +bbswitch,0.4461678003,1.7884089418,-0.0722161012,https://salsa.debian.org/nvidia-team/bbswitch, https://github.com/Bumblebee-Project/bbswitch,3680.6305555556,2,16,1 +bcal,-0.7606974378,1.2582144179,-1.3048574748,https://salsa.debian.org/debian/bcal, https://github.com/jarun/bcal.git,2530.8116435185,8,4,0 +bchunk,1.3929830188,3.6275508128,0.4314886859,https://salsa.debian.org/debian/bchunk, https://github.com/twojstaryzdomu/bchunk,1689.5562731482,4,5,0 +bd,-0.5709314067,1.7639710855,-1.0717735964,https://salsa.debian.org/debian/bd, https://github.com/vigneshwaranr/bd.git,3272.7792476852,3,12,0 +bear,-0.3900185941,0.5954929997,-0.59709973,https://salsa.debian.org/sramacher/bear, https://github.com/rizsotto/Bear,3987.655787037,44,19,0 +beginend-el,-0.9812054474,1.1475644093,-1.4790757004,https://salsa.debian.org/emacsen-team/beginend-el, https://github.com/DamienCassou/beginend.git,3077.3105208333,8,12,0 +beignet,-0.0858693475,0.150640955,-0.1918467066,https://salsa.debian.org/opencl-team/beignet, https://gitlab.freedesktop.org/beignet/beignet.git,2200.3459027778,82,10,0 +benchmark,-0.4007419552,1.9221150293,-1.2040622803,https://salsa.debian.org/science-team/benchmark, https://github.com/google/benchmark,3640.5849537037,257,68,3 +berkeley-abc,-0.0691799173,1.1526418635,-0.3926880632,https://salsa.debian.org/science-team/berkeley-abc, https://github.com/berkeley-abc/abc.git,5782.9116666667,8,47,0 +bernhard,-3.8249138229,-1.4329465737,-4.33451812,https://salsa.debian.org/python-team/packages/bernhard, https://github.com/b20n/bernhard.git,2059.4699652778,0,14,0 +berusky2,0.0431824404,1.2975216726,-0.3985882086,https://salsa.debian.org/games-team/berusky2, https://notabug.org/AsDaGo/berusky2,3400.716875,0,3,0 +betamax,-2.6186759503,-1.7111544465,-2.7929647164,https://salsa.debian.org/python-team/packages/betamax, https://github.com/sigmavirus24/betamax,3448.4558796296,7,33,2 +bfs,-1.1164889975,-0.5498955731,-1.1990984125,https://salsa.debian.org/lamby/pkg-bfs, https://github.com/tavianator/bfs.git,2311.7626273148,11,10,0 +biber,0.025597249,0.3975294935,-0.1139709408,https://github.com/debian-tex/biber,https://github.com/debian-tex/biber,5232.9484259259,2,17,0 +biblesync,0.3250691142,3.3691024007,-0.4547464712,https://salsa.debian.org/pkg-crosswire-team/biblesync, https://github.com/karlkleinpaste/biblesync.git,2205.1738773148,0,6,0 +bibletime,0.8329048679,1.6204522604,0.3018266531,https://salsa.debian.org/pkg-crosswire-team/bibletime, https://github.com/bibletime/bibletime.git,5560.0446875,4,19,0 +bibtool,0.6789918484,1.7753249658,0.1299255999,https://salsa.debian.org/tex-team/bibtool, https://github.com/ge-ne/bibtool.git,4734.0663541667,1,5,0 +bijiben,1.6134937238,3.7954898308,0.6478021927,https://salsa.debian.org/gnome-team/gnome-notes, https://gitlab.gnome.org/GNOME/gnome-notes,4086.3302314815,192,113,0 +billiard,0.2441066555,1.290611265,-0.1134971808,https://salsa.debian.org/python-team/packages/billiard, https://github.com/celery/billiard,5102.5754398148,64,35,0 +binaryen,-1.2202993326,0.314774513,-1.4851228884,https://salsa.debian.org/debian/binaryen, https://github.com/WebAssembly/binaryen,2965.9878472222,143,38,0 +binfmt-support,2.1758267493,3.7634347101,1.3106242231,https://salsa.debian.org/debian/binfmt-support, https://gitlab.com/cjwatson/binfmt-support.git,5677.4017013889,7,3,0 +binkd,-1.5291148732,-0.7208993868,-1.8984875134,https://salsa.debian.org/md/binkd, https://github.com/pgul/binkd,5661.947349537,4,23,0 +bino,0.1952576502,1.8817060276,-0.4774605999,https://github.com/schaal/bino,https://github.com/schaal/bino,3762.7609490741,0,4,0 +binwalk,0.2237508811,1.3345373481,-0.1513640072,https://salsa.debian.org/pkg-security-team/binwalk, https://github.com/ReFirmLabs/binwalk,3364.812650463,24,70,1 +biojava4-live,-1.5706913975,-1.1880575745,-1.6593807352,https://salsa.debian.org/med-team/biojava4-live, https://github.com/biojava/biojava.git,5193.17375,13,133,0 +biometric-authentication,-0.485933223,1.5346031672,-1.0554082079,https://github.com/ukui/biometric-authentication,https://github.com/ukui/biometric-authentication,1286.1941203704,2,8,0 +birdfont,0.1539215818,1.5207071994,-0.3971310294,https://salsa.debian.org/fonts-team/birdfont, https://github.com/johanmattssonm/birdfont.git,4158.8272222222,6,15,0 +bisonc++,-0.3469062572,0.1921150481,-0.532691597,https://salsa.debian.org/debian/bisoncpp, https://gitlab.com/fbb-git/bisoncpp,5727.9746990741,1,2,0 +bitlbee,0.610414917,1.1334179745,0.2390336103,https://github.com/bitlbee/bitlbee,https://github.com/bitlbee/bitlbee,5775.5242824074,54,55,0 +bitstruct,-1.0422111169,1.6758733437,-1.7408364383,https://salsa.debian.org/python-team/packages/bitstruct, https://github.com/eerimoq/bitstruct,3110.3722916667,2,10,0 +black,-0.2598583165,0.6526555806,-0.4835804983,https://salsa.debian.org/python-team/packages/black, https://github.com/psf/black.git,2098.4397453704,441,11,0 +blackbox,0.9240670694,1.5485949706,0.4955253,https://salsa.debian.org/debian/blackbox, https://github.com/bbidulock/blackboxwm,5638.5930671296,4,7,0 +bladerf,0.248655998,1.4088676401,-0.1703386662,https://salsa.debian.org/debian-hamradio-team/bladerf, https://github.com/Nuand/bladeRF.git,3942.8006481482,48,43,0 +blahtexml,-0.8489779977,1.4826442088,-1.4663049964,http://github.com/abhidg/pkg-blahtexml,http://github.com/abhidg/pkg-blahtexml,103.9986226852,0,1,0 +blastem,0.1847427568,3.2648326911,-0.6202867856,https://salsa.debian.org/games-team/blastem, https://gitlab.com/coringao/blastem,2957.0080787037,0,8,0 +blinken,0.8324731,3.0846339592,0.0518074456,https://salsa.debian.org/qt-kde-team/kde/blinken, https://anongit.kde.org/blinken.git,5781.8173611111,2,45,0 +blitz++,0.0768120247,0.4811089165,-0.1519581804,https://salsa.debian.org/math-team/blitzxx, https://github.com/blitzpp/blitz,1587.5368287037,16,14,0 +bluebird-gtk-theme,1.1380974193,4.2767964991,0.1562970087,https://salsa.debian.org/desktop-themes-team/bluebird-gtk-theme, https://github.com/shimmerproject/Bluebird,2956.8580092593,3,16,0 +bluedevil,1.5816359635,2.9346957294,0.8398290915,https://salsa.debian.org/qt-kde-team/kde/bluedevil, https://invent.kde.org/plasma/bluedevil.git,4989.2241087963,10,87,0 +bmap-tools,-0.1504052056,1.1252732802,-0.4879151231,https://salsa.debian.org/debian/bmap-tools, https://github.com/intel/bmap-tools,4042.2103240741,15,24,3 +boinctui,-0.1432413703,1.420786312,-0.5512115785,https://github.com/suleman1971/boinctui,https://github.com/suleman1971/boinctui,3939.3302893519,1,7,0 +bolt,0.9595351116,3.8513525898,0.1236198781,https://salsa.debian.org/freedesktop-team/bolt, https://gitlab.freedesktop.org/bolt/bolt,2279.9291087963,7,17,0 +bomber,0.4120832423,2.9375693678,-0.1365522868,https://salsa.debian.org/qt-kde-team/kde/bomber, https://anongit.kde.org/bomber.git,5633.3196875,2,46,0 +boot-info-script,-0.3809313102,1.1240423783,-0.7082417318,https://salsa.debian.org/debian/boot-info-script, https://github.com/arvidjaar/bootinfoscript,3172.7375,1,7,0 +booth,-2.5882433407,-1.3768010854,-2.9582924151,https://salsa.debian.org/ha-team/booth, https://github.com/ClusterLabs/booth.git,4438.4447337963,6,37,0 +bordeaux-threads,-0.1319380302,2.2949050636,-0.7563891757,https://salsa.debian.org/common-lisp-team/bordeaux-threads, https://github.com/sionescu/bordeaux-threads,618.6993865741,29,15,2 +borgbackup,-0.1416519545,-0.0465534937,-0.1790408063,https://salsa.debian.org/debian/borgbackup, https://github.com/borgbackup/borg.git,5039.1372222222,124,238,0 +bossa,0.0893999446,1.6612263593,-0.4163524525,https://salsa.debian.org/science-team/bossa, https://github.com/shumatech/BOSSA.git,3233.4649537037,7,26,0 +bovo,0.1977918422,1.7658113093,-0.1468625308,https://salsa.debian.org/qt-kde-team/kde/bovo, https://anongit.kde.org/bovo.git,5772.2217476852,5,52,0 +bowtie2,-0.4173214178,-0.233072452,-0.4693075159,https://salsa.debian.org/med-team/bowtie2, https://github.com/BenLangmead/bowtie2,4656.6302777778,6,51,0 +boxbackup,-0.8371100115,0.0115481538,-1.3264648158,https://salsa.debian.org/debian/boxbackup, https://github.com/boxbackup/boxbackup.git,5737.3015625,2,18,0 +bpfcc,-0.3330193269,0.0094186293,-0.4637848209,https://salsa.debian.org/debian/bpfcc, https://github.com/iovisor/bcc.git,3150.8884143519,486,219,0 +bpftrace,-0.0464948593,2.5620937404,-0.6594267011,https://salsa.debian.org/debian/bpftrace, https://github.com/iovisor/bpftrace,2557.1546412037,188,54,5 +bppphyview,-0.3229986971,1.6894004811,-1.0694642402,https://salsa.debian.org/med-team/bppphyview, https://github.com/BioPP/bppphyview,5024.9418055556,0,11,0 +bpython,-0.0434810994,0.6440207576,-0.3070879668,https://salsa.debian.org/sramacher/bpython, https://github.com/bpython/bpython.git,5358.551099537,54,102,0 +braa,0.1885755091,2.423250227,-0.3633397021,https://salsa.debian.org/pkg-security-team/braa, https://github.com/mteg/braa,1136.4603125,1,3,0 +breathe,-0.9912135008,-0.8309389737,-1.0391354827,https://salsa.debian.org/python-team/packages/breathe, https://github.com/michaeljones/breathe.git,5375.5645949074,34,85,0 +breeze,0.9545364258,2.5632272131,0.2647902637,https://salsa.debian.org/qt-kde-team/kde/breeze, https://invent.kde.org/plasma/breeze.git,3513.2914699074,32,111,0 +breeze-gtk,0.8991120261,3.3198742789,0.1093652463,https://salsa.debian.org/qt-kde-team/kde/breeze-gtk, https://invent.kde.org/plasma/breeze-gtk,3131.2482291667,13,50,0 +breeze-plymouth,0.2111805772,2.7205462416,-0.383970555,https://salsa.debian.org/qt-kde-team/kde/breeze-plymouth, https://invent.kde.org/plasma/breeze-plymouth.git,2848.3399074074,0,14,0 +brewtarget,0.484432121,2.8570200814,-0.426583819,https://salsa.debian.org/debian/brewtarget, https://github.com/Brewtarget/brewtarget.git,5451.574212963,13,84,0 +brise,-0.3080442577,1.0357450106,-0.6873683492,https://salsa.debian.org/debian/brise, https://github.com/rime/brise,2544.8862615741,5,23,0 +brlaser,0.4072432263,2.1541552875,-0.0102827943,https://salsa.debian.org/printing-team/brlaser, https://github.com/pdewacht/brlaser,3342.2059837963,4,11,0 +brotli,0.1260775007,0.5454426052,-0.0083599615,https://salsa.debian.org/debian/brotli, https://github.com/google/brotli,3713.0230555556,77,45,0 +bruteforce-luks,0.4506857269,3.9309060924,-0.3441057365,https://salsa.debian.org/pkg-security-team/bruteforce-luks, https://github.com/glv2/bruteforce-luks,1977.6153125,2,8,0 +brutespray,-0.0085744737,2.0622651196,-0.445603786,https://salsa.debian.org/pkg-security-team/brutespray, https://github.com/x90skysn3k/brutespray,2174.873599537,7,10,0 +bsdowl,-1.6019884716,1.757696844,-2.5152928261,https://github.com/michipili/bsdowl/tree/debian,https://github.com/michipili/bsdowl,3910.6843055556,1,6,3 +btchip-python,-1.1812672757,1.4023375583,-1.7414921007,https://salsa.debian.org/python-team/packages/btchip-python, https://github.com/LedgerHQ/btchip-python.git,3019.8821180556,5,10,0 +btfs,-0.1692325715,2.6773757299,-0.8903422829,https://salsa.debian.org/debian/btfs, https://github.com/johang/btfs,2774.3356481482,11,11,0 +bti,-0.2588997909,0.7195438277,-0.7283552221,https://git.toastfreeware.priv.at/debian/bti.git, https://github.com/gregkh/bti.git,3076.6664699074,14,25,0 +btrbk,0.1156617148,2.2848637542,-0.5286650377,https://github.com/digint/btrbk-packaging,https://github.com/digint/btrbk-packaging,2807.8996064815,1,3,0 +btrfs-compsize,0.1058240849,2.8049694932,-0.4831458072,https://github.com/kilobyte/compsize/tree/debian,https://github.com/kilobyte/compsize,1814.0231481482,0,8,0 +budgie-desktop,-0.3863909585,-0.1050655044,-0.4722349352,https://github.com/ubuntubudgie/budgie-desktop/tree/debian,https://github.com/ubuntubudgie/budgie-desktop,3652.4221643519,35,69,1 +budgie-extras,-0.3549864205,1.918871211,-0.8848111475,https://github.com/UbuntuBudgie/budgie-extras/tree/debian,https://github.com/UbuntuBudgie/budgie-extras,2299.353599537,13,15,6 +budgie-indicator-applet,-0.3165710056,1.8644335276,-0.7715039703,https://github.com/UbuntuBudgie/budgie-indicator-applet/tree/debian,https://github.com/UbuntuBudgie/budgie-indicator-applet,2410.5153935185,0,6,1 +bugwarrior,-0.8809894844,0.2634665124,-1.2105334689,https://salsa.debian.org/tasktools-team/bugwarrior, https://github.com/ralphbean/bugwarrior,4376.9631365741,78,74,1 +bugz,-0.9277006463,0.2115708913,-1.3150723206,https://salsa.debian.org/debian/bugz, https://github.com/williamh/pybugz,3185.2465162037,30,9,0 +buildapp,-0.6306447633,1.6220492356,-1.3420391452,https://salsa.debian.org/common-lisp-team/buildapp, https://github.com/xach/buildapp,2095.158275463,0,6,0 +buku,-0.2740106912,1.890358933,-0.7213778249,https://salsa.debian.org/debian/buku, https://github.com/jarun/buku.git,2958.7046527778,37,54,0 +bumblebee,0.3765290668,1.0876582952,0.0091091692,https://salsa.debian.org/nvidia-team/bumblebee, https://github.com/Bumblebee-Project/Bumblebee,3352.0406018519,5,32,2 +bumpversion,-0.6601711919,1.365143433,-1.1463637777,https://salsa.debian.org/debian/bumpversion, https://github.com/c4urself/bump2version,3866.5811574074,20,43,3 +bundler,0.575011715,1.5392481898,0.1010337669,https://salsa.debian.org/ruby-team/bundler, https://github.com/carlhuda/bundler,4417.961099537,292,766,15 +bwm-ng,1.4012192264,3.1707005611,0.5566987616,https://salsa.debian.org/debian/bwm-ng, https://github.com/vgropp/bwm-ng,5022.6577083333,1,12,0 +bzflag,0.8319129626,1.4300701689,0.417821043,https://salsa.debian.org/games-team/bzflag, https://github.com/BZFlag-Dev/bzflag.git,5782.5434259259,11,63,0 +c-ares,0.3441298781,1.1916406284,0.0308943148,https://salsa.debian.org/debian/c-ares, https://github.com/c-ares/c-ares.git,5778.6172222222,133,22,0 +c-blosc,0.080621839,0.890051595,-0.0983252244,https://salsa.debian.org/debian/c-blosc, https://github.com/Blosc/c-blosc,5250.6618865741,8,67,0 +cached-property,-0.0144008396,0.7688411506,-0.147182201,https://salsa.debian.org/tryton-team/cached-property, https://github.com/pydanny/cached-property.git,3487.9884837963,5,25,0 +cacti,0.005360077,0.1223460187,-0.0835443349,https://salsa.debian.org/debian/cacti, https://github.com/Cacti/cacti,5785.2001157407,136,51,4 +cafeobj,-1.8104313277,-1.0153734132,-2.0497300294,https://github.com/CafeOBJ/cafeobj,https://github.com/CafeOBJ/cafeobj,3212.0939699074,0,7,0 +cairo,2.4402200617,3.0214847697,1.9679832222,https://salsa.debian.org/gnome-team/cairo, https://gitlab.freedesktop.org/cairo/cairo,5768.3455324074,189,108,0 +cairocffi,0.8429440111,3.0682185863,-0.0007732119,https://salsa.debian.org/python-team/packages/cairocffi, https://github.com/Kozea/cairocffi.git,3860.8873032408,11,29,0 +cairomm,0.2915809738,1.223013154,0.0127885432,https://salsa.debian.org/gnome-team/cairomm, https://gitlab.freedesktop.org/cairo/cairomm,5773.933125,19,12,0 +cairosvg,-0.1692755192,0.8278753397,-0.4174492488,https://salsa.debian.org/python-team/packages/cairosvg, https://github.com/Kozea/CairoSVG,4844.4623726852,8,45,0 +caja,1.057062654,1.8090309876,0.5578935766,https://salsa.debian.org/debian-mate-team/caja, https://github.com/mate-desktop/caja.git,4392.0400925926,58,63,0 +caja-actions,0.1964661335,2.0196315905,-0.3640114639,https://salsa.debian.org/debian-mate-team/caja-actions, https://github.com/mate-desktop/caja-actions,4195.368599537,3,13,0 +caja-admin,0.3402863165,2.9173444791,-0.2366884449,https://salsa.debian.org/debian-mate-team/caja-admin, https://github.com/infirit/caja-admin,2910.0051851852,15,12,0 +caja-dropbox,1.4193798685,4.6529613875,0.2366380339,https://salsa.debian.org/debian-mate-team/caja-dropbox, https://github.com/mate-desktop/caja-dropbox.git,4038.0196990741,13,26,0 +caja-extensions,0.9911860003,3.1294289964,0.1496506623,https://salsa.debian.org/debian-mate-team/caja-extensions, https://github.com/mate-desktop/caja-extensions.git,3680.0453125,11,27,0 +caja-mediainfo,-0.6346427686,1.4919485733,-1.2169751217,https://salsa.debian.org/debian-mate-team/caja-mediainfo, https://github.com/linux-man/caja-mediainfo-tab,1186.6267013889,1,3,0 +caja-rename,0.3395336681,2.9850659825,-0.2433789434,https://salsa.debian.org/debian-mate-team/caja-rename, https://github.com/tari01/caja-rename,1145.7519328704,25,4,0 +cakephp,-0.3043228826,0.0640461085,-0.4041778108,https://salsa.debian.org/debian/cakephp, https://github.com/cakephp/cakephp.git,5783.6353125,209,780,0 +calamares,-0.4556528784,0.9463104709,-0.9112230355,https://salsa.debian.org/qt-kde-team/extras/calamares, https://github.com/calamares/calamares.git,3478.1256828704,53,110,0 +caml-crush,-2.8391153716,-0.4395849289,-3.5955802666,https://github.com/caml-pkcs11/caml-crush,https://github.com/caml-pkcs11/caml-crush,3062.2642708333,0,13,0 +caml-mode,1.3298624983,3.185541562,0.4064732865,https://salsa.debian.org/ocaml-team/caml-mode, https://github.com/ocaml/caml-mode.git,5551.4899884259,7,24,0 +camlidl,-0.2337547004,0.0709833608,-0.3164982977,https://salsa.debian.org/ocaml-team/camlidl, https://github.com/xavierleroy/camlidl,2560.0011689815,6,6,0 +camlimages,-0.4010871836,0.060420561,-0.6271548621,https://salsa.debian.org/ocaml-team/camlimages, https://gitlab.com/camlspotter/camlimages.git,4968.0932638889,0,9,0 +camlp4,0.1711187334,1.4277083804,-0.1545568318,https://salsa.debian.org/ocaml-team/camlp4, https://github.com/ocaml/camlp4.git,5404.4002199074,6,40,0 +camomile,-0.1749647414,0.504631672,-0.4116548857,https://salsa.debian.org/ocaml-team/camomile, https://github.com/yoriyuki/Camomile.git,3699.9040972222,2,16,0 +camp,-0.0635736976,2.2422646477,-0.8678185189,https://salsa.debian.org/med-team/camp, https://github.com/IRCAD/camp.git,3917.821412037,2,16,0 +can-utils,-0.3151818427,1.0524810842,-0.6128426897,https://salsa.debian.org/debian/can-utils, https://github.com/linux-can/can-utils.git,5750.4572916667,42,46,0 +cantata,-0.0809605588,0.4677339696,-0.2983233224,https://salsa.debian.org/multimedia-team/cantata, https://github.com/CDrummond/cantata,3748.1966782408,63,86,0 +capistrano,-0.0128603976,1.5719940094,-0.7186306472,https://salsa.debian.org/ruby-team/capistrano, https://github.com/capistrano/capistrano.git,5751.7282060185,85,387,0 +capnproto,0.2688312178,0.9760274096,-0.0981830892,https://github.com/thomaslee/capnproto-debian,https://github.com/thomaslee/capnproto-debian,3752.338587963,3,4,0 +capstone,0.3920916582,1.3230918938,0.0241868852,https://salsa.debian.org/pkg-security-team/capstone, https://github.com/aquynh/capstone,3658.3632638889,170,182,0 +carbon-c-relay,-1.7206703797,2.1186998142,-2.7912817518,https://salsa.debian.org/debian/carbon-c-relay, https://github.com/grobian/carbon-c-relay.git,3376.0489467593,8,36,0 +care,-0.2836237154,3.5038071749,-1.3460010784,https://github.com/ivoire/CARE-debian,https://github.com/ivoire/CARE-debian,2.7190856481,0,2,0 +caribou,3.5930048106,7.2401716828,2.1496065079,https://salsa.debian.org/gnome-team/caribou, https://gitlab.gnome.org/GNOME/caribou.git,4787.5027199074,115,137,0 +casacore-data-observatories,-0.1932098569,1.2412651155,-0.4565906785,https://salsa.debian.org/debian-astro-team/casacore-data-observatories, https://github.com/casacore/observatories-table.git,766.9570138889,1,3,0 +casparcg-server,-1.3226747691,1.9734495135,-2.3421884046,https://salsa.debian.org/multimedia-team/casparcg-server/, https://github.com/CasparCG/server,4812.1990740741,35,54,0 +cassbeam,-0.2590451087,0.999251768,-0.6449745997,https://salsa.debian.org/debian-astro-team/cassbeam, https://github.com/ratt-ru/cassbeam,1099.9010185185,0,5,0 +castle-game-engine,-0.1365250645,2.1882336626,-1.0409902871,https://salsa.debian.org/pascal-team/castle-game-engine, https://github.com/castle-engine/castle-engine.git,5781.716412037,3,36,0 +castxml,-0.510369201,0.0369337092,-0.6487747613,https://salsa.debian.org/med-team/castxml, https://github.com/CastXML/CastXML.git,3541.9820138889,14,7,0 +casync,-1.0162004091,-0.313916552,-1.2265268627,https://salsa.debian.org/systemd-team/casync, https://github.com/systemd/casync,2466.7584606482,38,15,0 +catch2,-2.7114400828,-1.0827595966,-3.0183386625,https://salsa.debian.org/debian/catch2, https://github.com/catchorg/Catch2.git,4779.0219907407,332,92,0 +catcodec,-1.1685609799,1.0772762213,-1.6183880518,https://salsa.debian.org/openttd-team/catcodec, https://github.com/OpenTTD/catcodec.git,4292.8177314815,2,4,0 +catimg,-0.0953582269,2.1605928046,-0.6844708001,https://salsa.debian.org/debian/catimg, https://github.com/posva/catimg.git,3000.6790046296,7,14,0 +caveexpress,-0.4341110971,0.5694718441,-0.5965828946,https://salsa.debian.org/games-team/caveexpress, https://github.com/mgerhardy/caveexpress,2582.468125,2,6,0 +cavezofphear,0.0722256397,3.4094980689,-0.7199285527,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,23.0470601852,0,1,0 +cbatticon,-0.6634198756,2.0334034925,-1.2638833309,https://salsa.debian.org/debian/cbatticon, https://github.com/valr/cbatticon.git,4175.7122800926,3,25,0 +cbflib,0.9354285947,4.3539203092,-0.1929526206,https://salsa.debian.org/science-team/cbflib, https://github.com/yayahjb/cbflib,5636.0790740741,1,18,0 +cbm,0.2175441651,1.9827159385,-0.3872945166,https://salsa.debian.org/debian/cbm, https://github.com/resurrecting-open-source-projects/cbm,918.9922337963,1,3,0 +ccbuild,-0.9629469603,0.1146367137,-1.3836463029,https://salsa.debian.org/debian/ccbuild, https://github.com/bneijt/ccbuild.git,4764.8878703704,1,5,0 +cccc,1.1630655625,3.7723724067,0.0933849486,https://salsa.debian.org/debian/cccc, https://github.com/sarnold/cccc,2703.0782638889,1,7,0 +ccd2iso,0.361667663,2.3145122267,-0.2829342926,https://github.com/paulproteus/ccd2iso-debian,https://github.com/paulproteus/ccd2iso-debian,10.0830555556,1,1,0 +ccdproc,-0.467491092,0.1536938214,-0.6176069184,https://salsa.debian.org/debian-astro-team/ccdproc, https://github.com/astropy/ccdproc.git,3686.1109259259,2,59,0 +cciss-vol-status,0.3052169652,2.3584474198,-0.3410082692,https://salsa.debian.org/debian/cciss-vol-status, https://git.code.sf.net/p/cciss/web,4649.9351736111,0,6,0 +cclive,0.3075023734,1.0246036879,-0.0680117934,https://github.com/mogaal/cclive,https://github.com/mogaal/cclive,1632.909375,1,4,0 +ccsm,1.2419446764,2.5813765175,0.5089538368,https://salsa.debian.org/compiz-team/ccsm, https://gitlab.com/compiz/ccsm.git,5486.8195486111,20,20,0 +cd-discid,0.6925316992,3.3171474044,-0.0825478541,https://github.com/taem/cd-discid/tree/deb,https://github.com/taem/cd-discid,2591.0086574074,2,2,0 +cdist,-0.5850504862,2.1759446897,-1.4128857954,https://salsa.debian.org/debian/cdist, https://code.ungleich.ch/ungleich-public/cdist,4573.4811226852,22,116,0 +cecilia,2.1194137265,4.5889103483,0.9517190856,https://salsa.debian.org/multimedia-team/cecilia, https://github.com/belangeo/cecilia5.git,2818.9053240741,0,14,0 +cellwriter,1.0089121851,3.1682961137,-0.0123490019,https://salsa.debian.org/debian/cellwriter, https://github.com/risujin/cellwriter,1174.0054050926,1,2,0 +cen64,-0.0299112832,2.2614422439,-0.6566748344,https://github.com/dh4/cen64-debian/,https://github.com/dh4/cen64-debian,1926.2346064815,0,5,0 +cen64-qt,-0.752499837,1.4603763669,-1.3157313926,https://github.com/dh4/cen64-qt-debian/,https://github.com/dh4/cen64-qt-debian,1637.4857986111,0,4,0 +centreon-clib,-3.2868334023,-0.8614963308,-3.7498045046,https://salsa.debian.org/centreon-team/centreon-clib, https://github.com/centreon/centreon-clib.git,4179.8511458333,9,17,0 +ceres-solver,0.1460072522,1.3191232539,-0.3299207501,https://salsa.debian.org/science-team/ceres-solver, https://github.com/ceres-solver/ceres-solver.git,4197.5254166667,26,96,0 +certspotter,-1.0333689914,-0.0755768851,-1.2332167803,https://salsa.debian.org/go-team/packages/certspotter, https://github.com/sslmate/certspotter,2838.7901736111,7,8,2 +cewl,-0.0142294382,1.8140197076,-0.3642449144,https://salsa.debian.org/pkg-security-team/cewl, https://github.com/digininja/CeWL.git,2751.2389351852,7,13,0 +cffi,-0.0191807041,1.3539135206,-0.5415873207,https://salsa.debian.org/common-lisp-team/cffi, https://github.com/cffi/cffi.git,5610.8229166667,73,39,0 +cftime,-0.053984567,2.1351568503,-0.4726880086,https://salsa.debian.org/debian-gis-team/cftime/, https://github.com/Unidata/cftime,5698.2503472222,7,40,1 +cgroupfs-mount,0.5950079509,2.246233345,0.0389645239,https://github.com/tianon/cgroupfs-mount,https://github.com/tianon/cgroupfs-mount,2931.2437847222,0,7,0 +chafa,0.2729454746,2.5277999875,-0.1637443656,https://salsa.debian.org/debian/chafa, https://github.com/hpjansson/chafa.git,2095.0478819445,25,6,0 +chaosreader,0.051219731,1.9660310042,-0.36928528,https://salsa.debian.org/pkg-security-team/chaosreader, https://github.com/brendangregg/Chaosreader,66.7731134259,0,4,0 +charls,0.0895204966,0.7433078443,-0.0746073455,https://salsa.debian.org/med-team/charls, https://github.com/team-charls/charls.git,5412.7639236111,9,14,0 +charmtimetracker,-0.4441384118,1.2230812043,-0.8796829957,https://salsa.debian.org/qt-kde-team/extras/charmtimetracker, https://github.com/KDAB/Charm,5169.2869097222,10,73,1 +chaussette,-2.3973132585,0.1079287529,-3.3352905378,https://github.com/circus-tent/chaussette,https://github.com/circus-tent/chaussette,1782.6774768519,1,42,0 +checkpolicy,-0.0767985152,0.1858102911,-0.1733620099,https://salsa.debian.org/selinux-team/checkpolicy, https://github.com/SELinuxProject/selinux,5592.8363425926,179,30,0 +cheesecutter,-0.8909922436,1.8346147461,-1.5014964432,https://salsa.debian.org/multimedia-team/cheesecutter, https://github.com/theyamo/CheeseCutter,2936.8167824074,4,11,0 +cheetah,0.2580754956,1.2098434945,-0.0894485619,https://salsa.debian.org/python-team/packages/cheetah, https://github.com/CheetahTemplate3/cheetah3.git,5732.7751157407,17,23,0 +chemical-mime-data,0.9334467969,3.3064633303,0.1037865392,https://salsa.debian.org/debichem-team/chemical-mime-data, https://github.com/dleidert/chemical-mime,3567.6745833333,0,2,0 +chemps2,-1.0331384848,-0.1979810762,-1.3111906152,https://salsa.debian.org/debichem-team/chemps2, https://github.com/SebWouters/CheMPS2,3010.6861342593,0,9,0 +cherrypy3,0.9894374666,2.5488208894,0.2945630867,https://salsa.debian.org/python-team/packages/cherrypy3, https://github.com/cherrypy/cherrypy.git,5747.0039583333,46,137,0 +chkboot,-0.6991368887,1.7222009501,-1.2449866348,https://salsa.debian.org/debian/chkboot, https://github.com/grazzolini/chkboot,1967.5233564815,3,7,1 +chmlib,-0.0246885057,0.1402996941,-0.0912132643,https://salsa.debian.org/debian/chmlib, https://github.com/jedwing/CHMLib.git,40.6617708333,0,1,0 +chocolate-doom,-0.1962129404,0.410332976,-0.4446404798,https://salsa.debian.org/games-team/chocolate-doom, https://github.com/chocolate-doom/chocolate-doom.git,5606.8747569445,24,81,0 +chromaprint,0.3600324626,1.3936683063,0.0316097075,https://salsa.debian.org/multimedia-team/chromaprint, https://github.com/acoustid/chromaprint,4607.495162037,12,19,3 +chuck,1.0629400647,3.5097730621,-0.0355368923,https://salsa.debian.org/debian/chuck, https://github.com/ccrma/chuck,4777.8660300926,19,55,0 +ciderwebmail,-0.6952594282,1.439044732,-1.4225189003,https://salsa.debian.org/perl-team/modules/packages/ciderwebmail, https://github.com/CiderWebmail/CiderWebmail.git,5148.9571990741,1,13,0 +ciftilib,-2.2337114106,-0.584429453,-2.6009802633,https://salsa.debian.org/med-team/ciftilib, https://github.com/Washington-University/CiftiLib,3498.0756944445,2,7,0 +cimg,-0.3086549748,0.4682516606,-0.6897965127,https://salsa.debian.org/science-team/cimg, https://github.com/GreycLab/CImg.git,3104.3731481482,1,34,0 +cinnamon,0.6734033387,1.0299924885,0.4090219209,https://salsa.debian.org/cinnamon-team/cinnamon, https://github.com/linuxmint/cinnamon.git,4384.6542708333,233,185,0 +cinnamon-control-center,0.2504784151,0.929266304,-0.0203648632,https://salsa.debian.org/cinnamon-team/cinnamon-control-center, https://github.com/linuxmint/cinnamon-control-center.git,3966.1298032407,18,24,0 +cinnamon-desktop,0.0054443417,0.4256880245,-0.0943315058,https://salsa.debian.org/cinnamon-team/cinnamon-desktop, https://github.com/linuxmint/cinnamon-desktop.git,3741.0692476852,26,27,0 +cinnamon-menus,0.3574538961,2.081580103,-0.0748356792,https://salsa.debian.org/cinnamon-team/cinnamon-menus, https://github.com/linuxmint/cinnamon-menus.git,3589.8994560185,11,10,0 +cinnamon-screensaver,0.8810622049,2.2465149679,0.2463678228,https://salsa.debian.org/cinnamon-team/cinnamon-screensaver, https://github.com/linuxmint/cinnamon-screensaver.git,3984.1461689815,25,25,0 +cinnamon-session,0.2019726211,0.7003204043,-0.0198993963,https://salsa.debian.org/cinnamon-team/cinnamon-session, https://github.com/linuxmint/cinnamon-session.git,3830.8484259259,16,29,0 +cinnamon-settings-daemon,0.2186511293,0.884576048,-0.0329180107,https://salsa.debian.org/cinnamon-team/cinnamon-settings-daemon, https://github.com/linuxmint/cinnamon-settings-daemon.git,3830.7098842593,27,33,0 +citeproc-py,0.2650734109,3.200403032,-0.5379993649,https://salsa.debian.org/python-team/packages/citeproc-py, https://github.com/brechtm/citeproc-py,4168.381087963,3,13,0 +cjk,0.9697104519,1.6795645993,0.5078842706,https://github.com/debian-tex/cjk,https://github.com/debian-tex/cjk,4969.9469328704,1,7,0 +cjose,0.2954038942,3.3240815436,-0.6206035693,https://salsa.debian.org/debian/cjose, https://github.com/zmartzone/cjose.git,2698.734525463,9,16,0 +cjs,0.3334254948,1.2158627921,-0.0031931609,https://salsa.debian.org/cinnamon-team/cjs, https://github.com/linuxmint/cjs.git,3771.5652546296,71,77,0 +cjson,-0.6378303304,1.1377366916,-1.0824295673,https://salsa.debian.org/debian/cjson, https://github.com/DaveGamble/cJSON.git,4334.9435300926,37,63,0 +ckbuilder,-1.3486815873,1.7603160909,-2.1472801921,https://salsa.debian.org/js-team/ckbuilder, https://github.com/ckeditor/ckbuilder.git,3366.2307291667,1,11,0 +ckeditor,-0.0433499999,0.8730767705,-0.4253623047,https://salsa.debian.org/js-team/ckeditor, https://github.com/ckeditor/ckeditor4,4183.8812962963,131,85,0 +cl-csv,-0.1843136147,2.282501642,-0.9607356223,https://salsa.debian.org/common-lisp-team/cl-csv, https://github.com/AccelerationNet/cl-csv,3373.8361342593,0,10,0 +cl-fiveam,0.1854885673,3.3947629733,-0.6856526182,https://salsa.debian.org/common-lisp-team/cl-fiveam, https://github.com/sionescu/fiveam.git,5674.287337963,16,9,0 +cl-ftp,-0.6205750271,2.0407172858,-1.4348634933,https://github.com/pinterface/cl-ftp,https://github.com/pinterface/cl-ftp,3252.9678009259,1,3,0 +cl-github-v3,-0.5258867542,3.1486982913,-1.5778685827,https://github.com/hanshuebner/cl-github-v3,https://github.com/hanshuebner/cl-github-v3,2986.6350810185,1,3,0 +cl-ironclad,-0.2926194741,2.5462973619,-0.9228966528,https://salsa.debian.org/common-lisp-team/cl-ironclad, https://github.com/sharplispers/ironclad,5005.7061458333,20,31,0 +cl-local-time,-0.1155735019,3.1988484402,-1.0582604602,http://github.com/dlowe-net/local-time,http://github.com/dlowe-net/local-time,5698.7149884259,7,50,0 +cl-lparallel,-0.3212127102,2.5346068068,-1.0978335516,https://github.com/lmj/lparallel,https://github.com/lmj/lparallel,2019.918599537,0,5,0 +cl-markdown,-0.704735028,1.4518477641,-1.1406727407,https://github.com/gwkkwg/cl-markdown,https://github.com/gwkkwg/cl-markdown,5675.8904513889,2,4,0 +cl-plus-ssl,-0.132484344,2.3751577623,-0.8618444451,https://salsa.debian.org/common-lisp-team/cl-plus-ssl, https://github.com/cl-plus-ssl/cl-plus-ssl,5623.3226967593,6,44,0 +cl-split-sequence,0.2384568855,3.5363251082,-0.670056545,https://salsa.debian.org/common-lisp-team/cl-split-sequence, https://github.com/sharplispers/split-sequence,3972.6220023148,4,5,0 +clasp,-0.3006037836,-0.1147250554,-0.3428180636,https://salsa.debian.org/science-team/clasp, https://github.com/potassco/clasp,3296.9262847222,3,6,0 +classified-ads,-2.2983699343,-0.0320591619,-2.7796278861,https://github.com/operatornormal/classified-ads,https://github.com/operatornormal/classified-ads,3053.9196180556,5,9,0 +clazy,0.1404359468,2.5093165353,-0.5691589794,https://salsa.debian.org/qt-kde-team/extras/clazy, https://invent.kde.org/sdk/clazy,3105.167037037,40,60,0 +cld2,0.6043981268,3.0399456446,-0.1481790802,https://salsa.debian.org/debian/cld2, https://github.com/CLD2Owners/cld2,808.2021875,0,8,0 +clinfo,0.3372645422,1.6891188178,-0.1400560842,https://salsa.debian.org/opencl-team/clinfo, https://github.com/Oblomov/clinfo,3809.3789236111,7,13,0 +clipit,1.4937392865,3.438028355,0.6071495445,https://salsa.debian.org/debian/clipit, https://github.com/CristianHenzel/ClipIt.git,3780.8276736111,15,24,0 +cloc,0.3407193618,2.1059135948,-0.1842658951,https://salsa.debian.org/debian/cloc, https://github.com/AlDanial/cloc.git,3014.5104282407,24,101,0 +clonezilla,0.9651000122,3.1683529137,0.1007527307,https://salsa.debian.org/georgesk/clonezilla, https://gitlab.com/stevenshiau/clonezilla.git,4136.9575231482,0,6,0 +cloudpickle,-0.1354447042,0.2270927649,-0.2017633057,https://salsa.debian.org/python-team/packages/cloudpickle, https://github.com/cloudpipe/cloudpickle,3146.0455208333,44,23,0 +cloudprint,-0.505823507,0.1136801794,-0.7195389902,https://github.com/davesteele/cloudprint-service,https://github.com/davesteele/cloudprint-service,3095.4250115741,18,20,0 +cloudsql-proxy,-2.2248074453,0.6703572128,-2.9432212873,https://salsa.debian.org/go-team/packages/cloudsql-proxy, https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,3012.7314930556,90,36,0 +clp,0.2652115708,1.1339103175,0.0052842839,https://salsa.debian.org/science-team/clp, https://github.com/coin-or/Clp,5781.2980092593,3,20,0 +clustershell,0.1926587092,2.9139643592,-0.6338179571,https://salsa.debian.org/python-team/packages/clustershell, https://github.com/cea-hpc/clustershell,5641.4586111111,20,15,3 +clutter-1.0,1.966703332,3.5052159861,1.1526281684,https://salsa.debian.org/gnome-team/clutter, https://gitlab.gnome.org/GNOME/clutter.git,5312.2263078704,208,178,0 +cm-super,0.5096098115,1.5619464554,0.0498213871,https://github.com/debian-tex/cm-super,https://github.com/debian-tex/cm-super,5018.3687962963,2,6,0 +cmake-extras,-0.080262689,1.2397144379,-0.4501449416,https://salsa.debian.org/debian-ayatana-team/cmake-extras, https://gitlab.com/ubports/core/cmake-extras,3427.8051736111,6,25,0 +cmatrix,1.2823687579,3.3153936495,0.3805014383,https://salsa.debian.org/debian/cmatrix, https://github.com/abishekvashok/cmatrix.git,2359.866400463,20,18,0 +cmd2,0.1334383039,1.2031077103,-0.2263597595,https://salsa.debian.org/debian/python-cmd2, https://github.com/python-cmd2/cmd2.git,5687.0739699074,21,45,0 +cmst,0.1079880974,1.6143908994,-0.2516878595,https://salsa.debian.org/lxqt-team/cmst, https://github.com/andrew-bibb/cmst.git,3527.0297222222,56,29,0 +cmus,0.9622816384,1.8749062218,0.4146477425,https://salsa.debian.org/multimedia-team/cmus, https://github.com/cmus/cmus,5733.6452546296,98,69,1 +coffeescript,0.7544479231,2.3245870282,0.1141424879,https://salsa.debian.org/js-team/coffeescript, https://github.com/jashkenas/coffeescript,5027.7445833333,45,236,0 +cogl,3.2554205439,5.8785425587,1.9896580775,https://salsa.debian.org/gnome-team/cogl, https://gitlab.gnome.org/GNOME/cogl,4994.8257523148,113,128,0 +coinor-cbc,0.9694072469,2.540214238,0.2917884667,https://salsa.debian.org/science-team/coinor-cbc, https://github.com/coin-or/cbc,5772.0463773148,7,31,1 +coinor-ipopt,0.5832138621,1.8467840552,-0.023431241,https://github.com/ghorn/debian-coinor-ipopt.git,https://github.com/ghorn/debian-coinor-ipopt.git,39.8457986111,1,2,0 +coinor-osi,0.4130292905,2.0458340629,0.0007558222,https://salsa.debian.org/science-team/coinor-osi, https://github.com/coin-or/Osi,5760.8763078704,5,23,0 +coinst,-2.1191156396,-0.1758133987,-2.7007167402,https://salsa.debian.org/ocaml-team/coinst, https://github.com/vouillon/coinst,2037.998599537,0,10,0 +coinutils,0.5173058529,1.7235167137,0.083670866,https://salsa.debian.org/science-team/coinutils, https://github.com/coin-or/CoinUtils,5778.8880671296,5,20,0 +collada-dom,0.691454203,3.6624920638,-0.1343215008,https://salsa.debian.org/science-team/collada-dom, https://github.com/rdiankov/collada-dom,2502.5084606482,0,12,0 +colmap,-0.7206786583,0.6412726598,-1.2145608955,https://salsa.debian.org/tar/colmap, https://github.com/colmap/colmap,2802.2067824074,103,16,0 +colord-gtk,0.7697552931,2.9826639125,0.077041879,https://salsa.debian.org/debian/colord-gtk, https://github.com/hughsie/colord-gtk.git,4151.4261111111,7,4,0 +colormake,0.4957489072,1.6979687579,-0.1003336178,https://salsa.debian.org/debian/colormake, https://github.com/pagekite/Colormake,1830.1740162037,0,12,0 +colorspacious,-0.5821614466,2.0041319598,-1.1596382365,https://salsa.debian.org/python-team/packages/colorspacious, https://github.com/njsmith/colorspacious.git,1894.8289351852,2,10,0 +colortest-python,-0.3857845184,0.9188572345,-0.8063133571,https://salsa.debian.org/python-team/packages/colortest-python, https://github.com/eikenb/terminal-colors,4692.3352777778,1,2,0 +colpack,0.2017867043,1.9302260292,-0.3695903388,https://salsa.debian.org/science-team/colpack, https://github.com/CSCsw/ColPack,1916.7757175926,1,22,0 +comitup,-1.522007504,0.0892141487,-1.9480210845,https://github.com/davesteele/comitup,https://github.com/davesteele/comitup,2830.0050115741,9,13,0 +commonmark-bkrs,-0.1141650084,1.2511686194,-0.3702327483,https://salsa.debian.org/python-team/packages/commonmark-bkrs, https://github.com/rolandshoemaker/CommonMark-py,472.4580902778,0,5,0 +compiz,0.8413795533,1.1750798074,0.5763951594,https://salsa.debian.org/compiz-team/compiz-reloaded, https://gitlab.com/compiz/compiz-core.git,5514.1350925926,32,37,0 +compiz-bcop,-0.5214417282,2.1812941739,-1.1735840906,https://salsa.debian.org/compiz-team/compiz-bcop, https://gitlab.com/compiz/compiz-bcop.git,4421.7565509259,2,10,0 +compiz-plugins-experimental,-0.3279832678,1.6691069298,-0.7834186201,https://salsa.debian.org/compiz-team/compiz-plugins-experimental, https://gitlab.com/compiz/compiz-plugins-experimental.git,4636.1669791667,11,28,0 +compiz-plugins-extra,0.1542988545,2.0892871375,-0.3010821331,https://salsa.debian.org/compiz-team/compiz-plugins-extra, https://gitlab.com/compiz/compiz-plugins-extra.git,5322.9094444445,18,32,0 +compiz-plugins-main,0.2097848599,2.2720043407,-0.2671888208,https://salsa.debian.org/compiz-team/compiz-plugins-main, https://gitlab.com/compiz/compiz-plugins-main.git,5322.9050925926,17,37,0 +compizconfig-python,1.4202868693,4.2791645353,0.3516874024,https://salsa.debian.org/compiz-team/compizconfig-python, https://gitlab.com/compiz/compizconfig-python.git,4433.4365046296,4,9,0 +composer,-0.0017503834,0.4784519141,-0.1542939461,https://salsa.debian.org/php-team/pear/composer, https://github.com/composer/composer,4633.170462963,391,890,8 +compton-conf,0.0365558038,2.3355995915,-0.4385691023,https://salsa.debian.org/lxqt-team/compton-conf, https://github.com/lxqt/compton-conf.git,3571.8171412037,69,35,0 +comskip,-1.129218823,2.0092827394,-1.9225171561,https://salsa.debian.org/debian/comskip, https://github.com/erikkaashoek/Comskip.git,5415.4031481482,6,28,0 +concordance,-0.4625050573,0.3139503984,-0.7573354842,https://salsa.debian.org/debian/concordance, https://github.com/jaymzh/concordance.git,5701.1186458333,1,3,0 +config-package-dev,-0.2056225256,1.2522724234,-0.6633860362,https://github.com/sipb/config-package-dev,https://github.com/sipb/config-package-dev,3585.0969444445,4,6,0 +conmon,0.0545452,2.8056966486,-0.7248964055,https://salsa.debian.org/podman-team/conmon, https://github.com/containers/conmon,1950.1181597222,27,41,0 +connect-proxy,0.6639299634,3.4943269761,-0.2623886668,https://salsa.debian.org/debian/connect-proxy, https://github.com/gotoh/ssh-connect,3911.0326273148,0,6,0 +connectome-workbench,0.0811043258,2.6788022329,-0.7528644786,http://github.com/neurodebian/workbench,http://github.com/neurodebian/workbench,3495.7424652778,3,16,0 +connman,0.337378758,0.8885939748,0.0196191208,https://salsa.debian.org/debian/connman, https://git.kernel.org/pub/scm/network/connman/connman.git,5771.8879861111,290,8,0 +conserver,-0.5522688783,0.0570588023,-0.8821891544,https://salsa.debian.org/debian/conserver, https://github.com/conserver/conserver.git,4671.668912037,1,15,0 +constantly,0.8509284475,3.7618528736,0.0151388634,https://salsa.debian.org/python-team/packages/constantly, https://github.com/twisted/constantly.git,2708.6915162037,2,14,0 +construct,0.0788197082,1.7517541346,-0.4669280439,https://salsa.debian.org/python-team/packages/construct, https://github.com/construct/construct.git,5194.628587963,27,53,0 +context,0.3449326884,0.8438807473,0.0662940568,https://github.com/debian-tex/context,https://github.com/debian-tex/context,5666.6297800926,2,10,0 +context-modules,0.2805651463,2.5200169996,-0.1441758839,https://github.com/debian-tex/context-modules,https://github.com/debian-tex/context-modules,4444.3460763889,3,7,0 +contextfree,-0.3442355768,0.7562945788,-0.8321584754,https://github.com/MtnViewJohn/context-free,https://github.com/MtnViewJohn/context-free,2911.319537037,1,9,0 +convertall,0.1771895993,1.8709004223,-0.3855879122,https://salsa.debian.org/qt-kde-team/extras/convertall, https://github.com/doug-101/ConvertAll.git,72.0215277778,1,2,0 +convertdate,-1.0779704926,1.5263503581,-1.6372696683,https://salsa.debian.org/python-team/packages/convertdate, https://github.com/fitnr/convertdate,2873.5651041667,10,11,0 +cool-retro-term,-0.1638065917,2.2338371828,-0.670026222,https://salsa.debian.org/tar/cool-retro-term, https://github.com/Swordfish90/cool-retro-term,3050.8032175926,23,53,0 +copyright-update,-0.5521971605,1.8066389929,-1.1431761187,https://salsa.debian.org/debian/copyright-update, https://github.com/jaalto/project--copyright-update,3367.8622453704,0,1,0 +coq,1.0112440064,1.8992232667,0.4540481704,https://salsa.debian.org/ocaml-team/coq, https://github.com/coq/coq,5785.2775347222,56,228,4 +core-cache-clojure,-0.5610215639,2.4088514058,-1.3030738883,https://salsa.debian.org/clojure-team/core-cache-clojure, https://github.com/clojure/core.cache,4284.5170138889,8,15,0 +corosync,0.8070770337,1.5017317059,0.3891121568,https://salsa.debian.org/ha-team/corosync, https://github.com/corosync/corosync,5608.2945138889,81,22,0 +corsix-th,-0.4567053223,1.1855378627,-0.8679129216,https://salsa.debian.org/games-team/corsix-th, https://github.com/CorsixTH/CorsixTH.git,5111.7033217593,36,117,0 +coturn,1.0284731719,3.2968127062,0.1231174963,https://github.com/coturn/coturn/tree/debian/master,https://github.com/coturn/coturn,3518.6321412037,69,102,2 +cpm,1.5003055459,4.3529106107,0.2590769317,https://github.com/comotion/cpm,https://github.com/comotion/cpm,3307.6083912037,0,16,3 +cppad,-0.3030038415,2.0775944536,-0.851490117,https://salsa.debian.org/science-team/cppad, https://github.com/coin-or/CppAD,5756.9988773148,3,15,0 +cppo,-1.4562480515,0.6841532188,-1.9614183142,https://salsa.debian.org/ocaml-team/cppo, https://github.com/mjambon/cppo.git,1459.7919444445,3,28,0 +cppreference-doc,0.7174863837,3.9751588838,-0.3114715055,https://github.com/p12tic/cppreference-doc-debian,https://github.com/p12tic/cppreference-doc-debian,3405.6815740741,2,6,0 +cpprest,0.5165066192,2.1587080453,-0.0954021916,https://salsa.debian.org/debian/cpprest, https://github.com/Microsoft/cpprestsdk,3391.4284606482,72,133,0 +cpu-x,-0.1831351513,2.2662774746,-0.7177695187,https://salsa.debian.org/debian/cpu-x, https://github.com/X0rg/CPU-X.git,2770.4909606482,196,13,0 +cqrlib,-0.1411361724,1.4544569834,-0.4267040837,https://salsa.debian.org/science-team/cqrlib, https://github.com/yayahjb/cqrlib.git,2926.9641203704,0,1,0 +cqrlog,-0.2754280129,0.46668029,-0.6463058423,https://salsa.debian.org/debian-hamradio-team/cqrlog, https://github.com/ok2cqr/cqrlog.git,3907.9930208333,3,34,0 +cracklib2,0.8221554988,1.3380074207,0.4850698634,https://salsa.debian.org/debian/pkg-cracklib/, https://github.com/cracklib/cracklib.git,5758.1233564815,30,18,0 +cram,-1.5582814623,0.4044307848,-2.037358985,https://salsa.debian.org/python-team/packages/cram, https://github.com/brodie/cram,4115.6696527778,3,11,0 +crispy-doom,-0.774189958,0.0446191404,-0.9207268539,https://salsa.debian.org/debian/crispy-doom, https://github.com/fabiangreffrath/crispy-doom.git,4757.0878587963,50,87,0 +critcl,0.1685050423,4.7425882465,-1.273547806,https://salsa.debian.org/tcltk-team/critcl, https://github.com/andreas-kupries/critcl,5635.5840046296,1,15,2 +criu,0.5593289619,1.6725850261,0.0643880749,https://salsa.debian.org/debian/criu, https://github.com/checkpoint-restore/criu.git,4462.4346296296,216,14,0 +crmsh,0.139486277,1.104085265,-0.2992476017,https://salsa.debian.org/ha-team/crmsh, https://github.com/ClusterLabs/crmsh,5577.4854166667,18,71,1 +crudini,-0.041794892,2.3024789133,-0.7295472012,https://salsa.debian.org/python-team/packages/crudini, https://github.com/pixelb/crudini,3928.4521064815,7,8,0 +cruft,1.801661645,2.7360925805,1.1501879975,https://github.com/a-detiste/cruft,https://github.com/a-detiste/cruft,5211.5065740741,2,8,0 +cruft-ng,0.142059124,2.3097088035,-0.5171739502,https://github.com/a-detiste/cruft-ng,https://github.com/a-detiste/cruft-ng,3368.4031018519,2,10,0 +cryfs,-0.1323512993,0.8693806221,-0.3694530273,https://github.com/davesteele/cryfs,https://github.com/davesteele/cryfs,3180.9594560185,28,15,0 +cryptsetup,0.2494485038,0.3269822446,0.187044728,https://salsa.debian.org/cryptsetup-team/cryptsetup, https://gitlab.com/cryptsetup/cryptsetup,5746.1947222222,67,48,0 +csmith,-1.6482767012,0.329702465,-2.1893931608,https://salsa.debian.org/debian/csmith, https://github.com/csmith-project/csmith.git,4565.6397800926,7,39,0 +csound,0.6390356073,1.1995058757,0.2743698966,https://salsa.debian.org/multimedia-team/csound, https://github.com/csound/csound.git,5778.3632060185,14,113,0 +csound-manual,-0.0333628058,1.3634203852,-0.4995076792,https://salsa.debian.org/multimedia-team/csound-manual, https://github.com/csound/manual.git,3903.8218171296,12,56,0 +csoundqt,-0.414726718,0.4957472098,-0.6101873218,https://salsa.debian.org/multimedia-team/csoundqt, https://github.com/CsoundQt/CsoundQt,5612.1172222222,7,49,3 +ctdconverter,-2.8525515304,-0.4549866674,-3.3207596251,https://salsa.debian.org/med-team/ctdconverter, https://github.com/WorkflowConversion/CTDConverter,2616.9146180556,5,13,0 +ctemplate,0.2254790855,1.2754696215,-0.1533076819,https://salsa.debian.org/qt-kde-team/3rdparty/ctemplate, https://github.com/OlafvdSpek/ctemplate.git,5604.6906481482,3,11,0 +cubicsdr,0.1018461625,2.3388993412,-0.4986845369,https://salsa.debian.org/debian-hamradio-team/cubicsdr, https://github.com/cjcliffe/CubicSDR.git,3287.5204976852,11,22,0 +cups,1.4219250688,1.6409148976,1.2360616192,https://salsa.debian.org/printing-team/cups, https://github.com/OpenPrinting/cups,5773.4499537037,32,89,2 +cups-filters,0.4427327124,0.6774659257,0.2769283713,https://salsa.debian.org/printing-team/cups-filters, https://github.com/OpenPrinting/cups-filters,5780.7735185185,27,48,0 +cupt,-0.7851662489,-0.7413560004,-0.8102098137,https://github.com/jackyf/cupt/tree/master,https://github.com/jackyf/cupt,3964.469525463,4,7,0 +cura,-0.0066273199,0.9528618376,-0.3000061678,https://salsa.debian.org/3dprinting-team/cura, https://github.com/Ultimaker/Cura,3319.0547916667,268,483,10 +cura-engine,0.3192795424,1.7538132303,-0.2214029068,https://salsa.debian.org/3dprinting-team/cura-engine, https://github.com/Ultimaker/CuraEngine,3986.9260648148,46,121,2 +curl,0.4909925211,0.657595943,0.3601971131,https://salsa.debian.org/debian/curl, https://github.com/curl/curl.git,5786.9502662037,1220,58,0 +curvedns,-1.1461706987,0.1127414426,-1.3738129892,https://salsa.debian.org/pkg-security-team/curvedns, https://github.com/curvedns/curvedns.git,3466.7757291667,0,3,0 +custodia,-1.6751213621,-0.0779781476,-2.2266335422,https://salsa.debian.org/freeipa-team/custodia, https://github.com/latchset/custodia.git,2105.2031134259,10,5,0 +cvxopt,0.2544257296,0.9059783526,-0.0500804801,https://salsa.debian.org/science-team/cvxopt, https://github.com/cvxopt/cvxopt,3827.9446875,7,5,0 +cwm,-0.5002044281,1.5042184567,-0.9352825389,https://github.com/jamesmcdonald/cwm,https://github.com/jamesmcdonald/cwm,5679.8960532407,1,30,0 +cycle,-0.313126049,0.6954651903,-0.7844178818,https://salsa.debian.org/med-team/cycle, https://github.com/metlov/cycle.git,229.9525347222,0,1,0 +cyrus-sasl2,1.1677078747,1.456798419,0.9287245609,https://salsa.debian.org/debian/cyrus-sasl2, https://github.com/cyrusimap/cyrus-sasl.git,5510.1634606482,61,36,0 +czmq,-0.6411165936,-0.1752348035,-0.7483629032,https://salsa.debian.org/debian/czmq, https://github.com/zeromq/czmq.git,4540.4409027778,31,247,0 +d-feet,0.2997551246,1.321818155,-0.1570832791,https://salsa.debian.org/utopia-team/d-feet, https://gitlab.gnome.org/GNOME/d-feet.git,5731.9359953704,60,55,0 +dacco,-1.6517270648,-0.0658131652,-1.9805077453,https://salsa.debian.org/debian/dacco, https://github.com/cpina/dacco.git,5643.4174421296,1,5,0 +daptup,-0.2972342054,1.4155078315,-0.9771182131,http://github.com/jackyf/daptup,http://github.com/jackyf/daptup,3776.0019444445,1,5,0 +darkradiant,-0.7013222695,1.5491239332,-1.4835431862,https://salsa.debian.org/games-team/darkradiant, https://github.com/codereader/DarkRadiant.git,5740.5205324074,2,27,0 +dashel,-0.5070603207,1.8556035661,-1.0587894431,https://salsa.debian.org/science-team/dashel.git, https://github.com/aseba-community/dashel.git,4686.2267708333,3,17,0 +dask,0.4433887624,2.0187365641,-0.1539012301,https://salsa.debian.org/python-team/packages/dask, https://github.com/dask/dask,3277.9067361111,695,83,0 +datalad,-0.5029348811,0.6886651964,-0.9385286996,https://github.com/datalad/datalad/,https://github.com/datalad/datalad,3855.2531018519,30,56,3 +datapacker,-0.5715288873,1.5029853739,-1.2721141798,https://github.com/jgoerzen/datapacker,https://github.com/jgoerzen/datapacker,4649.252650463,0,4,0 +datatables-extensions,0.2305645824,2.4635953785,-0.3630227433,https://salsa.debian.org/js-team/datatables-extensions, https://github.com/etd-framework/datatables-extensions,0.0067592593,0,2,0 +dateparser,-0.4044559304,1.9655904027,-1.0112586213,https://salsa.debian.org/python-team/packages/dateparser, https://github.com/scrapinghub/dateparser,3385.6443981482,70,97,0 +dateutils,0.248966164,1.8156186658,-0.3359446773,https://salsa.debian.org/alteholz/dateutils, https://github.com/hroptatyr/dateutils,3585.0248032407,6,16,2 +dbab,-1.9903650996,-0.4617475154,-2.5099356053,https://salsa.debian.org/debian/dbab, https://github.com/suntong/dbab.git,3490.7212037037,1,6,0 +dbus,1.8471253217,2.3203967239,1.476968155,https://salsa.debian.org/utopia-team/dbus, https://gitlab.freedesktop.org/dbus/dbus,5762.1960648148,181,64,0 +dbus-cpp,-1.1700787805,0.6465975138,-1.7551293191,https://salsa.debian.org/ubports-team/dbus-cpp, https://gitlab.com/ubports/development/core/lib-cpp/dbus-cpp.git,3718.3239351852,1,27,0 +dbus-glib,0.2167696847,0.6508287146,0.0402586729,https://salsa.debian.org/debian/dbus-glib, https://gitlab.freedesktop.org/dbus/dbus-glib.git,4512.69375,43,13,0 +dbus-python,0.1273639834,0.3356739942,0.0278010882,https://salsa.debian.org/debian/dbus-python, https://gitlab.freedesktop.org/dbus/dbus-python,5525.142974537,60,18,0 +dcfldd,0.243299676,1.5128715597,-0.1742035117,https://salsa.debian.org/debian/dcfldd, https://github.com/resurrecting-open-source-projects/dcfldd,1555.0382175926,1,5,0 +dcmstack,-0.2179064003,2.3843724616,-1.1543074519,https://salsa.debian.org/med-team/dcmstack, https://github.com/moloney/dcmstack.git,4236.057650463,2,11,0 +dconf,1.1040871823,2.5197464805,0.4465600688,https://salsa.debian.org/gnome-team/dconf, https://gitlab.gnome.org/GNOME/dconf.git,4904.8269675926,66,128,0 +dconf-editor,2.5305721146,6.7262334024,1.0324486555,https://salsa.debian.org/gnome-team/dconf-editor, https://gitlab.gnome.org/GNOME/dconf-editor.git,4947.1524074074,141,132,0 +ddcci-driver-linux,-0.4783545019,1.7270378699,-0.9135677448,https://salsa.debian.org/debian/ddcci-driver-linux, https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux.git,2965.6940277778,0,8,0 +ddccontrol-db,0.5375899278,3.040666398,-0.2040495598,https://salsa.debian.org/debian/ddccontrol-db, https://github.com/ddccontrol/ddccontrol-db,5706.4213541667,83,21,0 +ddclient,2.2300979217,3.0092386237,1.6657756531,https://salsa.debian.org/debian/ddclient, https://github.com/ddclient/ddclient.git,5769.1157986111,45,69,0 +dde-qt5integration,0.2008463037,2.6394670922,-0.3150903457,https://salsa.debian.org/pkg-deepin-team/dde-qt5integration, https://github.com/linuxdeepin/qt5integration.git,2575.5595949074,29,62,0 +ddir,-0.9126372061,1.4246841106,-1.4714839475,https://salsa.debian.org/debian/ddir, https://github.com/jaalto/project--perl-ddir.git,3338.2834722222,0,1,0 +ddnet,-0.9641632914,0.1512557884,-1.2153627391,https://salsa.debian.org/games-team/ddnet, https://github.com/ddnet/ddnet,5784.7662152778,123,275,0 +dds,-0.1989811077,1.347380845,-0.715152297,https://salsa.debian.org/debian/dds, https://github.com/dds-bridge/dds.git,2069.005462963,2,13,0 +ddskk,-0.8736445304,-0.8566851103,-0.8790480325,https://salsa.debian.org/debian/ddskk, https://github.com/skk-dev/ddskk,5620.4317476852,2,28,0 +ddupdate,-0.5293604714,2.1792211419,-1.2645424523,https://github.com/leamas/ddupdate/tree/debian,https://github.com/leamas/ddupdate,1855.611724537,10,11,0 +debiman,-2.0205023232,-0.3691368262,-2.3529854163,https://salsa.debian.org/go-team/packages/debiman, https://github.com/Debian/debiman.git,2469.6214583333,11,3,0 +debomatic,-0.8158097197,-0.1371156791,-1.0821998073,https://salsa.debian.org/python-team/packages/debomatic, https://github.com/debomatic/debomatic,5739.495,4,16,0 +debootstick,-0.5087170385,0.8382307544,-0.8815589055,https://github.com/drakkar-lig/debootstick,https://github.com/drakkar-lig/debootstick,3036.0772106482,5,8,0 +debuerreotype,-1.063173434,1.4648781183,-1.6297873496,https://github.com/debuerreotype/debian-debuerreotype,https://github.com/debuerreotype/debian-debuerreotype,2712.8558217593,0,4,0 +deepdiff,-0.60032076,1.9943773022,-1.1853796171,https://salsa.debian.org/python-team/packages/deepdiff, https://github.com/seperman/deepdiff.git,3349.8121875,21,67,0 +deepin-deb-installer,0.2350964725,3.3411566752,-0.6067129271,https://salsa.debian.org/pkg-deepin-team/deepin-deb-installer, https://github.com/linuxdeepin/deepin-deb-installer,2369.9382291667,18,36,0 +deepin-icon-theme,-0.0967445923,1.8002062208,-0.5212559183,https://salsa.debian.org/pkg-deepin-team/deepin-icon-theme, https://github.com/linuxdeepin/deepin-icon-theme.git,3289.739837963,17,48,0 +deepin-image-viewer,-0.6471521137,0.898616506,-0.9251640271,https://salsa.debian.org/pkg-deepin-team/deepin-image-viewer, https://github.com/linuxdeepin/deepin-image-viewer,2848.197974537,25,73,0 +deepin-menu,-0.2567671925,2.0985320381,-0.6946755868,https://salsa.debian.org/pkg-deepin-team/deepin-menu, https://github.com/linuxdeepin/deepin-menu.git,2256.3108333333,0,33,0 +deepin-movie-reborn,-0.4603712853,1.3495301317,-0.904304312,https://salsa.debian.org/pkg-deepin-team/deepin-movie-reborn, https://github.com/linuxdeepin/deepin-movie-reborn.git,2456.1088657408,32,78,0 +deepin-music,-0.5019500243,1.1701425475,-0.9637950114,https://salsa.debian.org/pkg-deepin-team/deepin-music, https://github.com/linuxdeepin/deepin-music,4315.2377893519,30,84,0 +deepin-notifications,0.3474442725,3.6547785603,-0.4321808993,https://salsa.debian.org/pkg-deepin-team/deepin-notifications, https://github.com/linuxdeepin/deepin-notifications,2025.0469791667,4,26,0 +deepin-picker,-0.1850199323,2.7496003739,-0.9519835273,https://salsa.debian.org/pkg-deepin-team/deepin-picker, https://github.com/linuxdeepin/deepin-picker,2197.4726851852,10,32,0 +deepin-qt5dxcb-plugin,-0.1250042207,0.7141213961,-0.3117177646,https://salsa.debian.org/pkg-deepin-team/deepin-qt5dxcb-plugin, https://github.com/linuxdeepin/qt5dxcb-plugin.git,2598.5358101852,38,61,0 +deepin-screen-recorder,0.1304056204,3.1790027471,-0.7112172012,https://salsa.debian.org/pkg-deepin-team/deepin-screen-recorder, https://github.com/linuxdeepin/deepin-screen-recorder,2445.6769328704,25,45,0 +deepin-terminal,0.0463483861,2.1958215978,-0.6141315526,https://salsa.debian.org/pkg-deepin-team/deepin-terminal, https://github.com/linuxdeepin/deepin-terminal.git,1696.4612037037,32,47,0 +dehydrated,0.2949188323,1.2764008097,-0.124374845,https://salsa.debian.org/letsencrypt-team/dehydrated, https://github.com/lukas2511/dehydrated,2922.0038657408,64,40,2 +dehydrated-hook-ddns-tsig,-1.1498688177,0.3234067787,-1.4723938378,https://salsa.debian.org/letsencrypt-team/dehydrated-hook-ddns-tsig, https://github.com/eferdman/dehydrated-hook-ddns-tsig.git,613.6095601852,3,7,0 +deken,-0.1773993382,1.8798950337,-0.6127948533,https://salsa.debian.org/multimedia-team/pd/deken, https://github.com/pure-data/deken,3169.7776041667,5,17,1 +derpconf,-2.1632661335,-0.2479529966,-2.7160545081,https://salsa.debian.org/python-team/packages/derpconf, https://github.com/globocom/derpconf,4088.1859490741,0,19,0 +desktop-file-utils,2.245431603,3.8185046831,1.3921325664,https://salsa.debian.org/freedesktop-team/desktop-file-utils, https://gitlab.freedesktop.org/xdg/desktop-file-utils.git,5714.8259259259,15,16,0 +detachtty,0.7286668661,3.7996202071,-0.4663424257,https://salsa.debian.org/debian/detachtty, https://github.com/cosmos72/detachtty.git,5063.0382175926,2,3,0 +detox,0.0760137719,1.2444609771,-0.236573077,https://salsa.debian.org/debian/detox, https://github.com/dharple/detox,2472.5849305556,3,6,0 +devede,1.0904035305,2.5968957271,0.3392252099,https://salsa.debian.org/multimedia-team/devede, https://gitlab.com/rastersoft/devedeng,3052.8983333333,1,18,0 +devtodo,-0.0964373601,0.5231337283,-0.4667575617,https://salsa.debian.org/debian/devtodo, https://github.com/alecthomas/devtodo,4517.7004398148,2,2,0 +dfc,0.6249482733,2.6923246378,-0.1060154397,https://salsa.debian.org/debian/dfc, https://github.com/rolinh/dfc,3944.7026157408,10,7,0 +dfdatetime,0.2784988554,2.5229656202,-0.3661738116,https://salsa.debian.org/pkg-security-team/dfdatetime, https://github.com/log2timeline/dfdatetime.git,2825.9329513889,4,3,0 +dfvfs,-0.0675084877,1.1900184411,-0.4281985444,https://salsa.debian.org/pkg-security-team/dfvfs, https://github.com/log2timeline/dfvfs.git,3796.4521875,5,5,0 +dfwinreg,-0.0527750482,1.0789469085,-0.4067960001,https://salsa.debian.org/pkg-security-team/dfwinreg, https://github.com/log2timeline/dfwinreg.git,2962.9065972222,0,3,0 +dgedit,0.3557448494,3.2276584806,-0.5184626296,https://salsa.debian.org/multimedia-team/dgedit, http://git.drumgizmo.org/dgedit.git,1818.5937847222,2,2,0 +dh-dist-zilla,-1.0075219972,0.58930665,-1.2829335058,https://github.com/elmar/dh-dist-zilla,https://github.com/elmar/dh-dist-zilla,2392.1696064815,0,4,0 +dh-make-golang,-0.307436392,0.7702631155,-0.6800551205,https://salsa.debian.org/go-team/packages/dh-make-golang, https://github.com/Debian/dh-make-golang.git,3064.9701851852,24,19,0 +dhcpcd-dbus,0.116885126,3.4089949811,-0.7932984933,https://salsa.debian.org/debian/dhcpcd-dbus, https://github.com/kobolabs/dhcpcd-dbus.git,4098.2566550926,2,6,0 +dhcpcd-ui,-0.0122872414,2.5695283858,-0.8367345755,https://salsa.debian.org/debian/dhcpcd-ui, https://github.com/NetworkConfiguration/dhcpcd-ui,5203.8271875,4,2,0 +dhcpcd5,0.6815852227,1.5374108,0.1969854249,https://salsa.debian.org/debian/dhcpcd, https://github.com/NetworkConfiguration/dhcpcd.git,5784.3856944445,64,17,0 +dhcpdump,1.4490750412,4.1456331911,0.3872406438,https://github.com/bbonev/dhcpdump,https://github.com/bbonev/dhcpdump,112.9948032407,0,3,0 +dhcpig,-0.9872435316,1.3324162128,-1.5205038766,https://salsa.debian.org/pkg-security-team/dhcpig, https://github.com/kamorin/DHCPig,1930.9329398148,0,7,0 +dhcping,2.1917834974,5.1794674936,0.9672596297,https://salsa.debian.org/debian/dhcping, https://salsa.debian.org/debian/dhcping.git,1035.2352314815,5,2,0 +dhewm3,-0.2903203144,1.9161738096,-0.7863581959,https://salsa.debian.org/games-team/dhewm3, https://github.com/dhewm/dhewm3.git,4378.332974537,36,21,0 +dia,0.5880522118,0.8144363555,0.4143337761,https://salsa.debian.org/debian/dia, https://gitlab.gnome.org/GNOME/dia,5733.3599652778,117,118,0 +dianara,-0.8186967731,0.9197094973,-1.3473110535,https://salsa.debian.org/debian/dianara, https://gitlab.com/dianara/dianara-dev.git,4113.032974537,0,11,0 +dicteval,-2.9536986334,-0.1320875709,-3.6889555809,https://salsa.debian.org/debian/dicteval, https://github.com/osantana/dicteval.git,1110.6433217593,3,12,0 +diffuse,0.6569991928,3.1825265926,-0.1258422859,https://salsa.debian.org/debian/diffuse, https://github.com/MightyCreak/diffuse.git,2779.0936226852,15,12,0 +dill,-0.0692957122,2.3594211277,-0.5014890362,https://salsa.debian.org/python-team/packages/dill, https://github.com/uqfoundation/dill,5216.8620486111,22,27,2 +ding-libs,0.3833422556,2.4936424716,-0.1381470129,https://salsa.debian.org/sssd-team/ding-libs, https://github.com/SSSD/ding-libs,5249.6200810185,15,12,0 +dir2ogg,0.2396946845,1.641521491,-0.3190929184,https://github.com/julian-klode/dir2ogg,https://github.com/julian-klode/dir2ogg,1310.0299884259,1,5,1 +direnv,-0.006884838,1.7585706473,-0.4511605857,https://github.com/direnv/direnv-deb,https://github.com/direnv/direnv-deb,3256.5212847222,1,6,0 +direwolf,-0.1430216901,1.3707430635,-0.6200279656,https://salsa.debian.org/debian-hamradio-team/direwolf, https://github.com/wb2osz/direwolf,2351.9412615741,7,18,1 +dirty.js,-0.8909885733,2.6227016495,-1.9512157567,https://salsa.debian.org/js-team/dirty.js, https://github.com/felixge/node-dirty.git,4940.3282175926,7,21,0 +discus,1.1705020939,3.7454601144,0.0821077036,https://salsa.debian.org/debian/discus, https://github.com/ncarrier/discus.git,1119.0192592593,0,4,0 +diskscan,-0.2808442196,0.3836383801,-0.4193484695,https://salsa.debian.org/debian/diskscan, https://github.com/baruch/diskscan.git,1436.448587963,0,3,0 +distorm3,0.2425195876,2.0162179616,-0.3007854248,https://salsa.debian.org/debian/distorm3, https://github.com/gdabah/distorm.git,2464.690625,2,17,0 +ditaa,1.1445611741,3.5538586753,0.1428331298,https://salsa.debian.org/java-team/ditaa, https://github.com/stathissideris/ditaa,4647.8960416667,3,17,0 +dizzy,0.5207937556,2.8020455015,-0.2161435151,https://salsa.debian.org/perl-team/modules/packages/dizzy, https://github.com/penma/dizzy.git,1717.3470949074,4,6,0 +django-ajax-selects,-1.8026412507,-1.3989218588,-1.8701014671,https://salsa.debian.org/python-team/packages/django-ajax-selects, https://github.com/crucialfelix/django-ajax-selects,4299.0274074074,12,41,0 +django-anymail,-1.7298434082,0.0007900724,-2.0652251342,https://salsa.debian.org/python-team/packages/django-anymail, https://github.com/anymail/django-anymail,4340.0585069445,33,27,0 +django-assets,-1.2263795033,0.8786465016,-1.8045449418,https://salsa.debian.org/python-team/packages/django-assets, https://github.com/miracle2k/django-assets.git,4511.0671990741,6,94,0 +django-auth-ldap,-0.7351113605,0.589742959,-1.162005947,https://salsa.debian.org/python-team/packages/django-auth-ldap, https://github.com/django-auth-ldap/django-auth-ldap.git,5095.4516550926,18,22,0 +django-bitfield,-1.1647703491,1.6767739512,-1.9098342392,https://salsa.debian.org/python-team/packages/django-bitfield, https://github.com/disqus/django-bitfield,4482.6217939815,15,33,0 +django-cas-server,-1.308896058,2.2292815551,-2.3158506417,https://salsa.debian.org/python-team/packages/django-cas-server, https://github.com/nitmir/django-cas-server.git,3041.6335532407,8,9,0 +django-classy-tags,-0.7401841635,0.9848619547,-1.3980531867,https://salsa.debian.org/python-team/packages/django-classy-tags, https://github.com/django-cms/django-classy-tags,4877.1677893519,15,16,2 +django-compat,-1.3241602951,-0.1886083427,-1.7657341927,https://github.com/Linaro/pkg-django-compat.git,https://github.com/Linaro/pkg-django-compat.git,1206.0878819445,0,6,0 +django-cors-headers,-1.1139410876,0.0671040287,-1.3367389103,https://salsa.debian.org/python-team/packages/django-cors-headers, https://github.com/adamchainz/django-cors-headers,3979.5858333333,47,28,0 +django-countries,-0.5347084486,1.3547470964,-1.2788572175,https://salsa.debian.org/python-team/packages/django-countries, https://github.com/SmileyChris/django-countries,4972.680625,16,45,0 +django-fsm,-1.2455924049,1.7684823777,-1.9508426508,https://salsa.debian.org/python-team/packages/django-fsm, https://github.com/viewflow/django-fsm,4622.1760763889,28,45,0 +django-guardian,-0.6318405623,-0.1756665381,-0.763973424,https://salsa.debian.org/python-team/packages/django-guardian, https://github.com/lukaszb/django-guardian,4311.9324074074,74,100,0 +django-haystack,-0.3668845966,1.4515254842,-0.931809609,https://salsa.debian.org/python-team/packages/django-haystack, https://github.com/django-haystack/django-haystack,5440.2651388889,100,135,5 +django-hijack,-2.1622270176,0.0257030995,-2.8657585957,https://github.com/Linaro/pkg-django-hijack.git,https://github.com/Linaro/pkg-django-hijack.git,1013.9897106482,0,2,0 +django-housekeeping,-0.869454572,1.948090224,-1.6153462575,https://salsa.debian.org/python-team/packages/django-housekeeping, https://github.com/spanezz/django-housekeeping.git,2311.2066087963,0,4,0 +django-ipware,-0.186701027,3.4775277787,-1.1364140371,https://salsa.debian.org/python-team/packages/django-ipware, https://github.com/un33k/django-ipware,3876.7555324074,23,8,0 +django-jinja,-1.3547299354,0.150737425,-1.6575932605,https://salsa.debian.org/python-team/packages/django-jinja, https://github.com/niwinz/django-jinja,4245.131724537,30,48,0 +django-ldapdb,-1.0108141783,2.5550959772,-2.1942757543,https://salsa.debian.org/python-team/packages/django-ldapdb, https://github.com/django-ldapdb/django-ldapdb,3058.5422222222,5,21,0 +django-macaddress,-0.4896145371,2.3736933654,-1.539462805,https://salsa.debian.org/python-team/packages/django-macaddress, https://github.com/tubaman/django-macaddress.git,3439.070474537,8,28,0 +django-markupfield,-1.0759377367,0.2865461875,-1.4997271357,https://salsa.debian.org/python-team/packages/django-markupfield, https://github.com/jamesturk/django-markupfield,5316.4596064815,3,17,0 +django-model-utils,-1.1078826446,-0.1087484027,-1.403418964,https://salsa.debian.org/python-team/packages/django-model-utils, https://github.com/carljm/django-model-utils.git,5274.9816087963,49,101,0 +django-modeltranslation,-1.5133383269,0.6332844289,-2.2136337591,https://salsa.debian.org/python-team/packages/django-modeltranslation, https://github.com/deschler/django-modeltranslation.git,5393.628900463,39,78,0 +django-notification,-1.0245967644,1.6779675851,-1.7577888985,https://salsa.debian.org/python-team/packages/django-notification, https://github.com/pinax/pinax-notifications,4781.1870023148,7,34,2 +django-pagination,-1.2198722873,1.6502939489,-1.9843028023,https://salsa.debian.org/python-team/packages/django-pagination, https://github.com/ericflo/django-pagination,3284.865787037,6,18,0 +django-picklefield,-0.7035806444,0.5793477157,-1.0587542035,https://salsa.debian.org/python-team/packages/django-picklefield, https://github.com/gintas/django-picklefield.git,4658.0029050926,2,16,0 +django-pipeline,-0.9308761697,0.7137458832,-1.5104447327,https://salsa.debian.org/python-team/packages/django-pipeline, https://github.com/jazzband/django-pipeline,5696.7215625,55,133,0 +django-polymorphic,-0.9862725279,0.7261077657,-1.6214857875,https://salsa.debian.org/python-team/packages/django-polymorphic, https://github.com/django-polymorphic/django-polymorphic,5078.6096990741,41,80,1 +django-prometheus,-2.2603160573,-0.4381341974,-2.7422527304,https://salsa.debian.org/python-team/packages/django-prometheus, https://github.com/korfuri/django-prometheus,3173.3548148148,32,30,0 +django-python3-ldap,-1.220695241,0.9816108419,-1.7104148484,https://salsa.debian.org/python-team/packages/django-python3-ldap, https://github.com/etianen/django-python3-ldap,3090.7084259259,4,28,0 +django-q,-0.6762259361,1.3565065883,-1.1544139996,https://salsa.debian.org/python-team/packages/django-q, https://github.com/Koed00/django-q,2734.7205092593,22,48,0 +django-recurrence,-1.3265229373,0.8843109328,-1.9163727776,https://salsa.debian.org/python-team/packages/django-recurrence, https://github.com/jazzband/django-recurrence,5185.4439930556,18,46,1 +django-restricted-resource,-1.2869731875,0.2279132109,-1.7519542903,https://github.com/Linaro/pkg-django-restricted-resource,https://github.com/Linaro/pkg-django-restricted-resource,3194.8619212963,0,7,0 +django-reversion,-0.777150964,0.9983388355,-1.4152875579,https://salsa.debian.org/python-team/packages/django-reversion, https://github.com/etianen/django-reversion.git,5522.8556828704,31,173,0 +django-sekizai,-1.0262425279,0.6041437988,-1.5864335391,https://salsa.debian.org/python-team/packages/django-sekizai, https://github.com/django-cms/django-sekizai.git,4878.8684027778,11,19,0 +django-session-security,-1.4288330913,1.113967449,-1.9127798171,https://salsa.debian.org/python-team/packages/django-session-security, https://github.com/yourlabs/django-session-security,4081.298287037,19,40,0 +django-setuptest,-1.0039883027,1.8917399808,-1.7398796439,https://salsa.debian.org/python-team/packages/django-setuptest, https://github.com/praekelt/django-setuptest.git,1589.0550810185,0,22,0 +django-simple-captcha,-0.6733083767,0.6717916914,-1.0015996764,https://salsa.debian.org/python-team/packages/django-simple-captcha, https://github.com/mbi/django-simple-captcha.git,4540.2663657407,7,61,0 +django-sitetree,-1.1970109861,0.3805270522,-1.67880198,https://salsa.debian.org/python-team/packages/django-sitetree, https://github.com/idlesign/django-sitetree,4549.666712963,6,42,0 +django-sortedm2m,-2.3457198242,-0.0825384392,-2.7865717155,https://salsa.debian.org/python-team/packages/django-sortedm2m, https://github.com/jazzband/django-sortedm2m.git,4988.0868287037,13,51,0 +django-testproject,-0.7999395109,1.6435435249,-1.4494523946,https://github.com/Linaro/pkg-django-testproject,https://github.com/Linaro/pkg-django-testproject,3196.2780324074,0,5,0 +django-testscenarios,-1.3257146932,-0.0322578006,-1.6658090716,https://github.com/Linaro/pkg-django-testscenarios,https://github.com/Linaro/pkg-django-testscenarios,3196.2901157408,0,7,0 +django-uwsgi,-0.735268461,1.3791601461,-1.3407982132,https://salsa.debian.org/python-team/packages/django-uwsgi, https://github.com/unbit/django-uwsgi,4022.1891203704,0,20,0 +django-xmlrpc,-1.0500707985,0.6741579236,-1.5157519079,https://salsa.debian.org/python-team/packages/django-xmlrpc, https://github.com/Fantomas42/django-xmlrpc,2632.3087384259,1,5,0 +djangorestframework,-0.4118673527,0.1915303364,-0.6567456455,https://salsa.debian.org/python-team/packages/djangorestframework, https://github.com/encode/django-rest-framework,4724.8797453704,676,770,1 +djangorestframework-api-key,-2.8977691008,0.5221037841,-3.6910026896,https://salsa.debian.org/python-team/packages/djangorestframework-api-key, https://github.com/florimondmanca/djangorestframework-api-key,1908.8148263889,20,6,2 +dkg-handwriting,0.189988636,2.8015175284,-0.3790175566,https://salsa.debian.org/fonts-team/dkg-handwriting, https://gitlab.com/dkg/dkg-handwriting,4767.4386574074,0,1,0 +dkms,2.3726012777,3.2155728161,1.7886627291,https://salsa.debian.org/debian/dkms, https://github.com/dell/dkms,5777.8746412037,70,65,1 +dlib,-0.1677848505,1.1744295625,-0.591412145,https://salsa.debian.org/science-team/dlib, https://github.com/davisking/dlib.git,5697.5502777778,155,59,0 +dma,0.9255897857,2.1311120692,0.2618365609,https://salsa.debian.org/debian/dma, https://github.com/corecode/dma.git,4350.2836574074,26,18,0 +dmarc-cat,-0.1483894393,3.3771756375,-1.1901233623,https://salsa.debian.org/go-team/packages/dmarc-cat, https://github.com/keltia/dmarc-cat.git,1521.7803009259,0,4,0 +dmrconfig,-4.4180298219,-0.9106394342,-5.3737002754,https://salsa.debian.org/debian-hamradio-team/dmrconfig, https://github.com/OpenRTX/dmrconfig.git,1907.596412037,5,9,0 +dms,-1.7923560941,0.9490139495,-3.0040589667,https://github.com/grantma/dms,https://github.com/grantma/dms,1425.0333101852,0,7,0 +dnspython,1.1275058498,2.6742605707,0.4158531709,https://salsa.debian.org/python-team/packages/dnspython, https://github.com/rthalley/dnspython.git,5665.3041087963,41,93,0 +dnsruby,-0.234176424,1.5390828902,-0.6784148131,https://salsa.debian.org/ruby-team/ruby-dnsruby, https://github.com/alexdalitz/dnsruby.git,5594.1314467593,4,31,0 +dnstap-ldns,-1.9630028548,0.4908382481,-2.5788124384,https://salsa.debian.org/dns-team/dnstap-ldns, https://github.com/dnstap/dnstap-ldns.git,2977.0303009259,3,7,0 +dnswalk,1.9006613427,5.3064955884,0.5879892736,https://salsa.debian.org/debian/dnswalk, https://github.com/davebarr/dnswalk.git,3790.9134837963,0,2,0 +docdiff,-0.3637756064,0.6895030349,-0.723612814,https://salsa.debian.org/debian/docdiff, https://github.com/hisashim/docdiff,3912.6548148148,0,6,1 +docker-compose,0.9800951925,3.177453884,0.1495724904,https://salsa.debian.org/docker-compose-team/docker-compose, https://github.com/docker/compose,3654.9232291667,228,428,11 +docker-libkv,-1.329662858,0.913961857,-1.7622096802,https://salsa.debian.org/go-team/packages/docker-libkv, https://github.com/docker/libkv.git,2411.621412037,3,30,0 +doclifter,-0.0714788684,2.0486327638,-0.9519736642,https://salsa.debian.org/debian/doclifter, https://gitlab.com/esr/doclifter,4609.0202314815,2,3,0 +dodgy,0.1557418127,3.6209552547,-0.7924335615,https://salsa.debian.org/python-team/packages/dodgy, https://github.com/landscapeio/dodgy,2642.9684259259,4,14,0 +doona,0.0575012672,2.5211667754,-0.4395656402,https://salsa.debian.org/pkg-security-team/doona, https://github.com/wireghoul/doona,3578.8472569445,1,4,0 +doris,-3.2514630416,-2.7560514844,-3.3329815998,https://salsa.debian.org/debian-gis-team/doris, https://github.com/TUDelftGeodesy/Doris,371.9438888889,0,6,0 +dosage,-0.7866623156,0.1614581475,-1.1313932158,https://salsa.debian.org/debian/dosage, https://github.com/webcomics/dosage,4186.6960185185,22,40,1 +dose3,-0.2078421855,0.0501799098,-0.3687005994,https://salsa.debian.org/ocaml-team/dose3, https://gitlab.com/irill/dose3,4828.393587963,6,21,0 +dosfstools,0.9576699829,1.4464254542,0.6170237773,https://salsa.debian.org/debian/dosfstools, https://github.com/dosfstools/dosfstools.git,3911.4083101852,49,15,0 +dot2tex,0.3466283087,1.9393030614,-0.1726041576,https://salsa.debian.org/python-team/packages/dot2tex, https://github.com/kjellmf/dot2tex,5058.7794444445,10,18,2 +dotenv-cli,-2.8411938985,-0.4907339662,-3.3207573124,https://github.com/venthur/dotenv-cli,https://github.com/venthur/dotenv-cli,1883.5036574074,2,5,0 +dothost,-0.8236385394,1.6764360729,-1.3541419539,https://salsa.debian.org/debian/dothost, https://github.com/jwilk/dothost,4422.1015393519,1,1,0 +double-conversion,0.4971216035,2.0970131522,0.0241988451,https://salsa.debian.org/science-team/double-conversion, https://github.com/google/double-conversion.git,4286.6592824074,44,23,0 +doxygen,1.5728554192,2.0066309763,1.2357005037,https://salsa.debian.org/debian/doxygen, https://github.com/doxygen/doxygen.git,5784.3285185185,59,259,0 +dpic,-1.1383205019,2.2047030245,-1.9322207837,https://salsa.debian.org/debian/dpic, https://gitlab.com/aplevich/dpic,4904.1494444445,0,2,0 +dpmb,-0.6691898306,1.5148767963,-1.1659559787,https://github.com/dpmb/dpmb,https://github.com/dpmb/dpmb,3025.1458101852,5,11,1 +dq,-0.1834293154,2.1580450192,-0.7499592676,https://salsa.debian.org/debian/dq, https://github.com/janmojzis/dq.git,2922.0256712963,0,7,0 +drf-extensions,-1.5711074271,0.582669346,-2.2334265763,https://salsa.debian.org/python-team/packages/drf-extensions, https://github.com/chibisov/drf-extensions.git,3758.3081018519,37,33,0 +drf-generators,-1.0791841561,1.9108535938,-1.8015507649,https://salsa.debian.org/python-team/packages/drf-generators, https://github.com/brobin/drf-generators,1981.457962963,4,10,0 +driftnet,-0.3021441377,0.4582796981,-0.6160981524,https://github.com/deiv/driftnet,https://github.com/deiv/driftnet,3936.0659722222,4,6,0 +drkonqi,0.6945565049,3.2812228918,-0.0030045564,https://salsa.debian.org/qt-kde-team/kde/drkonqi, https://invent.kde.org/plasma/drkonqi.git,3544.1127662037,36,158,0 +drmaa,-0.9229869282,0.8943517279,-1.5388923357,https://salsa.debian.org/med-team/drmaa, https://github.com/pygridtools/drmaa-python,3564.105462963,9,12,0 +drmips,-0.9190476493,1.6685906624,-1.6412123268,https://github.com/brunonova/drmips/tree/debian,https://github.com/brunonova/drmips,3165.66125,3,3,0 +droopy,-0.8939869433,1.3787169177,-1.3337026104,https://salsa.debian.org/debian/droopy, https://github.com/stackp/Droopy.git,5280.2147685185,0,7,0 +dropbear,0.4812175514,0.9754576643,0.1540354658,https://salsa.debian.org/debian/dropbear, https://github.com/mkj/dropbear,5772.037037037,39,54,0 +dropwatch,-1.1991262604,1.5250708737,-1.8285406941,https://salsa.debian.org/debian/dropwatch, https://github.com/nhorman/dropwatch,5326.1496296296,3,24,0 +drumkv1,-0.1956463038,1.0706720909,-0.4594280916,https://salsa.debian.org/multimedia-team/drumkv1, https://github.com/rncbc/drumkv1.git,4115.9090277778,1,13,0 +dtach,0.4720927384,2.0532258223,-0.05646356,https://salsa.debian.org/voelkel-guest/dtach, https://github.com/crigler/dtach.git,1708.1544328704,2,2,0 +dtfabric,0.0544342308,2.3417288031,-0.4793676181,https://salsa.debian.org/debian/dtfabric, https://github.com/libyal/dtfabric.git,2597.9576388889,0,1,0 +dtkwidget,-0.0475931281,1.6797879935,-0.3282725911,https://salsa.debian.org/pkg-deepin-team/dtkwidget, https://github.com/linuxdeepin/dtkwidget.git,2854.338912037,62,131,0 +duc,-0.1954129307,1.2945221627,-0.5039043064,https://salsa.debian.org/debian/duc, https://github.com/zevv/duc,3420.8586226852,5,34,1 +duma,1.8832274506,4.9907159933,0.5231250641,https://salsa.debian.org/debian/duma, https://github.com/johnsonjh/duma.git,5743.5371643519,8,21,0 +dumb-jump-el,-1.0040161229,1.3893839619,-1.455387254,https://salsa.debian.org/emacsen-team/dumb-jump-el, https://github.com/jacktasia/dumb-jump.git,2796.8254398148,82,16,0 +dumpet,0.8119567162,4.8329646447,-0.595687567,https://salsa.debian.org/debian/dumpet, https://github.com/rhboot/dumpet.git,4953.9319097222,2,5,0 +dune-common,-0.139917929,0.951578809,-0.4440555132,https://salsa.debian.org/science-team/dune-common, https://gitlab.dune-project.org/core/dune-common,5758.7812037037,24,91,0 +dune-functions,-1.3122122078,0.7184609626,-1.8591140776,https://salsa.debian.org/science-team/dune-functions, https://gitlab.dune-project.org/staging/dune-functions,3750.5943518519,5,45,0 +dune-geometry,-0.07562216,1.660838306,-0.461840546,https://salsa.debian.org/science-team/dune-geometry, https://gitlab.dune-project.org/core/dune-geometry,4564.4760185185,2,55,0 +dune-grid,0.0354884919,1.2657810294,-0.3909521804,https://salsa.debian.org/science-team/dune-grid, https://gitlab.dune-project.org/core/dune-grid,5743.0351273148,14,81,0 +dune-grid-glue,-1.8693443279,0.5144149886,-2.3457926456,https://salsa.debian.org/science-team/dune-grid-glue, https://gitlab.dune-project.org/extensions/dune-grid-glue,4975.9977546296,2,21,0 +dune-istl,-0.2668242223,1.4801468937,-0.7947727174,https://salsa.debian.org/science-team/dune-istl, https://gitlab.dune-project.org/core/dune-istl,5747.2006712963,17,72,0 +dune-localfunctions,-0.4489022108,1.6465255536,-0.8932231406,https://salsa.debian.org/science-team/dune-localfunctions, https://gitlab.dune-project.org/core/dune-localfunctions,5515.0515046296,10,53,0 +dune-typetree,-1.208013215,1.3635164698,-1.8277722903,https://salsa.debian.org/science-team/dune-typetree, https://gitlab.dune-project.org/staging/dune-typetree,5388.2080555556,5,29,0 +dune-uggrid,0.1952238834,2.9996279081,-0.5069015278,https://salsa.debian.org/science-team/dune-uggrid, https://gitlab.dune-project.org/staging/dune-uggrid,5755.7378703704,3,35,0 +dunst,0.3669983163,1.1637822615,0.0070676604,https://salsa.debian.org/debian/dunst, https://github.com/dunst-project/dunst,4447.0045601852,43,111,1 +dustrac,0.1730330143,3.1219082568,-0.6411485316,https://salsa.debian.org/pino/dustrac, https://github.com/juzzlin/DustRacing2D.git,4428.4226851852,8,9,0 +dvbcut,-0.140015948,0.3995494726,-0.3603098157,https://github.com/bernhardu/dvbcut-deb,https://github.com/bernhardu/dvbcut-deb,2301.5843402778,21,3,0 +dvisvgm,0.1719982822,1.5508413641,-0.14266231,https://github.com/debian-tex/dvisvgm,https://github.com/debian-tex/dvisvgm,1541.3238194445,1,6,0 +dwarves-dfsg,1.0839120784,2.7926573745,0.2487579807,https://salsa.debian.org/debian/dwarves, git://git.kernel.org/pub/scm/devel/pahole/pahole.git,5735.191724537,49,4,0 +dymo-cups-drivers,0.1695490981,1.2653423504,-0.0340436611,https://salsa.debian.org/printing-team/dymo-cups-drivers, https://github.com/matthiasbock/dymo-cups-drivers,4079.6409837963,4,11,0 +e2guardian,-0.4962046033,0.8559279449,-0.8848150366,https://salsa.debian.org/debian-edu-pkg-team/e2guardian, https://github.com/e2guardian/e2guardian,3743.8510416667,10,60,4 +e2tools,-0.3154826477,0.572945917,-0.5928968266,https://salsa.debian.org/debian/e2tools, https://github.com/e2tools/e2tools,1196.5083217593,2,6,3 +earlyoom,-0.3411831775,0.813051484,-0.6020410868,https://salsa.debian.org/yangfl-guest/earlyoom, https://github.com/rfjakob/earlyoom,3559.2982523148,38,9,1 +easygit,0.383586011,3.5957594474,-0.5807571227,https://salsa.debian.org/debian/easygit, https://github.com/newren/easygit,3676.0657175926,399,15,0 +easyloggingpp,-2.6865665805,-0.9256365943,-3.0159042058,https://salsa.debian.org/debian/easyloggingpp, https://github.com/amrayn/easyloggingpp.git,3956.1497569445,5,43,0 +easyprocess,-0.5379917332,1.9459970198,-1.0219432067,https://salsa.debian.org/python-team/packages/easyprocess, https://github.com/ponty/easyprocess.git,4652.3978009259,3,9,0 +ecdsautils,-0.5842189084,1.6112758398,-1.017052069,https://salsa.debian.org/communitywlan-team/ecdsautils, https://github.com/freifunk-gluon/ecdsautils,3436.625625,1,8,0 +eclipselink,0.289924153,1.9183225119,-0.244682374,https://salsa.debian.org/java-team/eclipselink, https://github.com/eclipse-ee4j/eclipselink.git,5753.9492939815,74,68,0 +edbrowse,0.3708322115,1.5829127394,-0.1941202595,https://salsa.debian.org/a11y-team/edbrowse, https://github.com/CMB/edbrowse.git,5783.5197453704,9,22,0 +edgar,1.0883979549,5.1731491731,-0.2869262275,https://salsa.debian.org/games-team/edgar, https://github.com/riksweeney/edgar,5461.0223032407,3,13,0 +editorconfig-core,1.5887281662,4.6075180153,0.4803432984,https://salsa.debian.org/debian/editorconfig-core, https://github.com/editorconfig/editorconfig-core-c.git,4345.1404861111,23,19,0 +editra,-0.2633359349,1.1859959258,-0.7394398489,https://github.com/mogaal/editra,https://github.com/mogaal/editra,1762.9254398148,0,2,0 +efivar,1.2395472847,3.1409084649,0.4366490781,https://salsa.debian.org/efi-team/efivar, https://github.com/rhinstaller/efivar.git,3854.9068634259,62,9,0 +eggdrop,0.690268777,1.6966766009,0.0747126473,https://github.com/yastupin/eggdrop-debian,https://github.com/yastupin/eggdrop-debian,1023.9554166667,0,1,0 +egl-wayland,0.0316178932,1.8159648449,-0.3538526989,https://salsa.debian.org/debian/egl-wayland, https://github.com/NVIDIA/egl-wayland.git,2464.5272800926,13,9,0 +eiciel,-0.3913934912,0.2845531206,-0.6225036497,https://salsa.debian.org/debian/eiciel, https://github.com/rofirrim/eiciel,4391.8161689815,58,10,0 +eigen3,-0.0015389375,0.3014080911,-0.1284517672,https://salsa.debian.org/science-team/eigen3, https://gitlab.com/libeigen/eigen.git,5766.6219560185,146,433,0 +eiskaltdcpp,0.4505650107,2.0973490193,-0.2886793088,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,3513.9242361111,0,2,0 +eja,-2.7925237394,1.0154047624,-3.9912920842,https://github.com/ubaldus/eja,https://github.com/ubaldus/eja,3036.7696296296,0,5,0 +elastalert,-2.7490522153,-1.0382477163,-3.253107753,https://salsa.debian.org/debian/elastalert, https://github.com/Yelp/elastalert.git,2822.0809490741,46,241,0 +elasticsearch-curator,0.0906487219,2.1237637356,-0.6742032829,https://salsa.debian.org/python-team/packages/elasticsearch-curator, https://github.com/elasticsearch/curator.git,4523.4816435185,47,128,0 +electrum,0.6449794147,1.6322963364,0.0870509386,https://salsa.debian.org/cryptocoin-team/electrum, https://github.com/spesmilo/electrum.git,4420.9696643519,140,307,0 +elfeed,-0.4174253554,2.5136885813,-1.1764551336,https://salsa.debian.org/emacsen-team/elfeed, https://github.com/skeeto/elfeed.git,3363.4209490741,15,41,0 +elvish,-0.8358550208,0.9261050049,-1.2566771443,https://salsa.debian.org/go-team/packages/elvish, https://github.com/elves/elvish.git,3724.7049768519,74,20,0 +emacs-git-messenger,-0.7394110957,1.3440255665,-1.1759453412,https://salsa.debian.org/emacsen-team/emacs-git-messenger, https://github.com/syohex/emacs-git-messenger.git,3062.6,2,8,0 +emacs-git-modes,-0.5095691095,1.8818747091,-0.9450708252,https://salsa.debian.org/emacsen-team/emacs-git-modes, https://github.com/magit/git-modes.git,4898.4598032408,8,34,0 +emacs-jedi,-0.5925564326,1.6685968963,-1.0626804159,https://salsa.debian.org/emacsen-team/emacs-jedi, https://github.com/tkf/emacs-jedi.git,3462.8411458333,5,28,0 +emacs-python-environment,-0.6497796464,0.8881585898,-0.9254847969,https://salsa.debian.org/emacsen-team/emacs-python-environment, https://github.com/tkf/emacs-python-environment.git,626.8352777778,0,3,0 +emacspeak,-0.3098123339,0.154967146,-0.6063949443,https://salsa.debian.org/a11y-team/emacspeak, https://github.com/tvraman/emacspeak.git,5784.5154976852,1,16,0 +email-reminder,-0.8471413897,0.5542257509,-1.4558164806,https://salsa.debian.org/debian/email-reminder, https://git.launchpad.net/email-reminder,5687.9059953704,0,4,0 +emerald,-0.0546495714,2.2082915653,-0.5125443233,https://salsa.debian.org/compiz-team/emerald, https://gitlab.com/compiz/emerald,5471.9170949074,17,22,0 +enchant-2,0.4671232701,2.6138489169,-0.0641062097,https://salsa.debian.org/gnome-team/enchant-2/, https://github.com/AbiWord/enchant.git,5773.2183333333,7,27,0 +engauge-digitizer,0.4683184378,1.884463339,-0.1321998122,https://github.com/winchen/engauge_debian,https://github.com/winchen/engauge_debian,3059.1429976852,0,6,0 +engrampa,0.3364707225,1.2009801373,-0.0018104828,https://salsa.debian.org/debian-mate-team/engrampa, https://github.com/mate-desktop/engrampa.git,4345.1016319445,27,39,0 +enjarify,0.4273596447,3.1508079803,-0.3690926561,https://salsa.debian.org/android-tools-team/enjarify, https://github.com/Storyyeller/enjarify,1738.1109490741,3,12,0 +ensmallen,-4.6518608048,-1.2016773541,-5.4243559793,https://salsa.debian.org/science-team/ensmallen, https://github.com/mlpack/ensmallen,3267.1139236111,33,88,1 +entrypoints,0.857419697,4.1047834353,0.0074721981,https://salsa.debian.org/python-team/packages/entrypoints, https://github.com/takluyver/entrypoints,2468.1372569445,5,10,0 +enzyme,0.2209281122,2.7508227467,-0.5362781772,https://salsa.debian.org/python-team/packages/enzyme, https://github.com/Diaoul/enzyme,665.1386111111,0,3,0 +eog-plugins,0.8671201318,3.3419089533,-0.0322388688,https://salsa.debian.org/gnome-team/eog-plugins, https://gitlab.gnome.org/GNOME/eog-plugins.git,5728.9882407407,96,127,0 +eom,0.7150928608,1.9617905368,0.1623738211,https://salsa.debian.org/debian-mate-team/eom, https://github.com/mate-desktop/eom.git,4406.3552546296,31,40,0 +epoptes,-0.5424519728,0.3737235027,-0.8396779959,https://github.com/epoptes/epoptes,https://github.com/epoptes/epoptes,4351.4067939815,4,10,0 +epr-api,-0.1835594424,2.5490628716,-0.8931266505,https://salsa.debian.org/debian-gis-team/epr-api, https://github.com/bcdev/epr-api,4843.1898611111,0,19,0 +eqonomize,-0.7135305968,-0.2289944784,-0.8159201657,https://salsa.debian.org/debian/eqonomize, https://github.com/Eqonomize/eqonomize.git,2736.8790046296,6,16,0 +erfa,0.2626332321,2.3178268988,-0.1835083824,https://salsa.debian.org/debian-astro-team/erfa, https://github.com/liberfa/erfa,3687.0853240741,3,14,0 +eris,-0.632476633,0.6133940856,-1.1993507243,https://salsa.debian.org/games-team/eris, https://github.com/worldforge/eris,5633.2405092593,2,7,0 +erlang-bear,-1.5598707008,0.7740571851,-2.0549566735,https://salsa.debian.org/erlang-team/packages/erlang-bear, https://github.com/boundary/bear.git,985.0124652778,0,11,0 +erlang-bitcask,-1.6398055469,0.1846670761,-2.1643099959,https://salsa.debian.org/erlang-team/packages/erlang-bitcask, https://github.com/basho/bitcask.git,4652.9643865741,11,64,0 +erlang-cuttlefish,-1.1570169301,1.4079371161,-1.9722441303,https://salsa.debian.org/erlang-team/packages/erlang-cuttlefish, https://github.com/Kyorai/cuttlefish.git,3504.2075115741,6,42,0 +erlang-erlware-commons,-1.8744095819,0.8786023846,-2.6652549432,https://salsa.debian.org/erlang-team/packages/erlang-erlware-commons, https://github.com/erlware/erlware_commons.git,4657.9532060185,8,37,0 +erlang-folsom,-1.800386042,0.5181389354,-2.3318647887,https://salsa.debian.org/erlang-team/packages/erlang-folsom, https://github.com/boundary/folsom.git,1470.0027777778,3,37,0 +erlang-getopt,-1.2464014688,1.2405525277,-1.7527351047,https://salsa.debian.org/erlang-team/packages/erlang-getopt, https://github.com/jcomellas/getopt,5121.0564583333,4,19,0 +erlang-jiffy,0.1668501203,2.4255381931,-0.3758394191,https://salsa.debian.org/erlang-team/packages/erlang-jiffy, https://github.com/davisp/jiffy.git,3978.8049884259,23,14,0 +erlang-jose,-0.0923635531,2.3327857993,-0.5705493125,https://salsa.debian.org/ejabberd-packaging-team/erlang-jose, https://github.com/potatosalad/erlang-jose.git,3054.6266782407,10,30,0 +erlang-lager,0.1330257958,2.1705993041,-0.3821435959,https://salsa.debian.org/ejabberd-packaging-team/erlang-lager, https://github.com/erlang-lager/lager.git,4513.8316435185,17,130,0 +erlang-meck,-1.7847622485,-0.6288022984,-2.0590391976,https://salsa.debian.org/erlang-team/packages/erlang-meck, https://github.com/eproxus/meck.git,4901.9858333333,34,45,0 +erlang-p1-eimp,0.1136183804,3.1017499236,-0.5562814103,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-eimp, https://github.com/processone/eimp.git,1694.160462963,2,10,0 +erlang-p1-pkix,-0.234474963,1.5310066998,-0.5939605239,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-pkix, https://github.com/processone/pkix.git,1315.7862615741,2,8,0 +erlang-p1-sqlite3,-1.0747346658,0.9550646772,-1.5229756878,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-sqlite3, https://github.com/processone/erlang-sqlite3.git,5341.557349537,3,35,0 +erlang-p1-stun,0.0861728611,2.2277649536,-0.5072453461,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-stun, https://github.com/processone/stun.git,3846.8886574074,6,17,0 +erlang-p1-tls,-0.157152573,1.1095215195,-0.4106607165,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-tls, https://github.com/processone/fast_tls.git,3904.2279282408,5,26,0 +erlang-redis-client,-0.9857886966,1.2120613864,-1.431244437,https://salsa.debian.org/ejabberd-packaging-team/erlang-redis-client, https://github.com/wooga/eredis.git,2851.9773842593,2,48,0 +eshell-git-prompt,-0.9609411721,1.6959194934,-1.5424020682,https://salsa.debian.org/emacsen-team/eshell-git-prompt, https://github.com/xuchunyang/eshell-git-prompt.git,2545.7433564815,1,11,0 +eslint,-1.2564316406,0.1542299223,-1.5792844122,https://salsa.debian.org/js-team/eslint, https://github.com/eslint/eslint,3817.9542592593,734,428,0 +espeakup,-0.5060781696,0.017914626,-0.7493763311,https://salsa.debian.org/a11y-team/espeakup, https://github.com/williamh/espeakup,4725.7581134259,2,6,0 +ettercap,0.3516997318,0.9604770242,0.005454292,https://salsa.debian.org/pkg-security-team/ettercap, https://github.com/Ettercap/ettercap.git,4364.9420717593,13,80,0 +evilwm,0.1058350749,1.7709141502,-0.5887613795,https://github.com/mati75/evilwm.git,https://github.com/mati75/evilwm.git,3558.3624189815,0,7,0 +evolution,2.5591446172,2.7836504939,2.3574232172,https://salsa.debian.org/gnome-team/evolution, https://gitlab.gnome.org/GNOME/evolution,5777.8334143519,468,394,0 +evolution-data-server,1.9384187213,2.4750825897,1.5187005606,https://salsa.debian.org/gnome-team/evolution-data-server, https://gitlab.gnome.org/GNOME/evolution-data-server.git,5775.8098842593,354,378,0 +evqueue-core,-3.8008904307,0.0055401804,-5.0310894983,https://github.com/coldsource/evqueue-core,https://github.com/coldsource/evqueue-core,3176.9503935185,0,23,0 +exabgp,-0.5661496323,0.4143666278,-0.9529715,https://github.com/Exa-Networks/exabgp/tree/debian/sid,https://github.com/Exa-Networks/exabgp,5211.7322222222,28,135,5 +exam,-1.7403144971,0.8019610866,-2.4069240821,https://salsa.debian.org/python-team/packages/exam, https://github.com/fluxx/exam,1312.6528125,0,12,0 +execnet,0.3741113501,1.8889552178,-0.1873366737,https://salsa.debian.org/python-team/packages/execnet, https://github.com/pytest-dev/execnet,3112.8458564815,7,41,0 +exiv2,2.0072179934,2.8292317063,1.4445110983,https://salsa.debian.org/qt-kde-team/3rdparty/exiv2, https://github.com/Exiv2/exiv2.git,5776.6242708333,78,96,0 +extlib,-0.3481141416,0.3504252184,-0.5641171687,https://salsa.debian.org/ocaml-team/extlib, https://github.com/ygrek/ocaml-extlib.git,5693.3916435185,9,11,0 +extrace,-0.716911996,1.6418001527,-1.2621214591,https://salsa.debian.org/debian/extrace, https://github.com/chneukirchen/extrace,3149.892662037,4,2,0 +eyed3,1.2363220835,2.3225067373,0.5919861745,https://github.com/gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian,2546.8571180556,1,6,0 +eztrace,-2.6849692569,-2.4020306949,-2.7800946327,https://salsa.debian.org/debian/eztrace, https://gitlab.com/eztrace/eztrace,4927.9635185185,3,31,0 +f2fs-tools,0.83661444,2.4082792878,0.1750281143,https://salsa.debian.org/debian/f2fs-tools, https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git,4029.3101041667,112,35,0 +f3,0.2679415625,2.6534869606,-0.2923376765,https://salsa.debian.org/debian/f3, https://github.com/AltraMayor/f3.git,4281.9233912037,11,29,0 +faac,0.4086376314,1.7882056088,-0.0272312251,https://salsa.debian.org/multimedia-team/faac, https://github.com/knik0/faac,5409.5071180556,6,12,0 +faad2,1.0544175056,2.2339624185,0.4716640534,https://salsa.debian.org/multimedia-team/faad2, https://github.com/knik0/faad2.git,5741.3708333333,16,14,0 +faba-icon-theme,0.8911212387,4.4384740676,-0.1142443813,https://github.com/ubuntubudgie/faba-icon-theme/tree/debian,https://github.com/ubuntubudgie/faba-icon-theme,1592.9366782407,0,6,0 +fabric,0.2361201884,1.1224452265,-0.2395604756,https://salsa.debian.org/python-team/packages/fabric, https://github.com/fabric/fabric.git,5703.0252199074,79,121,0 +fabulous,-1.9004216273,-0.0667224502,-2.4935029916,https://salsa.debian.org/python-team/packages/fabulous, https://github.com/jart/fabulous.git,4223.1852546296,4,8,0 +facter,0.7724723905,1.481360411,0.3418020294,https://salsa.debian.org/puppet-team/facter, https://github.com/puppetlabs/facter.git,5785.7918055556,166,333,0 +fadecut,-0.6673500925,1.8538364578,-1.1385440983,https://github.com/fadecut/fadecut/tree/debian,https://github.com/fadecut/fadecut,2792.815474537,1,14,5 +fades,-1.9689594012,0.1209228302,-2.5543547767,https://salsa.debian.org/debian/fades, https://github.com/PyAr/fades.git,3294.5960763889,4,33,0 +fai,-0.1410290031,-0.0834131887,-0.1875070234,https://github.com/faiproject/fai,https://github.com/faiproject/fai,5773.004537037,75,16,0 +fail2ban,1.1379782097,1.517735022,0.8454800746,https://salsa.debian.org/python-team/packages/fail2ban, https://github.com/fail2ban/fail2ban,5786.4154976852,103,199,4 +faker,-0.1452807475,2.6942580551,-1.0921736433,https://salsa.debian.org/python-team/packages/faker, https://github.com/joke2k/faker,4045.7559953704,333,259,1 +fakesleep,-2.4812653648,0.0741874264,-3.0028931926,https://salsa.debian.org/python-team/packages/fakesleep, https://github.com/wearpants/fakesleep,0.0144907407,0,1,0 +faketime,1.2716884133,2.8149170393,0.4757531209,https://salsa.debian.org/debian/faketime, https://github.com/wolfcw/libfaketime.git,4505.6630671296,16,62,0 +fastd,0.3335142219,3.127871508,-0.5170005596,https://salsa.debian.org/communitywlan-team/fastd, https://github.com/NeoRaider/fastd.git,4199.101087963,7,5,0 +fastkml,-1.1512391887,1.6385429324,-1.936594667,https://salsa.debian.org/python-team/packages/fastkml, https://github.com/cleder/fastkml,4190.9523148148,13,36,2 +fasttracker2,-1.4004624291,1.3055702677,-2.1338147005,https://salsa.debian.org/multimedia-team/fasttracker2, https://github.com/8bitbubsy/ft2-clone,1461.1673958333,1,7,0 +fastx-toolkit,-0.3457886057,1.0929975464,-0.7809122121,https://salsa.debian.org/med-team/fastx-toolkit, https://github.com/agordon/fastx_toolkit.git,3133.6998726852,1,6,0 +fatcat,0.4842442346,3.2701121154,-0.2692644397,https://salsa.debian.org/pkg-security-team/fatcat, https://github.com/gregwar/fatcat,3248.5118981482,2,7,0 +fatresize,1.7814820731,4.9928976784,0.5330410517,https://salsa.debian.org/parted-team/fatresize, https://github.com/ya-mouse/fatresize,2189.5325,0,6,0 +fbpager,1.5882380186,4.0001262231,0.5019616446,https://salsa.debian.org/debian/fbpager, https://github.com/fluxbox/fbpager,37.6531828704,0,2,0 +fbset,1.3134317762,2.3999244161,0.6559617709,https://github.com/sudipm-mukherjee/fbset.git,https://github.com/sudipm-mukherjee/fbset.git,5178.7434375,2,3,0 +fceux,3.1366942055,8.4703461382,1.4758017291,https://salsa.debian.org/games-team/fceux, https://github.com/TASEmulators/fceux.git,5697.8923611111,20,74,0 +fcgiwrap,0.3134577921,1.1712166293,-0.0802338795,https://salsa.debian.org/debian/fcgiwrap, https://github.com/gnosek/fcgiwrap,2589.7245138889,5,10,0 +fcitx-kkc,-1.6833615693,1.2124287371,-2.4195782628,https://salsa.debian.org/debian/fcitx-kkc, https://gitlab.com/fcitx/fcitx-kkc,1810.1008564815,0,6,0 +fcitx-libpinyin,1.3904314469,5.5830539288,-0.0318276844,https://salsa.debian.org/input-method-team/fcitx-libpinyin, https://github.com/fcitx/fcitx-libpinyin,4359.6518287037,2,6,0 +fcitx5-gtk,-1.6224843962,1.4985736247,-2.4107066206,https://salsa.debian.org/input-method-team/fcitx5-gtk, https://github.com/fcitx/fcitx5-gtk,2400.241712963,8,2,0 +fdm,0.3672168929,2.1938634044,-0.4626394068,https://github.com/ft/pkg-fdm/,https://github.com/ft/pkg-fdm,5107.6653125,0,3,0 +fdupes,0.7978158499,1.8605336336,0.2449489316,https://salsa.debian.org/morph/fdupes, https://github.com/adrianlopezroche/fdupes.git,4776.1162962963,14,18,0 +feature-check,-1.6765147589,0.9466251752,-2.2250638777,https://salsa.debian.org/roam/feature-check/, https://gitlab.com/ppentchev/feature-check,1961.6795023148,0,4,0 +feedgnuplot,-0.0232006873,2.3192159355,-0.4758834119,https://salsa.debian.org/science-team/feedgnuplot, https://github.com/dkogan/feedgnuplot.git,4457.7498032407,3,11,0 +feedparser,0.3294900302,0.8872585066,0.0591644378,https://salsa.debian.org/python-team/packages/feedparser, https://github.com/kurtmckee/feedparser,5778.8555555556,18,42,0 +feh,1.2138905765,2.032070406,0.6968635057,https://salsa.debian.org/debian-phototools-team/feh, https://github.com/derf/feh.git,5050.1499074074,28,62,0 +fence-agents,-0.0526755775,0.7306960785,-0.3413654082,https://salsa.debian.org/ha-team/fence-agents, https://github.com/ClusterLabs/fence-agents,5742.9759722222,67,106,0 +ferm,1.1755791706,1.9154949013,0.6944760141,https://github.com/formorer/pkg-ferm,https://github.com/formorer/pkg-ferm,1766.1921643519,3,2,0 +ffcall,1.2163561015,2.4206203056,0.5342834253,https://salsa.debian.org/common-lisp-team/ffcall, https://git.savannah.gnu.org/git/libffcall.git,5555.6577546296,1,5,0 +ffindex,-0.3841947458,0.7848746806,-0.7256317717,https://salsa.debian.org/med-team/ffindex, https://github.com/ahcm/ffindex.git,4107.5377777778,1,9,0 +ffmpegthumbnailer,0.6218339,1.7026039531,0.1299334729,https://salsa.debian.org/multimedia-team/ffmpegthumbnailer, https://github.com/dirkvdb/ffmpegthumbnailer,5750.9852893519,2,26,0 +fftw3,0.5606957848,1.057025995,0.2642840796,https://salsa.debian.org/science-team/fftw3, https://github.com/FFTW/fftw3.git,5716.0486458333,17,23,0 +fgallery,0.458012458,3.3396604656,-0.3707179954,https://salsa.debian.org/debian-phototools-team/fgallery, https://gitlab.com/wavexx/fgallery,4332.6136574074,1,12,0 +filetea,-1.4880291168,-0.5976104943,-1.6869426547,https://salsa.debian.org/berto/filetea, https://github.com/elima/FileTea,2414.4586111111,4,1,0 +filtergen,-1.4900593021,-0.2527170414,-2.0161816495,https://github.com/jaqx0r/filtergen/tree/debian,https://github.com/jaqx0r/filtergen,4988.9503125,3,6,0 +findimagedupes,0.1571397257,1.014130714,-0.2428383842,https://salsa.debian.org/science-team/findimagedupes, https://github.com/jhnc/findimagedupes.git,5609.2984837963,0,1,0 +fiona,-0.4518295489,0.0316996689,-0.548290247,https://salsa.debian.org/debian-gis-team/fiona, https://github.com/Toblerity/Fiona.git,2732.0256712963,42,33,0 +firehol,0.2337473723,0.6567606394,-0.0568826659,https://salsa.debian.org/debian/firehol, https://github.com/firehol/firehol,5475.3480324074,8,33,1 +firewalld,0.3802885486,1.0201105776,0.0198271675,https://salsa.debian.org/utopia-team/firewalld, https://github.com/firewalld/firewalld.git,4736.135462963,181,38,0 +firmware-microbit-micropython,0.4784104265,3.6176659681,-0.4051143051,https://salsa.debian.org/python-team/packages/firmware-microbit-micropython, https://github.com/bbcmicrobit/micropython.git,2774.6861111111,52,41,0 +fitscut,-0.4618874668,0.8101022801,-0.6881204304,https://salsa.debian.org/debian-astro-team/fitscut, https://github.com/spacetelescope/fitscut,4.9342476852,1,2,0 +five-or-more,1.6899799119,4.4752729293,0.597230047,https://salsa.debian.org/gnome-team/five-or-more, https://gitlab.gnome.org/gnome/five-or-more,5740.0530671296,139,122,0 +fizmo-ncursesw,-0.2032604477,2.2028162183,-0.7770451436,https://github.com/chrender/fizmo-ncursesw,https://github.com/chrender/fizmo-ncursesw,4851.4142708333,0,5,0 +flake8-polyfill,-0.2905096989,2.1500667272,-0.8317869422,https://salsa.debian.org/python-team/packages/flake8-polyfill, https://github.com/PyCQA/flake8-polyfill.git,2673.1830902778,0,6,0 +flam3,0.7831072925,3.742743382,-0.2650609153,https://salsa.debian.org/debian/flam3, https://github.com/scottdraves/flam3,1152.1052083333,1,7,0 +flamerobin,-0.3278666577,0.6650108881,-0.5737443078,https://salsa.debian.org/debian/flamerobin, https://github.com/mariuz/flamerobin,5771.7548032407,5,30,0 +flameshot,1.5510748753,4.9243906685,0.3526964782,https://salsa.debian.org/debian/flameshot, https://github.com/flameshot-org/flameshot.git,2393.0218055556,261,25,0 +flare-engine,0.197109595,2.3607686866,-0.3714716145,https://salsa.debian.org/games-team/flare-engine, https://github.com/flareteam/flare-engine,4571.459525463,18,81,1 +flare-game,0.1358159222,2.6883714116,-0.4195798885,https://salsa.debian.org/games-team/flare-game, https://github.com/flareteam/flare-game,4548.8245023148,15,65,1 +flask,0.2833230291,1.2920096068,-0.0619464216,https://salsa.debian.org/python-team/packages/flask, https://github.com/pallets/flask,4990.4677430556,414,463,2 +flask-babel,0.2492351844,2.0636321938,-0.1429188404,https://salsa.debian.org/python-team/packages/flask-babel, https://github.com/python-babel/flask-babel,4873.4565625,14,34,1 +flask-jwt-simple,-3.7410042156,-1.191605345,-4.3201217059,https://salsa.debian.org/python-team/packages/flask-jwt-simple, https://github.com/vimalloc/flask-jwt-simple.git,1518.8651041667,3,4,0 +flask-ldapconn,-1.0816817059,1.8547595955,-1.9421748383,https://salsa.debian.org/python-team/packages/flask-ldapconn, https://github.com/rroemhild/flask-ldapconn,3190.6329976852,4,10,0 +flask-limiter,-2.0341091645,0.7949667635,-2.8674840166,https://salsa.debian.org/python-team/packages/flask-limiter, https://github.com/alisaifee/flask-limiter.git,3575.1041666667,19,27,0 +flask-mongoengine,-1.2847143273,1.6755709624,-2.0678485801,https://salsa.debian.org/python-team/packages/flask-mongoengine, https://github.com/mongoengine/flask-mongoengine,4513.2838078704,18,81,5 +flask-openid,0.228453383,2.6597609885,-0.3213084888,https://salsa.debian.org/python-team/packages/flask-openid, https://github.com/mitsuhiko/flask-openid.git,4219.2356481482,6,12,0 +flask-restful,0.34791132,1.6712629803,-0.0854278525,https://salsa.debian.org/python-team/packages/flask-restful, https://github.com/flask-restful/flask-restful,3867.9860763889,52,124,0 +flask-script,0.5220222487,3.053102236,-0.2723781373,https://salsa.debian.org/python-team/modules/flask-script, https://github.com/smurfix/flask-script,3536.3428009259,5,50,1 +flask-silk,-0.0747361696,1.0191065444,-0.3413292213,https://salsa.debian.org/python-team/packages/flask-silk, https://github.com/sublee/flask-silk.git,2842.4741087963,0,7,0 +flask-socketio,-0.8281313235,2.2984873725,-1.9620702678,https://salsa.debian.org/debian/python-flask-socketio, https://github.com/miguelgrinberg/Flask-SocketIO.git,3545.4973032407,41,32,0 +flask-sqlalchemy,0.998578612,4.1168060518,-0.0240710394,https://salsa.debian.org/python-team/packages/flask-sqlalchemy, https://github.com/pallets-eco/flask-sqlalchemy,4934.1848148148,57,73,1 +flask-testing,-0.8333977818,1.712979433,-1.3777911289,https://salsa.debian.org/python-team/packages/flask-testing, https://github.com/jarus/flask-testing,3837.3830439815,7,29,1 +flask-wtf,0.6403841752,2.7925097947,-0.0660212158,https://salsa.debian.org/python-team/packages/flask-wtf, https://github.com/wtforms/flask-wtf.git,4913.3304976852,22,86,0 +flatbuffers,-1.160445057,0.9112660212,-1.581988532,https://salsa.debian.org/debian/flatbuffers, https://github.com/google/flatbuffers.git,3592.7395138889,597,121,0 +flexc++,-0.0402405775,1.9776000523,-0.5858067219,https://salsa.debian.org/debian/flexcpp, https://gitlab.com/fbb-git/flexcpp.git,4727.0600810185,1,1,0 +flim,0.7666961285,1.9591073504,0.1611787583,https://salsa.debian.org/debian/flim, https://github.com/wanderlust/flim,5370.129212963,4,13,0 +flint-arb,0.2828492531,2.1064015572,-0.2652901459,https://salsa.debian.org/math-team/flint-arb, https://github.com/fredrik-johansson/arb,4241.2918865741,4,42,0 +flintqs,0.8705325607,4.2184408876,-0.1229863815,https://salsa.debian.org/science-team/flintqs, https://github.com/sagemath/FlintQS,2671.3606365741,0,2,0 +flite,0.3744081413,0.8157223595,0.1404183728,https://salsa.debian.org/a11y-team/flite, https://github.com/festvox/flite.git,1668.0555208333,9,16,0 +flot,0.7529061198,3.3396556101,-0.0338526409,https://salsa.debian.org/js-team/flot, https://github.com/flot/flot,5632.0385300926,16,98,3 +flowblade,0.8332769332,2.9638769097,0.0346969011,https://salsa.debian.org/multimedia-team/flowblade, https://github.com/jliljebl/flowblade,3692.6985532407,23,35,0 +flowgrind,-1.3188610296,0.5892732766,-1.7522105577,https://github.com/flowgrind/flowgrind,https://github.com/flowgrind/flowgrind,4925.7733564815,2,23,4 +flufl.bounce,-0.378447343,2.3978249101,-1.1021096101,https://salsa.debian.org/python-team/packages/flufl.bounce, https://gitlab.com/warsaw/flufl.bounce.git,4446.0210763889,0,8,0 +flufl.i18n,-0.5366897329,1.6814909318,-1.0671032708,https://salsa.debian.org/python-team/packages/flufl.i18n, https://gitlab.com/warsaw/flufl.i18n,4999.8586689815,0,1,0 +flufl.testing,-2.4208328303,0.1435072101,-2.991931633,https://salsa.debian.org/python-team/packages/flufl.testing, https://gitlab.com/warsaw/flufl.testing.git,1541.1081597222,0,2,0 +fluidsynth,0.2185082166,0.5399750288,0.0588521013,https://salsa.debian.org/multimedia-team/fluidsynth, https://github.com/Fluidsynth/fluidsynth.git,5564.4887152778,68,41,0 +fmit,1.0288892251,2.9965682542,0.1345537728,https://salsa.debian.org/debian/fmit, https://github.com/gillesdegottex/fmit.git,2966.0915162037,22,10,0 +fntsample,-1.2332590184,-0.5969756101,-1.356176006,https://salsa.debian.org/debian/fntsample, https://github.com/eugmes/fntsample.git,4121.0789467593,2,4,0 +folks,0.5798737677,1.4746017279,0.1685699484,https://salsa.debian.org/gnome-team/folks, https://gitlab.gnome.org/GNOME/folks,4953.6632407407,100,137,0 +fomp,0.1125936291,2.618486984,-0.4784479957,https://salsa.debian.org/multimedia-team/fomp, https://gitlab.com/drobilla/fomp.git,4051.6642361111,0,1,0 +font-manager,0.5018954955,1.5987261482,0.0085779359,https://salsa.debian.org/fonts-team/font-manager, https://github.com/FontManager/master,5185.326875,55,11,1 +fontmake,-0.9339075607,1.2714886107,-1.4560088234,https://salsa.debian.org/fonts-team/fontmake, https://github.com/googlei18n/fontmake.git,2987.8108217593,9,29,0 +fontmatrix,2.1599479475,4.0655470566,1.1275954414,https://salsa.debian.org/fonts-team/fontmatrix, https://github.com/fontmatrix/fontmatrix,5474.3999074074,7,13,0 +fonts-cantarell,0.3962956553,1.3585973372,0.046277997,https://salsa.debian.org/fonts-team/fonts-cantarell, https://gitlab.gnome.org/GNOME/cantarell-fonts.git,4785.5285185185,59,28,0 +fonts-ebgaramond,0.5785546488,2.3509592726,0.0015723505,https://salsa.debian.org/fonts-team/fonts-ebgaramond, https://github.com/georgd/EB-Garamond.git,4689.2650462963,5,28,0 +fonts-eeyek,0.0792668658,3.5341201635,-0.6966421681,https://salsa.debian.org/fonts-team/fonts-eeyek, https://github.com/silnrsi/font-eeyek.git,1465.3906018519,1,3,0 +fonts-firacode,0.0951660444,1.617436868,-0.2348967558,https://salsa.debian.org/fonts-team/fonts-firacode, https://github.com/tonsky/FiraCode.git,3284.7463194445,91,34,0 +fonts-hack,0.3465705045,2.2081920487,-0.0730912243,https://salsa.debian.org/fonts-team/fonts-hack, https://github.com/source-foundry/Hack,1976.7616666667,7,26,5 +fonts-hosny-amiri,0.0448942076,0.9201808842,-0.1302579721,https://salsa.debian.org/fonts-team/fonts-hosny-amiri, https://github.com/alif-type/amiri.git,5474.3578935185,5,10,0 +fonts-inter,0.0129835005,2.785802699,-0.6565554603,https://salsa.debian.org/fonts-team/fonts-inter, https://github.com/rsms/inter,2281.2912847222,23,7,3 +fonts-junicode,0.9749123035,2.3528322079,0.3195301325,https://salsa.debian.org/fonts-team/fonts-junicode, https://github.com/psb1558/Junicode-font,1677.9374305556,3,4,0 +fonts-sil-abyssinica,1.1912418458,4.4703518731,0.0766166908,https://salsa.debian.org/fonts-team/fonts-sil-abyssinica, https://github.com/silnrsi/font-abyssinica,1729.8640509259,1,8,0 +fonts-sil-andika,0.226819753,1.7302356665,-0.1521199628,https://salsa.debian.org/fonts-team/fonts-sil-andika, https://github.com/silnrsi/font-andika,2361.7046180556,0,9,0 +fonttools,-0.1209236523,0.4052701305,-0.3599910312,https://salsa.debian.org/fonts-team/fonttools, https://github.com/fonttools/fonttools.git,5774.704837963,37,128,0 +foomatic-db,1.5209798812,2.5785791995,0.8766539303,https://salsa.debian.org/printing-team/foomatic-db, https://github.com/OpenPrinting/foomatic-db.git,5681.1902083333,5,53,0 +forensic-artifacts,0.1785489981,2.9182048242,-0.3867987892,https://salsa.debian.org/pkg-security-team/forensic-artifacts, https://github.com/ForensicArtifacts/artifacts.git,3293.8335763889,83,3,0 +formiko,0.1628471672,3.1297243219,-0.6061311313,https://github.com/ondratu/formiko-debian,https://github.com/ondratu/formiko-debian,1770.974849537,2,2,0 +fortunes-br,0.3826030919,2.4726357351,-0.4239383871,https://github.com/leitao/fortunes-br.git,https://github.com/leitao/fortunes-br.git,0.0056944444,0,1,0 +fortunes-mario,0.2746196581,1.8773332397,-0.3193714441,http://github.com/fike/fortunes-mario-deb,http://github.com/fike/fortunes-mario-deb,1606.775150463,3,8,0 +fpgatools,0.2633177336,3.6230241615,-0.6179143711,https://github.com/Wolfgang-Spraul/fpgatools,https://github.com/Wolfgang-Spraul/fpgatools,1132.0893287037,1,6,0 +fpylll,0.0164017335,1.0711175913,-0.3222048793,https://salsa.debian.org/python-team/packages/fpylll, https://github.com/fplll/fpylll.git,2905.0817476852,7,30,0 +fqterm,-1.4778336115,-0.4100027914,-1.8864383483,https://salsa.debian.org/chinese-team/fqterm, https://github.com/mytbk/fqterm,3515.765625,5,7,0 +freealchemist,0.059449695,2.2746437451,-0.4707582387,https://salsa.debian.org/python-team/packages/freealchemist, https://github.com/dakk/FreeAlchemist,3586.1830324074,0,3,0 +freedict-tools,0.0533159838,3.7765554083,-1.2991303501,https://salsa.debian.org/freedict-team/freedict-tools, https://github.com/freedict/tools.git,2348.65375,1,10,0 +freedoom,0.2108357789,1.5180752019,-0.2233165066,https://salsa.debian.org/games-team/freedoom, https://github.com/freedoom/freedoom,5775.9418055556,112,57,0 +freedroidrpg,0.1216530823,0.8139302465,-0.2386704958,https://salsa.debian.org/games-team/freedroidrpg, https://codeberg.org/freedroid/freedroid-src.git,5650.9641203704,30,22,0 +freedv,-0.3213805891,1.1426935949,-0.7378333115,https://salsa.debian.org/debian-hamradio-team/freedv, https://github.com/drowe67/freedv-gui,3043.6515972222,1,33,0 +freelan,-0.3138590476,2.0410635467,-1.2288080575,https://salsa.debian.org/debian/freelan, https://github.com/freelan-developers/freelan,3106.2727893519,2,25,1 +freerdp2,0.5356026713,1.3656829718,0.1433246013,https://salsa.debian.org/debian-remote-team/freerdp2, https://github.com/FreeRDP/FreeRDP,4547.9750347222,206,376,4 +freespace2,0.6715354207,4.1218078844,-0.5027135354,https://salsa.debian.org/onlyjob/freespace2, https://github.com/scp-fs2open/fs2open.github.com.git,5784.4596759259,28,131,0 +freespace2-launcher-wxlauncher,-0.3388701311,1.6566638619,-0.935585835,https://salsa.debian.org/games-team/freespace2-launcher-wxlauncher, https://github.com/scp-fs2open/wxlauncher,4804.2101041667,7,12,2 +freewheeling,0.5792903992,2.5071657819,-0.2534567966,https://salsa.debian.org/multimedia-team/freewheeling, https://github.com/free-wheeling/freewheeling,5218.8730671296,1,3,0 +freezegun,-0.2257712858,0.7071389263,-0.5676574597,https://salsa.debian.org/debian/python-freezegun, https://github.com/spulec/freezegun.git,4013.1562847222,16,106,0 +fribidi,0.5317144603,1.1867275404,0.1960013856,https://salsa.debian.org/debian/fribidi, https://github.com/fribidi/fribidi.git,5722.3697569445,10,31,0 +fritzing,0.5235007314,1.2798335654,0.0963446036,https://salsa.debian.org/georgesk/fritzing, https://github.com/fritzing/fritzing-app,3813.510150463,42,60,10 +frogatto,0.2316946335,1.7654688811,-0.3927779946,https://salsa.debian.org/games-team/frogatto, https://github.com/frogatto/frogatto.git,5646.0325115741,6,89,0 +frogr,-0.9621301263,-0.4009909247,-1.0438506371,https://salsa.debian.org/berto/frogr, https://gitlab.gnome.org/GNOME/frogr,5249.9635416667,64,66,0 +frotz,0.7124307228,2.510283985,-0.0396569123,https://salsa.debian.org/games-team/frotz, https://gitlab.com/DavidGriffith/frotz,4338.9843402778,8,42,0 +frozen-bubble,0.1650357772,0.4601977225,-0.0231433032,https://salsa.debian.org/perl-team/modules/packages/frozen-bubble, https://github.com/kthakore/frozen-bubble.git,3389.417650463,4,17,0 +frozen-flask,-1.5052476806,0.5681861838,-1.9677533136,https://github.com/SimonSapin/Frozen-Flask/,https://github.com/SimonSapin/Frozen-Flask,4711.306712963,2,29,0 +frr,-0.1321051946,1.6555803337,-0.7350403551,https://github.com/FRRouting/frr/tree/debian/master,https://github.com/FRRouting/frr,5771.604525463,249,462,1 +fsarchiver,0.3162706618,1.8035945017,-0.2027503164,https://salsa.debian.org/debian/fsarchiver, https://github.com/fdupoux/fsarchiver,4865.7888078704,5,11,0 +fscrypt,-0.1186611428,2.0782772424,-0.6462100318,https://salsa.debian.org/go-team/packages/fscrypt, https://github.com/google/fscrypt,2602.2166782407,17,13,2 +fsm-lite,-0.6806713238,1.6544118073,-1.119238488,https://salsa.debian.org/med-team/fsm-lite, https://github.com/nvalimak/fsm-lite.git,170.2342824074,0,5,0 +fstl,-0.0638362027,2.7092194897,-0.7860703613,https://salsa.debian.org/sur5r/fstl, https://github.com/fstl-app/fstl,3488.4875231482,10,13,0 +fsvs,-0.0088293976,2.3566933183,-1.0467726594,https://salsa.debian.org/debian/fsvs, https://github.com/phmarek/fsvs.git,2690.6840972222,8,4,0 +fswatch,0.0801114642,1.6766491485,-0.5710250772,https://salsa.debian.org/debian/fswatch, https://github.com/emcrisostomo/fswatch.git,4816.5607060185,6,27,0 +ftgl,1.2143599406,2.1964355506,0.6199512905,https://salsa.debian.org/ftgl-team/ftgl, https://github.com/frankheckenbach/ftgl,5371.3004976852,3,17,0 +funcoeszz,1.014177301,3.1202339314,0.1028457996,https://salsa.debian.org/debian/funcoeszz, https://github.com//funcoeszz/funcoeszz,5372.2990972222,4,52,0 +fuse-posixovl,0.5943044666,4.0904859198,-0.4386803311,https://salsa.debian.org/kkamagui-guest/fuse-posixovl, https://git.code.sf.net/p/posixovl/posixovl,5655.3838078704,0,3,0 +fusioninventory-agent,0.4127421594,1.2756692416,0.0042753938,https://salsa.debian.org/perl-team/modules/packages/fusioninventory-agent, https://github.com/fusioninventory/fusioninventory-agent.git,5660.8499537037,88,75,0 +fuzzylite,0.0236301475,2.058515685,-0.6491075451,https://salsa.debian.org/debian/fuzzylite, https://github.com/fuzzylite/fuzzylite,3931.5160648148,3,20,0 +fuzzywuzzy,-0.4399858222,1.3206226327,-0.8570537668,https://salsa.debian.org/python-team/packages/fuzzywuzzy, https://github.com/seatgeek/fuzzywuzzy,3716.0564236111,14,64,0 +fvwm,0.3091526029,0.4698895246,0.1811764904,https://github.com/somiaj/fvwm2-debian,https://github.com/somiaj/fvwm2-debian,699.9356018519,1,3,0 +fwbuilder,0.5692107668,1.0021497206,0.2589942289,https://salsa.debian.org/debian/fwbuilder, https://github.com/fwbuilder/fwbuilder.git,5643.1420717593,7,40,0 +tarantool,-0.3673257713,0.2256543417,-0.6704619641,https://salsa.debian.org/debian/fwknop, https://github.com/mrash/fwknop.git,5311.0505324074,2,37,0 +fwsnort,-0.7332928037,0.4721412764,-1.1449028683,https://salsa.debian.org/debian/fwsnort, https://github.com/mrash/fwsnort.git,3934.7578587963,0,5,0 +fwupdate,0.0843853428,1.0589141202,-0.2444913519,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365741,21,5,0 +fyba,0.4754986254,2.6289545812,-0.0402028003,https://salsa.debian.org/debian-gis-team/fyba, https://github.com/kartverket/fyba.git,1185.3266203704,1,10,0 +fzy,-0.3762088336,1.9399715065,-0.8640459444,https://salsa.debian.org/debian/fzy, https://github.com/jhawthorn/fzy,2752.1003125,14,25,0 +g2,-0.2327989276,0.4800818237,-0.5737455032,https://salsa.debian.org/med-team/g2, https://github.com/danielrmeyer/g2,0,0,1,0 +g810-led,-0.8841874287,0.5790349373,-1.1503333071,https://salsa.debian.org/debian/g810-led, https://github.com/MatMoul/g810-led.git,2361.9422453704,17,31,0 +galera-3,0.7672216362,1.8214409205,0.2422758222,https://salsa.debian.org/mariadb-team/galera-3, https://github.com/codership/galera,5691.7423958333,10,50,1 +galpy,-0.1631443187,1.8316817434,-0.6409141837,https://salsa.debian.org/debian-astro-team/galpy, https://github.com/jobovy/galpy.git,4901.3716550926,10,36,0 +gambc,1.0804097404,3.1412985329,0.076691093,https://salsa.debian.org/abdelq-guest/gambc, https://github.com/gambit/gambit,5777.7291203704,5,77,0 +gamemode,-0.3379648043,0.5080002194,-0.5278996828,https://salsa.debian.org/games-team/gamemode, https://github.com/FeralInteractive/gamemode,2107.9380555556,45,20,1 +gammu,-0.0411360175,0.2124732412,-0.184442505,https://salsa.debian.org/debian/gammu, https://github.com/gammu/gammu.git,5760.4231481482,217,53,0 +ganeti-os-noop,-0.2281036129,2.1546963922,-0.852366861,https://salsa.debian.org/ganeti-team/ganeti-os-noop, https://github.com/grnet/ganeti-os-noop,677.1858449074,0,6,0 +ganglia,1.9418594289,3.110187068,1.2272175248,https://salsa.debian.org/debian/ganglia, https://github.com/ganglia/monitor-core.git,5029.4003703704,5,128,0 +ganglia-modules-linux,0.0664199188,1.2956066726,-0.272928033,https://salsa.debian.org/debian/ganglia-modules-linux, https://github.com/ganglia/ganglia-modules-linux.git,1617.3040972222,0,6,0 +ganglia-web,2.9867677001,5.9425493751,1.6513889403,https://salsa.debian.org/debian/ganglia-web, https://github.com/ganglia/ganglia-web,3989.7465162037,9,91,0 +ganv,0.6772756322,3.2270822168,-0.1652762748,https://salsa.debian.org/multimedia-team/ganv, https://gitlab.com/drobilla/ganv.git,4309.0079166667,0,1,0 +gap-sonata,-0.5294268825,1.0612461481,-0.8314567315,https://salsa.debian.org/science-team/gap-sonata, https://github.com/gap-packages/sonata.git,4006.9744907407,4,7,0 +gap-toric,-0.2451456454,2.4949167647,-0.8186260968,https://salsa.debian.org/science-team/gap-toric, https://github.com/gap-packages/toric.git,3029.62,4,5,0 +gargoyle-free,0.3494600276,1.5754786967,-0.2152021362,https://salsa.debian.org/games-team/gargoyle-free, https://github.com/garglk/garglk.git,5517.4756134259,6,35,0 +garmin-forerunner-tools,-0.2174342508,0.5366088912,-0.517674515,https://salsa.debian.org/debian/garmin-forerunner-tools, https://github.com/jorgesca/garmintools.git,2685.7982986111,0,5,0 +gatk-native-bindings,-0.1009865887,2.4624009827,-0.676296384,https://salsa.debian.org/java-team/gatk-native-bindings, https://github.com/broadinstitute/gatk-native-bindings,505.8018981481,1,4,0 +gau2grid,-0.815898809,1.1342927173,-1.4069047503,https://salsa.debian.org/debichem-team/gau2grid, https://github.com/dgasmith/gau2grid,1166.9793981482,4,10,0 +gaupol,0.4507268429,1.4194389083,0.0001075777,https://salsa.debian.org/python-team/packages/gaupol, https://github.com/otsaloma/gaupol,5574.4414699074,17,10,0 +gbrainy,0.4213338041,1.7168026231,-0.1101913881,https://salsa.debian.org/gnome-team/gbrainy, https://gitlab.gnome.org/GNOME/gbrainy.git,5737.0182175926,96,103,0 +gcab,0.008966048,0.2479326429,-0.0507674558,https://salsa.debian.org/debian/gcab, https://gitlab.gnome.org/GNOME/gcab,3919.5894328704,41,40,0 +gconjugue,-1.193395361,0.6134141951,-1.7117987645,https://salsa.debian.org/debian/gconjugue, https://github.com/jalvesaq/gconjugue,2752.1538888889,0,4,0 +gcr,0.8348399875,1.794712233,0.3455810655,https://salsa.debian.org/gnome-team/gcr, https://gitlab.gnome.org/GNOME/gcr.git,5613.7803356482,144,144,0 +gdk-pixbuf,1.1692833842,1.7725404982,0.7445546076,https://salsa.debian.org/gnome-team/gdk-pixbuf, https://gitlab.gnome.org/GNOME/gdk-pixbuf,5703.8827199074,333,477,0 +gdm3,4.8105383978,5.600824074,4.2210443939,https://salsa.debian.org/gnome-team/gdm, https://gitlab.gnome.org/gnome/gdm.git,5764.0323842593,352,398,0 +gdnsd,-2.9678392165,-0.3979054994,-3.671905411,https://github.com/paravoid/gdnsd,https://github.com/paravoid/gdnsd,4241.3566550926,2,11,0 +geary,1.3293169547,3.2106237777,0.4346454941,https://salsa.debian.org/gnome-team/geary, https://gitlab.gnome.org/GNOME/geary.git,4622.4151851852,187,137,0 +gedit,2.6616450231,3.3176727419,2.1545116525,https://salsa.debian.org/gnome-team/gedit, https://gitlab.gnome.org/GNOME/gedit.git,5774.6086921296,377,403,0 +gegl,0.3848145286,0.8657154487,0.1240440539,https://salsa.debian.org/gnome-team/gegl, https://gitlab.gnome.org/GNOME/gegl.git,5778.9302777778,173,134,0 +geki2,-0.2585741806,1.1302096458,-0.6025965378,https://salsa.debian.org/games-team/geki2, https://github.com/Quipyowert2/geki2,1827.8569328704,0,3,0 +gelemental,0.1018714919,1.200080654,-0.3080550909,https://salsa.debian.org/debichem-team/gelemental, https://github.com/ginggs/gelemental,1560.5809722222,8,4,0 +gem,0.6794465787,1.2250274446,0.3202377812,https://salsa.debian.org/multimedia-team/pd/gem, https://github.com/umlaeute/Gem,5620.0985416667,11,58,1 +gemmlowp,-0.9142098618,0.9922591061,-1.3402576316,https://salsa.debian.org/science-team/gemmlowp, https://github.com/google/gemmlowp,3053.0219791667,34,42,0 +generator-scripting-language,-1.7873471074,-0.175086234,-2.0689484551,https://github.com/bluca/gsl,https://github.com/bluca/gsl,3538.6016782407,4,35,0 +genetic,0.2707726153,2.7069673968,-0.4380759284,https://salsa.debian.org/science-team/genetic, https://github.com/skoblov-lab/genetic,1118.9616550926,2,4,0 +genext2fs,-0.2882576546,0.2063423739,-0.5033680475,https://salsa.debian.org/debian/genext2fs, https://github.com/bestouff/genext2fs,3682.2901041667,0,10,0 +genius,0.3004989924,1.3427255213,-0.1766512835,https://salsa.debian.org/fsateler/genius, https://gitlab.gnome.org/GNOME/genius,5737.9909375,52,59,0 +genshi,0.9818774681,2.3164950742,0.2884042956,https://salsa.debian.org/python-team/packages/genshi, https://github.com/edgewall/genshi.git,5693.5953472222,8,26,0 +geoalchemy2,-1.4791076717,2.3173813219,-2.4527815705,https://salsa.debian.org/python-team/packages/geoalchemy2, https://github.com/geoalchemy/geoalchemy2,4123.1061921296,18,35,1 +geocode-glib,0.3295627212,1.1651022605,0.0339799247,https://salsa.debian.org/gnome-team/geocode-glib, https://gitlab.gnome.org/GNOME/geocode-glib.git,4127.4418287037,10,34,0 +geographiclib,-0.2708682617,0.4210044305,-0.5188380677,https://salsa.debian.org/debian-gis-team/geographiclib, https://github.com/geographiclib/geographiclib.git,5589.1283333333,0,17,0 +geoipupdate,0.0025717488,1.6500054943,-0.358124043,https://salsa.debian.org/debian/geoipupdate, https://github.com/maxmind/geoipupdate,3751.8112615741,25,42,0 +geolinks,-0.181262941,2.4550244029,-0.7445474906,https://salsa.debian.org/debian-gis-team/geolinks, https://github.com/geopython/geolinks.git,3405.8642361111,2,3,0 +geophar,-0.941493032,-0.2177195536,-1.1312469677,https://salsa.debian.org/georgesk/geophar, https://github.com/wxgeo/geophar,4439.4260185185,0,6,0 +geopy,-0.1987709641,1.3312828211,-0.5312977883,https://salsa.debian.org/python-team/packages/geopy, https://github.com/geopy/geopy,5485.118125,94,49,3 +geos,0.1190875372,0.4511751352,-0.0256104859,https://salsa.debian.org/debian-gis-team/geos, https://github.com/libgeos/geos.git,5683.0946064815,37,52,0 +gerbv,0.7065741787,1.742115916,0.1740178886,https://salsa.debian.org/electronics-team/gerbv, https://github.com/gerbv/gerbv.git,5724.3901851852,29,11,0 +gevent-websocket,0.6039945697,3.374931382,-0.2972612143,https://salsa.debian.org/python-team/packages/gevent-websocket, https://gitlab.com/noppo/gevent-websocket.git,4346.5879166667,0,27,0 +gfal2,-1.3660250176,-0.048560094,-1.7281866652,https://salsa.debian.org/ellert/gfal2, https://gitlab.cern.ch/dmc/gfal2,4253.842650463,3,31,0 +ghex,0.7461236814,1.7282682208,0.2243822135,https://salsa.debian.org/gnome-team/ghex, https://gitlab.gnome.org/GNOME/ghex,5784.5501157407,81,105,0 +ghostwriter,-0.3040682529,0.7823099531,-0.4770142473,https://salsa.debian.org/qt-kde-team/kde/ghostwriter, https://invent.kde.org/office/ghostwriter,3031.7841435185,28,53,0 +ghp-import,-0.4929741774,2.5133796067,-1.274122331,https://salsa.debian.org/python-team/packages/ghp-import, https://github.com/c-w/ghp-import.git,4494.8705092593,15,11,0 +giada,-0.129962567,0.8497161779,-0.437542038,https://salsa.debian.org/multimedia-team/giada, https://github.com/monocasual/giada.git,4048.8034953704,16,22,0 +giflib,1.7112435489,3.0382023636,0.9647327432,https://salsa.debian.org/debian/giflib, https://git.code.sf.net/p/giflib/code,3542.8980787037,16,3,0 +gifsicle,0.0455075889,0.8797373438,-0.2073778914,https://salsa.debian.org/debian/gifsicle, https://github.com/kohler/gifsicle,5684.8868402778,4,17,0 +giggle,0.634548379,2.0170954436,-0.00263279,https://salsa.debian.org/debian/giggle, https://gitlab.gnome.org/GNOME/giggle.git,4962.7408564815,61,61,0 +gimagereader,-0.2139114356,0.0353297888,-0.283353251,https://salsa.debian.org/debian/gimagereader, https://github.com/manisandro/gImageReader,3878.6116319445,113,24,0 +gimp-texturize,0.1555855572,1.2662980132,-0.1945666027,https://salsa.debian.org/debian/gimp-texturize, https://github.com/lmanul/gimp-texturize.git,3625.7350810185,1,11,0 +ginga,-0.4577686277,0.2021625896,-0.5835927523,https://salsa.debian.org/debian-astro-team/ginga, https://github.com/ejeschke/ginga.git,4188.9224189815,11,44,0 +ginkgocadx,-0.2628483641,0.2619463655,-0.4738586037,https://salsa.debian.org/med-team/ginkgocadx, https://github.com/gerddie/ginkgocadx.git,2123.8061111111,1,5,0 +git-big-picture,0.3518387907,3.3166834133,-0.4853412989,https://salsa.debian.org/python-team/packages/git-big-picture, https://github.com/git-big-picture/git-big-picture.git,5024.3069097222,14,10,0 +git-ftp,-0.1788027121,1.7435604018,-0.6973926208,https://salsa.debian.org/debian/git-ftp, https://github.com/git-ftp/git-ftp,4532.203599537,24,92,3 +git-lfs,0.1085080655,1.2887939983,-0.2117786782,https://salsa.debian.org/go-team/packages/git-lfs, https://github.com/github/git-lfs.git,3479.3090162037,54,197,0 +git-remote-hg,1.3804187017,3.9090882195,0.2873521231,https://salsa.debian.org/debian/git-remote-hg, https://github.com/mnauw/git-remote-hg/commits/master,5185.326875,55,11,0 +gitg,1.1505705695,1.9933994356,0.6144290835,https://salsa.debian.org/gnome-team/gitg, https://gitlab.gnome.org/GNOME/gitg.git,5649.9738541667,179,135,0 +github-backup,-0.5135509471,0.0361166657,-0.7320665039,https://salsa.debian.org/debian/github-backup,https://salsa.debian.org/debian/github-backup,3299.6675694445,9,13,0 +gitinspector,-0.5400481096,0.210511756,-0.7012239295,https://salsa.debian.org/python-team/packages/gitinspector, https://github.com/ejwa/gitinspector,3089.9889236111,14,6,3 +gitless,-1.0129472172,1.1745444276,-1.5532855313,https://salsa.debian.org/python-team/packages/gitless, https://github.com/sdg-mit/gitless.git,1580.4098032407,8,31,0 +gitmagic,0.0058626792,1.3968023647,-0.4117773836,https://salsa.debian.org/debian/gitmagic, https://github.com/blynn/gitmagic,4774.4399537037,12,73,0 +gitsome,-1.5867602711,-1.1930128544,-1.6624023004,https://salsa.debian.org/debian/gitsome, https://github.com/donnemartin/gitsome,1294.2226388889,14,16,0 +givaro,0.5117865646,1.6258650747,-0.0135088131,https://salsa.debian.org/math-team/givaro, https://github.com/linbox-team/givaro,5710.7340740741,9,44,0 +giza,-0.0821548044,1.7697955982,-0.4330998724,https://salsa.debian.org/debian-astro-team/giza, https://github.com/danieljprice/giza,4755.9934837963,2,14,0 +gjots2,0.4947222776,2.209205505,-0.3492735275,https://github.com/leggewie-DM/gjots2,https://github.com/leggewie-DM/gjots2,4231.0400231482,3,4,0 +gjs,1.6540349872,2.8437347561,0.9432711587,https://salsa.debian.org/gnome-team/gjs, https://gitlab.gnome.org/GNOME/gjs.git,5531.0093865741,56,156,0 +gkl,0.0425756274,2.688702435,-0.6346530997,https://salsa.debian.org/java-team/gkl, https://github.com/Intel-HLS/GKL.git,2649.0462268519,12,14,0 +gkrellm2-cpufreq,0.5206628103,3.0983277333,-0.2908114881,https://github.com/glaubitz/gkrellm-cpufreq-debian,https://github.com/glaubitz/gkrellm-cpufreq-debian,3039.7838657407,1,2,0 +gkrelluim,-1.2524698575,0.70104569,-1.6202431051,https://salsa.debian.org/debian/gkrelluim, https://github.com/dai-vdr/gkrelluim.git,5001.2533333333,0,1,0 +gl2ps,-0.0346606694,0.2453522925,-0.0990212698,https://salsa.debian.org/science-team/gl2ps, https://gitlab.onelab.info/gl2ps/gl2ps.git,5128.4903703704,0,5,0 +glade,3.1855475181,4.4523061978,2.4010880057,https://salsa.debian.org/gnome-team/glade, https://gitlab.gnome.org/GNOME/glade,5740.6073032407,214,249,0 +glances,0.3286979799,1.1106692361,-0.0218937691,https://salsa.debian.org/debian/glances, https://github.com/nicolargo/glances,4176.1404282407,37,163,2 +glew,0.2849340154,0.7975872059,0.0502967112,https://salsa.debian.org/debian/glew, https://github.com/nigels-com/glew.git,5492.4480787037,48,41,0 +glewlwyd,0.1698747625,1.3618403909,-0.1773640688,https://salsa.debian.org/debian-iot-team/oauth2/glewlwyd.git, https://github.com/babelouest/glewlwyd,2557.2033449074,11,19,1 +glfw3,0.097796501,1.6888209119,-0.1796508886,https://salsa.debian.org/games-team/glfw3, https://github.com/glfw/glfw.git,5186.8680555556,161,47,0 +glib-networking,1.0423117536,2.5563723131,0.3561698604,https://salsa.debian.org/gnome-team/glib-networking, https://gitlab.gnome.org/GNOME/glib-networking,4818.7538194445,136,175,0 +glibmm2.4,0.7948390593,1.9103633288,0.262380033,https://salsa.debian.org/gnome-team/glibmm, https://gitlab.gnome.org/GNOME/glibmm.git,5785.9819097222,58,56,0 +glimpse,4.8421978907,8.0624327916,3.3845931676,https://github.com/az143/glimpse,https://github.com/az143/glimpse,3292.5989583333,0,6,0 +global,0.9251069439,1.8029807522,0.3956705838,https://github.com/punitagrawal/global,https://github.com/punitagrawal/global,2253.924212963,4,4,0 +gmailieer,-1.7520281461,0.654977795,-2.4063141302,https://salsa.debian.org/debian/lieer, https://github.com/gauteh/lieer,2464.2436689815,23,14,0 +gmetric4j,-2.7598692877,-0.5906102463,-3.2950920542,https://github.com/ganglia/gmetric4j,https://github.com/ganglia/gmetric4j,3040.7001273148,1,11,0 +gmp-ecm,-0.14808635,0.1363465948,-0.2635424043,https://salsa.debian.org/math-team/gmp-ecm, https://gitlab.inria.fr/zimmerma/ecm,5782.2710416667,1,22,0 +gmrender-resurrect,-0.6885555604,0.4388812357,-0.9886243591,https://salsa.debian.org/debian/gmrender-resurrect, https://github.com/hzeller/gmrender-resurrect.git,3933.2407407407,9,14,0 +gmult,-0.546580652,0.2456046425,-0.7367716201,https://salsa.debian.org/games-team/gmult, https://git.launchpad.net/gmult,5492.3224652778,1,4,0 +gnarwl,-1.0091273178,-0.1197325367,-1.4783256893,https://salsa.debian.org/debian/gnarwl, https://github.com/fln/gnarwl,2570.5118287037,1,9,0 +gnome-applets,1.1284352362,1.3693776689,0.9180116153,https://salsa.debian.org/gnome-team/gnome-applets, https://gitlab.gnome.org/GNOME/gnome-applets,5125.4812731482,161,262,0 +gnome-autoar,0.8475989788,3.7786881824,0.0522236493,https://salsa.debian.org/gnome-team/gnome-autoar, https://gitlab.gnome.org/GNOME/gnome-autoar,3764.8923726852,8,18,0 +gnome-boxes,2.1761116835,4.4873679194,1.0502136922,https://salsa.debian.org/gnome-team/gnome-boxes, https://gitlab.gnome.org/GNOME/gnome-boxes,4447.977662037,280,199,0 +gnome-builder,0.2385251691,1.1953742991,-0.152249487,https://salsa.debian.org/gnome-team/gnome-builder, https://gitlab.gnome.org/GNOME/gnome-builder.git,3382.6812615741,257,224,0 +gnome-calculator,0.1914822322,0.4115098164,0.0619100385,https://salsa.debian.org/gnome-team/gnome-calculator, https://gitlab.gnome.org/GNOME/gnome-calculator.git,5770.7198148148,318,356,0 +gnome-calendar,1.6996207013,4.1409405686,0.6730388201,https://salsa.debian.org/gnome-team/gnome-calendar, https://gitlab.gnome.org/GNOME/gnome-calendar.git,4242.462962963,239,151,0 +gnome-characters,0.2662232082,1.6983596945,-0.0446030091,https://salsa.debian.org/gnome-team/gnome-characters, https://gitlab.gnome.org/GNOME/gnome-characters.git,3895.2511805556,156,91,0 +gnome-chess,1.3576593551,2.2684346847,0.7953382734,https://salsa.debian.org/gnome-team/gnome-chess, https://gitlab.gnome.org/GNOME/gnome-chess.git,5778.9891087963,157,138,0 +gnome-clocks,1.8903716369,4.9178017465,0.6896618096,https://salsa.debian.org/gnome-team/gnome-clocks, https://gitlab.gnome.org/GNOME/gnome-clocks.git,4242.1822685185,210,208,0 +gnome-color-manager,2.7728127335,5.6939450349,1.4700493918,https://salsa.debian.org/gnome-team/gnome-color-manager, https://gitlab.gnome.org/GNOME/gnome-color-manager.git,5146.6266319445,143,162,0 +gnome-contacts,0.8928232776,2.3926300584,0.2496390692,https://salsa.debian.org/gnome-team/gnome-contacts, https://gitlab.gnome.org/GNOME/gnome-contacts.git,4604.2285532407,223,208,0 +gnome-control-center,2.317631964,2.6779515265,2.0187208746,https://salsa.debian.org/gnome-team/gnome-control-center, https://gitlab.gnome.org/GNOME/gnome-control-center,5776.2391898148,534,544,0 +gnome-desktop-testing,-0.1200077244,2.1350461228,-0.5833552937,https://salsa.debian.org/gnome-team/gnome-desktop-testing, https://gitlab.gnome.org/GNOME/gnome-desktop-testing,5324.4658680556,3,20,0 +gnome-desktop3,0.9346583604,1.9401086654,0.4040834685,https://salsa.debian.org/gnome-team/gnome-desktop, https://gitlab.gnome.org/GNOME/gnome-desktop.git,5774.5479398148,231,368,0 +gnome-dictionary,1.1632456595,2.9917522177,0.3791137119,https://salsa.debian.org/gnome-team/gnome-dictionary, https://gitlab.gnome.org/GNOME/gnome-dictionary,5362.0621990741,151,152,0 +gnome-disk-utility,3.3117854972,4.9695754479,2.3581216415,https://salsa.debian.org/gnome-team/gnome-disk-utility, https://gitlab.gnome.org/GNOME/gnome-disk-utility.git,5743.8050694445,247,208,0 +gnome-font-viewer,2.065953229,5.6166036195,0.7818736681,https://salsa.debian.org/gnome-team/gnome-font-viewer, https://gitlab.gnome.org/GNOME/gnome-font-viewer.git,4775.9180439815,143,148,0 +gnome-gmail,0.1152563841,1.2377514132,-0.3137068328,https://github.com/davesteele/gnome-gmail/tree/debian,https://github.com/davesteele/gnome-gmail,5107.0565740741,6,30,0 +gnome-hwp-support,-0.1527039415,2.6330164164,-0.8636063871,https://salsa.debian.org/l10n-korean-team/gnome-hwp-support, https://github.com/changwoo/gnome-hwp-support.git,4275.4146296296,1,2,0 +gnome-keysign,-0.6319731543,0.8678564413,-0.9085456046,https://salsa.debian.org/debian/gnome-keysign, https://github.com/gnome-keysign/gnome-keysign,3520.8003356482,42,26,0 +gnome-logs,1.0602807274,2.974046885,0.3035906646,https://salsa.debian.org/gnome-team/gnome-logs, https://gitlab.gnome.org/GNOME/gnome-logs.git,3803.0728356482,153,93,0 +gnome-maps,1.4178216335,3.3165019374,0.5459659981,https://salsa.debian.org/gnome-team/gnome-maps, https://gitlab.gnome.org/GNOME/gnome-maps.git,3936.9726736111,218,153,0 +gnome-mastermind,0.1896631142,2.1249915571,-0.4064733165,https://salsa.debian.org/debian/gnome-mastermind, https://github.com/fargiolas/gnome-mastermind,5420.9395486111,1,6,0 +gnome-mines,1.1711895658,3.3659735848,0.3292474141,https://salsa.debian.org/gnome-team/gnome-mines, https://gitlab.gnome.org/GNOME/gnome-mines.git,5732.1513425926,159,131,0 +gnome-mousetrap,-0.3080788523,1.3505229937,-0.9297333837,https://salsa.debian.org/a11y-team/gnome-mousetrap, https://gitlab.gnome.org/Archive/mousetrap,2488.8372453704,20,42,0 +gnome-multi-writer,0.3299763795,2.4777944187,-0.2374051403,https://salsa.debian.org/gnome-team/gnome-multi-writer, https://gitlab.gnome.org/GNOME/gnome-multi-writer.git,3213.7822685185,56,21,0 +gnome-music,0.7317025978,1.8253219364,0.2089367207,https://salsa.debian.org/gnome-team/gnome-music, https://gitlab.gnome.org/GNOME/gnome-music,4153.4241898148,279,164,0 +gnome-nibbles,2.1448913402,5.5007837688,0.8979670414,https://salsa.debian.org/gnome-team/gnome-nibbles, https://gitlab.gnome.org/gnome/gnome-nibbles.git,5783.4779398148,140,125,0 +gnome-online-accounts,3.3852015655,5.7572525027,2.206156539,https://salsa.debian.org/gnome-team/gnome-online-accounts, https://gitlab.gnome.org/GNOME/gnome-online-accounts.git,4620.0965625,230,181,0 +gnome-packagekit,1.7275048662,2.4439537547,1.207501751,https://salsa.debian.org/pkgutopia-team/gnome-packagekit, https://gitlab.gnome.org/GNOME/gnome-packagekit,5777.682962963,208,224,0 +gnome-settings-daemon,3.5806557867,4.3830758026,2.9833215226,https://salsa.debian.org/gnome-team/gnome-settings-daemon, https://gitlab.gnome.org/GNOME/gnome-settings-daemon.git,5763.948587963,335,398,0 +gnome-shell,3.4858259442,3.9746144792,3.0999432537,https://salsa.debian.org/gnome-team/gnome-shell, https://gitlab.gnome.org/gnome/gnome-shell.git,5520.5215740741,547,486,0 +gnome-shell-extension-appindicator,0.2664804609,2.5339360118,-0.3045154966,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-appindicator, https://github.com/ubuntu/gnome-shell-extension-appindicator,3879.4440046296,30,21,0 +gnome-shell-extension-arc-menu,-0.751748611,1.6372372278,-1.2523111029,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-arc-menu, https://gitlab.com/arcmenu/ArcMenu.git,1176.1198611111,5,48,0 +gnome-shell-extension-autohidetopbar,-0.2982705228,0.6299957142,-0.4518772857,https://salsa.debian.org/debian/gnome-shell-extension-autohidetopbar, https://gitlab.gnome.org/tuxor1337/hidetopbar,3843.6346064815,13,51,0 +gnome-shell-extension-caffeine,-0.0398328877,1.7562676788,-0.3890789659,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-caffeine, https://github.com/eonpatapon/gnome-shell-extension-caffeine,4204.8561111111,22,56,0 +gnome-shell-extension-dash-to-panel,0.1124971506,2.1907441864,-0.4246734255,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dash-to-panel, https://github.com/home-sweet-gnome/dash-to-panel.git,2629.7539467593,40,85,0 +gnome-shell-extension-dashtodock,-0.0287596469,0.9830411728,-0.301129726,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dashtodock, https://github.com/micheleg/dash-to-dock.git,4172.0530092593,157,30,0 +gnome-shell-extension-easyscreencast,-0.247643057,1.7222437999,-0.6615674464,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-easyscreencast, https://github.com/EasyScreenCast/EasyScreenCast.git,3762.2703125,11,34,0 +gnome-shell-extension-multi-monitors,0.2403347074,2.3856514138,-0.3571678697,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-multi-monitors, https://github.com/spin83/multi-monitors-add-on.git,2247.7516435185,1,14,0 +golang-yaml.v2,-0.1828324995,1.7879333519,-0.599059673,https://salsa.debian.org/go-team/packages/golang-yaml.v2, https://github.com/go-yaml/yaml.git,4160.8565625,29,26,0 +goldeneye,0.2914223421,3.2376647843,-0.4228022843,https://salsa.debian.org/pkg-security-team/goldeneye, https://github.com/jseidl/GoldenEye,3012.1110532407,1,7,0 +goocanvas-2.0,0.3662578256,2.0726017159,-0.105979359,https://salsa.debian.org/debian/goocanvas-2.0, https://gitlab.gnome.org/GNOME/goocanvas,5671.0791782407,18,30,0 +goodvibes,-0.1949293796,2.2738726464,-0.7425255571,https://salsa.debian.org/debian/goodvibes, https://gitlab.com/goodvibes/goodvibes.git,2574.1305555556,55,10,0 +google-perftools,1.3926385354,2.4348992178,0.7627173142,https://salsa.debian.org/debian/google-perftools, https://github.com/gperftools/gperftools,5776.7960416667,88,46,0 +googler,-0.3686431402,0.6283580924,-0.5542725364,https://salsa.debian.org/debian/googler, https://github.com/jarun/googler.git,4778.9107060185,15,26,0 +googletest,-0.1358699305,0.0194590755,-0.2093191407,https://salsa.debian.org/debian/googletest, https://github.com/google/googletest.git,5640.1267708333,169,368,0 +gopacket,-1.0628819014,1.2277474397,-1.8052505768,https://salsa.debian.org/go-team/packages/gopacket, https://github.com/google/gopacket.git,3976.8553587963,106,101,0 +gorm.app,0.3792145956,1.5053938025,-0.0975198397,https://salsa.debian.org/gnustep-team/gorm.app, https://github.com/gnustep/apps-gorm,5785.6866782407,3,22,0 +gosa,-0.3775685336,-0.2189132452,-0.4901429898,https://salsa.debian.org/debian-edu-pkg-team/gosa, https://github.com/gosa-project/gosa-core,5676.7658217593,7,31,0 +gosa-plugin-mailaddress,-2.3383979882,0.2643568587,-2.9856475557,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-mailaddress, https://github.com/gosa-project/gosa-plugins-mailaddress,2274.6763657408,0,4,0 +gosa-plugin-netgroups,-0.9914007629,0.4777372444,-1.3827009663,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-netgroups, https://github.com/gosa-project/gosa-plugins-netgroups,1422.7270023148,0,3,0 +gosa-plugin-pwreset,-1.3598337718,0.2879233373,-1.6292931799,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-pwreset, https://github.com/gosa-project/gosa-plugins-pwreset,2184.168125,0,3,0 +gost-crypto,-2.3611563875,-0.8645584676,-2.6234146821,https://salsa.debian.org/lumag/gost-crypto, https://github.com/GostCrypt/linux-crypto.git,1726.5372222222,2,3,0 +gosu,-0.8293191853,1.4065120001,-1.259999776,https://salsa.debian.org/go-team/packages/gosu, https://github.com/tianon/gosu.git,3461.2298611111,6,8,0 +goxel,-0.4525027889,1.3990211044,-0.9633390965,https://salsa.debian.org/debian/goxel, https://github.com/guillaumechereau/goxel.git,2988.2858564815,12,26,0 +gpac,0.5330016178,1.3725555004,0.0989441409,https://salsa.debian.org/multimedia-team/gpac, https://github.com/gpac/gpac,5786.9545486111,14,105,1 +gpaste,-0.3060429164,-0.2513668941,-0.3230260451,https://salsa.debian.org/debian/gpaste, https://github.com/Keruspe/GPaste,4709.6430092593,65,21,2 +gpg-remailer,-0.7307958581,1.9617012694,-1.4648594394,https://salsa.debian.org/debian/gpg-remailer, https://gitlab.com/fbb-git/gpg-remailer,5278.8629861111,1,1,0 +gpick,0.3287244142,1.9268349477,-0.1661653459,https://salsa.debian.org/elias/gpick, https://github.com/thezbyg/gpick.git,5237.0590625,5,6,0 +gpicview,2.0702671645,4.218597649,1.053942169,https://salsa.debian.org/lxde-team/gpicview, https://github.com/lxde/gpicview,5713.732662037,76,42,0 +gpodder,0.2960478357,0.8718186139,-0.0374135894,https://salsa.debian.org/debian/gpodder, https://github.com/gpodder/gpodder,5771.845787037,167,86,1 +gpp,0.6295645906,3.8657120667,-0.3089812218,https://salsa.debian.org/debian/gpp, https://github.com/logological/gpp/commits/master,5185.326875,55,11,0 +gpsd,0.329959081,0.5449071679,0.1751193108,https://salsa.debian.org/debian-gps-team/pkg-gpsd/, https://gitlab.com/gpsd/gpsd.git,5785.6862152778,179,74,0 +gpustat,-0.7414031604,1.6738603051,-1.1885003927,https://salsa.debian.org/nvidia-team/gpustat, https://github.com/wookayin/gpustat,2769.8730787037,16,5,3 +gpyfft,-0.0412032188,3.0931064376,-0.9221041966,https://salsa.debian.org/science-team/gpyfft, https://github.com/geggo/gpyfft,2840.7253009259,4,10,0 +gr-hpsdr,0.4004783664,3.8766459305,-0.7548438029,https://salsa.debian.org/debian-hamradio-team/gr-hpsdr, https://github.com/Tom-McDermott/gr-hpsdr,3221.8977430556,2,8,0 +gr-limesdr,-0.9226752859,0.8827324557,-1.4238590832,https://salsa.debian.org/debian-hamradio-team/gr-limesdr, https://github.com/myriadrf/gr-limesdr.git,1838.1773726852,3,21,0 +grabc,0.2593828711,3.2605807314,-0.6585348774,https://salsa.debian.org/debian/grabc, https://github.com/muquit/grabc.git,1019.1824189815,0,3,0 +grabserial,-0.534268649,2.390246914,-1.2967244647,https://salsa.debian.org/debian/grabserial, https://github.com/tbird20d/grabserial,3634.0012152778,11,19,0 +granatier,0.4684732304,2.5978200714,-0.0939154735,https://salsa.debian.org/qt-kde-team/kde/granatier, https://anongit.kde.org/granatier.git,5783.5759606482,4,56,0 +grantlee5,0.8850917122,2.9819943474,0.1506454305,https://salsa.debian.org/qt-kde-team/extras/grantlee, https://github.com/steveire/grantlee.git,4939.9756481482,29,11,0 +graphite2,0.3733807726,1.1779395242,0.0796158429,https://salsa.debian.org/libreoffice-team/graphite2, https://github.com/silnrsi/graphite.git,4797.7791319445,6,20,0 +grass,0.2509146518,0.5268892367,0.0631058235,https://salsa.debian.org/debian-gis-team/grass, https://github.com/OSGeo/grass.git,5708.1311689815,83,60,0 +gravit,0.6045580957,3.2029078171,-0.2991692425,https://salsa.debian.org/debian-astro-team/gravit, https://github.com/gak/gravit,4467.9773263889,1,15,2 +grcompiler,-0.2033731514,1.6514805751,-0.9604435457,https://salsa.debian.org/fonts-team/grcompiler, https://github.com/silnrsi/grcompiler.git,4870.0000925926,3,20,0 +greenbone-security-assistant,0.417412477,2.9619681562,-0.4656797598,https://salsa.debian.org/pkg-security-team/greenbone-security-assistant, https://github.com/greenbone/gsa,5193.7357407407,22,54,0 +grepcidr,-0.000512138,1.8231074226,-0.4693331824,https://github.com/rfinnie/grepcidr-pkg-debian,https://github.com/rfinnie/grepcidr-pkg-debian,3175.8474652778,0,1,0 +greybird-gtk-theme,0.9581620431,4.0842969827,0.0735921108,https://salsa.debian.org/desktop-themes-team/greybird-gtk-theme, https://github.com/shimmerproject/Greybird,4402.0720486111,24,30,0 +grfcodec,-0.4905633733,1.1697465077,-0.9940360544,https://salsa.debian.org/openttd-team/grfcodec, https://github.com/OpenTTD/grfcodec.git,5754.0437962963,6,15,0 +grilo,0.0711658596,0.5640246394,-0.042603553,https://salsa.debian.org/berto/grilo, https://gitlab.gnome.org/GNOME/grilo,5095.0370833333,101,96,0 +grilo-plugins,0.2209266371,0.6930414423,0.0184789904,https://salsa.debian.org/berto/grilo-plugins, https://gitlab.gnome.org/GNOME/grilo-plugins,5111.7957060185,141,95,0 +grml-debootstrap,-0.9459335743,-0.5518602968,-1.0923385337,https://github.com/grml/grml-debootstrap,https://github.com/grml/grml-debootstrap,5733.8188541667,7,26,0 +grok,0.7555036124,3.2549577139,-0.2949948657,https://salsa.debian.org/debian/grok, https://github.com/jordansissel/grok,2851.8223263889,0,12,0 +gromit-mpx,-0.1368392632,2.3961082606,-0.7236856316,https://salsa.debian.org/debian/gromit-mpx, https://github.com/bk138/gromit-mpx.git,5287.5376388889,14,15,0 +grub-customizer,0.8010870655,4.1673218529,-0.1260687091,https://salsa.debian.org/debian/grub-customizer, https://git.launchpad.net/grub-customizer,4117.0267708333,0,3,0 +grun,3.4314737452,6.9914396992,1.9512456029,https://salsa.debian.org/debian/grun, https://github.com/lrgc/grun.git,1780.0517708333,1,4,0 +gsettings-desktop-schemas,0.9432895819,2.7240636343,0.2359454626,https://salsa.debian.org/gnome-team/gsettings-desktop-schemas, https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas.git,4907.4324421296,139,142,0 +gsettings-qt,0.7875665252,3.3426320551,-0.0531543494,https://salsa.debian.org/ubports-team/gsettings-qt, https://gitlab.com/ubports/development/core/gsettings-qt.git,3335.1171527778,0,27,0 +gsound,1.2781560045,5.0714643084,0.1720367728,https://salsa.debian.org/gnome-team/gsound, https://gitlab.gnome.org/GNOME/gsound.git,3090.7518865741,4,9,0 +gss-ntlmssp,-1.0758514008,0.7187446283,-1.5147853098,https://salsa.debian.org/freeipa-team/gss-ntlmssp, https://github.com/gssapi/gss-ntlmssp,3594.9212152778,10,4,0 +gst-libav1.0,0.8677873242,2.0656073751,0.3046366688,https://salsa.debian.org/gstreamer-team/gst-libav1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer,5787.8210532407,1809,559,0 +gst-plugins-bad1.0,0.5029322088,1.1519170663,0.1692070277,https://salsa.debian.org/gstreamer-team/gst-plugins-bad1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.8210532407,1809,559,0 +gst-plugins-base1.0,0.9789851111,2.1567036153,0.3865054318,https://salsa.debian.org/gstreamer-team/gst-plugins-base1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer,5787.8210532407,1809,559,0 +gst-plugins-good1.0,0.7175425622,2.0957527218,0.1698233163,https://salsa.debian.org/gstreamer-team/gst-plugins-good1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.8210532407,1809,559,0 +gst-plugins-ugly1.0,0.9452777708,3.1335938744,0.1646592733,https://salsa.debian.org/gstreamer-team/gst-plugins-ugly1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.8210532407,1809,559,0 +gst-python1.0,0.7148562618,2.0670762858,0.1669716035,https://salsa.debian.org/gstreamer-team/gst-python1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.8210532407,1809,559,0 +gst123,0.2548342733,2.3791920173,-0.4358458261,https://salsa.debian.org/gstreamer-team/gst123, http://space.twc.de/public/git/gst123.git,5110.325474537,6,2,0 +gstreamer-editing-services1.0,0.2490034111,2.1012071689,-0.1935293819,https://salsa.debian.org/gstreamer-team/gstreamer-editing-services1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.8210532407,1809,559,0 +gstreamer-vaapi,1.6982985802,4.182512792,0.6088202821,https://salsa.debian.org/gstreamer-team/gstreamer-vaapi/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.8210532407,1809,559,0 +gstreamer1.0,0.6309657712,1.5327477849,0.2214355842,https://salsa.debian.org/gstreamer-team/gstreamer1.0/, https://gitlab.freedesktop.org/gstreamer/gstreamer.git,5787.8210532407,1809,559,0 +gtextfsm,-1.959276856,0.4998119958,-2.4671799826,https://salsa.debian.org/python-team/packages/gtextfsm, https://github.com/google/textfsm.git,4331.1065625,11,7,0 +gtimelog,-0.3131503011,0.4195928542,-0.6469396999,https://salsa.debian.org/python-team/packages/gtimelog, https://github.com/gtimelog/gtimelog,5699.091412037,18,41,2 +gtk+2.0,2.603900507,2.9577761493,2.3027122805,https://salsa.debian.org/gnome-team/gtk2, https://gitlab.gnome.org/GNOME/gtk/commits/master,5185.326875,55,11,0 +gtk-doc,0.8615488259,1.6353205326,0.3798378124,https://salsa.debian.org/gnome-team/gtk-doc, https://gitlab.gnome.org/GNOME/gtk-doc/commits/master,5185.326875,55,11,0 +gtkguitune,-0.2491277386,0.3826186785,-0.4591495452,https://github.com/bobek/gtkguitune,https://github.com/bobek/gtkguitune,3186.2603587963,1,3,0 +gtkhash,-0.0470549768,0.3813091669,-0.1959531443,https://salsa.debian.org/debian/gtkhash, https://github.com/tristanheaven/gtkhash,4558.9808449074,79,10,0 +gtksourceview3,2.4193391322,6.0923491934,1.0250948778,https://salsa.debian.org/gnome-team/gtksourceview3, https://gitlab.gnome.org/GNOME/gtksourceview,5775.0865740741,326,330,0 +gtksourceview4,0.979634494,4.0201340207,0.0765985056,https://salsa.debian.org/gnome-team/gtksourceview4, https://gitlab.gnome.org/GNOME/gtksourceview.git,5775.0865740741,326,330,0 +gtkterm,1.6614158143,3.2236786848,0.801083568,https://salsa.debian.org/debian/gtkterm, https://github.com/Jeija/gtkterm.git,4575.4452083333,6,17,0 +gtranscribe,-0.5259853209,1.6855244705,-0.950618829,https://salsa.debian.org/debian/gtranscribe, https://github.com/innir/gtranscribe,3558.9036921296,0,5,1 +gtranslator,0.9506173082,1.6256493164,0.4951918225,https://salsa.debian.org/gnome-team/gtranslator, https://gitlab.gnome.org/GNOME/gtranslator.git,5307.8287962963,147,180,0 +guake-indicator,0.2250848406,2.5013911283,-0.5378976224,https://salsa.debian.org/debian/guake-indicator/, https://github.com/Ozzyboshi/guake-indicator,2489.1411226852,1,8,0 +gucharmap,1.2580835701,2.1305402005,0.7177212013,https://salsa.debian.org/gnome-team/gucharmap, https://gitlab.gnome.org/GNOME/gucharmap.git,5722.1845601852,150,243,0 +guessit,0.5092433942,2.4339696308,-0.2792039187,https://salsa.debian.org/python-team/packages/guessit, https://github.com/guessit-io/guessit.git,2993.2388078704,14,29,0 +gui-ufw,1.8217065732,4.3624901931,0.7344598754,https://salsa.debian.org/python-team/packages/gui-ufw, https://github.com/costales/gufw.git,1462.9175578704,0,7,0 +guidata,0.226943724,2.7660796551,-0.444547265,https://salsa.debian.org/science-team/guidata, https://github.com/Codra-Ingenierie-Informatique/guidata,4839.0752893519,0,24,0 +guidedog,-1.2127820662,0.0904612737,-1.6926274962,https://github.com/antocm/guidedog/tree/debian,https://github.com/antocm/guidedog,2480.6617361111,0,5,0 +guile-json,-0.447679014,2.3175980112,-1.1284049069,https://salsa.debian.org/debian/guile-json, https://github.com/aconchillo/guile-json.git,3764.8305324074,3,17,0 +guile-ssh,-0.8980031766,3.1579670718,-2.0800708726,https://salsa.debian.org/debian/guile-ssh, https://github.com/artyom-poptsov/guile-ssh.git,3867.3559837963,0,10,0 +guiqwt,0.1574048434,1.7134878247,-0.3985669577,https://salsa.debian.org/science-team/guiqwt, https://github.com/PierreRaybaut/guiqwt.git,4806.7696527778,1,21,0 +guitarix,-0.0389261924,0.3434189302,-0.2247740088,https://salsa.debian.org/multimedia-team/guitarix, https://git.code.sf.net/p/guitarix/git,4942.509212963,5,40,0 +gumbo-parser,1.5257419896,4.1618844189,0.4513827825,https://salsa.debian.org/debian/gumbo-parser, https://codeberg.org/grisha/gumbo-parser.git,3698.9385069445,2,36,0 +gup,-5.1695702647,-4.4485454537,-5.4289590562,https://github.com/rfc1036/gup,https://github.com/rfc1036/gup,3593.8147453704,0,1,0 +gupnp,0.315292917,1.0990713152,0.0331016783,https://salsa.debian.org/gnome-team/gupnp, https://gitlab.gnome.org/GNOME/gupnp.git,5782.8332523148,44,35,0 +gupnp-tools,2.0279641146,4.1541908768,0.9598109234,https://salsa.debian.org/gnome-team/gupnp-tools, https://gitlab.gnome.org/GNOME/gupnp-tools.git,5784.080162037,51,37,0 +guzzle-sphinx-theme,-0.8704022633,0.681504729,-1.1374775257,https://salsa.debian.org/python-team/packages/guzzle-sphinx-theme, https://github.com/guzzle/guzzle_sphinx_theme.git,2860.3134027778,3,11,0 +gvfs,3.7105471086,4.6022219189,3.0704929908,https://salsa.debian.org/gnome-team/gvfs, https://gitlab.gnome.org/GNOME/gvfs.git,5759.9996180556,264,330,0 +gwaei,-0.2415301818,1.2081497422,-0.8722234296,https://github.com/norbusan/debian-gwaei,https://github.com/norbusan/debian-gwaei,2765.6634375,2,2,0 +gwakeonlan,0.8535169941,3.0627414632,-0.0322068923,https://salsa.debian.org/debian/gwakeonlan, https://github.com/muflone/gwakeonlan.git,4933.5151273148,2,13,0 +gwc,0.608752043,1.6289733041,0.0519069422,https://salsa.debian.org/multimedia-team/gwc, https://github.com/AlisterH/gwc.git,3165.1705324074,1,5,0 +gwcs,0.0316107806,2.1831450561,-0.6456692385,https://salsa.debian.org/debian-astro-team/gwcs, https://github.com/spacetelescope/gwcs,3241.9580787037,13,31,3 +gxkb,0.3787936181,4.0698464881,-0.6334875708,https://github.com/mati75/gxkb.git,https://github.com/mati75/gxkb.git,2732.567650463,0,4,0 +gxtuner,1.2625236588,4.7533829415,0.0339744566,https://salsa.debian.org/multimedia-team/gxtuner, https://github.com/brummer10/gxtuner,1914.1892013889,3,6,0 +h2o,-0.7321540349,0.815719718,-1.2812732312,https://salsa.debian.org/debian/h2o, https://github.com/h2o/h2o,4716.5859490741,44,155,4 +h5utils,-0.0466394355,0.6200500479,-0.3159473526,https://salsa.debian.org/debian-gis-team/h5utils, https://github.com/NanoComp/h5utils.git,5379.8304166667,0,6,0 +hackrf,-0.0007572505,0.7710029251,-0.2240908092,https://salsa.debian.org/bottoms/pkg-hackrf, https://github.com/mossmann/hackrf.git,4292.9611111111,23,72,0 +hacktv,-2.0082673058,0.152267044,-2.4727541201,https://salsa.debian.org/debian-hamradio-team/hacktv, https://github.com/fsphil/hacktv,2394.7430787037,3,7,0 +handbrake,1.3904843391,2.685148707,0.6451582617,https://salsa.debian.org/multimedia-team/handbrake, https://github.com/HandBrake/HandBrake,5786.3675231482,105,51,3 +harfbuzz,0.1716476927,0.5429972924,0.0283701741,https://salsa.debian.org/freedesktop-team/harfbuzz, https://github.com/harfbuzz/harfbuzz.git,5645.1649652778,184,76,0 +harminv,-0.2633327682,0.7959993879,-0.5621576388,https://salsa.debian.org/alteholz/harminv, https://github.com/NanoComp/harminv,2906.4731712963,1,5,0 +harvid,0.172456355,1.3037883065,-0.1734116499,https://salsa.debian.org/multimedia-team/harvid, https://github.com/x42/harvid.git,3621.9749189815,0,4,0 +hashcat,0.6568099259,2.9193273288,-0.0688683154,https://salsa.debian.org/pkg-security-team/hashcat, https://github.com/hashcat/hashcat.git,2915.0251851852,48,153,0 +haskell-github,-2.2071686857,-1.1769892664,-2.4671799826,https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-github,https://salsa.debian.org/haskell-team/DHG_packages,5779.4146064815,21,98,0 +haveged,0.9608769092,1.929900484,0.4239904529,https://salsa.debian.org/debian/haveged, https://github.com/jirka-h/haveged,1886.382650463,9,23,0 +haxe,-0.5201211998,0.2916566292,-0.8543651007,https://github.com/HaxeFoundation/haxe-debian,https://github.com/HaxeFoundation/haxe-debian,5039.1597916667,3,5,0 +hcxdumptool,0.1119022392,3.6410156171,-0.7455348999,https://salsa.debian.org/pkg-security-team/hcxdumptool, https://github.com/ZerBea/hcxdumptool,2117.0106134259,10,18,0 +hdapsd,0.6538996291,2.6942351149,-0.1231193096,https://salsa.debian.org/debian/hdapsd, https://github.com/evgeni/hdapsd.git,2619.5010416667,2,5,0 +hdmi2usb-mode-switch,-0.1979989796,2.8942330744,-1.0013410785,https://salsa.debian.org/debian/hdmi2usb-mode-switch, https://github.com/timvideos/HDMI2USB-mode-switch.git,1539.4512152778,3,11,0 +hebcal,0.1381610904,2.8080865957,-0.8369075092,https://salsa.debian.org/debian/hebcal, https://github.com/hebcal/hebcal,5547.503912037,16,21,0 +hesiod,1.3520798772,2.882041099,0.5698299795,https://github.com/achernya/hesiod,https://github.com/achernya/hesiod,2444.8183564815,0,5,0 +hexchat,0.4113463635,1.0763225756,0.0766285755,https://salsa.debian.org/debian/hexchat, https://github.com/hexchat/hexchat,4968.6586458333,146,71,1 +hexedit,1.4888142147,3.4858685969,0.5617313768,https://salsa.debian.org/debian/hexedit, https://github.com/pixel/hexedit.git,5414.7907060185,8,14,0 +hexter,0.4080603481,2.7603000142,-0.3443231764,https://salsa.debian.org/multimedia-team/hexter, https://github.com/smbolton/hexter.git ,4380.3528472222,0,6,0 +hfst-ospell,0.2591920737,1.3643095914,-0.0408851515,https://salsa.debian.org/science-team/hfst-ospell, https://github.com/hfst/hfst-ospell.git,4745.7576967593,1,17,0 +hg-git,0.321128458,1.270139629,-0.1895586953,https://salsa.debian.org/python-team/packages/hg-git, https://github.com/schacon/hg-git.git,2615.4964467593,1,76,0 +hidapi,0.225542389,1.7475434274,-0.1119105457,https://salsa.debian.org/debian/hidapi, https://github.com/libusb/hidapi.git,4972.5820717593,120,14,0 +hiera-eyaml,0.3172868547,4.4470356776,-0.8407657463,https://salsa.debian.org/ruby-team/hiera-eyaml, https://github.com/voxpupuli/hiera-eyaml,3753.1260185185,15,52,1 +highlight.js,0.444540283,1.8135455881,-0.0578940729,https://salsa.debian.org/js-team/highlight.js, https://github.com/highlightjs/highlight.js,5773.3725694445,432,361,3 +highwayhash,-0.8204095939,1.5389936619,-1.7035606839,https://salsa.debian.org/science-team/highwayhash, https://github.com/google/highwayhash,2801.6793634259,5,22,0 +hijra,-1.1521044725,0.9019784859,-1.9896405953,https://salsa.debian.org/islamic-team/hijra, https://github.com/ojuba-org/hijra.git,4311.2884143519,0,8,0 +hinawa-utils,-1.8036430906,0.9409258571,-2.4422801802,https://salsa.debian.org/debian/hinawa-utils/, https://github.com/takaswie/hinawa-utils.git,2264.2987962963,1,2,0 +hippomocks,-1.8899787337,1.9694566517,-3.0475420799,https://salsa.debian.org/debian-iot-team/hippomocks, https://github.com/dascandy/hippomocks,3806.1184837963,0,35,0 +hiredis,0.3896692583,1.3239835865,-0.0041000646,https://salsa.debian.org/lamby/pkg-hiredis, https://github.com/redis/hiredis,4840.5390740741,94,104,1 +hiro,-3.1230113579,-1.1402355338,-3.6931446576,https://salsa.debian.org/python-team/packages/hiro, https://github.com/alisaifee/hiro,3329.7532638889,1,3,0 +hitch,-0.5288912788,2.1847591306,-1.4438568394,https://salsa.debian.org/debian/hitch, https://github.com/varnish/hitch,4466.179224537,30,59,0 +hitori,0.3240913257,1.7621213771,-0.0254270381,https://salsa.debian.org/gnome-team/hitori, https://gitlab.gnome.org/GNOME/hitori.git,5346.5707638889,103,99,0 +hmat-oss,0.3027957485,3.0822404955,-0.6301530543,https://salsa.debian.org/science-team/hmat-oss, https://github.com/jeromerobert/hmat-oss.git,3261.6730555556,6,19,0 +hodie,-0.8398270988,0.8472590081,-1.2059612682,https://salsa.debian.org/cts/hodie, https://github.com/michiexile/hodie,1318.6005671296,0,5,0 +hoel,-2.626226217,-0.6734593354,-3.0112543725,https://salsa.debian.org/debian-iot-team/oauth2/hoel.git, https://github.com/babelouest/hoel,1340.3941203704,3,9,0 +hol-light,0.6740208455,3.3227951452,-0.2913969773,https://salsa.debian.org/ocaml-team/hol-light, https://github.com/jrh13/hol-light.git,2937.7842708333,2,18,0 +homesick,-0.7788892375,1.4098976592,-1.4219548862,https://salsa.debian.org/ruby-team/homesick, https://github.com/technicalpickles/homesick,3243.9596296296,6,52,0 +horst,0.1904786441,1.5469500414,-0.2820626903,https://salsa.debian.org/debian/horst, https://github.com/br101/horst.git,5016.2119675926,4,12,0 +hotspot,-0.2790964349,2.337403679,-1.0457505748,https://salsa.debian.org/debian/hotspot, https://github.com/KDAB/hotspot.git,2548.0331481482,38,24,0 +hovercraft,-0.7455862206,0.886166849,-1.2332828535,https://salsa.debian.org/python-team/packages/hovercraft, https://github.com/regebro/hovercraft,3363.2624305556,11,27,0 +html2text,1.3340380398,2.3215255445,0.7275451633,https://salsa.debian.org/debian/html2text, https://github.com/grobian/html2text,1388.0924421296,5,7,0 +html5-parser,0.4588005785,2.4674305887,-0.084728594,https://github.com/debian-calibre/html5-parser,https://github.com/debian-calibre/html5-parser,2309.5259259259,1,6,0 +htmldoc,0.7571165722,1.6423946949,0.2768464827,https://salsa.debian.org/haava/htmldoc, https://github.com/michaelrsweet/htmldoc.git,5679.7610416667,3,12,0 +htmlmin,0.3749839326,3.8009648796,-0.4061989629,https://salsa.debian.org/python-team/packages/htmlmin, https://github.com/mankyd/htmlmin,1758.1454050926,0,22,0 +htop,0.3825737751,0.6803284494,0.1932948898,https://salsa.debian.org/debian/htop, https://github.com/htop-dev/htop,5761.1663425926,100,121,1 +htpdate,-0.4445412636,1.6194045516,-0.91888023,https://salsa.debian.org/debian/htpdate, https://github.com/twekkel/htpdate,706.8257407407,6,5,0 +htsjdk,-0.1792953988,0.7401273511,-0.4616199262,https://salsa.debian.org/med-team/htsjdk, https://github.com/samtools/htsjdk.git,5326.1775578704,82,118,0 +httmock,-1.6367065082,0.9820258479,-2.2158102442,https://salsa.debian.org/python-team/packages/httmock, https://github.com/patrys/httmock,2779.5170601852,4,27,0 +httpcode,-0.6659172261,1.4327882052,-1.1235682652,https://salsa.debian.org/python-team/packages/httpcode, https://github.com/rspivak/httpcode,1929.8437152778,0,9,0 +httpdirfs-fuse,-1.1603187329,1.2152219258,-1.6455823981,https://salsa.debian.org/lavamind/httpdirfs-fuse, https://github.com/fangfufu/httpdirfs.git,1903.2805324074,12,11,0 +httpie,0.3846139351,1.3696666509,-0.0739168255,https://salsa.debian.org/python-team/packages/httpie, https://github.com/httpie/httpie,4259.1971296296,96,74,0 +hubicfuse,-0.6743910684,0.4155398958,-0.9708496832,https://salsa.debian.org/debian/hubicfuse, https://github.com/TurboGit/hubicfuse,4598.8082291667,5,42,0 +hugo,0.0671368853,1.1437094465,-0.2531014676,https://salsa.debian.org/go-team/packages/hugo, https://github.com/gohugoio/hugo.git,3813.722662037,826,45,0 +humanfriendly,0.2283819911,3.209527902,-0.5542867942,https://salsa.debian.org/python-team/packages/humanfriendly, https://github.com/xolox/python-humanfriendly,3014.9542476852,5,15,0 +hunchentoot,-0.7818870549,1.4236603317,-1.4802362127,https://github.com/edicl/hunchentoot,https://github.com/edicl/hunchentoot,5414.600162037,19,51,0 +hunspell,1.728203671,2.9917107887,1.0068466579,https://salsa.debian.org/libreoffice-team/hunspell, https://github.com/hunspell/hunspell,5038.2810069445,81,40,2 +hunspell-be,0.2046688803,2.5892201965,-0.352339033,https://github.com/375gnu/hunspell-be,https://github.com/375gnu/hunspell-be,4256.2636689815,1,3,0 +hunspell-kk,0.1699792789,2.5686056687,-0.3539934531,http://github.com/taem/hunspell-kk/tree/master,http://github.com/taem/hunspell-kk,1009.2540509259,0,1,0 +hw-probe,-0.2705391309,2.1366348662,-0.8036350878,https://salsa.debian.org/debian/hw-probe, https://github.com/linuxhw/hw-probe,2812.8207638889,5,13,0 +hwdata,0.2497218136,0.8673309736,-0.0033926663,https://salsa.debian.org/pino/hwdata, https://github.com/vcrhonek/hwdata.git,5761.1231481482,4,18,0 +hwinfo,1.0352583411,1.8703572076,0.5288235361,https://salsa.debian.org/debian/hwinfo, https://github.com/openSUSE/hwinfo,5630.0100347222,11,25,0 +hwloc,0.034853164,0.3073992793,-0.0657896516,https://salsa.debian.org/debian/hwloc, https://github.com/open-mpi/hwloc.git,5420.947349537,40,25,0 +hypercorn,-4.9331692946,-2.5359743202,-5.4677150691,https://salsa.debian.org/python-team/packages/hypercorn, https://gitlab.com/pgjones/hypercorn,1552.1871064815,17,28,0 +hyperlink,0.844118141,3.90404712,0.0109391917,https://salsa.debian.org/python-team/packages/hyperlink, https://github.com/python-hyper/hyperlink,1636.1480324074,8,24,0 +hyperscan,-0.1939906796,1.1323195527,-0.5069001368,https://salsa.debian.org/debian/hyperscan, https://github.com/intel/hyperscan.git,2738.472962963,25,11,0 +hyphen,0.4314729534,1.6039540493,0.0503177929,https://salsa.debian.org/libreoffice-team/hyphen, https://github.com/hunspell/hyphen.git,2824.9621875,2,9,0 +hyphen-ru,1.3639402124,5.60995268,0.0175129851,http://github.com/Protagores/hyphen-ru,http://github.com/Protagores/hyphen-ru,3.0971875,0,1,0 +hypre,-0.1168075165,0.329110117,-0.3077167068,https://salsa.debian.org/science-team/hypre, https://github.com/hypre-space/hypre,3128.2668518519,29,123,0 +i18nspector,-0.3130156228,1.3470282705,-0.8210059464,https://salsa.debian.org/debian/i18nspector, https://github.com/jwilk/i18nspector,3956.4540162037,0,2,0 +i2pd,-0.8587827802,0.1492942795,-1.1545577005,https://salsa.debian.org/yangfl-guest/i2pd, https://github.com/PurpleI2P/i2pd,3747.1315856482,37,139,2 +i3lock-fancy,0.1411147955,2.5198639977,-0.5066381078,https://salsa.debian.org/debian/i3lock-fancy, https://github.com/meskarune/i3lock-fancy,2712.43375,14,38,0 +i7z,0.0808738409,1.2622361789,-0.2430911659,https://salsa.debian.org/debian/i7z, https://github.com/ajaiantilal/i7z,310.0352199074,0,7,0 +iannix,-0.1880732304,2.1486905541,-0.8754662474,https://salsa.debian.org/multimedia-team/iannix, https://github.com/buzzinglight/IanniX,4212.6902430556,7,14,0 +ibuffer-projectile,-0.7228061953,1.8154077231,-1.292148074,https://salsa.debian.org/emacsen-team/ibuffer-projectile, https://github.com/purcell/ibuffer-projectile.git,3152.3891087963,1,7,0 +ibus,0.3266236633,0.5449393567,0.1719930954,https://salsa.debian.org/debian/ibus, https://github.com/ibus/ibus.git,5687.2228819445,128,34,0 +ibus-chewing,-0.3124747132,0.4502202484,-0.6604344587,https://salsa.debian.org/debian/ibus-chewing, https://github.com/definite/ibus-chewing,5634.3732407407,3,22,2 +ibus-libpinyin,0.0745339719,1.4965685521,-0.4552149234,https://salsa.debian.org/debian/ibus-libpinyin, https://github.com/libpinyin/ibus-libpinyin,5637.8364236111,33,12,0 +icdiff,-0.1438152922,1.9369823287,-0.574052024,https://salsa.debian.org/debian/icdiff, https://github.com/jeffkaufman/icdiff.git,4767.043599537,37,19,0 +ice-builder-gradle,-1.1849485707,0.9406079932,-1.6391429375,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2370.9240625,0,3,0 +icebreaker,0.4692256371,1.8411957204,-0.176942106,https://salsa.debian.org/games-team/icebreaker, https://github.com/mattdm/icebreaker.git,3923.7699305556,0,5,0 +icecc,0.3064642839,1.1295017582,-0.1573898799,https://salsa.debian.org/qt-kde-team/extras/icecc, https://github.com/icecc/icecream,5413.4717939815,34,86,1 +icecc-monitor,0.7030922937,3.5835100346,-0.2959059985,https://salsa.debian.org/qt-kde-team/extras/icemon, https://github.com/icecc/icemon.git,4527.72,9,27,0 +icecream-sundae,-1.0385376489,1.8149325043,-1.7149505904,https://salsa.debian.org/debian/icecream-sundae, https://github.com/JPEWdev/icecream-sundae,638.2833796296,3,6,0 +icinga2,0.2178227609,0.6760411036,-0.0314352078,https://salsa.debian.org/nagios-team/icinga2, https://github.com/Icinga/icinga2,4277.2438310185,173,135,3 +icingaweb2,-0.1369074374,0.576729404,-0.3691106569,https://salsa.debian.org/nagios-team/icingaweb2, https://github.com/Icinga/icingaweb2.git,3851.0336111111,92,60,0 +icmake,-1.0726420679,-0.7393901532,-1.1967042423,https://salsa.debian.org/debian/icmake, https://gitlab.com/fbb-git/icmake.git,5712.0324189815,1,7,0 +id3,1.2231963048,3.5152189123,0.2700556421,https://salsa.debian.org/debian/id3/, https://gitlab.com/ppentchev/id3,1362.3814467593,0,1,0 +ideviceinstaller,0.5689631094,2.7450654204,-0.181779756,https://salsa.debian.org/imobiledevice-team/ideviceinstaller, https://github.com/libimobiledevice/ideviceinstaller.git,4944.7184490741,9,5,0 +ido-ubiquitous,-0.8358511106,0.642816871,-1.1624295383,https://salsa.debian.org/emacsen-team/ido-ubiquitous, https://github.com/DarwinAwardWinner/ido-completing-read-plus.git,3558.9051736111,5,15,0 +ifcplusplus,-4.714020503,-1.546680493,-5.4430250217,https://salsa.debian.org/science-team/ifcplusplus, https://github.com/ifcquery/ifcplusplus,3159.9779050926,3,29,0 +ifetch-tools,-1.7763116684,-1.4179435016,-1.8644650677,https://github.com/unixabg/ifetch-tools,https://github.com/unixabg/ifetch-tools,5167.9663194445,0,4,0 +ifupdown-multi,-0.0008911093,3.5795714925,-1.035637135,https://github.com/edmonds/ifupdown-multi,https://github.com/edmonds/ifupdown-multi,2598.1821759259,0,2,0 +ignition-cmake,-0.0672943203,2.4451918145,-0.7211880559,https://salsa.debian.org/science-team/ignition-cmake, https://github.com/ignitionrobotics/ign-cmake.git,2275.0046990741,21,38,0 +ignition-transport,-0.1163502563,0.9345439952,-0.5364820982,https://salsa.debian.org/science-team/ignition-transport, https://github.com/gazebosim/gz-transport,3531.6416203704,21,77,0 +igraph,0.1471088076,1.2967342488,-0.3418527825,https://salsa.debian.org/med-team/igraph, https://github.com/igraph/igraph,5787.0887037037,45,61,3 +igtf-policy-bundle,-3.4026796323,-2.1981791532,-3.7268998855,https://github.com/dvandok/igtf-policy-bundle,https://github.com/dvandok/igtf-policy-bundle,4263.811400463,0,3,0 +iio-sensor-proxy,0.2955477819,1.1211416174,0.0195917309,https://salsa.debian.org/debian/iio-sensor-proxy/, https://gitlab.freedesktop.org/hadess/iio-sensor-proxy,3422.2842361111,27,18,0 +im,-0.6832034152,-0.4688495328,-0.7834340928,https://salsa.debian.org/debian/im, https://github.com/tats/im,1297.943900463,1,2,0 +imagetooth,-1.5615180499,1.0297655863,-2.1305568131,https://salsa.debian.org/ruby-team/imagetooth, https://github.com/gramos/imagetooth,163.8133680556,0,1,0 +imbalanced-learn,-1.8704909529,1.5954516705,-2.8318896293,https://salsa.debian.org/med-team/imbalanced-learn, https://github.com/scikit-learn-contrib/imbalanced-learn.git,3355.2317592593,67,21,0 +imexam,-0.5291204946,0.5693013221,-0.7719216675,https://salsa.debian.org/debian-astro-team/imexam, https://github.com/spacetelescope/imexam,3485.9386226852,6,15,1 +imgp,-0.6548311047,1.5722939063,-1.0887948485,https://salsa.debian.org/debian/imgp, https://github.com/jarun/imgp.git,2588.4491782407,7,6,0 +impacket,0.1580804914,1.6689196474,-0.2886690682,https://salsa.debian.org/python-team/packages/impacket, https://github.com/SecureAuthCorp/impacket.git,5583.002974537,71,193,0 +inadyn,1.2491026451,3.2798478671,0.2809534044,https://salsa.debian.org/debian/inadyn, https://github.com/troglobit/inadyn,4734.4166203704,20,58,1 +incremental,0.2856023298,1.7575610388,-0.0750684493,https://salsa.debian.org/python-team/packages/incremental, https://github.com/twisted/incremental.git,2511.7793865741,4,15,0 +indexed-gzip,0.2468419815,2.6900392716,-0.5295835967,https://salsa.debian.org/python-team/packages/indexed-gzip, https://github.com/pauldmccarthy/indexed_gzip.git,2811.3833101852,1,15,0 +indicator-sensors,-0.5585654847,1.870631377,-1.1666724793,https://salsa.debian.org/debian/indicator-sensors, https://github.com/alexmurray/indicator-sensors.git,4448.0518287037,1,8,0 +influxdb-python,0.5184399777,1.9994055882,-0.0609733668,https://salsa.debian.org/python-team/packages/influxdb-python, https://github.com/influxdata/influxdb-python,3542.0853240741,64,90,1 +infnoise,-0.8043001603,2.0102163079,-1.7895799595,https://salsa.debian.org/debian/infnoise, https://github.com/13-37-org/infnoise.git,3061.3638078704,9,32,0 +inhomog,-0.435953666,1.7202984073,-0.8742696411,https://salsa.debian.org/debian-astro-team/inhomog, https://bitbucket.org/broukema/inhomog,2315.1452199074,1,7,0 +ink,1.0057689165,4.5993890485,-0.1353868638,https://salsa.debian.org/debian/ink, https://git.code.sf.net/p/ink/git,4942.509212963,5,40,0 +inkscape-open-symbols,0.1399161023,2.3946994301,-0.296432736,https://salsa.debian.org/felix-guest/inkscape-open-symbols, https://github.com/Xaviju/inkscape-open-symbols,2971.3217939815,9,20,0 +inn2,-0.504610683,-0.419983647,-0.5703395284,https://salsa.debian.org/md/inn2, https://github.com/InterNetNews/inn.git,5725.5850115741,6,6,0 +intel-compute-runtime,-0.3353488286,2.5434327002,-1.0380631241,https://salsa.debian.org/opencl-team/intel-compute-runtime, https://github.com/intel/compute-runtime,2183.6453703704,160,87,0 +intel-media-driver,0.6642260007,2.7152492026,0.046733391,https://salsa.debian.org/multimedia-team/intel-media-driver, https://github.com/intel/media-driver.git,2204.0229513889,645,23,0 +intel-mediasdk,0.7115145301,3.9518951759,-0.0646178885,https://salsa.debian.org/debian/intel-mediasdk, https://github.com/Intel-Media-SDK/MediaSDK,2234.0838888889,221,19,0 +intel-opencl-clang,-0.6020289574,1.7280324931,-1.0819920579,https://salsa.debian.org/opencl-team/intel-opencl-clang, https://github.com/intel/opencl-clang,2205.1366319445,24,22,0 +intel-vaapi-driver-shaders,0.1336440046,2.0545788003,-0.35263098,https://salsa.debian.org/multimedia-team/intel-vaapi-driver-shaders, https://github.com/intel/intel-vaapi-driver.git,5083.2222916667,105,18,0 +intelhex,-0.7181174872,1.5303194974,-1.1558028433,https://salsa.debian.org/python-team/packages/intelhex, https://github.com/bialix/intelhex.git,2882.7775578704,4,21,0 +invesalius,-0.365553699,0.412659255,-0.6585148784,https://salsa.debian.org/med-team/invesalius, https://github.com/invesalius/invesalius3.git,5269.8872106482,20,33,0 +iodine,-0.2722510221,-0.1412187428,-0.330852502,https://git.toastfreeware.priv.at/debian/iodine.git/, https://github.com/yarrick/iodine.git,5593.1268634259,29,23,0 +ionit,-2.5676980502,-0.9981519368,-2.9844493768,https://github.com/bdrung/ionit/tree/debian/unstable,https://github.com/bdrung/ionit,1307.9435069445,2,5,0 +ioquake3,0.2457529541,0.9626997446,-0.0891553792,https://salsa.debian.org/games-team/ioquake3, https://github.com/ioquake/ioq3,5764.2156828704,42,58,0 +iortcw,-0.3609137722,1.7540737172,-0.8999552481,https://salsa.debian.org/games-team/iortcw, https://github.com/iortcw/iortcw.git,3601.8735763889,5,20,0 +ip4r,-1.4632745556,-0.4677957849,-1.7119933385,https://salsa.debian.org/postgresql/ip4r, https://github.com/RhodiumToad/ip4r.git,3711.2765972222,1,6,0 +ipdb,-0.2350141992,1.2023463506,-0.5664993432,https://salsa.debian.org/python-team/packages/ipdb, https://github.com/gotcha/ipdb,4846.9973148148,26,37,0 +ipheth,0.9430908027,3.7638258527,-0.137434873,https://github.com/pmcenery/ipheth-debian,https://github.com/pmcenery/ipheth-debian,4243.6053819445,0,4,0 +ipmctl,-1.8038062885,-0.2344447385,-2.0696396657,https://github.com/kilobyte/ipmctl/tree/debian,https://github.com/kilobyte/ipmctl,1854.5950810185,32,11,0 +ippusbxd,0.0111748533,2.660027865,-0.7220268879,https://salsa.debian.org/printing-team/ippusbxd, https://github.com/OpenPrinting/ippusbxd,2327.0776967593,1,12,0 +iprange,0.6480375888,3.9597495364,-0.2945161283,https://salsa.debian.org/debian/iprange, https://github.com/firehol/iprange.git,1873.7119328704,0,7,0 +iprutils,-1.9030231406,0.3339685092,-2.4460433686,https://salsa.debian.org/debian/iprutils, https://github.com/bjking1/iprutils,5119.0450578704,18,20,0 +iptux,-0.2109419825,1.1928695296,-0.6857771448,https://salsa.debian.org/chinese-team/iptux, https://github.com/iptux-src/iptux,5548.864212963,7,21,2 +iputils,2.0663095785,2.7189807814,1.5933107288,https://salsa.debian.org/debian/iputils, https://github.com/iputils/iputils.git,5645.1556828704,103,41,0 +ipv6calc,0.5432988576,1.7634814459,-0.0022190697,https://salsa.debian.org/debian/ipv6calc, https://github.com/pbiering/ipv6calc,5498.6132407407,2,10,5 +ipv6toolkit,0.1556183786,2.6785840103,-0.5536700112,https://github.com/alvarezp/ipv6toolkit/tree/debian,https://github.com/alvarezp/ipv6toolkit,3020.5637962963,1,17,0 +ipvsadm,1.6190855359,2.7831585401,0.9056298919,https://github.com/formorer/pkg-ipvsadm,https://github.com/formorer/pkg-ipvsadm,3173.692650463,1,2,0 +ipykernel,0.4325715045,2.4213874349,-0.090740521,https://salsa.debian.org/python-team/packages/ipykernel, https://github.com/ipython/ipykernel.git,5666.2640509259,50,144,0 +ipython,0.761329928,1.1684254253,0.4433188127,https://salsa.debian.org/python-team/packages/ipython, https://github.com/ipython/ipython.git,5780.4148032407,231,812,0 +ipython-genutils,0.5301773312,3.2373221637,-0.0754853283,https://salsa.debian.org/python-team/packages/ipython-genutils, https://github.com/ipython/ipython_genutils,4920.5252546296,2,28,3 +ir.lv2,0.0482033805,1.8072786295,-0.420434878,https://salsa.debian.org/multimedia-team/ir.lv2, https://github.com/tomszilagyi/ir.lv2.git,901.6371759259,2,4,0 +iraf-sptable,-0.3572895376,2.8910468841,-1.1439831667,https://salsa.debian.org/debian-astro-team/iraf-sptable, https://github.com/iraf-community/sptable,2001.9924189815,2,4,0 +ircmarkers,-1.4435928142,0.7583118463,-1.9125989528,https://github.com/df7cb/ircmarkers,https://github.com/df7cb/ircmarkers,5694.8846527778,1,3,0 +irker,-1.5578395797,-0.4962813692,-1.9644655308,https://salsa.debian.org/python-team/packages/irker, https://gitlab.com/esr/irker.git,3952.2131018519,14,23,0 +irssi,1.759294185,2.3625896628,1.3052149799,https://salsa.debian.org/rhonda/irssi, https://github.com/irssi/irssi.git,5749.0144675926,36,142,0 +irssi-plugin-xmpp,0.6035691601,1.5557972582,0.0980337918,https://salsa.debian.org/debian/irssi-plugin-xmpp, https://github.com/cdidier/irssi-xmpp,4266.8623958333,7,12,0 +irstlm,-0.5699998346,2.5734688359,-1.3621281388,https://salsa.debian.org/science-team/irstlm, https://github.com/irstlm-team/irstlm.git,1268.8947337963,1,9,0 +islamic-menus,-0.8360403457,1.8927666646,-1.5208014105,https://salsa.debian.org/islamic-team/islamic-menus, https://github.com/ojuba-org/islamic-menus,1447.6479050926,0,9,0 +ismrmrd,-0.4211375034,0.8719718551,-0.792919077,https://salsa.debian.org/med-team/ismrmrd, https://github.com/ismrmrd/ismrmrd.git,4121.9187384259,23,44,0 +iso-codes,0.0346353441,0.0655255277,0.0140224895,https://salsa.debian.org/debian/iso-codes, https://salsa.debian.org/iso-codes-team/iso-codes,5771.8388541667,209,46,0 +iso-flags-svg,1.0476074347,4.844542624,0.0451502018,https://salsa.debian.org/cinnamon-team/iso-flags-svg, https://github.com/linuxmint/flags.git,563.1795833333,0,2,0 +isodate,0.7844107872,3.6859500169,-0.0654948523,https://salsa.debian.org/python-team/packages/isodate, https://github.com/gweis/isodate,4815.1887152778,2,29,0 +isort,1.0113391348,3.3988310994,0.1528701861,https://salsa.debian.org/python-team/packages/isort, https://github.com/timothycrosley/isort,3753.9250578704,72,254,0 +ispell-lt,-0.323517662,-0.0990794107,-0.3953888497,https://salsa.debian.org/debian/ispell-lt, https://github.com/ispell-lt/ispell-lt.git,5691.9571180556,0,11,0 +isrcsubmit,-0.0652487858,2.1567338412,-0.6094361005,https://salsa.debian.org/multimedia-team/isrcsubmit, https://github.com/JonnyJD/musicbrainz-isrcsubmit,4205.4764583333,3,11,3 +itamae,-2.4298742883,-0.1398639988,-2.9800286283,https://salsa.debian.org/ruby-team/itamae, https://github.com/itamae-kitchen/itamae,3570.7650925926,12,71,0 +iverilog,0.4288935216,1.2939458428,-0.0384729203,https://salsa.debian.org/electronics-team/iverilog, https://github.com/steveicarus/iverilog,5784.215775463,47,73,0 +ivtools,0.3988011669,1.0923186651,-0.0474693289,https://salsa.debian.org/debian/ivtools, https://github.com/vectaport/ivtools,4623.9669328704,2,10,0 +iw,0.9313070957,2.2844328366,0.2989932953,https://salsa.debian.org/kernel-team/iw, https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git,5714.3418171296,150,3,0 +iwyu,0.2936470135,1.7756158607,-0.3256054834,https://salsa.debian.org/pkg-llvm-team/iwyu, https://github.com/include-what-you-use/include-what-you-use,4692.8704050926,67,17,1 +jabberd2,-0.0340967947,0.9124576514,-0.5754415701,https://salsa.debian.org/xmpp-team/jabberd2, https://github.com/jabberd2/jabberd2,3913.9184490741,17,25,0 +jabref,0.0587466024,0.3516485448,-0.1067920302,https://salsa.debian.org/java-team/jabref, https://github.com/JabRef/jabref.git,3914.4709953704,494,267,0 +jack-audio-connection-kit,0.6705756736,1.1891251464,0.335122338,https://salsa.debian.org/multimedia-team/jack-audio-connection-kit, https://github.com/jackaudio/jack1.git,5288.1344444445,9,36,0 +jack-midi-clock,0.3118920052,2.9552674463,-0.4056573573,https://salsa.debian.org/multimedia-team/jack-midi-clock, https://github.com/x42/jack_midi_clock,4775.6370949074,0,4,0 +jackd2,1.9353578448,3.0517248408,1.2444668524,https://salsa.debian.org/multimedia-team/jackd2, https://github.com/jackaudio/jack2.git,5783.187974537,65,70,0 +jackson-core,0.7697166495,3.8929077559,-0.0559746497,https://salsa.debian.org/java-team/jackson-core, https://github.com/FasterXML/jackson-core,4373.9794328704,53,72,30 +jackson-dataformat-yaml,-0.30501226,2.808298895,-1.2455361494,https://salsa.debian.org/java-team/jackson-dataformat-yaml, https://github.com/FasterXML/jackson-dataformat-yaml.git,2094.1709722222,1,22,0 +jag,0.0847246341,3.0201056089,-0.7536400658,https://salsa.debian.org/games-team/jag, https://gitlab.com/coringao/jag,1024.4477199074,0,3,0 +jalv,0.8243490838,3.3710755144,-0.0899351143,https://salsa.debian.org/multimedia-team/jalv, https://gitlab.com/drobilla/jalv.git,4498.9127199074,6,4,0 +jansson,0.1407028183,0.668384438,-0.002779965,https://salsa.debian.org/debian/jansson, https://github.com/akheron/jansson.git,5159.4155902778,29,84,0 +janus,-1.0533724499,0.8744335289,-1.6790293476,https://salsa.debian.org/pkg-voip-team/janus, https://github.com/meetecho/janus-gateway,3591.8742708333,192,158,0 +jaraco.itertools,-2.1770715585,0.4444182514,-2.9053425973,https://salsa.debian.org/python-team/packages/jaraco.itertools, https://github.com/jaraco/jaraco.itertools.git,3229.3396990741,17,5,0 +java-atk-wrapper,0.561521277,1.2449834534,0.2042642146,https://salsa.debian.org/a11y-team/java-atk-wrapper, https://github.com/GNOME/java-atk-wrapper,5298.5764814815,11,11,0 +javaparser,0.5439696309,3.857471242,-0.3924119254,https://salsa.debian.org/java-team/javaparser, https://github.com/javaparser/javaparser.git,4427.0781597222,68,236,0 +jdim,-1.0625455629,0.9599464829,-1.4721593744,https://salsa.debian.org/debian/jdim, https://github.com/JDimproved/JDim.git,5782.9914467593,2,15,0 +jemalloc,0.6824076694,1.6447356578,0.2241046794,https://salsa.debian.org/debian/jemalloc, https://github.com/jemalloc/jemalloc,5237.9297337963,146,42,1 +jenkins-debian-glue,-0.9651614042,1.4854607326,-1.5578228428,https://github.com/mika/jenkins-debian-glue,https://github.com/mika/jenkins-debian-glue,4282.4493981482,10,50,0 +jglobus,-0.601880292,1.3271124565,-1.1516610414,https://salsa.debian.org/ellert/jglobus, https://github.com/jglobus/JGlobus,4874.68375,3,36,0 +jhead,-0.1046962169,0.0128556712,-0.1619952781,https://salsa.debian.org/reichel/jhead, https://github.com/Matthias-Wandel/jhead,974.1013078704,4,13,0 +jimfs,-0.383074555,1.3779935007,-0.7657827645,https://salsa.debian.org/java-team/jimfs, https://github.com/google/jimfs.git,3771.606712963,24,17,0 +jimtcl,0.0276014571,0.4709064501,-0.0432191953,https://salsa.debian.org/debian/jimtcl, https://github.com/msteveb/jimtcl.git,5640.2291087963,31,13,0 +jinja2-time,-0.4698555936,1.1570025567,-0.7656248707,https://salsa.debian.org/python-team/packages/jinja2-time, https://github.com/hackebrot/jinja2-time,2112.1138657407,0,3,0 +jitterdebugger,-2.3485028902,-0.1533055837,-2.7859741296,https://salsa.debian.org/debian/jitterdebugger, https://github.com/igaw/jitterdebugger.git,1214.2022916667,8,3,0 +jitterentropy-rngd,-1.0568983374,-0.2694182082,-1.1867836067,https://salsa.debian.org/debian/jitterentropy-rngd, https://github.com/smuellerDD/jitterentropy-rngd,2267.9794675926,9,1,0 +jmxetric,-2.9017326958,-0.7363274677,-3.3243552835,https://github.com/ganglia/jmxetric,https://github.com/ganglia/jmxetric,2292.7484027778,0,9,0 +jool,-2.1435730131,-0.0424378709,-2.6129119375,https://github.com/NICMx/Jool,https://github.com/NICMx/Jool,4435.2104050926,8,57,3 +joptsimple,-0.2557722008,1.1092730965,-0.5210596763,https://salsa.debian.org/java-team/joptsimple, https://github.com/jopt-simple/jopt-simple.git,3771.2237962963,2,25,0 +jp2a,0.9044983067,3.5392448615,-0.0351520282,https://salsa.debian.org/debian/jp2a, https://github.com/Talinx/jp2a,2190.7298032407,3,4,0 +jpy,-0.2335047706,1.5585712074,-0.6921580176,https://salsa.debian.org/python-team/packages/jpy, https://github.com/jpy-consortium/jpy,3656.2358564815,16,28,3 +jpylyzer,-1.218476643,-0.4298985846,-1.4717139107,https://salsa.debian.org/python-team/packages/jpylyzer, https://github.com/openpreserve/jpylyzer.git,3586.5846064815,2,28,0 +jq,0.9075077567,2.0772581347,0.3378546024,https://salsa.debian.org/debian/jq, https://github.com/jqlang/jq,4164.9958796296,128,79,5 +jquery-i18n-properties,-0.8429862877,1.002530129,-1.1610901473,https://salsa.debian.org/js-team/jquery-i18n-properties/, https://github.com/jquery-i18n-properties/jquery-i18n-properties.git,2244.4631597222,1,17,0 +jquery-minicolors,0.5970650999,3.6140009205,-0.2927474458,https://salsa.debian.org/js-team/jquery-minicolors, https://github.com/claviska/jquery-minicolors,4034.2342592593,8,51,1 +jquery-tablesorter,0.7809570352,3.7824178571,-0.02519667,https://salsa.debian.org/js-team/jquery-tablesorter, https://github.com/Mottie/tablesorter.git,4550.6609606482,28,67,0 +jruby-joni,-0.0743980966,1.6310076829,-0.6027774209,https://salsa.debian.org/java-team/jruby-joni, https://github.com/jruby/joni.git,5683.5945717593,3,29,0 +js-of-ocaml,-0.9882969432,1.6998378873,-1.7632278516,https://salsa.debian.org/ocaml-team/js-of-ocaml, https://github.com/ocsigen/js_of_ocaml.git,5063.2903472222,71,115,0 +jsjac,-0.3265912384,2.0049639122,-1.1507866217,https://salsa.debian.org/xmpp-team/jsjac, https://github.com/sstrigler/JSJaC.git,3682.6423958333,1,21,0 +json-c,0.7000238519,1.5684181486,0.2497560899,https://salsa.debian.org/debian/json-c, https://github.com/json-c/json-c,5592.2949652778,18,150,0 +json-glib,0.7900903327,2.125211494,0.2224753332,https://salsa.debian.org/gnome-team/json-glib, https://gitlab.gnome.org/GNOME/json-glib.git,5734.4554861111,90,124,0 +json-js,0.6358541009,3.1706913966,-0.0862776907,https://salsa.debian.org/js-team/json-js, https://github.com/douglascrockford/JSON-js,4556.1964236111,1,4,0 +jsonlint,0.1283791193,1.6136347642,-0.1615279631,https://salsa.debian.org/php-team/pear/jsonlint, https://github.com/Seldaek/jsonlint,4166.9388888889,11,28,0 +jsonpickle,-0.0589038511,1.6549477485,-0.6288474464,https://salsa.debian.org/python-team/packages/jsonpickle, https://github.com/jsonpickle/jsonpickle,5737.1075462963,18,67,1 +jsusfx,-0.4818415459,1.4674471205,-0.8815812329,https://salsa.debian.org/multimedia-team/pd/jsusfx, https://github.com/asb2m10/jsusfx.git,2697.3649768519,1,8,0 +jsxgraph,-0.8034422609,0.4933206885,-1.356218148,https://salsa.debian.org/georgesk/jsxgraph, https://github.com/jsxgraph/jsxgraph,5539.982337963,12,60,4 +jts,-0.2221083775,1.3940401568,-0.5008589533,https://salsa.debian.org/debian-gis-team/jts, https://github.com/locationtech/jts.git,5138.0149189815,54,13,0 +jumpnbump,0.1472955365,0.7821560674,-0.2017234424,https://salsa.debian.org/games-team/jumpnbump, https://gitlab.com/LibreGames/jumpnbump,2024.9723263889,4,8,0 +jupyter-client,0.4731258496,2.6840214537,-0.0943192887,https://salsa.debian.org/python-team/packages/jupyter-client, https://github.com/jupyter/jupyter_client,5666.1043171296,44,110,7 +jupyter-console,0.6765563279,3.7464493059,-0.1525150798,https://salsa.debian.org/python-team/packages/jupyter-console, https://github.com/jupyter/jupyter_console,4679.6520833333,19,54,5 +jupyter-core,0.6331803487,2.9442255745,-0.0301160705,https://salsa.debian.org/python-team/packages/jupyter-core, https://github.com/jupyter/jupyter_core,3175.9166550926,20,48,6 +jupyter-notebook,0.8685247881,1.9952409462,0.2779463159,https://salsa.debian.org/python-team/packages/jupyter-notebook, https://github.com/jupyter/notebook.git,5779.2858796296,225,512,0 +jupyter-sphinx,-1.8761137786,1.7667233911,-2.8814154946,https://salsa.debian.org/python-team/packages/jupyter-sphinx, https://github.com/jupyter/jupyter-sphinx.git,2558.9093171296,11,25,0 +jupyter-sphinx-theme,-0.4091049447,-0.045316663,-0.4899605303,https://salsa.debian.org/python-team/packages/jupyter-sphinx-theme, https://github.com/jupyter/jupyter-sphinx-theme,1834.3539467593,2,32,0 +jwm,0.3655489191,1.1999641338,-0.1155797564,https://salsa.debian.org/debian/jwm, https://github.com/joewing/jwm,5370.4985648148,13,37,2 +kactivitymanagerd,0.8416324232,3.0842965706,0.0951979877,https://salsa.debian.org/qt-kde-team/kde/kactivitymanagerd, https://invent.kde.org/plasma/kactivitymanagerd.git,4610.6253472222,3,90,0 +kafkacat,-0.4244126984,1.1922353358,-0.7094095982,https://github.com/edenhill/kcat/tree/debian,https://github.com/edenhill/kcat,3514.9895486111,24,19,1 +kajongg,0.54486815,2.4792730166,-0.0672664135,https://salsa.debian.org/qt-kde-team/kde/kajongg, https://anongit.kde.org/kajongg.git,5482.0032638889,0,34,0 +kakoune,0.0719503485,2.8892940945,-0.66185147,https://salsa.debian.org/debian/kakoune/, https://github.com/mawww/kakoune.git,4483.734849537,77,350,0 +kalzium,0.8916027313,2.1920367153,0.2740297305,https://salsa.debian.org/qt-kde-team/kde/kalzium, https://anongit.kde.org/kalzium.git,5785.2932291667,13,101,0 +kamcli,-4.7786388825,-2.4182541708,-5.4179403291,https://salsa.debian.org/pkg-voip-team/kamcli/, https://github.com/kamailio/kamcli,3121.9156134259,1,5,0 +kamerka,0.8743124322,3.7857646393,-0.1312218342,http://github.com/dos1/kamerka,http://github.com/dos1/kamerka,2873.9879282407,7,12,1 +kapman,0.4209588921,3.0853494627,-0.1319440322,https://salsa.debian.org/qt-kde-team/kde/kapman, https://anongit.kde.org/kapman.git,5786.5046875,5,58,0 +karlyriceditor,-0.1145592946,2.7444681458,-1.0688808595,https://github.com/martin-steghoefer/debian-karlyriceditor,https://github.com/martin-steghoefer/debian-karlyriceditor,1746.0329513889,1,1,0 +katomic,0.1737912236,1.135514813,-0.1206838919,https://salsa.debian.org/qt-kde-team/kde/katomic, https://anongit.kde.org/katomic.git,5647.4785416667,2,47,0 +kblackbox,-0.0393616014,0.5854645378,-0.1595860999,https://salsa.debian.org/qt-kde-team/kde/kblackbox, https://anongit.kde.org/kblackbox.git,5762.3847685185,6,46,0 +kblocks,0.4082111073,2.9203897665,-0.1368235065,https://salsa.debian.org/qt-kde-team/kde/kblocks, https://anongit.kde.org/kblocks.git,5777.2147916667,4,62,0 +kbounce,0.3579848782,2.5405277116,-0.1318822605,https://salsa.debian.org/qt-kde-team/kde/kbounce, https://anongit.kde.org/kbounce.git,5648.4390162037,4,51,0 +kbreakout,0.5233648282,2.4810749708,-0.0633746417,https://salsa.debian.org/qt-kde-team/kde/kbreakout, https://anongit.kde.org/kbreakout.git,5776.7619097222,4,49,0 +kbtin,-0.2885497121,1.2472045448,-0.639846297,https://github.com/kilobyte/kbtin/tree/debian,https://github.com/kilobyte/kbtin,5761.0344212963,1,4,0 +kcemu,-1.5465318214,-0.3965547601,-1.8452569055,https://github.com/glaubitz/kcemu-debian,https://github.com/glaubitz/kcemu-debian,4222.8273842593,2,2,0 +kchmviewer,0.9382066218,2.3758050403,0.2613367395,https://salsa.debian.org/qt-kde-team/extras/kchmviewer, https://github.com/gyunaev/kchmviewer,2255.6306481482,1,6,0 +kcm-fcitx5,-2.0382414175,0.1900614823,-2.4776971708,https://salsa.debian.org/input-method-team/kcm-fcitx5, https://github.com/fcitx/fcitx5-configtool.git,4494.6415046296,8,8,0 +kde-cli-tools,1.3316660272,3.6858714881,0.3985596512,https://salsa.debian.org/qt-kde-team/kde/kde-cli-tools, https://invent.kde.org/plasma/kde-cli-tools.git,5783.3875231482,11,139,0 +kde-config-systemd,0.7599629002,3.9388494787,-0.1577270679,https://github.com/shsorbom/kcmsystemd-debian.git,https://github.com/shsorbom/kcmsystemd-debian.git,684.1522685185,1,12,0 +kde-dev-utils,0.1954171633,1.2214580067,-0.1359937357,https://salsa.debian.org/qt-kde-team/kde/kde-dev-utils, https://invent.kde.org/sdk/kde-dev-utils,5674.42125,0,30,0 +kde-gtk-config,0.4010669368,2.0048799886,-0.0367510985,https://salsa.debian.org/qt-kde-team/kde/kde-gtk-config, https://invent.kde.org/plasma/kde-gtk-config.git,4730.9115509259,12,61,0 +kdecoration,0.7363479254,2.9165545865,0.063855417,https://salsa.debian.org/qt-kde-team/kde/kdecoration, https://invent.kde.org/plasma/kdecoration.git,3433.5874884259,1,40,0 +kdeedu-data,0.2922742848,2.5033302745,-0.1513976963,https://salsa.debian.org/qt-kde-team/kde/kdeedu-data, https://invent.kde.org/education/kdeedu-data,3439.6598958333,2,9,0 +kdegraphics-mobipocket,0.5588164793,2.9952838989,-0.0332305655,https://salsa.debian.org/qt-kde-team/kde/kdegraphics-mobipocket, https://invent.kde.org/graphics/kdegraphics-mobipocket,5487.7851273148,0,22,0 +kdegraphics-thumbnailers,0.3957289508,2.8153848365,-0.1432298407,https://salsa.debian.org/qt-kde-team/kde/kdegraphics-thumbnailers, https://invent.kde.org/graphics/kdegraphics-thumbnailers,5411.1856134259,2,27,0 +kdepim-addons,0.3638566618,1.9943764048,-0.052346766,https://salsa.debian.org/qt-kde-team/kde/kdepim-addons, https://invent.kde.org/pim/kdepim-addons,2937.3682986111,3,40,0 +kdepim-runtime,0.7718438237,1.5764722694,0.321026286,https://salsa.debian.org/qt-kde-team/kde/kdepim-runtime, https://invent.kde.org/pim/kdepim-runtime,5449.3963194445,14,224,0 +kdeplasma-addons,2.6480388182,4.2537576282,1.7142910306,https://salsa.debian.org/qt-kde-team/kde/kdeplasma-addons, https://invent.kde.org/plasma/kdeplasma-addons.git,5787.703275463,45,311,0 +kdesdk-kioslaves,0.6873844561,3.4745424487,-0.1064554686,https://salsa.debian.org/qt-kde-team/kde/kdesdk-kioslaves, https://invent.kde.org/sdk/kdesdk-kioslaves,5778.5445717593,0,26,0 +kdesdk-thumbnailers,0.3814032877,2.8695390932,-0.1606204531,https://salsa.debian.org/qt-kde-team/kde/kdesdk-thumbnailers, https://invent.kde.org/sdk/kdesdk-thumbnailers,4247.5795949074,0,13,0 +kdevelop,0.8363355806,1.1890356006,0.5585733475,https://salsa.debian.org/qt-kde-team/kde/kdevelop, https://invent.kde.org/kdevelop/kdevelop.git,5786.496412037,138,326,0 +kdiamond,0.4109390551,3.0304298551,-0.1356162492,https://salsa.debian.org/qt-kde-team/kde/kdiamond, https://anongit.kde.org/kdiamond.git,5784.1778240741,3,49,0 +keepassxc,0.077500136,0.7662262759,-0.1344432376,https://salsa.debian.org/debian/keepassxc, https://github.com/keepassxreboot/keepassxc.git,4876.4075,354,94,0 +keras,0.5999454369,3.4232399441,-0.326875434,https://salsa.debian.org/science-team/keras, https://github.com/keras-team/keras,3182.8412268519,1036,333,0 +keychain,1.0933393106,2.2752386059,0.4360362266,https://salsa.debian.org/debian/keychain, https://github.com/funtoo/keychain,3125.5103356482,23,18,0 +keyrings.alt,0.6958982482,2.4349473644,0.083975075,https://salsa.debian.org/python-team/packages/keyrings.alt, https://github.com/jaraco/keyrings.alt,2906.9172685185,18,9,0 +kf5-kdepim-apps-libs,0.4296653122,2.8935740334,-0.0678658101,https://salsa.debian.org/qt-kde-team/kde/kdepim-apps-libs, https://invent.kde.org/pim/kdepim-apps-libs,1796.8098842593,1,20,0 +kfourinline,0.4064118059,2.97282533,-0.1393019906,https://salsa.debian.org/qt-kde-team/kde/kfourinline, https://anongit.kde.org/kfourinline.git,5763.6190972222,4,46,0 +kgamma5,0.1906390779,1.7492889361,-0.0808636678,https://salsa.debian.org/qt-kde-team/kde/kgamma5, https://invent.kde.org/plasma/kgamma5.git,5781.5361342593,2,47,0 +kgoldrunner,1.2076655952,4.4670466856,0.1339693266,https://salsa.debian.org/qt-kde-team/kde/kgoldrunner, https://anongit.kde.org/kgoldrunner.git,5648.4787615741,5,48,0 +khard,0.0842088929,2.5350536215,-0.5777839137,https://salsa.debian.org/python-team/packages/khard, https://github.com/lucc/khard,3364.3432523148,16,20,1 +khotkeys,1.3125799697,3.8386324877,0.3693628532,https://salsa.debian.org/qt-kde-team/kde/khotkeys, https://invent.kde.org/plasma/khotkeys.git,5783.4645138889,1,94,0 +khronos-opencl-clhpp,0.6884820013,3.3939030018,-0.0690856926,https://salsa.debian.org/opencl-team/khronos-opencl-clhpp, https://github.com/KhronosGroup/OpenCL-CLHPP,2856.9625115741,37,22,0 +khronos-opencl-headers,0.0446421813,0.6243297443,-0.1318118349,https://salsa.debian.org/opencl-team/khronos-opencl-headers, https://github.com/KhronosGroup/OpenCL-Headers,3748.1729398148,39,24,0 +kigo,0.4041450768,2.9711929551,-0.1374483835,https://salsa.debian.org/qt-kde-team/kde/kigo, https://anongit.kde.org/kigo.git,5618.4021759259,4,50,0 +killbots,0.4090753837,2.9991019577,-0.1379454817,https://salsa.debian.org/qt-kde-team/kde/killbots, https://anongit.kde.org/killbots.git,5753.0525462963,3,41,0 +kim-api,-0.8423857472,1.4393693103,-1.2913134011,https://salsa.debian.org/science-team/kim-api, https://github.com/openkim/kim-api,4210.4546527778,1,26,1 +kindleclip,-0.8974283368,0.9569429807,-1.3449393666,https://github.com/gwolf/kindleclip,https://github.com/gwolf/kindleclip,1841.0025925926,0,1,0 +kinfocenter,0.6415861078,2.2733269577,0.0599240338,https://salsa.debian.org/qt-kde-team/kde/kinfocenter, https://invent.kde.org/plasma/kinfocenter.git,5783.387650463,20,129,0 +king,-0.406165741,0.7632042123,-0.7000750742,https://salsa.debian.org/med-team/king, https://github.com/rlabduke/javadev.git,5017.5933217593,0,15,0 +kiriki,0.2457852674,2.1406811453,-0.1496805258,https://salsa.debian.org/qt-kde-team/kde/kiriki, https://anongit.kde.org/kiriki.git,5766.6875462963,4,42,0 +kismet,1.9335416891,2.9570779251,1.2756598324,https://github.com/andrikos/kismet-debian,https://github.com/andrikos/kismet-debian,1415.5860300926,0,1,0 +kitchensink-clojure,-0.6039126858,2.5849138336,-1.5600356447,https://salsa.debian.org/clojure-team/kitchensink-clojure, https://github.com/puppetlabs/clj-kitchensink.git,3697.8495138889,12,47,0 +kitinerary,0.7307837922,3.3681248471,0.0036222393,https://salsa.debian.org/qt-kde-team/kde/kitinerary, https://invent.kde.org/pim/kitinerary,2223.1792708333,1,41,0 +kivy,0.1336755324,1.4621445299,-0.4569559595,https://salsa.debian.org/python-team/packages/kivy, https://github.com/kivy/kivy,4786.8645601852,206,485,2 +kiwisolver,0.6520962383,3.1987469191,-0.031223141,https://salsa.debian.org/python-team/packages/kiwisolver, https://github.com/nucleic/kiwi,3661.7752199074,19,17,0 +kjots,1.0127744678,3.8362871931,0.0614439581,https://salsa.debian.org/qt-kde-team/extras/kjots, https://invent.kde.org/pim/kjots,5684.3522337963,3,61,0 +kjumpingcube,0.2808186124,1.9462272843,-0.1365344835,https://salsa.debian.org/qt-kde-team/kde/kjumpingcube, https://anongit.kde.org/kjumpingcube.git,5646.5090162037,2,45,0 +klatexformula,-0.2602166071,0.57054691,-0.5330870672,https://github.com/TobiasWinchen/klatexformula_debian,https://github.com/TobiasWinchen/klatexformula_debian,3554.8463541667,0,6,0 +klaus,-1.7963750896,-1.1425182339,-1.9244411722,https://salsa.debian.org/jelmer/klaus, https://github.com/jonashaag/klaus,4576.8670717593,13,28,0 +klickety,0.5887524507,3.3134713031,-0.0925845665,https://salsa.debian.org/qt-kde-team/kde/klickety, https://anongit.kde.org/klickety.git,5684.9847569445,2,37,0 +klines,0.9487847657,3.8186551787,0.0500985106,https://salsa.debian.org/qt-kde-team/kde/klines, https://anongit.kde.org/klines.git,5787.1583912037,4,46,0 +klystrack,-0.5775196532,1.4334446874,-1.0926907229,https://salsa.debian.org/multimedia-team/klystrack, https://github.com/kometbomb/klystrack,3882.7988194445,10,13,4 +kmahjongg,0.7484112425,2.2637754614,0.1163508887,https://salsa.debian.org/qt-kde-team/kde/kmahjongg, https://anongit.kde.org/kmahjongg.git,5649.437037037,5,55,0 +kmenuedit,1.4561663651,3.5116776443,0.5428692873,https://salsa.debian.org/qt-kde-team/kde/kmenuedit, https://invent.kde.org/plasma/kmenuedit.git,5782.3889930556,7,65,0 +kmines,0.3253439001,1.7757260526,-0.1083156449,https://salsa.debian.org/qt-kde-team/kde/kmines, https://anongit.kde.org/kmines.git,5689.6958333333,7,52,0 +kmodpy,0.1030615833,3.0213450035,-0.8174763799,https://github.com/cnanakos/kmodpy/tree/debian/debian,https://github.com/cnanakos/kmodpy,2086.9590277778,2,5,0 +knavalbattle,0.3422827805,2.3072515833,-0.1291519448,https://salsa.debian.org/qt-kde-team/kde/knavalbattle, https://anongit.kde.org/knavalbattle.git,5722.456412037,6,51,0 +knetwalk,2.5160112246,5.8261609955,1.2096912542,https://salsa.debian.org/qt-kde-team/kde/knetwalk, https://anongit.kde.org/knetwalk.git,5646.5094097222,5,54,0 +knockd,3.5394778714,6.4594348606,2.1601514517,https://salsa.debian.org/debian/knockd, https://github.com/jvinet/knock.git,3585.1200578704,3,18,0 +knowthelist,-0.5927055198,1.0577845782,-1.0749480423,https://github.com/knowthelist/knowthelist,https://github.com/knowthelist/knowthelist,1682.080625,1,6,0 +knxd,-0.6805683984,1.1892492423,-1.1557530296,https://github.com/knxd/knxd,https://github.com/knxd/knxd,3234.4639814815,12,54,2 +kodi-pvr-dvbviewer,-0.2612255055,1.7338835217,-0.6785034929,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-dvbviewer, https://github.com/kodi-pvr/pvr.dvbviewer.git,4026.1822916667,9,44,0 +kodi-pvr-hdhomerun,0.5662601343,3.972730551,-0.5089735041,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-hdhomerun, https://github.com/kodi-pvr/pvr.hdhomerun.git,2925.247337963,9,28,0 +kodi-pvr-iptvsimple,0.0810763451,2.1337559183,-0.4122427721,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-iptvsimple, https://github.com/kodi-pvr/pvr.iptvsimple.git,3805.7589236111,16,66,0 +kodi-pvr-njoy,-0.3919469766,1.5882858351,-0.7945898934,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-njoy, https://github.com/kodi-pvr/pvr.njoy.git,4095.3650578704,9,40,0 +kodi-pvr-vdr-vnsi,-0.2767088162,1.1621317981,-0.6036919178,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-vdr-vnsi, https://github.com/kodi-pvr/pvr.vdr.vnsi.git,4099.2902199074,12,57,0 +kolf,1.7334912698,5.2790004108,0.4690200228,https://salsa.debian.org/qt-kde-team/kde/kolf, https://anongit.kde.org/kolf.git,5649.4371875,4,55,0 +kollision,0.3915928345,2.7609139598,-0.1364337077,https://salsa.debian.org/qt-kde-team/kde/kollision, https://anongit.kde.org/kollision.git,5784.5167939815,3,48,0 +kombu,0.3519176658,1.4291655992,-0.0557315991,https://salsa.debian.org/python-team/packages/kombu, https://github.com/celery/kombu,4921.7204513889,276,132,4 +konquest,0.3263170664,1.8119780623,-0.1020829256,https://salsa.debian.org/qt-kde-team/kde/konquest, https://anongit.kde.org/konquest.git,5785.414224537,4,49,0 +kopete,1.2322348457,1.5673446697,0.9586304002,https://salsa.debian.org/qt-kde-team/kde/kopete, https://anongit.kde.org/kopete.git,5785.1753356482,13,186,0 +kpat,1.4385352103,2.9317093868,0.6384514701,https://salsa.debian.org/qt-kde-team/kde/kpat, https://anongit.kde.org/kpat.git,5650.4368518519,9,77,0 +kpkpass,0.3749291172,2.6571930849,-0.0847242337,https://salsa.debian.org/qt-kde-team/kde/kpkpass, https://invent.kde.org/pim/kpkpass,2087.7338657408,1,13,0 +kraft,-0.3945882039,1.0419232168,-0.8867842412,https://salsa.debian.org/qt-kde-team/extras/kraft, https://github.com/dragotin/kraft.git,3993.7869328704,23,17,0 +kreversi,1.2031297168,3.7645122672,0.2370540019,https://salsa.debian.org/qt-kde-team/kde/kreversi, https://anongit.kde.org/kreversi.git,5649.437337963,6,50,0 +kscreen,1.4806286381,3.5667682267,0.5642126393,https://salsa.debian.org/qt-kde-team/kde/kscreen, https://invent.kde.org/plasma/kscreen.git,4047.6193055556,15,94,0 +kscreenlocker,2.3038217944,5.1853533779,1.0989419262,https://salsa.debian.org/qt-kde-team/kde/kscreenlocker, https://invent.kde.org/plasma/kscreenlocker.git,3544.0011805556,20,84,0 +kshisen,0.7829705126,2.8853035937,0.0525227863,https://salsa.debian.org/qt-kde-team/kde/kshisen, https://anongit.kde.org/kshisen.git,5761.4184143519,2,45,0 +ksirk,0.2743997542,2.1049620497,-0.1397829834,https://salsa.debian.org/qt-kde-team/kde/ksirk, https://anongit.kde.org/ksirk.git,5783.4417939815,4,69,0 +ksmtuned,0.6468606724,3.7904647882,-0.3169526232,https://github.com/bzed/debian-ksmtuned,https://github.com/bzed/debian-ksmtuned,2027.7201157408,1,1,0 +ksnakeduel,1.0335472675,3.8440591889,0.1049403951,https://salsa.debian.org/qt-kde-team/kde/ksnakeduel, https://anongit.kde.org/ksnakeduel.git,5646.5099884259,3,49,0 +kspaceduel,0.5234105035,2.9596198394,-0.08943609,https://salsa.debian.org/qt-kde-team/kde/kspaceduel, https://anongit.kde.org/kspaceduel.git,5761.4186111111,1,44,0 +ksquares,0.408081893,2.7934355038,-0.1398064168,https://salsa.debian.org/qt-kde-team/kde/ksquares, https://anongit.kde.org/ksquares.git,5776.2130092593,4,39,0 +ksshaskpass,3.0119834024,6.2478940761,1.694820476,https://salsa.debian.org/qt-kde-team/kde/ksshaskpass, https://invent.kde.org/plasma/ksshaskpass.git,3326.270625,4,30,0 +ksudoku,0.8926497136,2.2440961809,0.2554998397,https://salsa.debian.org/qt-kde-team/kde/ksudoku, https://anongit.kde.org/ksudoku.git,5766.6887731482,2,74,0 +kthresher,-4.9582109542,-2.994336272,-5.4471385581,https://salsa.debian.org/debian/kthresher, https://github.com/rackerlabs/kthresher,1564.7436342593,5,6,1 +ktuberling,1.5012686947,4.9704862795,0.3414673386,https://salsa.debian.org/qt-kde-team/kde/ktuberling, https://anongit.kde.org/ktuberling.git,5646.5102430556,6,58,0 +kubectx,-0.0725203368,2.3612356183,-0.743212429,https://salsa.debian.org/debian/kubectx, https://github.com/ahmetb/kubectx,2319.9031944445,49,15,1 +kubrick,0.8442690611,3.6208741661,0.0174315107,https://salsa.debian.org/qt-kde-team/kde/kubrick, https://anongit.kde.org/kubrick.git,5773.8925925926,4,49,0 +kwallet-pam,0.5114711729,2.3080754054,-0.0139076069,https://salsa.debian.org/qt-kde-team/kde/kwallet-pam, https://invent.kde.org/plasma/kwallet-pam.git,3618.9633680556,2,35,0 +kwin,2.4968351294,3.1966481255,1.9629097085,https://salsa.debian.org/qt-kde-team/kde/kwin, https://invent.kde.org/plasma/kwin.git,5787.6912962963,157,389,0 +kwstyle,-0.5443680459,1.2886528987,-0.9977067271,https://salsa.debian.org/eikel/kwstyle, https://github.com/Kitware/KWStyle,2816.187662037,4,44,0 +kxstitch,0.5258797601,2.6422462003,-0.475856583,https://salsa.debian.org/qt-kde-team/extras/kxstitch, https://invent.kde.org/graphics/kxstitch,4729.2846527778,2,16,0 +kylin-burner,0.5891863927,3.7002638946,-0.3231693637,https://github.com/ukui/kylin-burner,https://github.com/ukui/kylin-burner,1294.0143055556,2,9,0 +kylin-display-switch,-1.7366978486,1.7252586454,-2.558884793,https://github.com/ukui/kylin-display-switch,https://github.com/ukui/kylin-display-switch,1387.1396296296,4,11,0 +lablgtk-extras,-0.8756228195,2.0634481167,-1.8186386711,https://salsa.debian.org/ocaml-team/lablgtk-extras, https://github.com/zoggy/lablgtk-extras.git,3792.5139930556,0,3,0 +lablgtk3,-0.5519683235,1.0254829683,-0.8566505829,https://salsa.debian.org/ocaml-team/lablgtk3, https://github.com/garrigue/lablgtk.git,5750.3717824074,18,30,0 +labltk,-0.1496995002,2.0785630827,-0.594072233,https://salsa.debian.org/ocaml-team/labltk, https://github.com/garrigue/labltk.git,3339.1637268519,1,3,0 +labplot,-0.1512837132,0.3907541814,-0.4158314403,https://salsa.debian.org/qt-kde-team/extras/labplot, https://invent.kde.org/education/labplot.git,5763.6766435185,12,52,0 +laby,1.665594867,5.3198865227,0.3634891036,https://salsa.debian.org/ocaml-team/laby, https://github.com/sgimenez/laby.git,2556.9824884259,11,12,0 +lastpass-cli,-0.0433153425,1.3416622465,-0.5860041677,https://salsa.debian.org/lamby/pkg-lastpass-cli, https://github.com/lastpass/lastpass-cli,3306.0089351852,30,62,0 +latex-coffee-stains,-0.8084062082,0.1539618161,-0.9674228878,https://salsa.debian.org/debian/latex-coffee-stains, https://github.com/Echsecutor/coffee,1954.8484027778,1,7,0 +latexmk,2.3142169158,4.8870249679,1.1895147626,https://github.com/debian-tex/latexmk,https://github.com/debian-tex/latexmk,1865.2669907407,3,7,0 +latexml,0.5426184631,2.9655400064,-0.3271877484,https://github.com/debian-tex/latexml,https://github.com/debian-tex/latexml,2055.9208333333,2,6,0 +lava-tool,-1.5553171291,-0.4092627761,-1.882507141,https://github.com/Linaro/pkg-lava-tool,https://github.com/Linaro/pkg-lava-tool,2892.9631481482,0,21,0 +lavapdu,-1.360190138,0.6576027042,-1.9660643803,https://github.com/Linaro/pkg-lavapdu,https://github.com/Linaro/pkg-lavapdu,1898.0415972222,9,22,0 +lazy-object-proxy,0.3043618863,2.7233170407,-0.1702005445,https://salsa.debian.org/python-team/packages/lazy-object-proxy, https://github.com/ionelmc/python-lazy-object-proxy.git,3850.5882523148,8,10,0 +lazyarray,-1.6930876257,1.5097154973,-2.5262604044,https://salsa.debian.org/science-team/lazyarray, https://github.com/NeuralEnsemble/lazyarray,3518.1808333333,0,8,0 +lbzip2,0.4553413125,1.9206872689,-0.0826154573,https://github.com/kjn/lbzip2/tree/debian,https://github.com/kjn/lbzip2,2710.187037037,0,3,0 +lcdf-typetools,0.5850757713,1.6610997166,0.0976153045,https://salsa.debian.org/fonts-team/lcdf-typetools, https://github.com/kohler/lcdf-typetools.git,5649.3697337963,4,5,0 +lcdproc,0.0416533252,0.5981870264,-0.2982890351,https://salsa.debian.org/debian/lcdproc, https://github.com/lcdproc/lcdproc,1977.3798148148,39,20,0 +ldap-git-backup,-1.373786898,-0.3569713865,-1.6171841836,https://github.com/elmar/ldap-git-backup,https://github.com/elmar/ldap-git-backup,3900.9497222222,1,9,0 +ldap2dns,0.4410660379,3.2730345751,-0.8182558109,https://salsa.debian.org/debian/ldap2dns, https://github.com/bklang/ldap2dns,1032.2710185185,0,4,0 +ldapscripts,0.4789463026,1.4448695661,0.0155611927,https://github.com/gerasiov/ldapscripts,https://github.com/gerasiov/ldapscripts,4203.2921643519,3,5,0 +ldc,0.449994742,1.1462756579,0.0523636211,https://salsa.debian.org/d-team/ldc, https://github.com/ldc-developers/ldc,5267.8923263889,145,503,17 +leaflet,0.2350660813,1.5240758194,-0.1361577063,https://salsa.debian.org/js-team/leaflet, https://github.com/Leaflet/Leaflet,4848.9296643519,485,522,6 +leaflet-image,-3.0138382893,-0.3056556271,-3.6958370211,https://salsa.debian.org/js-team/leaflet-image, https://github.com/mapbox/leaflet-image,1265.9471759259,3,14,0 +leaflet-markercluster,-0.8956521505,1.1258506138,-1.5243495612,https://salsa.debian.org/js-team/leaflet-markercluster, https://github.com/Leaflet/Leaflet.markercluster,3967.8092708333,22,68,0 +ledger-autosync,-1.1792919611,0.7010692208,-1.6074083066,https://salsa.debian.org/debian/ledger-autosync, https://gitlab.com/egh/ledger-autosync,3743.7800347222,5,30,0 +ledger2beancount,-1.9139220757,0.2494993064,-2.3492151158,https://salsa.debian.org/jelmer/ledger2beancount, https://github.com/beancount/ledger2beancount,2575.2068865741,7,3,2 +ledgersmb,-1.9768906241,-1.2384100445,-2.32818406,https://github.com/ledgersmb/pkg-ledgersmb,https://github.com/ledgersmb/pkg-ledgersmb,5388.1821643519,1,9,0 +ledmon,-0.0267359746,1.6972099329,-0.5787233435,https://salsa.debian.org/debian/ledmon, https://github.com/intel/ledmon,4704.5067592593,35,24,0 +legit,-1.3724471459,-0.9914117218,-1.4783160816,https://salsa.debian.org/python-team/packages/legit, https://github.com/frostming/legit,4465.0884027778,8,56,0 +libaccounts-glib,1.8539117185,5.889670687,0.5641235964,https://salsa.debian.org/qt-kde-team/3rdparty/libaccounts-glib, https://gitlab.com/accounts-sso/libaccounts-glib.git,5306.098912037,14,32,0 +libaccounts-qt,0.734985213,3.2186903821,0.0319018641,https://salsa.debian.org/qt-kde-team/3rdparty/libaccounts-qt, https://gitlab.com/accounts-sso/libaccounts-qt.git,4531.1744560185,8,27,0 +libacme-poe-knee-perl,-1.8444968736,-0.7377441759,-2.0661466284,https://salsa.debian.org/perl-team/modules/packages/libacme-poe-knee-perl, https://github.com/jib/acme-poe-knee.git,0,0,1,0 +libalien-sdl-perl,-0.0977796476,0.3529808751,-0.1969931002,https://salsa.debian.org/perl-team/modules/packages/libalien-sdl-perl, https://github.com/PerlGameDev/Alien-SDL.git,2024.7772222222,0,15,0 +libambix,-0.2891761381,1.5956439603,-0.6870161119,https://salsa.debian.org/multimedia-team/libambix, https://github.com/iem-projects/ambix.git,2332.8963194445,2,15,0 +libapache-singleton-perl,-1.4918758035,1.0630563092,-2.2427825215,https://salsa.debian.org/perl-team/modules/packages/libapache-singleton-perl, https://github.com/mschout/apache-singleton.git,2808.9702777778,2,1,0 +libapache2-mod-auth-openidc,0.2336891928,2.1536731239,-0.5343344056,https://salsa.debian.org/debian/libapache2-mod-auth-openidc, https://github.com/zmartzone/mod_auth_openidc.git,3541.8657638889,12,50,0 +libapache2-mod-authnz-pam,-0.1714935794,2.2098425672,-0.8074827861,https://salsa.debian.org/freeipa-team/mod-authnz-pam, https://github.com/adelton/mod_authnz_pam.git,3451.9741203704,6,1,0 +libapp-cpants-lint-perl,-0.2108873196,3.0022710317,-1.1931665391,https://salsa.debian.org/perl-team/modules/packages/libapp-cpants-lint-perl, https://github.com/charsbar/App-CPANTS-Lint.git,177.5091782407,0,3,0 +libapp-perlrdf-command-query-perl,-2.5195716821,-0.1728085325,-3.0060090978,https://salsa.debian.org/perl-team/modules/packages/libapp-perlrdf-command-query-perl, https://github.com/tobyink/p5-app-perlrdf-command-query,786.4794675926,0,1,0 +libappimage,-0.1632051649,2.0657738619,-0.6650493915,https://salsa.debian.org/qt-kde-team/3rdparty/libappimage, https://github.com/AppImageCommunity/libappimage.git,1789.5842476852,9,6,0 +libarchive-ar-perl,-0.7153173845,1.4218992511,-1.4262008359,https://salsa.debian.org/perl-team/modules/packages/libarchive-ar-perl, https://github.com/jbazik/Archive-Ar.git,1734.3291435185,1,5,0 +libaria,-0.4287076752,2.5333867692,-1.5521033494,https://github.com/jksrecko/libaria,https://github.com/jksrecko/libaria,1255.0196875,1,2,0 +libarray-iterator-perl,-1.1520508851,1.0062186595,-1.5899210944,https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl, https://github.com/perlancar/perl-Array-Iterator.git,4456.1288194445,1,16,0 +libassuan,0.4631537237,1.5568771931,0.0792778271,https://salsa.debian.org/debian/libassuan, https://dev.gnupg.org/source/libassuan.git,5699.2919791667,6,9,0 +libastro-fits-cfitsio-perl,-0.284600426,1.0728247575,-0.745324073,https://salsa.debian.org/perl-team/modules/packages/libastro-fits-cfitsio-perl, https://github.com/pratzlaff/Astro-FITS-CFITSIO,41.8160185185,1,3,0 +libatombus-perl,-2.9184975503,-0.9823925311,-3.3182517592,https://salsa.debian.org/perl-team/modules/packages/libatombus-perl, https://github.com/ironcamel/AtomBus.git,574.4602777778,0,2,0 +libattean-perl,-1.3143281259,1.0491513887,-1.7605023994,https://salsa.debian.org/perl-team/modules/packages/libattean-perl, https://github.com/kasei/attean.git,3387.9902314815,2,10,0 +libatteanx-compatibility-trine-perl,-5.221355937,-3.8031880755,-5.4863317126,https://salsa.debian.org/perl-team/modules/packages/libatteanx-compatibility-trine-perl, https://github.com/kjetilk/p5-atteanx-compatibility-trine.git,174.8482291667,0,1,0 +libatteanx-endpoint-perl,-5.0524581401,-2.9636769875,-5.4798110024,https://salsa.debian.org/perl-team/modules/packages/libatteanx-endpoint-perl, https://github.com/kasei/atteanx-endpoint.git,581.8788078704,0,3,0 +libatteanx-store-sparql-perl,-3.6547632503,-1.1140927923,-4.301232368,https://salsa.debian.org/perl-team/modules/packages/libatteanx-store-sparql-perl, https://github.com/kjetilk/p5-atteanx-store-sparql.git,1578.1186458333,1,3,0 +libauthen-captcha-perl,-0.8189234623,0.262039817,-1.0902527604,https://salsa.debian.org/perl-team/modules/packages/libauthen-captcha-perl, https://github.com/lkundrak/perl-Authen-Captcha.git,604.0063194444,4,2,0 +libb-hooks-op-check-perl,0.6263225059,3.4250343136,-0.0183739613,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-op-check-perl, https://github.com/karenetheridge/B-Hooks-OP-Check,4225.8527430556,1,3,0 +libb-hooks-parser-perl,-1.1725055097,-0.0976957027,-1.3418704161,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-parser-perl, https://github.com/karenetheridge/B-Hooks-Parser.git,3844.972962963,4,3,0 +libb-utils-perl,-0.2233577064,1.2899551919,-0.5541961272,https://salsa.debian.org/perl-team/modules/packages/libb-utils-perl, https://github.com/jbenjore/b-utils.git,1697.3214351852,0,9,0 +libb2,0.4344926484,2.4059587424,-0.0945466725,https://salsa.debian.org/debian/libb2, https://github.com/BLAKE2/libb2.git,2769.1435185185,5,14,0 +libbackuppc-xs-perl,0.0682740707,4.0111217079,-0.9932975309,https://salsa.debian.org/debian/libbackuppc-xs-perl, https://github.com/backuppc/backuppc-xs.git,1496.301400463,2,5,0 +libbase58,-0.3899391721,2.4680002613,-1.1487322403,https://salsa.debian.org/debian/libbase58, https://github.com/luke-jr/libbase58,2238.1648148148,3,7,0 +libbde,0.3715579957,2.3531465313,-0.2679169251,https://salsa.debian.org/pkg-security-team/libbde, https://github.com/libyal/libbde,2546.6279398148,2,1,0 +libberkeleydb-perl,0.094191881,0.6104187657,-0.0890236719,https://salsa.debian.org/md/libberkeleydb-perl, https://github.com/pmqs/BerkeleyDB.git,5644.9127083333,1,4,0 +libbio-alignio-stockholm-perl,-4.9835930933,-2.6349248881,-5.4713428559,https://salsa.debian.org/med-team/libbio-alignio-stockholm-perl, https://github.com/bioperl/bio-alignio-stockholm.git,10.2199305556,0,2,0 +libbio-cluster-perl,-0.7997866799,1.4401770295,-1.3214678694,https://salsa.debian.org/med-team/libbio-cluster-perl, https://github.com/bioperl/bio-cluster.git,7.3618171296,0,2,0 +libbio-db-embl-perl,-3.9031050099,-1.6133202421,-4.3425936432,https://salsa.debian.org/med-team/libbio-db-embl-perl, https://github.com/bioperl/bio-db-embl.git,156.3099421296,0,2,0 +libbioparser-dev,-1.0837320242,1.8160602363,-1.7618255497,https://salsa.debian.org/med-team/libbioparser-dev, https://github.com/rvaser/bioparser,2526.0444675926,2,4,0 +libblockdev,0.3980648484,1.4743522682,0.0272422795,https://salsa.debian.org/utopia-team/libblockdev, https://github.com/storaged-project/libblockdev,3535.6746296296,11,44,1 +libbot-training-perl,-3.2750745336,-1.1281011499,-3.7406250651,https://salsa.debian.org/perl-team/modules/packages/libbot-training-perl, https://github.com/avar/bot-training.git,3166.8061805556,0,2,0 +libbpp-core,-0.3055083002,1.3427773866,-0.9266820803,https://salsa.debian.org/med-team/libbpp-core, https://github.com/BioPP/bpp-core,4797.1825925926,3,24,0 +libbpp-phyl,-0.6908318666,0.5108256238,-1.0987919805,https://salsa.debian.org/med-team/libbpp-phyl, https://github.com/BioPP/bpp-phyl.git,5775.3533796296,2,40,0 +libbpp-phyl-omics,-0.3598958857,2.0635272475,-1.1073993387,https://salsa.debian.org/med-team/libbpp-phyl-omics, https://github.com/BioPP/bpp-phyl-omics.git,4025.9415046296,0,9,0 +libbpp-popgen,-0.5271533507,1.1251682809,-1.1042333821,https://salsa.debian.org/med-team/libbpp-popgen, https://github.com/BioPP/bpp-popgen,5514.9573032407,1,13,0 +libbpp-qt,-0.0541983729,2.8865148932,-1.0203907927,https://salsa.debian.org/med-team/libbpp-qt, https://github.com/BioPP/bpp-qt,5024.8754050926,0,12,0 +libbpp-raa,-0.4695334076,2.4236088145,-1.4371504644,https://salsa.debian.org/med-team/libbpp-raa, https://github.com/BioPP/bpp-raa,5066.2362962963,0,17,0 +libbpp-seq,-0.7192518957,0.6394875381,-1.1233907337,https://salsa.debian.org/med-team/libbpp-seq, https://github.com/BioPP/bpp-seq,5747.7503472222,1,22,0 +libbpp-seq-omics,-0.4569335369,1.1913544639,-1.0602096041,https://salsa.debian.org/med-team/libbpp-seq-omics, https://github.com/BioPP/bpp-seq-omics.git,4806.9277083333,0,14,0 +libbultitude-clojure,-1.4773927994,1.1163772935,-2.107348178,https://salsa.debian.org/clojure-team/libbultitude-clojure, https://github.com/TimoFreiberg/bultitude.git,2812.2660300926,1,20,0 +libbusiness-edi-perl,-3.9144500578,-1.6606272938,-4.344431509,https://salsa.debian.org/perl-team/modules/packages/libbusiness-edi-perl, https://github.com/atz/Business-EDI.git,1031.8625925926,0,2,0 +libbusiness-isbn-perl,0.4456335938,2.2644684353,-0.07414136,https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl, https://github.com/briandfoy/business-isbn.git,5456.629849537,2,8,0 +libbytesize,0.2398376797,2.4542938147,-0.1936432356,https://salsa.debian.org/utopia-team/libbytesize, https://github.com/storaged-project/libbytesize,2946.1484143519,14,18,0 +libcaca,1.7158261148,2.8952023479,1.0094395421,https://salsa.debian.org/multimedia-team/libcaca, https://github.com/cacalabs/libcaca.git,5032.4727199074,5,18,0 +libcache-historical-perl,-2.3954691781,0.151997288,-2.9853546683,https://salsa.debian.org/perl-team/modules/packages/libcache-historical-perl, https://github.com/mschilli/cache-historical-perl.git,1172.6421064815,1,1,0 +libcache-memcached-fast-perl,0.4990329576,3.9172913613,-0.4350811541,https://salsa.debian.org/perl-team/modules/packages/libcache-memcached-fast-perl, https://github.com/JRaspass/Cache-Memcached-Fast.git,5347.5680324074,1,11,0 +libcamera,-2.5167064273,0.4184978094,-3.2573255327,https://salsa.debian.org/multimedia-team/libcamera, https://git.libcamera.org/libcamera/libcamera.git,1870.2762037037,92,10,0 +libcap-ng,0.8396700265,1.681480669,0.3896198847,https://salsa.debian.org/debian/libcap-ng, https://github.com/stevegrubb/libcap-ng,2330.4456365741,16,5,0 +libcapi20-3,0.8368813861,2.3931041059,0.2031772198,https://github.com/leggewie-DM/libcapi20,https://github.com/leggewie-DM/libcapi20,1469.2789236111,0,1,0 +libcatalyst-authentication-credential-http-perl,-0.5445869591,1.7237240173,-0.9848916986,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-authentication-credential-http-perl, https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,3862.9087152778,0,7,0 +libcatalyst-dispatchtype-regex-perl,-0.2606173856,1.8455952252,-0.6908933433,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-dispatchtype-regex-perl, https://github.com/mvgrimes/catalyst-dispatch-regex.git,733.893287037,0,2,0 +libcatalyst-model-dbic-schema-perl,0.0213319889,2.940935467,-0.7164785923,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl, https://github.com/perl-catalyst/Catalyst-Model-DBIC-Schema,5560.3081828704,1,18,0 +libcatmandu-atom-perl,-2.0448922521,-0.090192519,-2.4689508151,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-atom-perl, https://github.com/LibreCat/Catmandu-Atom.git,2313.0128472222,0,6,0 +libcatmandu-filestore-perl,-4.6751603427,-1.9416786358,-5.4067542228,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-filestore-perl, https://github.com/LibreCat/Catmandu-FileStore.git,1680.9195138889,0,7,0 +libcatmandu-importer-getjson-perl,-1.1909213366,1.1095653007,-1.9138474886,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-importer-getjson-perl, https://github.com/nichtich/Catmandu-Importer-getJSON.git,2053.8504513889,2,5,0 +libcatmandu-mab2-perl,-2.1995168172,-0.5970612736,-2.5957637184,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-mab2-perl, https://github.com/jorol/Catmandu-MAB2.git,2364.9603356482,0,4,0 +libcatmandu-marc-perl,-1.4347536055,0.1714523162,-1.7251554265,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-marc-perl, https://github.com/LibreCat/Catmandu-MARC.git,4085.0580787037,4,13,0 +libcatmandu-perl,-0.7980522585,0.7998304883,-1.2031140209,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-perl, https://github.com/LibreCat/Catmandu.git,4871.9356018519,1,25,0 +libcatmandu-rdf-perl,-1.5674004847,0.7873124502,-2.1156699483,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-rdf-perl, https://github.com/LibreCat/Catmandu-RDF.git,3436.1034722222,1,7,0 +libcatmandu-sru-perl,-1.6347444625,0.7856473937,-2.213169114,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-sru-perl, https://github.com/LibreCat/Catmandu-SRU.git,3182.483275463,4,14,0 +libcatmandu-store-mongodb-perl,-2.1900265394,0.0427518931,-2.6176713043,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-store-mongodb-perl, https://github.com/LibreCat/Catmandu-Store-MongoDB.git,3318.0048263889,0,6,0 +libcatmandu-wikidata-perl,-1.8751171258,0.7106805559,-2.4545693893,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-wikidata-perl, https://github.com/nichtich/Catmandu-Wikidata.git,3124.955462963,0,3,0 +libcds,-5.0419386803,-2.9209164436,-5.4781080992,https://salsa.debian.org/alteholz/libcds, https://github.com/khizmax/libcds,2721.1071759259,3,23,1 +libcec,0.2382725094,0.9041078801,-0.0486730427,https://salsa.debian.org/debian/libcec, https://github.com/Pulse-Eight/libcec.git,3960.8179282408,30,52,0 +libcereal,-1.0094893182,-0.4350648989,-1.165390033,https://salsa.debian.org/med-team/libcereal, https://github.com/USCiLab/cereal,3631.1027546296,36,60,3 +libcgi-application-dispatch-perl,0.204830766,4.1969078733,-0.9847022953,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-dispatch-perl, https://github.com/markstos/CGI--Application--Dispatch.git,1893.6213773148,0,9,0 +libcgi-application-plugin-session-perl,-0.4119679947,2.4410793318,-1.1626629958,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-plugin-session-perl, https://github.com/frioux/CGI-Application-Plugin-Session,1734.1852083333,2,2,0 +libcgi-application-server-perl,-1.3503684925,1.1163471363,-2.0606594531,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-server-perl, https://github.com/rjbs/cgi-application-server.git,2084.0161111111,0,3,0 +libcgi-expand-perl,-0.5995119077,1.6030547825,-1.0867729842,https://salsa.debian.org/perl-team/modules/packages/libcgi-expand-perl, https://github.com/bowman/CGI-Expand.git,1724.580462963,2,5,0 +libcgi-session-expiresessions-perl,-2.1411258628,-0.6175205041,-2.4722907936,https://salsa.debian.org/perl-team/modules/packages/libcgi-session-expiresessions-perl, https://github.com/ronsavage/CGI-Session-ExpireSessions,152.6683333333,0,1,0 +libcgroup,0.8905633465,1.7409188519,0.3692553148,https://salsa.debian.org/debian/libcgroup, https://github.com/libcgroup/libcgroup,5745.3289930556,43,20,2 +libchatbot-eliza-perl,-1.3144935043,1.2362568323,-1.8965557655,https://salsa.debian.org/perl-team/modules/packages/libchatbot-eliza-perl, https://github.com/ggruen/Chatbot-Eliza,2872.7296875,1,4,0 +libchi-driver-redis-perl,-1.0562831931,1.2500992113,-1.5273046989,https://salsa.debian.org/perl-team/modules/packages/libchi-driver-redis-perl, https://github.com/rentrak/chi-driver-redis,2250.5063078704,1,6,0 +libchipcard,-0.3139516289,0.0321689486,-0.4814801997,https://salsa.debian.org/aqbanking-team/pkg-libchipcard, https://git.aquamaniac.de/git/libchipcard.git,5301.0442361111,4,8,0 +libcitygml,-1.0898756324,0.0704593832,-1.422660328,https://salsa.debian.org/debian-gis-team/libcitygml, https://github.com/jklimke/libcitygml.git,4063.0042476852,3,34,0 +libclass-c3-adopt-next-perl,-0.163979537,2.015060941,-0.6012557543,https://salsa.debian.org/perl-team/modules/packages/libclass-c3-adopt-next-perl, https://github.com/rafl/class-c3-adopt-next.git,539.1778587963,0,4,0 +libclass-container-perl,-0.0506280246,1.6643843634,-0.4036695635,https://salsa.debian.org/perl-team/modules/packages/libclass-container-perl, https://github.com/kenahoo/Class-Container.git,1.6649189815,1,3,0 +libclass-insideout-perl,-0.6783523447,1.0454132392,-0.9711596731,https://salsa.debian.org/perl-team/modules/packages/libclass-insideout-perl, https://github.com/dagolden/class-insideout.git,3195.8285300926,0,3,0 +libclass-meta-perl,-2.1588155835,0.1407589648,-2.6165631943,https://salsa.debian.org/perl-team/modules/packages/libclass-meta-perl, https://github.com/theory/class-meta.git,2689.2590856482,0,3,0 +libclass-refresh-perl,-1.6945342203,0.5207835259,-2.147534344,https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl, https://github.com/doy/class-refresh.git,1057.1042708333,0,3,0 +libcleri,-2.6428568291,0.0499127531,-3.28649977,https://salsa.debian.org/siridb-team/libcleri, https://github.com/cesbit/libcleri.git,2711.9692592593,2,9,0 +libcompizconfig,2.4898939806,6.2576077202,1.0990105,https://salsa.debian.org/compiz-team/libcompizconfig, https://gitlab.com/compiz/libcompizconfig.git,5552.2184606482,4,16,0 +libconfig-auto-perl,0.2333854777,2.0661047236,-0.2396184716,https://salsa.debian.org/perl-team/modules/packages/libconfig-auto-perl, https://github.com/jib/config-auto.git,2192.3712731482,2,3,0 +libconfig-identity-perl,-1.1292654123,1.0457452223,-1.5624237769,https://salsa.debian.org/perl-team/modules/packages/libconfig-identity-perl, https://github.com/dagolden/Config-Identity.git,2902.5731828704,0,4,0 +libconvert-asn1-perl,0.4197948981,1.947299648,-0.0317401557,https://salsa.debian.org/perl-team/modules/packages/libconvert-asn1-perl, https://github.com/gbarr/perl-Convert-ASN1.git,5538.4047453704,6,11,0 +libconvert-binhex-perl,0.5297090391,2.6158283055,-0.0231792705,https://salsa.debian.org/perl-team/modules/packages/libconvert-binhex-perl, https://github.com/stephenenelson/convert-binhex.git,816.5657407407,0,2,0 +libcpan-distnameinfo-perl,0.2522399529,2.0212536151,-0.1714651554,https://salsa.debian.org/perl-team/modules/packages/libcpan-distnameinfo-perl, https://github.com/gbarr/CPAN-DistnameInfo.git,2596.9826157407,4,4,0 +libcrypt-cracklib-perl,-0.6543542036,2.0569886418,-1.4105292586,https://salsa.debian.org/perl-team/modules/packages/libcrypt-cracklib-perl, https://github.com/dsully/perl-crypt-cracklib.git,1122.6671643519,0,2,0 +libcrypt-dh-gmp-perl,-0.2521104835,0.8592315725,-0.4600056877,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-gmp-perl, https://github.com/lestrrat/Crypt-DH-GMP.git,1507.2044791667,0,3,0 +libcrypt-dh-perl,-0.350596725,1.4226875994,-0.742243187,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-perl, https://github.com/wchristian/crypt-dh.git,6.7348726852,0,3,0 +libcrypt-openssl-bignum-perl,0.573671133,2.817673072,-0.0231679046,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-bignum-perl, https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git,1031.4781134259,1,6,0 +libcrypt-openssl-pkcs10-perl,-0.3431098229,2.5077909436,-1.1135889242,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-pkcs10-perl, https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git,84.9646875,1,2,0 +libcrypt-openssl-rsa-perl,0.4685020789,2.4809174365,-0.0400198203,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-rsa-perl, https://github.com/toddr/Crypt-OpenSSL-RSA.git,4592.8473842593,12,12,0 +libcrypt-saltedhash-perl,-0.4905719307,1.6402467611,-0.9344153294,https://salsa.debian.org/perl-team/modules/packages/libcrypt-saltedhash-perl, https://github.com/campus-explorer/crypt-saltedhash,137.0340162037,2,4,0 +libcsfml,-0.6670701744,0.5778589777,-1.0144102489,https://salsa.debian.org/games-team/libcsfml, https://github.com/SFML/CSFML.git,4518.6553703704,15,26,0 +libcss-tiny-perl,-0.2187157738,2.0546898664,-0.9614626512,https://salsa.debian.org/perl-team/modules/packages/libcss-tiny-perl, https://github.com/chorny/CSS-Tiny.git,2896.0719791667,1,2,0 +libcue,1.3280527366,4.5646098156,0.2528534907,https://salsa.debian.org/debian/libcue, https://github.com/lipnitsk/libcue,5295.1366435185,10,5,0 +libcyaml,-3.7859387895,-1.2928518854,-4.3277842451,https://salsa.debian.org/sudip/libcyaml, https://github.com/tlsa/libcyaml.git,2058.3318865741,4,8,0 +libcypher-parser,-0.5122868361,1.7043358431,-0.9505714794,https://github.com/cleishm/libcypher-parser,https://github.com/cleishm/libcypher-parser,2052.1131134259,4,8,0 +libdancer-plugin-rest-perl,-1.332193545,1.346725582,-1.9482623921,https://salsa.debian.org/perl-team/modules/packages/libdancer-plugin-rest-perl, https://github.com/perldancer/Dancer-Plugin-REST.git,1451.9472800926,1,5,0 +libdata-alias-perl,0.1378605049,2.1486354011,-0.5977466385,https://salsa.debian.org/perl-team/modules/packages/libdata-alias-perl, https://github.com/mvduin/perl-Data-Alias,610.4551041667,0,2,0 +libdata-dumper-concise-perl,0.2663762197,2.5519999595,-0.2144683206,https://salsa.debian.org/perl-team/modules/packages/libdata-dumper-concise-perl, https://github.com/p5sagit/Data-Dumper-Concise,2778.0428240741,1,3,0 +libdata-formvalidator-perl,-0.452587545,1.1833831498,-0.804155609,https://salsa.debian.org/perl-team/modules/packages/libdata-formvalidator-perl, https://github.com/dnmfarrell/Data-FormValidator.git,2189.7575578704,3,6,0 +libdata-hal-perl,-0.7708587998,2.2387120212,-1.7298903065,https://salsa.debian.org/perl-team/modules/packages/libdata-hal-perl, https://github.com/sipwise/data-hal.git,3620.8497222222,0,13,0 +libdata-optlist-perl,0.4752078978,2.7815727481,-0.0271116591,https://salsa.debian.org/perl-team/modules/packages/libdata-optlist-perl, https://github.com/rjbs/Data-OptList.git,5253.3015972222,0,2,0 +libdata-phrasebook-perl,-2.0173455185,0.5053918978,-2.598257896,https://salsa.debian.org/perl-team/modules/packages/libdata-phrasebook-perl, https://github.com/barbie/data-phrasebook.git,3782.0208333333,0,1,0 +libdatabase-dumptruck-perl,-2.6354712016,-0.053291936,-3.2800311486,https://salsa.debian.org/perl-team/modules/packages/libdatabase-dumptruck-perl, https://github.com/lkundrak/perl-database-dumptruck.git,85.8566550926,0,1,0 +libdatetime-format-mail-perl,0.3841471215,2.8615309864,-0.1765169258,https://salsa.debian.org/perl-team/modules/packages/libdatetime-format-mail-perl, https://github.com/book/DateTime-Format-Mail.git,809.9546875,2,1,0 +libdbd-odbc-perl,-0.4492586589,-0.3647039199,-0.4605696828,https://salsa.debian.org/perl-team/modules/packages/libdbd-odbc-perl, https://github.com/perl5-dbi/DBD-ODBC.git,4357.0500347222,1,12,0 +libdbd-sqlite2-perl,-0.2242626457,0.8599429182,-0.4391897101,https://salsa.debian.org/perl-team/modules/packages/libdbd-sqlite2-perl, https://github.com/rurban/DBD-SQLite2,1683.3107175926,3,5,0 +libdbix-abstract-perl,-0.7663996691,0.9860020058,-1.2168119968,https://salsa.debian.org/perl-team/modules/packages/libdbix-abstract-perl, https://github.com/iarna/DBIx-Abstract.git,3028.2298842593,1,6,0 +libdbix-class-perl,0.5772154994,1.6948994129,0.0601666449,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-perl, https://github.com/Perl5/DBIx-Class.git,5209.7204513889,61,96,0 +libdbix-class-schema-loader-perl,0.899902187,3.2743262714,-0.0171547791,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-schema-loader-perl, https://github.com/dbsrgits/dbix-class-schema-loader,5369.7104282407,13,29,0 +libdebian-copyright-perl,0.0036003397,1.9825965853,-0.5566012214,https://salsa.debian.org/perl-team/modules/packages/libdebian-copyright-perl, https://github.com/periapt/Debian-Copyright.git,467.6439236111,0,1,0 +libdeflate,0.1595942885,2.497793972,-0.2798948533,https://salsa.debian.org/med-team/libdeflate, https://github.com/ebiggers/libdeflate.git,3254.7726851852,29,5,0 +libdevel-bt-perl,-0.5926888766,2.1164194627,-1.6374000091,https://salsa.debian.org/perl-team/modules/packages/libdevel-bt-perl, http://github.com/rafl/Devel-bt,563.5733796296,0,1,0 +libdevel-cycle-perl,0.2975717055,2.3628676137,-0.1689937232,https://salsa.debian.org/perl-team/modules/packages/libdevel-cycle-perl, https://github.com/lstein/Devel-Cycle.git,24.4394791667,1,2,0 +libdevel-symdump-perl,0.1995761912,1.3405631393,-0.0953876401,https://salsa.debian.org/debian/libdevel-symdump-perl, https://github.com/andk/devel-symdump,2899.582337963,0,6,0 +libdevice-cdio-perl,-1.3704489286,-0.772668166,-1.5698638654,https://salsa.debian.org/perl-team/modules/packages/libdevice-cdio-perl, https://github.com/rocky/Perl-Device-Cdio.git,3711.3743287037,0,4,0 +libdirectory-scratch-perl,-0.3578234126,3.2936545083,-1.4107895462,https://salsa.debian.org/perl-team/modules/packages/libdirectory-scratch-perl, https://github.com/bobtfish/directory-scratch.git,1951.3868981482,1,5,0 +libdist-inkt-perl,-1.6527902396,0.7910520727,-2.1410543937,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-perl, https://github.com/tobyink/p5-dist-inkt,2915.0334953704,0,1,0 +libdist-inkt-role-test-perl,-1.5942005273,1.6783425318,-2.409860989,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-role-test-perl, https://github.com/tobyink/p5-dist-inkt-role-test,0.0739467593,0,1,0 +libdist-zilla-plugins-cjm-perl,-0.7135120934,1.9137851349,-1.4906069541,https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-plugins-cjm-perl, https://github.com/madsen/dist-zilla-plugins-cjm,3005.9145833333,0,4,0 +libdivsufsort,0.3802819676,3.1639307168,-0.2503528943,https://salsa.debian.org/med-team/libdivsufsort, https://github.com/y-256/libdivsufsort.git,2687.7754050926,0,6,0 +libdogleg,-0.2667101184,1.7245498351,-0.6711419661,https://salsa.debian.org/science-team/libdogleg, https://github.com/dkogan/libdogleg.git,4490.860775463,0,5,0 +libdumbnet,0.6447638804,1.8645884536,0.1303098815,https://salsa.debian.org/debian/libdumbnet, https://github.com/ofalk/libdnet,3068.4848032407,6,20,0 +libeatmydata,0.3763000817,1.1375608394,0.0117248362,https://salsa.debian.org/debian/libeatmydata, https://github.com/stewartsmith/libeatmydata.git,5640.2884027778,11,12,0 +libebur128,0.4008800859,2.5097823396,-0.0483144637,https://salsa.debian.org/multimedia-team/libebur128, https://github.com/jiixyj/libebur128,3690.6439930556,1,22,0 +libejml-java,-1.6145518294,1.0936860376,-2.2108976925,https://salsa.debian.org/java-team/libejml-java, https://github.com/lessthanoptimal/ejml,5141.1358564815,14,15,0 +libemail-mime-createhtml-perl,-0.598597254,0.9396464518,-0.9866469243,https://salsa.debian.org/perl-team/modules/packages/libemail-mime-createhtml-perl, https://github.com/vanstyn/Email-MIME-CreateHTML.git,1257.2075810185,1,3,0 +libencode-perl,0.0933708639,1.2559525686,-0.1937815459,https://salsa.debian.org/perl-team/modules/packages/libencode-perl, https://github.com/dankogai/p5-encode.git,5752.78,4,51,0 +libend-perl,-1.6952231001,0.2859980609,-2.1369126329,https://salsa.debian.org/perl-team/modules/packages/libend-perl, https://github.com/Abigail/end.git,519.9620023148,0,1,0 +libeot,0.4231617787,2.6750549846,-0.0161024184,https://salsa.debian.org/fonts-team/libeot, https://github.com/umanwizard/libeot.git,3660.8458101852,1,5,0 +libepoxy,0.3100507455,1.1926379346,0.0363222284,https://salsa.debian.org/xorg-team/lib/libepoxy, https://github.com/anholt/libepoxy.git,3236.6618981482,11,45,0 +liberasurecode,-0.4839675188,1.1970872377,-0.8694804348,https://salsa.debian.org/openstack-team/libs/liberasurecode, https://github.com/openstack/liberasurecode.git,3370.5594560185,7,23,0 +liberror-perl,1.2535323608,3.335171802,0.4397835194,https://salsa.debian.org/perl-team/modules/packages/liberror-perl, https://github.com/shlomif/perl-error.pm.git,4521.3125694445,0,3,0 +libesedb,-0.0038540304,1.3424306865,-0.3777859111,https://salsa.debian.org/pkg-security-team/libesedb, https://github.com/libyal/libesedb,2793.913912037,0,1,0 +libesmtp,0.2677621782,0.8388085609,-0.0156401267,https://github.com/jbouse-debian/libesmtp,https://github.com/jbouse-debian/libesmtp,4730.7607986111,1,4,0 +libestr,0.2583326289,1.2734255517,0.0106705212,https://salsa.debian.org/debian/libestr, https://github.com/rsyslog/libestr.git,2916.1839236111,6,7,0 +libeval-closure-perl,0.3725931069,2.6025825306,-0.0711445029,https://salsa.debian.org/perl-team/modules/packages/libeval-closure-perl, https://github.com/doy/eval-closure.git,2047.9688310185,1,4,0 +libevent,0.7674583301,1.6743727385,0.314106766,https://salsa.debian.org/debian/libevent, https://github.com/libevent/libevent,5769.2016435185,214,125,1 +libevt,0.3231580646,2.9388038619,-0.3464543518,https://salsa.debian.org/pkg-security-team/libevt, https://github.com/libyal/libevt,2794.588125,1,2,0 +libevtx,0.4679040206,3.3941203575,-0.3128196542,https://salsa.debian.org/pkg-security-team/libevtx, https://github.com/libyal/libevtx,2794.5568055556,0,1,0 +libewf,0.3653074436,1.6692747577,-0.0534853825,https://salsa.debian.org/pkg-security-team/libewf, https://github.com/libyal/libewf-legacy.git,2892.9931597222,0,1,0 +libexadrums,-1.57576575,0.4655834923,-2.0471585802,https://github.com/SpintroniK/libeXaDrums/tree/debian,https://github.com/SpintroniK/libeXaDrums,2888.0486342593,2,6,0 +libexif-gtk,0.6899028208,2.4094585548,0.0374998074,https://salsa.debian.org/debian-phototools-team/libexif-gtk, https://github.com/libexif/libexif-gtk.git,5131.8707407407,2,5,0 +libextractor,-0.181103209,0.0282538069,-0.2919000265,https://git.progress-linux.org/users/daniel.baumann/debian/packages/libextractor, https://git.gnunet.org/libextractor.git,5775.1042824074,0,13,0 +libextutils-cbuilder-perl,-0.5036465134,1.0344999475,-0.9863787578,https://salsa.debian.org/perl-team/modules/packages/libextutils-cbuilder-perl, https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder.git,4657.3346759259,8,12,0 +libextutils-modulemaker-perl,-1.6287177053,0.4949751478,-2.0632435211,https://salsa.debian.org/perl-team/modules/packages/libextutils-modulemaker-perl, https://github.com/jkeenan/extutils-modulemaker.git,3844.1565972222,0,2,0 +libfann,-0.0021383146,0.8799887474,-0.2918355523,https://salsa.debian.org/science-team/libfann, https://github.com/libfann/fann,2643.8556828704,4,34,0 +libfcgi,2.4025790949,4.8601691677,1.2415729675,https://github.com/tehnick/libfcgi-debian,https://github.com/tehnick/libfcgi-debian,1176.1604513889,0,1,0 +libfile-mimeinfo-perl,1.3146582473,3.1446233838,0.4775906292,https://salsa.debian.org/perl-team/modules/packages/libfile-mimeinfo-perl, https://github.com/mbeijen/File-MimeInfo.git,3834.7099189815,10,12,0 +libfile-modified-perl,-0.1454311962,1.4011585761,-0.5041124489,https://salsa.debian.org/perl-team/modules/packages/libfile-modified-perl, https://github.com/neilb/File-Modified,2145.0378472222,1,2,0 +libfile-save-home-perl,-1.8007818428,0.3604487668,-2.2376298003,https://salsa.debian.org/perl-team/modules/packages/libfile-save-home-perl, https://github.com/jkeenan/file-save-home,1776.9554861111,0,2,0 +libfile-touch-perl,0.098284703,1.8336262821,-0.2560959194,https://salsa.debian.org/perl-team/modules/packages/libfile-touch-perl, https://github.com/neilb/File-Touch,4116.4970486111,1,3,0 +libfile-write-rotate-perl,-1.0296556573,1.3459084629,-1.5005566671,https://salsa.debian.org/perl-team/modules/packages/libfile-write-rotate-perl, https://github.com/sharyanto/perl-File-Write-Rotate.git,3146.8113888889,0,17,0 +libfilehandle-unget-perl,0.0063823885,1.5940372704,-0.2756601201,https://salsa.debian.org/perl-team/modules/packages/libfilehandle-unget-perl, https://github.com/coppit/filehandle-unget.git,3647.0964930556,0,3,0 +libfilesys-notify-simple-perl,0.1924577796,2.7235880131,-0.2464440556,https://salsa.debian.org/perl-team/modules/packages/libfilesys-notify-simple-perl, https://github.com/miyagawa/Filesys-Notify-Simple.git,4730.4164814815,0,13,0 +libfilter-perl,-0.2555356397,0.0318054425,-0.3077435742,https://salsa.debian.org/debian/libfilter-perl, https://github.com/rurban/Filter,4868.3054861111,5,12,0 +libfilter-template-perl,-1.0581574357,1.1903314595,-1.5773248661,https://salsa.debian.org/perl-team/modules/packages/libfilter-template-perl, https://github.com/rcaputo/filter-template,1475.5620138889,0,1,0 +libfixposix,-0.4206114577,2.0891396228,-0.9806467917,https://salsa.debian.org/common-lisp-team/libfixposix, https://github.com/sionescu/libfixposix.git,4611.074537037,9,4,0 +libfizmo,0.6273284521,4.5692102059,-0.4878285416,https://github.com/chrender/libfizmo,https://github.com/chrender/libfizmo,4850.5273958333,1,7,0 +libfprint,0.4527305868,1.3861919845,-0.0092079805,https://salsa.debian.org/debian/libfprint, https://gitlab.freedesktop.org/libfprint/libfprint,5757.163287037,55,37,0 +libfsapfs,0.4374951793,3.3485468775,-0.3322017603,https://salsa.debian.org/pkg-security-team/libfsapfs, https://github.com/libyal/libfsapfs,1901.9622916667,0,1,0 +libfsntfs,0.3317907898,2.8232850998,-0.2751892076,https://salsa.debian.org/pkg-security-team/libfsntfs, https://github.com/libyal/libfsntfs.git,3331.7044212963,0,1,0 +libfte,-1.9268255727,0.4828975174,-2.5557399688,https://github.com/kpdyer/libfte/tree/debian/unstable,https://github.com/kpdyer/libfte,519.2035763889,0,6,1 +libfurl-perl,-0.0521562012,2.2678646965,-0.6826083633,https://salsa.debian.org/perl-team/modules/packages/libfurl-perl, https://github.com/tokuhirom/Furl.git,4162.7404166667,2,34,0 +libfvde,0.9569035002,4.5103410226,-0.1365413277,https://salsa.debian.org/pkg-security-team/libfvde, https://github.com/libyal/libfvde.git,3327.7584953704,0,1,0 +libfwnt,0.4678493195,3.4503175442,-0.3155910203,https://salsa.debian.org/pkg-security-team/libfwnt, https://github.com/libyal/libfwnt,3707.8170833333,2,1,0 +libfwsi,0.4767451355,3.2824611568,-0.3244519074,https://salsa.debian.org/pkg-security-team/libfwsi, https://github.com/libyal/libfwsi.git,3356.5179398148,0,1,0 +libgclib,-1.2540063751,1.2393506434,-1.793979304,https://salsa.debian.org/med-team/libgclib, https://github.com/gpertea/gclib,2782.2130555556,2,2,0 +libgda5,2.1189224489,4.3572428721,1.0509095892,https://salsa.debian.org/gnome-team/libgda5, https://gitlab.gnome.org/GNOME/libgda,5761.4632638889,81,119,0 +libgdal-grass,0.1785470496,2.1229290789,-0.4698383341,https://salsa.debian.org/debian-gis-team/gdal-grass, https://github.com/OSGeo/gdal-grass.git,695.4440625,6,4,0 +libgdata,1.0348290054,3.2142631837,0.2383760953,https://salsa.debian.org/gnome-team/libgdata, https://gitlab.gnome.org/GNOME/libgdata.git,5321.5631944445,134,163,0 +libgeo-google-mapobject-perl,-0.8736364381,1.4566987694,-1.3139869808,https://salsa.debian.org/perl-team/modules/packages/libgeo-google-mapobject-perl, https://github.com/periapt/geo-google-mapobject.git,50.641099537,0,1,0 +libgeo-ip-perl,-0.1336111961,0.5223083889,-0.2976960926,https://salsa.debian.org/perl-team/modules/packages/libgeo-ip-perl, https://github.com/maxmind/geoip-api-perl.git,4739.8765162037,5,12,0 +libgeotiff,0.3969402517,2.1076539482,-0.0842600623,https://salsa.debian.org/debian-gis-team/libgeotiff, https://github.com/OSGeo/libgeotiff.git,5753.8535763889,6,17,0 +libgfshare,-0.5004593085,0.9869537226,-0.9754477384,https://salsa.debian.org/debian/libgfshare, https://git.gitano.org.uk/libgfshare.git,2020.8313310185,1,2,0 +libgit-pureperl-perl,-0.9270531395,0.744963627,-1.3901965303,https://salsa.debian.org/perl-team/modules/packages/libgit-pureperl-perl, https://github.com/broquaint/git-pureperl.git,2866.3317824074,3,22,0 +libgit2,0.7426843467,1.4899627881,0.3118438265,https://salsa.debian.org/debian/libgit2, https://github.com/libgit2/libgit2.git,5520.8953703704,104,508,0 +libgit2-glib,0.1412833817,0.698857686,-0.0253117592,https://salsa.debian.org/gnome-team/libgit2-glib, https://gitlab.gnome.org/GNOME/libgit2-glib.git,4410.6007060185,12,44,0 +libglvnd,0.3742764654,1.2232824361,0.0505144955,https://salsa.debian.org/xorg-team/lib/libglvnd.git, https://github.com/NVIDIA/libglvnd.git,3760.105162037,9,47,0 +libgnome-games-support,0.399505586,2.6018285479,-0.0413246857,https://salsa.debian.org/gnome-team/libgnome-games-support, https://gitlab.gnome.org/GNOME/libgnome-games-support.git,3197.7123842593,63,46,0 +libgnomekbd,2.5710619525,5.2241106611,1.3638818849,https://salsa.debian.org/gnome-team/libgnomekbd, https://gitlab.gnome.org/GNOME/libgnomekbd.git,5733.097025463,92,199,0 +libgnupg-interface-perl,0.1615830389,0.739184756,-0.1104590476,https://salsa.debian.org/perl-team/modules/packages/libgnupg-interface-perl, https://github.com/bestpractical/gnupg-interface.git,5505.2035300926,4,10,0 +libgom,0.4246754843,2.0198260907,0.0017291951,https://salsa.debian.org/gnome-team/libgom, https://gitlab.gnome.org/GNOME/gom.git,4156.0852314815,23,27,0 +libgpg-error,0.1437073146,0.3396589399,0.0473657996,https://salsa.debian.org/debian/libgpg-error, https://dev.gnupg.org/source/libgpg-error.git,5604.6699305556,37,12,0 +libgpiod,-0.7921079112,0.087520494,-1.0509737691,https://salsa.debian.org/debian/libgpiod, https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git,2514.2013541667,33,4,0 +libgraph-d3-perl,-2.0103879366,0.5815176639,-2.5923181246,https://salsa.debian.org/perl-team/modules/packages/libgraph-d3-perl, https://github.com/shoheik/Graph-D3.git,1331.9675925926,1,3,0 +libgraph-readwrite-perl,0.0013928296,2.5958738365,-0.7361535942,https://salsa.debian.org/perl-team/modules/packages/libgraph-readwrite-perl, https://github.com/neilb/Graph-ReadWrite.git,2428.8532986111,0,5,0 +libgraph-writer-dsm-perl,-2.8359680573,-0.7007526287,-3.3075782595,https://salsa.debian.org/perl-team/modules/packages/libgraph-writer-dsm-perl, https://github.com/joenio/p5-graph-writer-dsm.git,1743.0827777778,0,2,0 +libgraphics-colornames-www-perl,-0.8846098514,1.1184900901,-1.3674713039,https://salsa.debian.org/perl-team/modules/packages/libgraphics-colornames-www-perl, https://github.com/cfaerber/Graphics-ColorNames-WWW,3881.2659606482,0,3,0 +libgraphviz-perl,-0.0292832904,0.8748911062,-0.2131770807,https://salsa.debian.org/perl-team/modules/packages/libgraphviz-perl, https://github.com/ronsavage/GraphViz.git,4149.5647685185,0,8,0 +libgroove,-0.5717771357,0.9386669616,-0.9657138035,https://salsa.debian.org/multimedia-team/libgroove, https://github.com/andrewrk/libgroove,3739.9100810185,3,10,1 +libgsf,0.3800293878,1.0702407683,0.0808530229,https://salsa.debian.org/debian/libgsf, https://gitlab.gnome.org/GNOME/libgsf,5746.9443518519,72,86,0 +libgtextutils,0.1810799898,2.3142226538,-0.6333026117,https://salsa.debian.org/med-team/libgtextutils, https://github.com/agordon/libgtextutils.git,1379.9043171296,1,2,0 +libgtop2,0.4669275055,0.8712536786,0.2272270013,https://salsa.debian.org/gnome-team/libgtop, https://gitlab.gnome.org/GNOME/libgtop.git,5734.8055671296,84,100,0 +libgudev,1.5550046891,3.9203203596,0.5784242232,https://salsa.debian.org/gnome-team/libgudev, https://gitlab.gnome.org/GNOME/libgudev,3057.7906828704,6,9,0 +libgweather,2.3040781195,4.7274829707,1.1971573573,https://salsa.debian.org/gnome-team/libgweather, https://gitlab.gnome.org/GNOME/libgweather.git,5779.3689236111,272,341,0 +libgwenhywfar,0.2498278332,0.9332028674,-0.0464898414,https://salsa.debian.org/aqbanking-team/pkg-libgwenhywfar, https://git.aquamaniac.de/git/gwenhywfar.git,5750.2394675926,12,11,0 +libgxps,0.3210138647,1.3818539357,0.0138318723,https://salsa.debian.org/gnome-team/libgxps, https://gitlab.gnome.org/GNOME/libgxps.git,4834.0573611111,14,21,0 +libgzstream,-0.4604271748,1.0639003315,-0.7280422963,https://salsa.debian.org/med-team/libgzstream, https://github.com/kanedo/gzstream.git,1271.8150115741,0,2,0 +libhdf4,0.7482393831,1.3419798784,0.3704858112,https://salsa.debian.org/debian-gis-team/hdf4, https://github.com/HDFGroup/hdf4.git,5770.0810416667,9,27,0 +libheif,0.7756133995,3.7562106714,0.0328408592,https://salsa.debian.org/multimedia-team/libheif, https://github.com/strukturag/libheif.git,2185.1827314815,30,67,0 +libhinawa,-1.1257832902,1.2849883244,-1.6426913447,https://salsa.debian.org/debian/libhinawa/, https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git,3345.5964583333,2,10,0 +libhpptools,-2.8766583863,-0.6777605247,-3.3195064784,https://salsa.debian.org/med-team/libhpptools, https://github.com/mateidavid/hpptools.git,498.7340625,0,2,0 +libhtml-clean-perl,-0.1024783024,1.2552104643,-0.471169751,https://salsa.debian.org/perl-team/modules/packages/libhtml-clean-perl, https://github.com/poizon/HTML-Clean.git,1155.8983796296,1,3,0 +libhtml-embedded-turtle-perl,-2.1754143328,0.1122982625,-2.6152678827,https://salsa.debian.org/perl-team/modules/packages/libhtml-embedded-turtle-perl, https://github.com/tobyink/p5-html-embedded-turtle,1183.7536805556,0,1,0 +libhtml-formhandler-model-dbic-perl,-1.4203781466,0.7927422874,-1.859585529,https://salsa.debian.org/perl-team/modules/packages/libhtml-formhandler-model-dbic-perl, http://github.com/gshank/html-formhandler-model-dbic,1856.3547106482,2,11,0 +libhtml-html5-entities-perl,-0.3934618041,1.0242081172,-0.6537250647,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-entities-perl, https://github.com/tobyink/p5-html-html5-entities.git,1072.6158333333,0,1,0 +libhtml-html5-parser-perl,0.8137592838,4.383181915,-0.3515590143,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-parser-perl, https://github.com/tobyink/p5-html-html5-parser,4302.9721412037,1,7,0 +libhtml-stripscripts-perl,-0.3606801075,1.7950802024,-0.7870879637,https://salsa.debian.org/perl-team/modules/packages/libhtml-stripscripts-perl, https://github.com/clintongormley/perl-html-stripscripts.git,634.9694444444,1,1,0 +libhtml-template-perl,0.2623998312,1.2787610043,-0.0168521747,https://salsa.debian.org/perl-team/modules/packages/libhtml-template-perl, https://github.com/mpeters/html-template.git,2360.5546296296,1,10,0 +libhtml-tiny-perl,-0.2742049645,2.1158495273,-0.8034234216,https://salsa.debian.org/perl-team/modules/packages/libhtml-tiny-perl, https://github.com/ap/HTML-Tiny.git,5143.9249537037,0,2,0 +libhtp,0.266072694,2.5728754227,-0.5638059217,https://salsa.debian.org/pkg-suricata-team/pkg-libhtp, https://github.com/OISF/libhtp,5122.0736226852,15,26,2 +libhttp-message-perl,1.2240574234,4.0822720732,0.2771667606,https://salsa.debian.org/perl-team/modules/packages/libhttp-message-perl, https://github.com/libwww-perl/HTTP-Message.git,5655.1268518519,76,18,0 +libhttp-proxy-perl,-0.0949217121,1.2455203169,-0.6350123924,https://salsa.debian.org/perl-team/modules/packages/libhttp-proxy-perl, https://github.com/book/HTTP-Proxy.git,4041.0415393519,7,1,0 +libhttp-server-simple-perl,0.8231195226,2.8527464993,0.0853932498,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-perl, https://github.com/bestpractical/http-server-simple,2910.7674074074,4,11,0 +libhttp-server-simple-psgi-perl,-0.1977126095,1.9180365026,-0.6285309261,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-psgi-perl, https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git,1409.5210763889,0,2,0 +libhugetlbfs,-0.6583887261,1.4081810608,-1.179127099,https://github.com/punitagrawal/libhugetlbfs.git,https://github.com/punitagrawal/libhugetlbfs.git,2039.1172800926,1,1,0 +libical3,0.617622962,2.0765416435,0.1015897391,https://salsa.debian.org/debian/libical3, https://github.com/libical/libical,3453.0738773148,14,46,3 +libics,-1.5487571477,-0.7977160114,-1.7237343016,https://salsa.debian.org/med-team/libics, https://github.com/svi-opensource/libics,4511.1015277778,4,15,0 +libidn2,0.4464065554,1.3888330779,0.0869765931,https://salsa.debian.org/debian/libidn2, https://gitlab.com/libidn/libidn2,4708.2527662037,3,10,0 +libidna-punycode-perl,0.0249334359,3.9722760412,-1.0659289095,https://salsa.debian.org/perl-team/modules/packages/libidna-punycode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.6395949074,6,7,0 +libiio,-0.1424272745,1.2725884014,-0.5750532135,https://salsa.debian.org/debian/libiio, https://github.com/analogdevicesinc/libiio.git,3584.8073032407,30,77,0 +libiksemel,1.4056706717,3.3010035011,0.531380273,https://salsa.debian.org/debian/libiksemel, https://github.com/meduketto/iksemel,2285.3264351852,0,3,0 +libimage-exif-perl,-0.3566210754,0.8027615419,-0.610345557,https://salsa.debian.org/perl-team/modules/packages/libimage-exif-perl, https://github.com/arc/p5-image-exif.git,101.2955787037,2,2,0 +libimage-metadata-jpeg-perl,0.1782474931,2.8015789571,-0.5717239967,https://salsa.debian.org/perl-team/modules/packages/libimage-metadata-jpeg-perl, https://github.com/rjbs/Image-MetaData-JPEG.git,1915.8586921296,1,3,0 +libimage-size-perl,0.2728915097,1.5941936935,-0.1459963248,https://salsa.debian.org/perl-team/modules/packages/libimage-size-perl, https://github.com/rjray/image-size.git,4527.5378587963,0,12,0 +libimagequant,1.1745239245,4.6043601414,0.1837049138,https://salsa.debian.org/debian-phototools-team/libimagequant, https://github.com/ImageOptim/libimagequant.git,4336.732037037,22,42,0 +libimobiledevice,0.7461512955,1.4029462138,0.3606072938,https://salsa.debian.org/imobiledevice-team/libimobiledevice, https://github.com/libimobiledevice/libimobiledevice.git,5614.0853703704,61,26,0 +libinih,-0.0499418302,1.9789639863,-0.4752705705,https://salsa.debian.org/yangfl-guest/inih, https://github.com/benhoyt/inih,5140.4548611111,30,8,0 +libinput,0.4691330188,1.1057627455,0.1565946309,https://salsa.debian.org/xorg-team/lib/libinput, https://gitlab.freedesktop.org/libinput/libinput,5537.9313078704,137,119,0 +libinstpatch,0.3063715043,2.068273106,-0.0894533028,https://salsa.debian.org/multimedia-team/libinstpatch, https://github.com/swami/libinstpatch,4470.7645833333,4,11,0 +libio-callback-perl,-2.0212295476,0.6694774365,-2.7211969358,https://salsa.debian.org/perl-team/modules/packages/libio-callback-perl, https://github.com/tobyink/p5-io-callback.git,2909.5988078704,0,1,0 +libio-digest-perl,-0.1769998583,2.4353442239,-0.8553329296,https://salsa.debian.org/perl-team/modules/packages/libio-digest-perl, https://github.com/clkao/IO-Digest.git,1863.0997106482,1,4,0 +libio-event-perl,0.2170241797,2.8246432586,-0.6360167425,https://salsa.debian.org/perl-team/modules/packages/libio-event-perl, https://github.com/muir/File-Flock.git,474.8396990741,0,4,0 +libio-interface-perl,1.0184295465,4.1476474847,0.0508969184,https://salsa.debian.org/perl-team/modules/packages/libio-interface-perl, https://github.com/lstein/LibIO-Interface-Perl.git,2278.4801041667,0,2,0 +libio-socket-inet6-perl,1.0536105818,2.554159089,0.3603685147,https://salsa.debian.org/perl-team/modules/packages/libio-socket-inet6-perl, https://github.com/shlomif/perl-io-socket-inet6.git,5052.8307060185,0,3,0 +libipc-run3-perl,0.5630723174,3.202492468,-0.0863000736,https://salsa.debian.org/perl-team/modules/packages/libipc-run3-perl, https://github.com/rjbs/IPC-Run3.git,1899.0353819445,8,2,0 +libipc-system-simple-perl,0.7025068064,3.3730782331,0.0378027178,https://salsa.debian.org/perl-team/modules/packages/libipc-system-simple-perl, https://github.com/pjf/ipc-system-simple.git,5306.4576388889,4,11,0 +libisal,-0.6533940488,1.7011237676,-1.0694298788,https://salsa.debian.org/openstack-team/third-party/libisal, https://github.com/01org/isa-l.git,2846.4837615741,29,18,0 +libitl,0.0254308757,1.554670546,-0.4274590481,https://salsa.debian.org/islamic-team/libitl, https://github.com/arabeyes-org/ITL,3251.4730902778,2,13,0 +libitl-gobject,-0.7439913292,1.4835301757,-1.3690898031,https://salsa.debian.org/islamic-team/libitl-gobject, https://github.com/aelmahmoudy/libitl-gobject.git,2211.2291898148,0,2,0 +libixion,-0.927444362,0.3259071564,-1.2450334501,https://salsa.debian.org/libreoffice-team/libixion, https://gitlab.com/ixion/ixion.git,4997.0195601852,5,14,0 +libjbzip2-java,-0.1117625553,1.7645153992,-0.5532046545,https://salsa.debian.org/java-team/libjbzip2-java, https://github.com/routeKIT/jbzip2.git,1394.2040046296,0,2,0 +libjcat,-2.9665296188,-1.1386554909,-3.3229751102,https://salsa.debian.org/efi-team/libjcat, https://github.com/hughsie/libjcat.git,1373.0888425926,7,5,0 +libjifty-dbi-perl,-1.6146679558,0.7852306876,-2.2707603438,https://salsa.debian.org/perl-team/modules/packages/libjifty-dbi-perl, https://github.com/bestpractical/jifty-dbi.git,2518.1463888889,1,16,0 +libjpeg-turbo,0.8208594826,1.6678864112,0.3714003986,https://salsa.debian.org/debian/libjpeg-turbo/, https://github.com/libjpeg-turbo/libjpeg-turbo,5541.3943171296,44,10,2 +libjs-jquery-selectize.js,0.3734222984,2.9060686392,-0.2211839872,https://salsa.debian.org/js-team/libjs-jquery-selectize.js, https://github.com/selectize/selectize.js,4120.8884143519,55,93,2 +libjs-mousetrap,-0.2544461021,3.1970470072,-1.2161894114,https://salsa.debian.org/js-team/libjs-mousetrap, https://github.com/ccampbell/mousetrap,2488.8372453704,20,42,0 +libjs-qunit,-0.495189174,2.5153557834,-1.2654413028,https://salsa.debian.org/js-team/libjs-qunit, https://github.com/jquery/qunit.git,5676.0677430556,143,47,0 +libjs-term.js,1.1136529462,4.9050728265,0.0258351053,https://salsa.debian.org/js-team/libjs-term.js, https://github.com/chjj/term.js,1033.3200115741,0,13,0 +libjs-webrtc-adapter,-1.2536672785,0.4907452678,-1.6925638802,https://salsa.debian.org/js-team/libjs-webrtc-adapter, https://github.com/webrtchacks/adapter,3650.9905902778,24,105,1 +libjson-webtoken-perl,-0.1644580581,1.9565513103,-0.5873542729,https://salsa.debian.org/perl-team/modules/packages/libjson-webtoken-perl, https://github.com/xaicron/p5-JSON-WebToken.git,993.7868981481,0,6,0 +libkavorka-perl,-1.1158599676,1.8699475451,-1.8919945693,https://salsa.debian.org/perl-team/modules/packages/libkavorka-perl, https://github.com/tobyink/p5-kavorka,2218.7228703704,0,8,0 +libkdegames,0.6892672376,2.5854919734,0.0373061904,https://salsa.debian.org/qt-kde-team/kde/libkdegames, https://invent.kde.org/games/libkdegames.git,5719.7154282407,6,80,0 +libkf5grantleetheme,0.6672080583,3.3876768148,-0.023859511,https://salsa.debian.org/qt-kde-team/kde/grantleetheme, https://invent.kde.org/pim/grantleetheme,2926.047974537,1,21,0 +libkf5kmahjongg,0.3967931243,3.0061627218,-0.1409892295,https://salsa.debian.org/qt-kde-team/kde/libkmahjongg, https://anongit.kde.org/libkmahjongg.git,5766.6890277778,1,28,0 +libkf5libkdepim,0.6757250035,3.2509871833,0.0005945266,https://salsa.debian.org/qt-kde-team/kde/libkdepim, https://invent.kde.org/pim/libkdepim,2925.8803819445,1,32,0 +libkf5libkleo,0.845577372,3.9021219344,0.0232520773,https://salsa.debian.org/qt-kde-team/kde/libkleo, https://invent.kde.org/pim/libkleo,2925.0501736111,4,41,0 +libkf5mailcommon,0.5869198927,3.2483340134,-0.0437537495,https://salsa.debian.org/qt-kde-team/kde/mailcommon, https://invent.kde.org/pim/mailcommon,2926.0488310185,1,40,0 +libkf5mailimporter,0.5946345025,3.3310594054,-0.0431927996,https://salsa.debian.org/qt-kde-team/kde/mailimporter, https://invent.kde.org/pim/mailimporter,2925.879837963,1,21,0 +libkf5pimcommon,0.6849802889,3.1218742674,0.0062376881,https://salsa.debian.org/qt-kde-team/kde/pimcommon, https://invent.kde.org/pim/pimcommon,2927.047962963,3,35,0 +libkiwix,-1.3010652231,1.9325355414,-2.140160236,https://salsa.debian.org/debian/libkiwix, https://github.com/kiwix/libkiwix.git,5139.8432407407,16,47,0 +libkmfl,0.0696291333,2.7922965568,-0.9531676097,https://github.com/keymanapp/keyman/tree/master/linux/libkmfl,https://github.com/keymanapp/keyman,3329.4431944445,16,51,8 +libkml,0.3095891312,0.9528158526,0.025526984,https://salsa.debian.org/debian-gis-team/libkml, https://github.com/libkml/libkml.git,3335.9697453704,3,16,0 +libkqueue,0.3791686446,1.9999084942,-0.3760876277,https://github.com/mheily/debian-packages/tree/libkqueue,https://github.com/mheily/debian-packages,3042.231712963,0,4,0 +libkryo-java,0.4391386371,2.4753288811,-0.1291785642,https://salsa.debian.org/java-team/libkryo-java, https://github.com/EsotericSoftware/kryo.git,5184.6080092593,31,73,0 +libksysguard,0.3825083938,1.6688850848,-0.0134784863,https://salsa.debian.org/qt-kde-team/kde/libksysguard, https://invent.kde.org/plasma/libksysguard.git,5764.1871990741,14,198,0 +liblatex-table-perl,-0.7020862971,0.7997073577,-0.9848467916,https://salsa.debian.org/perl-team/modules/packages/liblatex-table-perl, https://github.com/lima1/p5-latex-table.git,556.2399421296,0,2,0 +liblbfgs,-0.1459606149,2.0255666612,-0.6194709752,https://salsa.debian.org/science-team/liblbfgs, https://github.com/chokkan/liblbfgs,5534.0610763889,8,10,0 +liblexical-underscore-perl,-0.1208593875,2.7968625617,-0.887693709,https://salsa.debian.org/perl-team/modules/packages/liblexical-underscore-perl, https://github.com/tobyink/p5-lexical-underscore,2933.2191203704,0,1,0 +liblingua-en-inflect-number-perl,0.1280326899,2.5007020448,-0.4017863004,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-inflect-number-perl, https://github.com/neilbowers/Lingua-EN-Inflect-Number,2030.0671527778,1,2,0 +liblingua-en-numbers-ordinate-perl,-0.5287396988,1.7136767904,-0.9568574903,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-numbers-ordinate-perl, https://github.com/neilb/Lingua-EN-Numbers-Ordinate,4119.2290856482,1,2,0 +liblingua-en-words2nums-perl,-0.1704695086,1.1540444171,-0.4501160135,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-words2nums-perl, git://git.kitenet.net/words2nums,1862.9037384259,0,5,0 +liblingua-pt-stemmer-perl,-0.0370378021,1.7556059977,-0.4052943013,https://salsa.debian.org/perl-team/modules/packages/liblingua-pt-stemmer-perl, https://github.com/neilb/Lingua-PT-Stemmer.git,472.7143518519,1,2,0 +liblist-compare-perl,0.3913134488,2.6930680807,-0.0910990527,https://salsa.debian.org/perl-team/modules/packages/liblist-compare-perl, https://github.com/jkeenan/list-compare.git,5186.5518171296,4,4,0 +liblnk,0.9064663985,4.564766206,-0.095627686,https://salsa.debian.org/pkg-security-team/liblnk, https://github.com/libyal/liblnk,2793.9560763889,2,1,0 +liblocale-maketext-gettext-perl,-0.4988694756,1.1302337571,-0.8279808959,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-gettext-perl, https://github.com/imacat/Locale-Maketext-Gettext.git,519.6569444444,0,2,0 +liblocale-maketext-lexicon-perl,0.161275632,1.8969602532,-0.2840997851,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-lexicon-perl, https://github.com/clintongormley/locale-maketext-lexicon.git,1951.7074074074,1,9,0 +liblocales-perl,-1.0439124558,1.1408551718,-1.4785456456,https://salsa.debian.org/perl-team/modules/packages/liblocales-perl, https://github.com/drmuey/p5-Locales.git,1740.6568287037,0,3,0 +liblockfile,1.3452804851,2.1620317868,0.8349604945,https://github.com/miquels/liblockfile-debian,https://github.com/miquels/liblockfile-debian,1484.1868055556,0,2,0 +liblog-message-simple-perl,0.207617298,1.6631748554,-0.0635138373,https://salsa.debian.org/perl-team/modules/packages/liblog-message-simple-perl, https://github.com/jib/log-message-simple.git,1230.0807175926,0,3,0 +liblognorm,0.9012585102,2.3010415095,0.3051975451,https://salsa.debian.org/debian/liblognorm, https://github.com/rsyslog/liblognorm.git,4686.8326273148,7,31,0 +liblouis,0.0312246659,0.1805673069,-0.017300934,https://salsa.debian.org/a11y-team/liblouis, https://github.com/liblouis/liblouis.git,5775.5753125,86,83,0 +libltc,0.2546232027,2.4814619881,-0.1954510519,https://salsa.debian.org/multimedia-team/libltc, https://github.com/x42/libltc,3674.4912152778,2,8,0 +liblwp-useragent-chicaching-perl,-0.7942219141,1.5178916477,-1.2272281043,https://salsa.debian.org/perl-team/modules/packages/liblwp-useragent-chicaching-perl, https://github.com/kjetilk/p5-lwp-useragent-chicaching.git,1283.7690740741,0,1,0 +liblxqt,0.8559265074,3.6869503104,0.020714347,https://salsa.debian.org/lxqt-team/liblxqt, https://github.com/lxqt/liblxqt.git,4353.7531944445,86,64,0 +libmagpie-perl,-1.7158635114,1.197884825,-2.5208982983,https://salsa.debian.org/perl-team/modules/packages/libmagpie-perl, https://github.com/tamarou/magpie.git,2275.6417824074,0,6,0 +libmail-mbox-messageparser-perl,-0.0992180029,0.3833084593,-0.2549281336,https://salsa.debian.org/perl-team/modules/packages/libmail-mbox-messageparser-perl, https://github.com/coppit/mail-mbox-messageparser.git,3258.3029513889,0,3,0 +libmailtools-perl,1.0529685668,2.1520713579,0.4690208845,https://salsa.debian.org/perl-team/modules/packages/libmailtools-perl, https://github.com/markov2/perl5-MailTools,1648.7267013889,0,2,0 +libmarpa-r2-perl,-0.4845053224,2.3125273353,-1.4168789652,https://salsa.debian.org/perl-team/modules/packages/libmarpa-r2-perl, https://github.com/jeffreykegler/Marpa--R2.git,4342.8049884259,0,18,0 +libmatekbd,0.2103319487,1.291530228,-0.0706815197,https://salsa.debian.org/debian-mate-team/libmatekbd, https://github.com/mate-desktop/libmatekbd.git,4348.5463657407,8,31,0 +libmatemixer,0.5190776518,2.8714266987,-0.0439618764,https://salsa.debian.org/debian-mate-team/libmatemixer, https://github.com/mate-desktop/libmatemixer.git,3404.5255092593,7,20,0 +libmateweather,0.1284830495,0.843121277,-0.0753011191,https://salsa.debian.org/debian-mate-team/libmateweather, https://github.com/mate-desktop/libmateweather.git,4345.3109837963,19,32,0 +libmath-basecalc-perl,-1.0492971392,0.7762474864,-1.6069135742,https://salsa.debian.org/perl-team/modules/packages/libmath-basecalc-perl, https://github.com/kenahoo/perl-math-basecalc.git,3269.0290740741,0,8,0 +libmath-gmp-perl,-0.4977700318,1.2717897116,-0.9791927568,https://salsa.debian.org/perl-team/modules/packages/libmath-gmp-perl, https://github.com/turnstep/Math-GMP.git,2969.082974537,1,6,0 +libmath-random-isaac-perl,0.6477137679,3.3609472371,-0.0377506361,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-perl, https://github.com/jawnsy/Math-Random-ISAAC,2416.3080324074,0,1,0 +libmath-random-isaac-xs-perl,0.4200441154,2.426176795,-0.0688144675,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-xs-perl, https://github.com/jawnsy/Math-Random-ISAAC-XS.git,2412.8853703704,0,1,0 +libmath-random-oo-perl,-1.3518748941,0.9987771421,-1.8072166016,https://salsa.debian.org/perl-team/modules/packages/libmath-random-oo-perl, https://github.com/dagolden/math-random-oo.git,1499.3150694445,0,1,0 +libmaxminddb,0.5075375731,2.425458321,-0.014814615,https://salsa.debian.org/debian/libmaxminddb, https://github.com/maxmind/libmaxminddb,3984.2393634259,21,43,0 +libmbim,0.6667169848,2.3128896669,0.1040166611,https://salsa.debian.org/DebianOnMobile-team/libmbim, https://gitlab.freedesktop.org/mobile-broadband/libmbim.git,3987.9549652778,29,19,0 +libmce-perl,-0.2406488454,2.0794415417,-0.6733224842,https://salsa.debian.org/perl-team/modules/packages/libmce-perl, https://github.com/marioroy/mce-perl.git,2944.7772337963,1,6,0 +libmediaart,0.3798275265,2.0133047298,-0.0227924256,https://salsa.debian.org/gnome-team/libmediaart, https://gitlab.gnome.org/GNOME/libmediaart.git,3213.8240509259,15,19,0 +libmemoize-expirelru-perl,0.1936518014,2.9309817533,-0.4019145174,https://salsa.debian.org/perl-team/modules/packages/libmemoize-expirelru-perl, https://github.com/neilb/Memoize-ExpireLRU,624.640474537,1,2,0 +libmessage-passing-perl,-1.5721707445,-0.5831799889,-1.7635460333,https://salsa.debian.org/perl-team/modules/packages/libmessage-passing-perl, https://github.com/suretec/Message-Passing.git,2987.7789236111,1,15,0 +libmethod-signatures-perl,-1.1413649114,1.1667964397,-1.6439970781,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-perl, https://github.com/evalEmpire/method-signatures.git,4206.6153935185,3,21,0 +libmethod-signatures-simple-perl,-0.5051718146,2.287989514,-1.1367149384,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-simple-perl, https://github.com/rhesa/method-signatures-simple.git,4262.9309953704,0,6,0 +libmicrohttpd,0.3382715652,1.0716975436,0.0123838787,https://git.progress-linux.org/users/daniel.baumann/debian/packages/libmicrohttpd, https://git.gnunet.org/libmicrohttpd.git,5772.6606134259,10,21,0 +libmiglayout-java,0.0140581375,1.0961315638,-0.2200314501,https://salsa.debian.org/java-team/libmiglayout-java, https://github.com/mikaelgrev/miglayout,3114.6859375,4,24,0 +libminc,-0.2431199399,0.9558742118,-0.5877175902,https://salsa.debian.org/med-team/libminc, https://github.com/BIC-MNI/libminc.git,5746.5411342593,3,34,0 +libminini,-0.452730067,0.8302579746,-0.745676424,https://salsa.debian.org/yangfl-guest/minIni, https://github.com/compuphase/minIni,2280.3336342593,2,6,0 +libmldbm-perl,0.2556850889,2.2171328226,-0.1413700534,https://salsa.debian.org/perl-team/modules/packages/libmldbm-perl, https://github.com/chorny/MLDBM.git,1906.0319791667,3,2,0 +libmodbus,0.4081348938,2.0101967387,-0.0931762571,https://salsa.debian.org/debian/libmodbus, https://github.com/stephane/libmodbus.git,5746.5321180556,58,15,0 +libmodule-cpants-analyse-perl,0.6092458087,3.4788905255,-0.4688881027,https://salsa.debian.org/perl-team/modules/packages/libmodule-cpants-analyse-perl, https://github.com/cpants/Module-CPANTS-Analyse.git,5647.7312152778,8,20,0 +libmodule-extract-use-perl,-1.4214887251,0.7223462254,-1.8616614077,https://salsa.debian.org/perl-team/modules/packages/libmodule-extract-use-perl, https://github.com/briandfoy/module-extract-use.git,2918.7995717593,0,7,0 +libmodule-find-perl,0.5306890725,2.9619110746,-0.0631954531,https://salsa.debian.org/perl-team/modules/packages/libmodule-find-perl, https://github.com/crenz/Module-Find.git,4710.686875,2,8,0 +libmodule-install-readmefrompod-perl,-1.8312131642,-0.8033082466,-2.0615814708,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-readmefrompod-perl, https://github.com/bingos/module-install-readmefrompod.git,2847.0250694445,0,7,0 +libmodule-install-xsutil-perl,-1.9528681484,-0.4161990227,-2.2440219121,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-xsutil-perl, https://github.com/gfx/Perl-Module-Install-XSUtil.git,1649.8556828704,0,9,0 +libmodule-manifest-perl,-0.2750809802,2.0412664766,-0.7072069311,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-perl, https://github.com/karenetheridge/Module-Manifest,3547.1878935185,0,3,0 +libmodule-manifest-skip-perl,-0.3311047045,2.0896483213,-0.8611240864,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-skip-perl, https://github.com/ingydotnet/module-manifest-skip-pm.git,1169.1213194445,0,5,0 +libmodule-package-rdf-perl,-1.9996964425,0.8089579857,-2.7247782661,https://salsa.debian.org/perl-team/modules/packages/libmodule-package-rdf-perl, https://github.com/tobyink/p5-module-package-rdf,668.6822106481,0,1,0 +libmodule-signature-perl,0.6153933477,2.3081438868,0.0588548985,https://salsa.debian.org/perl-team/modules/packages/libmodule-signature-perl, https://github.com/audreyt/module-signature.git,4414.5291782407,0,17,0 +libmodule-starter-plugin-cgiapp-perl,-1.0772217685,1.7774421629,-2.0362185062,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,4024.0661921296,0,7,0 +libmoops-perl,-2.0160241228,0.1848579356,-2.5747690554,https://salsa.debian.org/perl-team/modules/packages/libmoops-perl, https://github.com/tobyink/p5-moops,2419.9678819445,0,3,0 +libmoosex-attributetags-perl,-1.484446991,0.7122802252,-1.9169457017,https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributetags-perl, https://github.com/tobyink/p5-moosex-attributetags,2042.2449074074,0,1,0 +libmoosex-compiletime-traits-perl,-1.5653963424,0.9933122892,-2.1997931366,https://salsa.debian.org/perl-team/modules/packages/libmoosex-compiletime-traits-perl, https://github.com/nperez/moosex-compiletime-traits.git,0.0730787037,0,1,0 +libmoosex-multiinitarg-perl,-1.070754038,1.0835902153,-1.5042988332,https://salsa.debian.org/perl-team/modules/packages/libmoosex-multiinitarg-perl, https://github.com/frodwith/MooseX-MultiInitArg.git,0.0628703704,0,1,0 +libmoosex-mungehas-perl,-1.7054687669,0.6551084355,-2.1489172119,https://salsa.debian.org/perl-team/modules/packages/libmoosex-mungehas-perl, https://github.com/tobyink/p5-moosex-mungehas,2044.5397800926,1,6,0 +libmoosex-runnable-perl,-1.5770222755,1.133906618,-2.3498416952,https://salsa.debian.org/perl-team/modules/packages/libmoosex-runnable-perl, https://github.com/moose/MooseX-Runnable,3541.9794097222,1,4,0 +libmoosex-xsaccessor-perl,-1.7969930844,0.6221995894,-2.237446435,https://salsa.debian.org/perl-team/modules/packages/libmoosex-xsaccessor-perl, https://github.com/tobyink/p5-moosex-xsaccessor,3461.6608333333,0,1,0 +libmoox-cmd-perl,-1.7714724432,0.7389635101,-2.3287224021,https://salsa.debian.org/perl-team/modules/packages/libmoox-cmd-perl, https://github.com/Getty/p5-moox-cmd,2141.9085532407,4,4,0 +libmoox-struct-perl,1.100399874,4.7268638235,0.0231138942,https://salsa.debian.org/perl-team/modules/packages/libmoox-struct-perl, https://github.com/tobyink/p5-moox-struct,3679.9237037037,1,2,0 +libmoox-types-mooselike-perl,0.2188487287,2.4276236186,-0.2341829878,https://salsa.debian.org/perl-team/modules/packages/libmoox-types-mooselike-perl, https://github.com/mateu/MooX-Types-MooseLike.git,1382.0588888889,0,16,0 +libmousex-nativetraits-perl,0.451797092,3.5585079183,-0.2632252957,https://salsa.debian.org/perl-team/modules/packages/libmousex-nativetraits-perl, https://github.com/gfx/p5-MouseX-NativeTraits.git,1010.1283101852,1,4,0 +libmousex-types-perl,-0.9002059228,2.4281097906,-1.6194395424,https://salsa.debian.org/perl-team/modules/packages/libmousex-types-perl, https://github.com/yappo/p5-mousex-types.git,984.7711226852,0,8,0 +libmp3-info-perl,0.9722005224,3.0635904685,0.1459746264,https://salsa.debian.org/perl-team/modules/packages/libmp3-info-perl, https://github.com/JJ/perl-mp3-info.git,3267.4327777778,1,4,0 +libmpdclient,0.2085560362,1.356457434,-0.1176167234,https://salsa.debian.org/mpd-team/libmpdclient, https://github.com/MusicPlayerDaemon/libmpdclient,5726.394375,18,26,0 +libmseed,-0.3056940688,2.7284403649,-1.0852315566,https://salsa.debian.org/science-team/libmseed, https://github.com/iris-edu/libmseed,4208.8788194445,8,11,2 +libmsiecf,0.4655231291,3.4302212781,-0.3202002984,https://salsa.debian.org/pkg-security-team/libmsiecf, https://github.com/libyal/libmsiecf.git,3548.1866898148,0,1,0 +libmtp,0.9605224331,1.5722486503,0.5587977225,https://salsa.debian.org/debian/libmtp, https://github.com/libmtp/libmtp,5765.780787037,44,49,0 +libmultidimensional-perl,0.6378488709,3.4059130057,-0.1088057954,https://salsa.debian.org/perl-team/modules/packages/libmultidimensional-perl, https://github.com/ilmari/multidimensional,4293.3777314815,1,3,0 +libmurmurhash,-1.1606750215,1.2419656851,-1.5922212752,https://salsa.debian.org/med-team/libmurmurhash, https://github.com/kloetzl/libmurmurhash.git,1568.0675578704,0,1,0 +libmypaint,0.7987527233,2.7224888002,0.1206669887,https://salsa.debian.org/multimedia-team/libmypaint, https://github.com/mypaint/libmypaint,4528.3509259259,157,32,0 +libnagios-object-perl,-0.0287280626,2.4165825039,-0.5145037556,https://salsa.debian.org/perl-team/modules/packages/libnagios-object-perl, https://github.com/duncs/perl-nagios-object.git,4719.3367939815,1,14,0 +libnatpmp,0.2543409022,1.1083518392,4.5219738185424e-05,https://salsa.debian.org/miniupnp-team/libnatpmp, https://github.com/miniupnp/libnatpmp,3832.0982523148,3,20,0 +libnbcompat,-5.0470695639,-2.6158016281,-5.4799549879,https://github.com/jgoerzen/libnbcompat,https://github.com/jgoerzen/libnbcompat,3888.0046759259,0,19,0 +libndp,0.413875636,2.2608821975,0.0018314313,https://salsa.debian.org/debian/libndp, https://github.com/jpirko/libndp.git,3924.0402314815,9,4,0 +libneo4j-client,-0.4420044551,1.822604323,-1.1962509735,https://github.com/cleishm/libneo4j-client,https://github.com/cleishm/libneo4j-client,1826.3064351852,2,5,0 +libnet-dbus-perl,2.2690664759,4.585267999,1.1730684569,https://salsa.debian.org/perl-team/modules/packages/libnet-dbus-perl, https://gitlab.com/berrange/perl-net-dbus,4510.8776388889,9,9,0 +libnet-dns-lite-perl,-0.3886008757,1.7387555976,-0.810307745,https://salsa.debian.org/perl-team/modules/packages/libnet-dns-lite-perl, https://github.com/kazuho/p5-Net-DNS-Lite.git,2215.0713888889,0,7,0 +libnet-duo-perl,-2.2152959779,-0.6822144893,-2.4841283862,https://salsa.debian.org/perl-team/modules/packages/libnet-duo-perl, https://git.eyrie.org/git/perl/net-duo.git,2033.875625,0,3,0 +libnet-idn-encode-perl,0.2021202967,2.48699816,-0.240749263,https://salsa.debian.org/perl-team/modules/packages/libnet-idn-encode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.6395949074,6,7,0 +libnet-jabber-bot-perl,-1.4064709925,2.213836255,-2.339836966,https://salsa.debian.org/perl-team/modules/packages/libnet-jabber-bot-perl, https://github.com/toddr/perl-net-jabber-bot.git,4656.9431712963,0,12,0 +libnet-ldap-filterbuilder-perl,-1.0311673826,1.3164424951,-1.5505907465,https://salsa.debian.org/perl-team/modules/packages/libnet-ldap-filterbuilder-perl, https://github.com/ollyg/Net-LDAP-FilterBuilder.git,3727.9931481482,1,4,0 +libnet-ldapapi-perl,0.3298012331,4.2171229252,-0.937584259,https://github.com/whm/libnet-ldapapi-perl,https://github.com/whm/libnet-ldapapi-perl,2319.3761458333,0,8,0 +libnet-netmask-perl,0.1949090184,1.297397456,-0.0893189593,https://salsa.debian.org/perl-team/modules/packages/libnet-netmask-perl, https://github.com/jmaslak/Net-Netmask.git,4478.3867592593,1,7,0 +libnet-openid-server-perl,-1.0955544028,0.6845393717,-1.5372515082,https://salsa.debian.org/perl-team/modules/packages/libnet-openid-server-perl, https://github.com/robn/Net-OpenID-Server.git,848.2155092593,2,3,0 +libnet-smtp-tls-butmaintained-perl,-0.1132113761,2.611489661,-0.7024918462,https://salsa.debian.org/perl-team/modules/packages/libnet-smtp-tls-butmaintained-perl, https://github.com/fayland/Net-SMTP-TLS,3215.1503240741,2,5,0 +libnfo,-1.6756209904,0.1206412877,-2.1869772617,https://salsa.debian.org/debian/libnfo, https://github.com/GeeXboX/libnfo,1108.0312384259,0,6,0 +libnids,1.4807006894,2.868899345,0.7254298026,https://salsa.debian.org/pkg-security-team/libnids, https://github.com/MITRECND/libnids.git,3593.0894791667,1,9,0 +libnitrokey,-0.3787337196,1.0971002226,-0.7456682181,https://salsa.debian.org/patryk/libnitrokey, https://github.com/nitrokey/libnitrokey.git,2855.7609722222,7,21,0 +libntlm,0.5341900537,2.2335172749,0.0304523028,https://salsa.debian.org/auth-team/libntlm, https://gitlab.com/jas/libntlm,5374.1892592593,0,1,0 +libnumber-fraction-perl,-1.540099922,1.0079905103,-2.1216475277,https://salsa.debian.org/perl-team/modules/packages/libnumber-fraction-perl, https://github.com/p5-number-fraction/number-fraction.git,5664.8216203704,3,11,0 +libofa,0.4733582109,1.4335688496,0.0963115975,https://salsa.debian.org/debian/libofa, https://github.com/tanob/libofa.git,2279.4909837963,1,2,0 +libofx,0.2034150256,0.6532722257,-0.0343613081,https://salsa.debian.org/debian/libofx, https://github.com/libofx/libofx,5174.00625,8,16,0 +libolecf,0.4621655423,3.3267217863,-0.317708483,https://salsa.debian.org/pkg-security-team/libolecf, https://github.com/libyal/libolecf.git,3351.0533101852,0,1,0 +libopenaptx,-1.7697893715,0.4021046488,-2.2318938305,https://salsa.debian.org/debian/libopenaptx, https://github.com/pali/libopenaptx,1024.2505671296,0,2,0 +libopengl-perl,0.6955125147,1.8965674424,0.1265668097,https://salsa.debian.org/perl-team/modules/packages/libopengl-perl, git://pogl.git.sourceforge.net/gitroot/pogl/pogl,2689.0655787037,3,9,0 +libopenhmd,0.1127945014,1.854847445,-0.28253551,https://salsa.debian.org/debian/libopenhmd, https://github.com/OpenHMD/OpenHMD,3515.7873958333,18,41,1 +libopenshot,1.5970501696,4.4451177197,0.483397879,https://salsa.debian.org/multimedia-team/libopenshot, https://github.com/OpenShot/libopenshot.git,4380.4663773148,15,39,0 +libopenshot-audio,1.7814898183,5.656617895,0.4356724479,https://salsa.debian.org/multimedia-team/libopenshot-audio, https://github.com/OpenShot/libopenshot-audio.git,4098.0388888889,5,7,0 +liboping,0.9567282043,2.4805154758,0.2399301716,https://salsa.debian.org/debian/liboping, https://github.com/octo/liboping,4300.9752430556,12,18,0 +liborcus,0.1624631904,0.6961674503,-0.0191305365,https://salsa.debian.org/libreoffice-team/liborcus, https://gitlab.com/orcus/orcus,4985.8959837963,9,19,0 +libosinfo,0.4081631117,1.216850995,0.0757070817,https://salsa.debian.org/libvirt-team/libosinfo, https://gitlab.com/libosinfo/libosinfo.git,5133.7286805556,65,26,0 +libosmium,-0.889903114,-0.0753612426,-1.0345526725,https://salsa.debian.org/debian-gis-team/libosmium/, https://github.com/osmcode/libosmium.git,3645.6736805556,6,31,0 +libp11,0.1538021845,0.9604702039,-0.2349756856,https://salsa.debian.org/opensc-team/libp11, https://github.com/OpenSC/libp11.git,5687.9941319445,67,27,0 +libpal-java,-0.7436164089,0.7988128956,-1.0249643964,https://salsa.debian.org/med-team/libpal-java, https://github.com/tamuri/pal,382.9409953704,0,2,0 +libpalm-perl,0.0204029609,1.2197989009,-0.348294955,https://salsa.debian.org/perl-team/modules/packages/libpalm-perl, https://github.com/madsen/p5-Palm,2036.3955092593,2,5,0 +libpam-encfs,-0.0672752006,1.0391890178,-0.5514410008,https://salsa.debian.org/debian/libpam-encfs, https://github.com/tinti/pam-encfs,2773.2122222222,0,4,0 +libpam-pwdfile,-0.1067432026,0.5002558718,-0.3226316808,https://github.com/tiwe-de/libpam-pwdfile/tree/debian,https://github.com/tiwe-de/libpam-pwdfile,923.3027546296,2,2,0 +libpandoc-elements-perl,-1.2178305762,1.3066890827,-1.790496828,https://salsa.debian.org/perl-team/modules/packages/libpandoc-elements-perl, https://github.com/nichtich/Pandoc-Elements.git,2600.5557175926,2,3,0 +libpandoc-wrapper-perl,-1.1913578813,0.8972995069,-1.7262399697,https://salsa.debian.org/perl-team/modules/packages/libpandoc-wrapper-perl, https://github.com/nichtich/Pandoc-Wrapper.git,1879.2412037037,2,4,0 +libpango-perl,0.1548844145,1.2325605335,-0.0340352944,https://salsa.debian.org/perl-team/modules/packages/libpango-perl, https://gitlab.gnome.org/GNOME/perl-pango,4393.4018402778,1,4,0 +libparams-callbackrequest-perl,-1.3155087057,0.9970633758,-1.7603650909,https://salsa.debian.org/perl-team/modules/packages/libparams-callbackrequest-perl, https://github.com/theory/params-callbackrequest.git,1199.2313657407,0,2,0 +libparams-util-perl,0.5669557248,2.7095409025,0.0183304165,https://salsa.debian.org/perl-team/modules/packages/libparams-util-perl, https://github.com/perl5-utils/Params-Util,4635.8917939815,2,6,0 +libparse-cpan-packages-perl,-1.3162623238,0.055729798,-1.5930972954,https://salsa.debian.org/perl-team/modules/packages/libparse-cpan-packages-perl, https://github.com/wchristian/parse-cpan-packages,2213.1126273148,1,3,0 +libparse-method-signatures-perl,-0.3098675421,2.1520892101,-0.7857930491,https://salsa.debian.org/perl-team/modules/packages/libparse-method-signatures-perl, https://github.com/ashb/Parse-Method-Signatures.git,3028.8479166667,2,10,0 +libparse-netstat-perl,-1.2901506305,0.9707747961,-1.7179336241,https://salsa.debian.org/perl-team/modules/packages/libparse-netstat-perl, https://github.com/perlancar/perl-Parse-Netstat.git,4083.673275463,0,11,0 +libparse-recdescent-perl,-0.0286467306,0.2229895206,-0.1007582655,https://salsa.debian.org/perl-team/modules/packages/libparse-recdescent-perl, https://github.com/jtbraun/Parse-RecDescent.git,2082.3553240741,1,5,0 +libpdf-report-perl,-1.1407475711,-0.7317783117,-1.2346814292,https://salsa.debian.org/perl-team/modules/packages/libpdf-report-perl, https://github.com/hashbangperl/perl-pdf-report.git,159.7184490741,0,1,0 +libpdl-io-matlab-perl,-1.8122896746,0.3558570995,-2.2370761422,https://salsa.debian.org/perl-team/modules/packages/libpdl-io-matlab-perl, https://github.com/jlapeyre/PDL-IO-Matlab.git,3358.4244907407,1,2,0 +libpeas,0.3954296568,0.983891257,0.1132110786,https://salsa.debian.org/gnome-team/libpeas, https://gitlab.gnome.org/GNOME/libpeas.git,5163.8972569445,118,143,0 +libperinci-sub-normalize-perl,-2.9327731106,-0.9162267093,-3.3201523401,https://salsa.debian.org/perl-team/modules/packages/libperinci-sub-normalize-perl, https://github.com/perlancar/perl-Perinci-Sub-Normalize.git,3147.5333564815,0,11,0 +libperlx-assert-perl,-1.0193446605,1.5425032533,-1.8362395319,https://salsa.debian.org/perl-team/modules/packages/libperlx-assert-perl, https://github.com/tobyink/p5-perlx-assert,1111.6440162037,0,1,0 +libperlx-define-perl,-2.1678337344,0.0459215725,-2.6131874891,https://salsa.debian.org/perl-team/modules/packages/libperlx-define-perl, https://github.com/tobyink/p5-perlx-define,0.0109259259,0,1,0 +libpgobject-type-datetime-perl,-1.4815397898,0.6709430232,-1.9159731716,https://salsa.debian.org/perl-team/modules/packages/libpgobject-type-datetime-perl, https://github.com/ledgersmb/PGObject-Type-DateTime.git,3652.6989467593,0,8,0 +libpgobject-util-dbadmin-perl,-1.5448908629,0.6014090328,-1.9825388902,https://salsa.debian.org/perl-team/modules/packages/libpgobject-util-dbadmin-perl, https://github.com/ledgersmb/PGObject-Util-DBAdmin.git,2615.9496412037,0,5,0 +libpgp-sign-perl,-0.5037910117,2.2440221924,-1.3324653392,https://salsa.debian.org/rra/libpgp-sign-perl, https://github.com/rra/pgp-sign,2555.0956134259,1,5,0 +libpgplot-perl,-0.1986814175,1.8032644315,-0.9289181032,https://salsa.debian.org/perl-team/modules/packages/libpgplot-perl, https://github.com/PDLPorters/perl5-PGPLOT.git,2564.25125,4,7,0 +libphp-swiftmailer,0.2614102335,3.2759176729,-0.6790628786,https://salsa.debian.org/php-team/pear/php-swiftmailer, https://github.com/swiftmailer/swiftmailer,5008.1976851852,58,138,0 +libpipeline,0.2968633234,1.6910707614,0.0048766495,https://salsa.debian.org/debian/libpipeline, https://gitlab.com/libpipeline/libpipeline.git,5772.9785532407,5,1,0 +libplack-middleware-csrfblock-perl,-2.8898967554,-0.7198364868,-3.3240833199,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-csrfblock-perl, https://github.com/mattp-/Plack-Middleware-CSRFBlock,1436.9725347222,1,7,0 +libplack-middleware-deflater-perl,-0.8686046005,1.4026303206,-1.3409550295,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl, https://github.com/miyagawa/Plack-Middleware-Deflater.git,4308.6622222222,0,5,0 +libplack-middleware-file-sass-perl,-3.742621833,-1.2109466542,-4.3202138211,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-file-sass-perl, https://github.com/miyagawa/Plack-Middleware-File-Sass.git,372.7359490741,0,1,0 +libplack-test-anyevent-perl,-2.2481916187,0.456054425,-2.955500627,https://salsa.debian.org/perl-team/modules/packages/libplack-test-anyevent-perl, https://github.com/hoelzro/plack-test-anyevent.git,2226.7020138889,0,6,0 +libplist,0.2890151668,0.7751330361,0.068106781,https://salsa.debian.org/imobiledevice-team/libplist, https://github.com/libimobiledevice/libplist.git,5614.0678125,41,20,0 +libpng1.6,0.1677990695,0.4257948453,0.0473446327,https://salsa.debian.org/debian/libpng1.6, https://github.com/glennrp/libpng,5354.1097106482,66,26,0 +libpod-2-docbook-perl,-2.1858439437,0.1225281674,-2.6170683957,https://salsa.debian.org/perl-team/modules/packages/libpod-2-docbook-perl, https://github.com/jozef/pod-2-docbook,1292.6652546296,0,6,0 +libpod-webserver-perl,-0.4204997081,2.3714699089,-1.5368509522,https://github.com/mogaal/libpod-webserver-perl,https://github.com/mogaal/libpod-webserver-perl,801.0357291667,1,1,0 +libpod-wordlist-hanekomu-perl,-2.3524762868,-0.0387599898,-2.7860641364,https://salsa.debian.org/perl-team/modules/packages/libpod-wordlist-hanekomu-perl, https://github.com/dagolden/Pod-Wordlist-hanekomu,1571.1035763889,0,3,0 +libpoe-component-client-http-perl,-1.0501503685,-0.2644618645,-1.3283877911,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-http-perl, https://github.com/rcaputo/poe-component-client-http,2297.0143402778,1,4,0 +libpoe-component-client-ident-perl,-2.7407891821,-1.3969533145,-3.0142475956,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-ident-perl, https://github.com/bingos/poe-component-client-ident.git,49.7081481481,0,1,0 +libpoe-component-client-keepalive-perl,-0.9123072197,1.3895866184,-1.3489172881,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-keepalive-perl, https://github.com/rcaputo/poe-component-client-keepalive.git,2357.5085300926,2,4,0 +libpoe-component-server-jsonrpc-perl,-1.8818403552,0.6269111718,-2.4592332399,https://salsa.debian.org/debian/libpoe-component-server-jsonrpc-perl, https://gitlab.fusiondirectory.org/argonaut/libpoe-component-server-jsonrpc,1087.2308449074,0,6,0 +libpoe-filter-ircd-perl,-0.3745579428,1.9358389215,-0.8315150468,https://salsa.debian.org/perl-team/modules/packages/libpoe-filter-ircd-perl, https://github.com/bingos/poe-filter-ircd.git,1552.6868865741,0,4,0 +libpoe-loop-tk-perl,-0.195847078,2.023755452,-0.7553813013,https://salsa.debian.org/perl-team/modules/packages/libpoe-loop-tk-perl, https://github.com/rcaputo/poe-loop-tk,2011.4116435185,0,7,0 +libprobe-perl-perl,-0.1208694783,2.6826431693,-0.7468528277,https://salsa.debian.org/perl-team/modules/packages/libprobe-perl-perl, https://github.com/kenahoo/Probe-Perl,112.0281712963,0,2,0 +libproc-processtable-perl,0.037499403,0.4824843529,-0.0771518619,https://salsa.debian.org/perl-team/modules/packages/libproc-processtable-perl, https://github.com/jwbargsten/perl-proc-processtable,3896.7371180556,1,25,0 +libpsl,0.2948361618,1.0016980578,0.0400725674,https://salsa.debian.org/debian/libpsl, https://github.com/rockdaboot/libpsl.git,3466.4462268519,10,37,0 +libpuzzle,-0.6680140267,0.6529557031,-1.1243331237,https://salsa.debian.org/debian-phototools-team/libpuzzle, https://github.com/jedisct1/libpuzzle,2324.9386458333,1,8,0 +libpwquality,0.5103514314,1.8778785061,0.0684762008,https://salsa.debian.org/gnome-team/libpwquality, https://github.com/libpwquality/libpwquality.git,4429.9063773148,51,15,0 +libqaccessibilityclient,0.5676194,2.5776791184,-0.0264868674,https://salsa.debian.org/qt-kde-team/extras/libqaccessibilityclient, https://invent.kde.org/libraries/libqaccessibilityclient.git,4267.1500810185,2,25,0 +libqb,0.4165321199,1.349741476,0.0049237569,https://salsa.debian.org/ha-team/libqb, https://github.com/ClusterLabs/libqb,5002.3720138889,27,39,2 +libqcow,0.4345572635,3.1501552197,-0.2914212024,https://salsa.debian.org/pkg-security-team/libqcow, https://github.com/libyal/libqcow.git,3715.7671527778,0,1,0 +libqmi,0.6847009484,2.0159053506,0.1701587603,https://salsa.debian.org/DebianOnMobile-team/libqmi, https://gitlab.freedesktop.org/mobile-broadband/libqmi.git,4537.3937037037,48,38,0 +libqtxdg,-0.0973226644,0.2109424972,-0.1385732058,https://salsa.debian.org/lxqt-team/libqtxdg, https://github.com/lxqt/libqtxdg.git,4353.7405787037,12,29,0 +libquartz2-java,-2.4390684886,-0.6103905039,-2.9593519359,https://salsa.debian.org/java-team/libquartz2-java, https://github.com/quartz-scheduler/quartz,5552.9042939815,23,73,2 +libquazip,0.2146838323,0.9284953049,-0.0650262981,https://salsa.debian.org/debian/libquazip, https://github.com/stachenov/quazip.git,5295.4944097222,19,25,0 +librabbitmq,0.5937450624,2.3238703606,-0.0094513193,https://salsa.debian.org/debian/librabbitmq, https://github.com/alanxz/rabbitmq-c.git,5294.5360185185,63,49,0 +librarian-puppet,-1.4485786469,-0.1256063685,-1.863254572,https://salsa.debian.org/ruby-team/librarian-puppet, https://github.com/voxpupuli/librarian-puppet.git,4114.1364930556,12,65,0 +libratbag,-0.0056141039,1.7813257105,-0.5525817965,https://salsa.debian.org/debian/libratbag, https://github.com/libratbag/libratbag.git,3025.6003935185,108,44,0 +librdf-acl-perl,-2.0654979491,1.2809082376,-3.0733910723,https://salsa.debian.org/perl-team/modules/packages/librdf-acl-perl, https://github.com/tobyink/p5-rdf-acl,1688.9962731482,0,1,0 +librdf-aref-perl,-1.6321655974,0.5126731294,-2.0632435211,https://salsa.debian.org/perl-team/modules/packages/librdf-aref-perl, https://github.com/nichtich/RDF-aREF.git,2565.8667708333,2,8,0 +librdf-generator-void-perl,-1.6331954297,0.6259569496,-2.0634280229,https://salsa.debian.org/perl-team/modules/packages/librdf-generator-void-perl, https://github.com/kjetilk/RDF-Generator-Void.git,1725.5093171296,0,6,0 +librdf-helper-properties-perl,-1.4850797677,1.0749945226,-2.1065327245,https://salsa.debian.org/perl-team/modules/packages/librdf-helper-properties-perl, https://github.com/kjetilk/RDF-Helper-Properties.git,2324.5435416667,0,5,0 +librdf-linkeddata-perl,-1.5297189997,-0.0678424369,-2.0840021227,https://salsa.debian.org/perl-team/modules/packages/librdf-linkeddata-perl, https://github.com/kjetilk/RDF-LinkedData.git,4060.5603472222,0,7,0 +librdf-ns-curated-perl,-1.1846297848,1.0171931504,-1.6213429531,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-curated-perl, https://github.com/kjetilk/p5-rdf-ns-curated.git,2949.064224537,0,4,0 +librdf-ns-perl,-0.5250160099,1.01221794,-0.8720836033,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-perl, https://github.com/nichtich/RDF-NS.git,4253.4168518519,2,5,0 +librdf-query-client-perl,-1.1913139725,0.7502046078,-1.7548289358,https://salsa.debian.org/perl-team/modules/packages/librdf-query-client-perl, https://github.com/tobyink/p5-rdf-query-client,1767.4564930556,0,1,0 +librdf-query-perl,-0.4220129866,2.0009521316,-1.0653129445,https://salsa.debian.org/perl-team/modules/packages/librdf-query-perl, https://github.com/kasei/perlrdf.git,4701.6219560185,1,41,0 +librdf-trine-perl,-0.4311398511,0.7920934843,-0.7842158211,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-perl, https://github.com/kasei/perlrdf.git,4701.6219560185,1,41,0 +librdf-trine-serializer-rdfa-perl,-1.5746720693,1.2254168747,-2.2863256017,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-serializer-rdfa-perl, https://github.com/kjetilk/p5-rdf-trine-serializer-rdfa.git,1268.0197569445,0,1,0 +librdf-trinex-functions-perl,-0.3154319143,2.3378879966,-0.9704018341,https://salsa.debian.org/perl-team/modules/packages/librdf-trinex-functions-perl, https://github.com/tobyink/p5-rdf-trinex-functions,833.4788657407,0,1,0 +librdf-vcard-perl,-1.1506651259,1.2441236911,-1.5912534228,https://salsa.debian.org/perl-team/modules/packages/librdf-vcard-perl, https://github.com/tobyink/p5-rdf-vcard,1350.944537037,0,1,0 +libre-engine-re2-perl,0.0664274847,1.5519335001,-0.198667675,https://salsa.debian.org/perl-team/modules/packages/libre-engine-re2-perl, https://github.com/dgl/re-engine-RE2.git,4711.6157638889,4,2,0 +libregexp-assemble-perl,0.1956519681,1.1975556345,-0.0657051088,https://salsa.debian.org/perl-team/modules/packages/libregexp-assemble-perl, https://github.com/ronsavage/Regexp-Assemble.git,3022.0175347222,1,7,0 +libregexp-common-perl,0.425402964,2.6846898207,-0.0434398169,https://salsa.debian.org/perl-team/modules/packages/libregexp-common-perl, https://github.com/Abigail/Regexp--Common.git,2712.1816087963,4,1,0 +libregexp-pattern-license-perl,0.2998658291,1.9423009036,-0.0934250453,https://salsa.debian.org/perl-team/modules/packages/libregexp-pattern-license-perl, https://salsa.debian.org/build-common-team/regexp-pattern-license,2183.5973958333,0,1,0 +libregf,0.4815110403,3.4273810655,-0.3192521911,https://salsa.debian.org/pkg-security-team/libregf, https://github.com/libyal/libregf,3351.514375,0,1,0 +librelp,0.3314612484,2.0471916806,-0.1848777948,https://salsa.debian.org/debian/librelp, https://github.com/rsyslog/librelp,5591.5436921296,9,32,1 +libreswan,-0.4685289799,0.1790588169,-0.7335988012,https://salsa.debian.org/debian/libreswan, https://github.com/libreswan/libreswan.git,5780.1473263889,145,62,0 +librose-db-object-perl,-0.5901790776,0.7613087197,-0.8838877593,https://salsa.debian.org/perl-team/modules/packages/librose-db-object-perl, https://github.com/siracusa/rose.git,5666.5254166667,1,13,0 +librouteros,-2.1630152963,0.4224403366,-2.7585046957,https://salsa.debian.org/python-team/packages/librouteros, https://github.com/luqasz/librouteros,4024.6152083333,4,7,3 +librsvg,1.7043048426,2.426064564,1.1970667154,https://salsa.debian.org/gnome-team/librsvg, https://gitlab.gnome.org/GNOME/librsvg.git,5765.8452199074,76,125,0 +librsync,1.0536449912,2.2531278593,0.4172888316,https://salsa.debian.org/wrar/librsync, https://github.com/librsync/librsync,3224.9778472222,6,27,0 +libsamplerate,1.1293768908,2.270076752,0.5189548422,https://salsa.debian.org/multimedia-team/libsamplerate, https://github.com/libsndfile/libsamplerate,5747.2226851852,38,5,1 +libsass-python,-0.2696522517,0.8271709552,-0.6027229138,https://salsa.debian.org/debian/libsass-python, https://github.com/dahlia/libsass-python.git,4268.9750925926,7,93,0 +libsavitar,-0.0624513388,1.310740378,-0.382634692,https://salsa.debian.org/3dprinting-team/libsavitar, https://github.com/Ultimaker/libSavitar.git,2417.8881481482,12,19,0 +libsbsms,0.1678753971,1.6421405226,-0.1313541464,https://salsa.debian.org/multimedia-team/libsbsms, https://github.com/claytonotey/libsbsms.git,571.9734837963,2,6,0 +libscalar-does-perl,-0.5366651555,1.2277898949,-0.9504713641,https://salsa.debian.org/perl-team/modules/packages/libscalar-does-perl, https://github.com/tobyink/p5-scalar-does,1614.181099537,0,3,0 +libscca,0.4636827697,3.5204192618,-0.331124383,https://salsa.debian.org/pkg-security-team/libscca, https://github.com/libyal/libscca,3348.012650463,1,1,0 +libsdl2-image,0.3933982404,1.8313487242,-0.0473641176,https://salsa.debian.org/sdl-team/libsdl2-image, https://github.com/libsdl-org/SDL_image.git,5518.7433680556,29,27,0 +libsdl2-mixer,0.211946374,1.2764626883,-0.096135639,https://salsa.debian.org/sdl-team/libsdl2-mixer, https://github.com/libsdl-org/SDL_mixer.git,5768.7197916667,38,29,0 +libsdl2-net,0.2879256018,2.7048282977,-0.176557932,https://salsa.debian.org/sdl-team/libsdl2-net, https://github.com/libsdl-org/SDL_net.git,5565.0336111111,10,12,0 +libsdl2-ttf,0.6692699882,2.7646444866,0.0097927625,https://salsa.debian.org/sdl-team/libsdl2-ttf, https://github.com/libsdl-org/SDL_ttf.git,5447.6933912037,17,21,0 +libseccomp,0.1381369347,0.416274215,0.0228352343,https://salsa.debian.org/debian/libseccomp, https://github.com/seccomp/libseccomp,4323.2139467593,71,4,2 +libsecret,1.2934121011,2.9900783517,0.5184513322,https://salsa.debian.org/gnome-team/libsecret, https://gitlab.gnome.org/GNOME/libsecret.git,4508.8847800926,81,101,0 +libserial,-1.1010178283,1.6867209629,-1.6981926712,https://salsa.debian.org/debian/libserial, https://github.com/crayzeewulf/libserial.git,5587.6811226852,3,17,0 +libsharyanto-utils-perl,-2.3441465625,-0.0852227274,-2.7855609174,https://salsa.debian.org/perl-team/modules/packages/libsharyanto-utils-perl, https://github.com/perlancar/perl-SHARYANTO-Utils.git,2945.5977546296,0,13,0 +libsigc++-2.0,1.039682316,2.0456143837,0.5117249183,https://salsa.debian.org/gnome-team/libsigcplusplus, https://github.com/libsigcplusplus/libsigcplusplus.git,5770.9372800926,22,19,0 +libsignon-glib,0.1076048823,1.8657536131,-0.3348568082,https://salsa.debian.org/qt-kde-team/3rdparty/libsignon-glib, https://gitlab.com/accounts-sso/libsignon-glib.git,4303.8991666667,4,20,0 +libsimpleini,-3.1256993279,-0.5243099389,-3.727940764,https://salsa.debian.org/yangfl-guest/simpleini, https://github.com/brofield/simpleini,5767.1290509259,12,11,0 +libsis-jhdf5-java,-0.4943134345,2.187668929,-1.4372563976,https://salsa.debian.org/med-team/libsis-jhdf5-java, https://sissource.ethz.ch/sispub/jhdf5.git,1609.4798263889,0,12,0 +libsmali-java,0.051369828,1.8568435409,-0.3306485602,https://salsa.debian.org/android-tools-team/libsmali-java, https://github.com/JesusFreke/smali,4709.8444212963,28,24,0 +libsmbios,1.0795955753,2.0619849801,0.5382113522,https://salsa.debian.org/efi-team/libsmbios, https://github.com/dell/libsmbios,5712.8510532408,17,21,3 +libsmdev,0.4901912636,3.5473022844,-0.3181659308,https://salsa.debian.org/pkg-security-team/libsmdev, https://github.com/libyal/libsmdev,2801.6257060185,0,1,0 +libsml,-2.5583752988,0.0607386648,-3.2378106609,https://github.com/volkszaehler/libsml/tree/debian,https://github.com/volkszaehler/libsml,4561.3065740741,12,15,0 +libsmraw,0.4741059034,3.3966321112,-0.3210256742,https://salsa.debian.org/pkg-security-team/libsmraw, https://github.com/libyal/libsmraw.git,2800.5750925926,0,1,0 +libsndfile,0.6871224162,1.1742536638,0.365871003,https://salsa.debian.org/multimedia-team/libsndfile, https://github.com/erikd/libsndfile,5766.2370486111,102,11,2 +libsnmp-extension-passpersist-perl,0.1226846415,3.0805333609,-0.7398128832,https://salsa.debian.org/perl-team/modules/packages/libsnmp-extension-passpersist-perl, https://github.com/maddingue/SNMP-Extension-PassPersist.git,1526.080787037,0,1,0 +libsoap-wsdl-perl,0.2494473126,2.2213700721,-0.2151765381,https://salsa.debian.org/perl-team/modules/packages/libsoap-wsdl-perl, https://github.com/scrottie/SOAP-WSDL,3956.8486342593,2,7,0 +libsodium,0.7652440851,2.6480355078,0.1255307975,https://github.com/gcsideal/debian-libsodium,https://github.com/gcsideal/debian-libsodium,2198.6639814815,0,2,0 +libsoftware-license-perl,0.1133859163,1.2220789604,-0.0630717225,https://salsa.debian.org/perl-team/modules/packages/libsoftware-license-perl, https://github.com/Perl-Toolchain-Gang/Software-License.git,5727.0288657407,23,19,0 +libsolv,-0.0271499376,1.6731927996,-0.7108202925,https://salsa.debian.org/debian/libsolv/, https://github.com/openSUSE/libsolv,5784.8469444445,12,80,1 +libsort-naturally-perl,0.7344792523,3.7354162178,-0.0108935716,https://salsa.debian.org/perl-team/modules/packages/libsort-naturally-perl, https://github.com/bingos/sort-naturally.git,681.4402893519,0,3,0 +libsoundio,0.7102350676,3.6650448533,-0.2050801471,https://salsa.debian.org/debian-hamradio-team/libsoundio, https://github.com/andrewrk/libsoundio.git,3080.119837963,16,23,0 +libsoup2.4,2.8291814469,4.403111612,1.9461999722,https://salsa.debian.org/gnome-team/libsoup, https://gitlab.gnome.org/GNOME/libsoup,5770.8128240741,187,229,0 +libspiro,0.131579132,1.3992780483,-0.1906866674,https://salsa.debian.org/fonts-team/libspiro, https://github.com/fontforge/libspiro.git,4925.1799537037,1,10,0 +libspreadsheet-parseexcel-perl,0.0390044504,0.8094712372,-0.1827268471,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-parseexcel-perl, https://github.com/runrig/spreadsheet-parseexcel.git,1902.0376851852,1,6,0 +libspreadsheet-writeexcel-perl,-0.0847103732,0.3100125622,-0.1871342632,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-writeexcel-perl, https://github.com/jmcnamara/spreadsheet-writeexcel,5025.7453819445,1,5,0 +libssh2,0.4762440748,1.2465942901,0.1442247779,https://salsa.debian.org/debian/libssh2, https://github.com/libssh2/libssh2,5758.7769328704,166,33,1 +libstatgen,-0.975335451,0.4820429389,-1.3209080132,https://salsa.debian.org/med-team/libstatgen, https://github.com/statgen/libStatGen,3791.9891319445,4,17,0 +libstatistics-basic-perl,-0.339509548,1.3960758717,-0.6303620815,https://salsa.debian.org/perl-team/modules/packages/libstatistics-basic-perl, https://github.com/jettero/statistics--basic,2331.8967939815,1,4,0 +libstb,0.0260953725,0.614834907,-0.1332118971,https://salsa.debian.org/yangfl-guest/stb, https://github.com/nothings/stb,3489.7656944445,45,185,0 +libstring-diff-perl,-1.3455951871,1.0906833724,-1.8998963909,https://salsa.debian.org/perl-team/modules/packages/libstring-diff-perl, https://github.com/yappo/p5-String-Diff.git,2495.2807060185,0,3,0 +libstring-mkpasswd-perl,-0.4901797022,1.4058339509,-0.8573438246,https://salsa.debian.org/perl-team/modules/packages/libstring-mkpasswd-perl, https://github.com/sirhc/string-mkpasswd.git,1997.6768055556,0,4,0 +libswitch-perl,1.122027291,3.2876087875,0.2909942207,https://salsa.debian.org/perl-team/modules/packages/libswitch-perl, https://github.com/chorny/Switch.git,4065.2442592593,3,4,0 +libsys-filesystem-perl,-1.1120417075,0.3703683235,-1.5493480129,https://salsa.debian.org/perl-team/modules/packages/libsys-filesystem-perl, https://github.com/rehsack/Sys-Filesystem,4021.0829050926,2,3,0 +libsys-info-base-perl,-1.1657354635,0.2469375973,-1.4547896136,https://salsa.debian.org/perl-team/modules/packages/libsys-info-base-perl, https://github.com/burak/CPAN-Sys-Info-Base.git,4472.8146643519,0,2,0 +libtabixpp,-0.5609418279,1.5681864899,-0.9903141087,https://salsa.debian.org/med-team/libtabixpp, https://github.com/ekg/tabixpp.git,4263.7660069445,1,12,0 +libtasn1-6,0.0846618228,0.3188090123,0.005993287,https://salsa.debian.org/gnutls-team/libtasn1, https://gitlab.com/gnutls/libtasn1,5754.7146180556,14,14,0 +libteam,0.3146115396,1.3119743537,0.0101461881,https://salsa.debian.org/debian/libteam, https://github.com/jpirko/libteam,4358.8268634259,40,5,0 +libterm-readkey-perl,0.6441757313,1.6725134495,0.1757431378,https://salsa.debian.org/perl-team/modules/packages/libterm-readkey-perl, https://github.com/jonathanstowe/TermReadKey.git,4734.9570717593,8,17,0 +libterm-table-perl,-0.9505327372,1.4037764096,-1.390637121,https://salsa.debian.org/perl-team/modules/packages/libterm-table-perl, https://github.com/exodist/Term-Table.git,2498.9135185185,1,5,0 +libterm-ui-perl,0.3980651932,2.5988929786,-0.0533124701,https://salsa.debian.org/perl-team/modules/packages/libterm-ui-perl, https://github.com/jib/term-ui.git,4487.1224074074,4,10,0 +libtest-cmd-perl,-1.4068778673,-0.2437675076,-1.6282879603,https://salsa.debian.org/perl-team/modules/packages/libtest-cmd-perl, https://github.com/neilb/Test-Cmd.git,4572.2283101852,1,7,0 +libtest-compile-perl,-0.1757790814,2.2630567936,-0.8030738551,https://salsa.debian.org/perl-team/modules/packages/libtest-compile-perl, https://github.com/egiles/test-compile,5567.3756018519,2,14,0 +libtest-corpus-audio-mpd-perl,-2.7413583357,-1.3992673585,-3.0159490653,https://salsa.debian.org/perl-team/modules/packages/libtest-corpus-audio-mpd-perl, http://github.com/jquelin/test-corpus-audio-mpd,904.9165856481,0,2,0 +libtest-database-perl,-1.833809135,0.6133274632,-2.3400867988,https://salsa.debian.org/perl-team/modules/packages/libtest-database-perl, https://github.com/book/Test-Database.git,2702.2549537037,3,2,0 +libtest-file-contents-perl,-1.1809622978,0.4343778683,-1.4826469865,https://salsa.debian.org/perl-team/modules/packages/libtest-file-contents-perl, https://github.com/ap/Test-File-Contents.git,4644.3475115741,2,4,0 +libtest-harness-perl,-1.5063742807,-0.2541479391,-1.8715013961,https://salsa.debian.org/perl-team/modules/packages/libtest-harness-perl, https://github.com/Perl-Toolchain-Gang/Test-Harness.git,5734.1103356482,27,47,0 +libtest-perl-critic-perl,0.2642060273,2.9016834456,-0.5237825629,https://salsa.debian.org/perl-team/modules/packages/libtest-perl-critic-perl, https://github.com/Perl-Critic/Test-Perl-Critic.git,4634.7458449074,0,9,0 +libtest-pod-coverage-perl,-0.201777392,1.0831475883,-0.4327477008,https://salsa.debian.org/perl-team/modules/packages/libtest-pod-coverage-perl, https://github.com/neilbowers/Test-Pod-Coverage,1677.1204166667,1,2,0 +libtest-prereq-perl,-1.8896057083,-0.3676533696,-2.1546117193,https://salsa.debian.org/perl-team/modules/packages/libtest-prereq-perl, https://github.com/briandfoy/test-prereq.git,2918.7659375,4,8,0 +libtest-rdf-perl,-1.5273740593,1.1507063443,-2.1229709088,https://salsa.debian.org/perl-team/modules/packages/libtest-rdf-perl, https://github.com/kjetilk/Test-RDF.git,2744.0844328704,0,3,0 +libtest-redisserver-perl,-2.9408349327,-0.0880954323,-3.6685151023,https://salsa.debian.org/perl-team/modules/packages/libtest-redisserver-perl, https://github.com/typester/Test-RedisServer.git,3497.317025463,0,12,0 +libtest-strict-perl,0.0413930215,1.9710003237,-0.4917254856,https://salsa.debian.org/perl-team/modules/packages/libtest-strict-perl, https://github.com/manwar/Test-Strict.git,2362.5205092593,1,15,0 +libtest-xpath-perl,-1.6970041276,0.5827254278,-2.146747561,https://salsa.debian.org/perl-team/modules/packages/libtest-xpath-perl, https://github.com/manwar/Test-XPath.git,4673.8964699074,1,7,0 +libtext-csv-xs-perl,0.3210443384,2.3035648179,-0.0928202393,https://salsa.debian.org/perl-team/modules/packages/libtext-csv-xs-perl, https://github.com/Tux/Text-CSV_XS.git,5755.1094907407,9,17,0 +libtext-diff-perl,0.3186250385,2.4917818706,-0.1685547916,https://salsa.debian.org/perl-team/modules/packages/libtext-diff-perl, https://github.com/neilb/Text-Diff,2314.1856018519,0,6,0 +libtext-findindent-perl,-0.5555131835,1.6711252899,-1.0083252674,https://salsa.debian.org/perl-team/modules/packages/libtext-findindent-perl, https://github.com/tsee/p5-Text-FindIndent.git,3337.1243287037,0,6,0 +libtext-markdown-perl,0.9343197619,4.332977055,-0.1666854375,https://salsa.debian.org/perl-team/modules/packages/libtext-markdown-perl, https://github.com/bobtfish/text-markdown.git,2874.5088194445,0,12,0 +libtext-multimarkdown-perl,0.2517262893,2.9301320017,-0.5540498908,https://salsa.debian.org/perl-team/modules/packages/libtext-multimarkdown-perl, https://github.com/bobtfish/text-multimarkdown.git,2348.7609953704,0,10,0 +libtext-soundex-perl,0.8131696461,4.2054082056,0.0081736989,https://salsa.debian.org/perl-team/modules/packages/libtext-soundex-perl, https://github.com/rjbs/Text-Soundex,1152.2136342593,3,2,0 +libtext-sprintfn-perl,-0.8179589658,2.1500712495,-1.6069534948,https://salsa.debian.org/perl-team/modules/packages/libtext-sprintfn-perl, https://github.com/perlancar/perl-Text-sprintfn,2949.61625,0,11,0 +libtheora,0.6390972411,1.2274553273,0.3059636035,https://salsa.debian.org/multimedia-team/libtheora, https://gitlab.xiph.org/xiph/theora.git,4626.1171180556,6,25,0 +libthread-pool,-0.5406636263,1.505263536,-1.0728830879,https://salsa.debian.org/med-team/libthread-pool, https://github.com/rvaser/thread_pool,1629.2300810185,1,4,0 +libthrust,0.1054594715,1.0328346301,-0.1647955889,https://salsa.debian.org/nvidia-team/libthrust, https://github.com/NVIDIA/thrust,5364.755462963,64,84,3 +libthumbor,-3.097994256,-0.4370183469,-3.7171702145,https://salsa.debian.org/python-team/packages/libthumbor, https://github.com/thumbor/libthumbor,4029.2128125,6,18,0 +libtie-ixhash-perl,0.7308735457,3.2747506675,0.0615000078,https://salsa.debian.org/perl-team/modules/packages/libtie-ixhash-perl, https://github.com/chorny/Tie-IxHash.git,1314.8113773148,1,4,0 +libtins,-0.250313744,1.9733004759,-0.9343050681,https://salsa.debian.org/debian/libtins, https://github.com/mfontanini/libtins.git,4422.9672569445,38,54,0 +libtomcrypt,0.4810897022,1.4760954396,0.0746011362,https://salsa.debian.org/debian/libtomcrypt, https://github.com/libtom/libtomcrypt,4891.575775463,34,37,2 +libtools-logging-clojure,-0.0293820524,2.7335220749,-0.6673515718,https://salsa.debian.org/clojure-team/libtools-logging-clojure, https://github.com/clojure/tools.logging.git,4541.1196180556,3,16,0 +libtorrent,0.6054706323,1.7956381592,0.0408663558,https://salsa.debian.org/debian/libtorrent, https://github.com/rakshasa/libtorrent.git,5501.292025463,10,26,0 +libtoxcore,0.3201115148,3.0313656731,-0.386100724,https://salsa.debian.org/yangfl-guest/c-toxcore, https://github.com/TokTok/c-toxcore,3824.9777662037,28,278,6 +libtypes-datetime-perl,-1.2224253104,1.1350772403,-1.7134370382,https://salsa.debian.org/perl-team/modules/packages/libtypes-datetime-perl, https://github.com/tobyink/p5-types-datetime,1190.8059837963,1,4,0 +libunibreak,0.3910707314,2.538413373,-0.1234807159,https://salsa.debian.org/qt-kde-team/3rdparty/libunibreak, https://github.com/adah1972/libunibreak.git,5748.0207407407,6,11,0 +libuninameslist,0.4875132738,2.4863001693,-0.0941545187,https://salsa.debian.org/fonts-team/libuninameslist, https://github.com/fontforge/libuninameslist,5640.1865740741,5,13,0 +liburcu,0.1851963878,0.7888323935,-0.0767619136,https://salsa.debian.org/debian/liburcu, git://git.lttng.org/userspace-rcu.git,5386.5968865741,69,5,0 +liburi-perl,0.1589529919,0.4832194601,0.0298109637,https://salsa.debian.org/perl-team/modules/packages/liburi-perl, https://github.com/libwww-perl/URI.git,5620.9042939815,27,14,0 +libusbauth-configparser,-0.6014875746,1.9320845325,-1.2251803558,https://salsa.debian.org/debian/libusbauth-configparser, https://github.com/kochstefan/usbauth-all.git,2917.2837384259,3,5,0 +libusbmuxd,0.7289206284,2.7086807014,0.1072945241,https://salsa.debian.org/imobiledevice-team/libusbmuxd, https://github.com/libimobiledevice/libusbmuxd.git,3636.013275463,9,9,0 +libva,0.049494069,0.1700013309,-0.0024932217,https://salsa.debian.org/multimedia-team/libva, https://github.com/intel/libva.git,5773.8606712963,171,41,0 +libvcs-lite-perl,-0.8542886427,1.4604399952,-1.3294177339,https://salsa.debian.org/perl-team/modules/packages/libvcs-lite-perl, http://github.com/barbie/vcs-lite,1975.3471527778,0,1,0 +libvdpau,0.6183576176,1.6606798388,0.1692974262,https://salsa.debian.org/nvidia-team/libvdpau, https://gitlab.freedesktop.org/vdpau/libvdpau,4888.2156018519,16,6,0 +libverto,2.4189536777,5.947206779,1.0158918925,https://salsa.debian.org/debian/libverto, https://github.com/latchset/libverto,3721.9244907407,8,2,0 +libvhdi,0.6481021454,3.1352052875,-0.1671545473,https://salsa.debian.org/pkg-security-team/libvhdi, https://github.com/libyal/libvhdi.git,3717.6224074074,1,1,0 +libvirt-glib,0.5155860106,1.7645730374,0.0491222506,https://salsa.debian.org/libvirt-team/libvirt-glib, https://gitlab.com/libvirt/libvirt-glib.git,5518.0346527778,28,20,0 +libvirt-python,0.0558059504,0.4540581889,-0.0847307319,https://salsa.debian.org/libvirt-team/libvirt-python, https://gitlab.com/libvirt/libvirt-python.git,5762.9990393519,53,42,0 +libvisual,0.4247051131,1.1934225934,0.0990434826,https://salsa.debian.org/debian/libvisual, https://github.com/Libvisual/libvisual.git,5044.5234027778,19,14,0 +libvisual-plugins,1.1993614678,2.9333115194,0.4430271535,https://salsa.debian.org/debian/libvisual-plugins, https://github.com/Libvisual/libvisual,5044.5234027778,19,14,4 +libvitacilina-perl,-3.6021180136,-0.769754564,-4.2924781327,https://salsa.debian.org/perl-team/modules/packages/libvitacilina-perl, https://github.com/damog/vitacilina.git,2796.7499884259,1,5,0 +libvmdk,0.9664788559,4.388428618,-0.090886102,https://salsa.debian.org/pkg-security-team/libvmdk, https://github.com/libyal/libvmdk.git,2936.766087963,2,1,0 +libvmime,-0.5924452668,0.0893095846,-0.9239677763,https://salsa.debian.org/giraffe-team/libvmime, https://github.com/kisli/vmime.git,5686.9710532407,3,26,0 +libvorbis,1.1872645967,1.8286392583,0.7557542533,https://salsa.debian.org/multimedia-team/libvorbis, https://gitlab.xiph.org/xiph/vorbis.git,4789.252337963,17,23,0 +libvshadow,0.274303475,2.6530374077,-0.3512652491,https://salsa.debian.org/pkg-security-team/libvshadow, https://github.com/libyal/libvshadow.git,3860.9818171296,1,1,0 +libvslvm,0.4972132182,3.5752748687,-0.3065187033,https://salsa.debian.org/pkg-security-team/libvslvm, https://github.com/libyal/libvslvm,3338.937025463,0,1,0 +libweb-id-perl,-1.7090564746,0.8941936847,-2.3119612886,https://salsa.debian.org/perl-team/modules/packages/libweb-id-perl, https://github.com/tobyink/p5-web-id,743.3495023148,0,1,0 +libwfut,-0.3722932827,1.182465359,-1.0373316516,https://salsa.debian.org/games-team/libwfut, https://github.com/worldforge/libwfut,5568.6978240741,0,9,0 +libwmf,1.6375319104,2.6900330531,0.986051197,https://salsa.debian.org/yangfl-guest/libwmf, https://github.com/caolanm/libwmf,1783.8275231482,5,6,0 +libwnck,0.9714756904,1.9930221789,0.4055724847,https://salsa.debian.org/debian/libwnck, https://gitlab.gnome.org/GNOME/libwnck,5770.0778703704,90,187,0 +libwnck3,0.2474731459,1.1371603949,-0.0012270617,https://salsa.debian.org/gnome-team/libwnck3, https://gitlab.gnome.org/GNOME/libwnck.git,5770.0778703704,90,187,0 +libwww-facebook-api-perl,-1.3338913453,0.3424607166,-1.6281493484,https://salsa.debian.org/perl-team/modules/packages/libwww-facebook-api-perl, https://github.com/unobe/perl-wfa.git,3078.4910185185,2,7,0 +libwww-finger-perl,-1.969235679,0.3956899207,-2.5687445665,https://salsa.debian.org/perl-team/modules/packages/libwww-finger-perl, https://github.com/tobyink/p5-www-finger,1316.1418171296,0,1,0 +libwww-google-calculator-perl,-1.995767031,-0.963482599,-2.1565335627,https://salsa.debian.org/perl-team/modules/packages/libwww-google-calculator-perl, https://github.com/typester/www-google-calculator-perl.git,8.9802893519,0,2,0 +libx86emu,0.2882621713,2.1510294765,-0.1187700994,https://salsa.debian.org/debian/libx86emu, https://github.com/wfeldt/libx86emu,5028.2515972222,1,8,0 +libxc,-0.1105162372,1.7655705991,-0.4967102346,https://salsa.debian.org/debichem-team/libxc, https://gitlab.com/libxc/libxc/tree/master,5185.326875,55,11,0 +libxcrypt,0.6294336301,1.8917972899,0.1100717419,https://salsa.debian.org/md/libxcrypt, https://github.com/besser82/libxcrypt.git,2976.0054050926,9,14,0 +libxext,0.6917161908,2.418595533,0.1173090812,https://salsa.debian.org/xorg-team/lib/libxext, https://gitlab.freedesktop.org/xorg/lib/libxext.git,5730.8336689815,17,16,0 +libxi,0.9728037384,1.9873070132,0.4489957175,https://salsa.debian.org/xorg-team/lib/libxi, https://gitlab.freedesktop.org/xorg/lib/libxi.git,5720.8112037037,30,24,0 +libxml-compile-wsdl11-perl,-1.4310286216,0.7419388273,-1.8594446745,https://salsa.debian.org/perl-team/modules/packages/libxml-compile-wsdl11-perl, https://github.com/markov2/perl5-XML-Compile-WSDL11,1204.3164351852,0,2,0 +libxml-encoding-perl,-0.7093222742,1.489807431,-1.1875178918,https://salsa.debian.org/perl-team/modules/packages/libxml-encoding-perl, https://github.com/steve-m-hay/XML-Encoding.git,2428.8622685185,1,1,0 +libxml-generator-perl,-0.4859689923,1.0279841867,-0.8301607275,https://salsa.debian.org/perl-team/modules/packages/libxml-generator-perl, https://github.com/timlegge/perl-XML-Generator,442.0406828704,0,3,0 +libxml-sax-expat-perl,0.7084412925,2.9227171248,0.0786452436,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-expat-perl, https://github.com/hoehrmann/XML-SAX-Expat,2544.4844675926,0,4,0 +libxml-sax-machines-perl,-0.9628604737,0.4253404586,-1.269754049,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-machines-perl, https://github.com/perigrin/xml-sax-machines.git,1529.9486111111,1,2,0 +libxml-sax-perl,0.996402312,2.2577312148,0.3914828238,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-perl, https://github.com/grantm/xml-sax,3966.2573726852,0,6,0 +libxml-saxon-xslt2-perl,-1.0066125051,2.2847267339,-1.8645802565,https://salsa.debian.org/perl-team/modules/packages/libxml-saxon-xslt2-perl, https://github.com/tobyink/p5-xml-saxon-xslt2,1518.5208564815,0,1,0 +libxml2,1.4548270189,1.7901458735,1.1740696506,https://salsa.debian.org/xml-sgml-team/libxml2, https://gitlab.gnome.org/gnome/libxml2,5788.1198726852,255,40,0 +libxmlb,0.6508495345,3.3286264453,-0.0130638591,https://salsa.debian.org/efi-team/libxmlb, https://github.com/hughsie/libxmlb.git,1900.0449074074,20,6,0 +libxmlbird,0.3929313241,3.1477652867,-0.4381392316,https://salsa.debian.org/fonts-team/libxmlbird, https://github.com/johanmattssonm/xmlbird.git,3048.2602777778,1,7,0 +libxrandr,0.8266438068,2.3113996007,0.2269346322,https://salsa.debian.org/xorg-team/lib/libxrandr, https://gitlab.freedesktop.org/xorg/lib/libxrandr.git,5687.6397569445,12,18,0 +libxsmm,-0.2346624326,4.5583780245,-1.7957714951,https://salsa.debian.org/science-team/libxsmm, https://github.com/libxsmm/libxsmm,2814.5005324074,23,91,3 +libxstream-java,0.3400487245,1.4508992999,-0.0600865184,https://salsa.debian.org/java-team/libxstream-java, https://github.com/x-stream/xstream.git,5706.9961921296,29,7,0 +libyami,-0.7718539127,1.4722702218,-1.2009038311,https://salsa.debian.org/multimedia-team/libyami, https://github.com/01org/libyami.git,3727.7229398148,38,42,0 +libyami-utils,-0.8339594787,1.1686919624,-1.2824389194,https://salsa.debian.org/multimedia-team/libyami-utils, https://github.com/intel/libyami-utils,3282.9452314815,13,12,0 +libyaml,0.3620248795,1.3778081124,0.0360856456,https://salsa.debian.org/debian/libyaml, https://github.com/yaml/libyaml.git,4849.8599884259,25,16,0 +libyaml-appconfig-perl,-0.2806665447,2.1538425871,-0.9966889755,https://salsa.debian.org/perl-team/modules/packages/libyaml-appconfig-perl, https://github.com/Xaerxess/YAML-AppConfig,1551.2373611111,5,2,0 +libyang,0.1283947982,3.0506607228,-0.7731088692,https://github.com/CESNET/libyang/tree/debian/master,https://github.com/CESNET/libyang,1297.9920949074,60,69,3 +libydpdict,-1.336791229,0.3110794516,-1.7407427608,https://github.com/porridge/libydpdict,https://github.com/porridge/libydpdict,5005.9569675926,1,3,0 +libzeep,-1.527909209,-0.6468594182,-1.7548572329,https://salsa.debian.org/med-team/libzeep, https://github.com/mhekkel/libzeep.git,5502.8286342593,2,5,0 +libzypp,0.6383906852,2.7336244047,-0.3749702696,https://salsa.debian.org/debian/libzypp, https://github.com/openSUSE/libzypp.git,5782.0229398148,146,51,0 +licensecheck,2.3884703234,4.2662892829,1.3837615807,https://salsa.debian.org/perl-team/modules/packages/licensecheck, https://salsa.debian.org/build-common-team/licensecheck,2569.8996527778,32,2,0 +light,0.5032985546,2.4196884631,-0.3115474994,https://salsa.debian.org/debian/light, https://github.com/haikarainen/light.git,3160.1600115741,4,28,0 +light-locker,2.0302690876,3.664096529,1.142878255,https://salsa.debian.org/xfce-extras-team/light-locker, https://github.com/the-cavalry/light-locker,4227.1496643519,82,214,2 +lightdm,2.2443975037,2.9446010571,1.7397776964,https://salsa.debian.org/xfce-extras-team/lightdm, https://github.com/canonical/lightdm.git,4834.5447222222,52,64,0 +lightdm-gtk-greeter,2.3644622851,3.6822730822,1.5738167387,https://salsa.debian.org/xfce-extras-team/lightdm-gtk-greeter, https://github.com/Xubuntu/lightdm-gtk-greeter.git,4390.5262384259,8,28,0 +lighttpd,0.3450685735,0.530238909,0.2018122306,https://salsa.debian.org/debian/lighttpd, https://git.lighttpd.net/lighttpd/lighttpd1.4.git,5785.0195833333,35,9,0 +lightyears,1.4342234885,4.3783383344,0.2667152562,https://salsa.debian.org/python-team/packages/lightyears, https://github.com/20kly/20kly.git,4073.732349537,0,3,0 +lilv,0.3731954954,1.1783141026,0.0585307699,https://salsa.debian.org/multimedia-team/lilv, https://github.com/lv2/lilv.git ,5733.8443518519,8,1,0 +limereg,0.2360714075,2.909288917,-0.7247260854,https://salsa.debian.org/science-team/limereg, https://github.com/RoelofBerg/limereg.git,1172.0418171296,0,3,0 +limesuite,0.1689001376,1.8811303497,-0.2352370048,https://salsa.debian.org/debian-hamradio-team/limesuite, https://github.com/myriadrf/LimeSuite.git,3078.1977893519,23,45,0 +link-grammar,0.0438861551,0.4063364896,-0.1161910138,https://salsa.debian.org/debian/link-grammar, https://github.com/opencog/link-grammar.git,5603.4488194445,8,39,0 +linkchecker,0.2723138565,0.7087441074,-0.0259388475,https://salsa.debian.org/python-team/packages/linkchecker, https://github.com/linkcheck/linkchecker.git,5785.3849421296,19,50,0 +linux-minidisc,-0.9631872604,1.8387133413,-1.6378120208,https://github.com/glaubitz/linux-minidisc,https://github.com/glaubitz/linux-minidisc,4847.712349537,36,17,0 +linuxdoc-tools,0.2519905465,0.7947100728,-0.0753946294,https://salsa.debian.org/xml-sgml-team/linuxdoc-tools, https://gitlab.com/agmartin/linuxdoc-tools,1218.9397800926,6,3,0 +linuxlogo,3.6168427209,4.8502382947,2.8124057325,https://salsa.debian.org/debian/linuxlogo, https://github.com/deater/linux_logo.git,3761.5540393519,1,11,0 +liquidprompt,-0.0055107257,1.6674122194,-0.4471218353,https://salsa.debian.org/debian/pkg-liquidprompt, https://github.com/nojhan/liquidprompt.git,4694.9375347222,59,60,0 +litl,-1.9126650133,-1.5671586884,-1.990034954,https://salsa.debian.org/debian/litl, https://github.com/trahay/LiTL.git,3099.0093171296,0,7,0 +lksctp-tools,0.0452198518,0.3695750173,-0.0618537574,https://salsa.debian.org/debian/lksctp-tools, https://github.com/sctp/lksctp-tools,5515.8208912037,27,6,1 +llgal,-0.3872692626,0.4151216759,-0.6843175914,https://github.com/bgoglin/llgal,https://github.com/bgoglin/llgal,4534.9444212963,2,4,0 +lltag,0.046755981,1.4904215665,-0.4505269549,https://github.com/bgoglin/lltag,https://github.com/bgoglin/lltag,4379.0269328704,3,3,0 +llvmlite,0.2470975395,1.9621678871,-0.4030021102,https://salsa.debian.org/pkg-llvm-team/llvmlite/, https://github.com/numba/llvmlite.git,3423.0569560185,27,90,0 +lmfit-py,0.3363383324,2.0024631943,-0.2648247862,https://salsa.debian.org/science-team/lmfit-py, https://github.com/lmfit/lmfit-py,4505.5639699074,24,74,2 +lmms,0.8869975288,1.6544318864,0.4186583394,https://salsa.debian.org/multimedia-team/lmms, https://github.com/LMMS/lmms.git,5780.812037037,191,143,0 +lmod,-0.6167360498,1.8064986135,-1.2865290478,https://salsa.debian.org/hpc-team/lmod, https://github.com/TACC/Lmod,4671.9454398148,18,55,0 +lmodern,0.1884866384,0.5510456421,0.0188158223,https://github.com/debian-tex/lmodern,https://github.com/debian-tex/lmodern,5129.2031828704,1,7,0 +lnav,0.5353667256,1.9342081999,-0.0323395042,https://salsa.debian.org/carnil/lnav, https://github.com/tstack/lnav,5194.1560648148,17,59,0 +log4cxx,0.4346363558,1.6002502027,-0.0917843487,https://salsa.debian.org/debian/log4cxx, https://github.com/apache/logging-log4cxx.git,3632.7022222222,22,27,0 +logbook,-0.4896324695,1.3303979826,-1.0513067414,https://salsa.debian.org/debian/logbook, https://github.com/getlogbook/logbook.git,4893.8917824074,11,77,0 +logging-tree,-1.6414264559,0.7777898237,-2.2813478865,https://salsa.debian.org/debian/python-logging-tree, https://github.com/brandon-rhodes/logging_tree.git,3349.1260532407,5,7,0 +logtop,0.3498096662,3.7145308344,-0.5283480087,https://github.com/JulienPalard/logtop,https://github.com/JulienPalard/logtop,3192.2077430556,0,9,0 +lolcat,0.6721262935,3.1765432052,-0.1088405445,https://salsa.debian.org/ruby-team/lolcat, https://github.com/busyloop/lolcat.git,3767.9154513889,1,19,0 +lollypop,-0.592629944,-0.2007667512,-0.6564691748,https://salsa.debian.org/python-team/packages/lollypop, https://gitlab.gnome.org/World/lollypop.git,3225.2413541667,23,86,0 +loqui,-1.7007984788,0.6039967407,-2.1464740031,https://salsa.debian.org/debian/loqui, https://github.com/sunnyone/loqui.git,4178.2538078704,1,9,0 +lskat,0.6628552626,2.9153218178,-0.0395644481,https://salsa.debian.org/qt-kde-team/kde/lskat, https://anongit.kde.org/lskat.git,5684.9849768519,4,57,0 +lsmount,0.241790673,3.2370471304,-0.6151908303,https://github.com/Llandon/lsmount,https://github.com/Llandon/lsmount,2894.8834259259,1,4,0 +lsp-mode,-0.3044604291,2.3389277753,-0.9447121068,https://salsa.debian.org/emacsen-team/lsp-mode, https://github.com/emacs-lsp/lsp-mode.git,2556.5827430556,551,96,0 +lsyncd,1.5424991619,4.0339913477,0.4799744759,https://salsa.debian.org/debian/lsyncd, https://github.com/lsyncd/lsyncd,5322.0234027778,11,42,0 +ltsp,-0.2605389691,-0.1270230433,-0.35762279,https://github.com/ltsp/ltsp/,https://github.com/ltsp/ltsp,1481.8791782407,11,5,0 +lua-cliargs,-0.5479186708,1.2011081938,-0.9252186028,https://salsa.debian.org/lua-team/lua-cliargs, https://github.com/amireh/lua_cliargs,4184.1379166667,0,9,0 +lua-dbi,0.1585813148,2.686351466,-0.4949553216,https://salsa.debian.org/lua-team/lua-dbi, https://github.com/mwild1/luadbi,2870.1189699074,1,15,0 +lua-expat,0.0739779286,0.7317384216,-0.0425516616,https://salsa.debian.org/lua-team/lua-expat, https://github.com/lunarmodules/luaexpat,4256.8331365741,4,6,0 +lua-inotify,-0.5779890984,2.143926952,-1.2238495501,https://salsa.debian.org/lua-team/lua-inotify, https://github.com/hoelzro/linotify.git,2964.3124768519,3,9,0 +lua-ldap,0.0504029107,1.7349223597,-0.4425312123,https://salsa.debian.org/lua-team/lua-ldap, https://github.com/lualdap/lualdap.git,4408.7069791667,7,12,0 +lua-lgi,0.0796701927,0.8171726953,-0.1674639621,https://salsa.debian.org/lua-team/lua-lgi, https://github.com/lgi-devs/lgi,4786.8799189815,15,37,0 +lua-luv,0.3914318003,2.5784604135,-0.2015973735,https://salsa.debian.org/lua-team/lua-luv, https://github.com/luvit/luv,4034.9445949074,25,59,0 +lua-penlight,0.0639746776,2.1735246703,-0.4823880135,https://salsa.debian.org/lua-team/lua-penlight, https://github.com/lunarmodules/penlight,4944.0652083333,27,64,2 +lua-redis,-0.3995562839,2.3401321656,-1.0679040964,https://salsa.debian.org/lua-team/lua-redis, https://github.com/nrk/redis-lua,2064.0116898148,2,10,0 +lua-say,0.0600475565,3.4355060639,-0.8262923484,https://salsa.debian.org/lua-team/lua-say, https://github.com/lunarmodules/say.git,4008.0407638889,1,11,0 +lua-sec,0.4632052315,1.7771854912,-0.0421545143,https://salsa.debian.org/lua-team/lua-sec, https://github.com/brunoos/luasec,4110.1133449074,4,36,0 +lua-sql,0.2468484416,2.0875829101,-0.3732149634,https://salsa.debian.org/lua-team/lua-sql, https://github.com/lunarmodules/luasql,5630.5058449074,7,40,0 +lua-yaml,-0.3454983994,1.9583709762,-0.7980928636,https://salsa.debian.org/lua-team/lua-yaml/, https://github.com/gvvaughan/lyaml,3607.2911111111,1,7,1 +luakit,0.3099777185,1.1993640248,-0.1673795455,https://salsa.debian.org/debian/luakit, https://github.com/luakit/luakit,4157.7710763889,75,51,2 +lucene++,0.1663684696,1.9660491692,-0.2678104629,https://salsa.debian.org/debian/luceneplusplus, https://github.com/luceneplusplus/LucenePlusPlus.git,4584.7652314815,3,40,0 +lugaru,-0.3136355781,1.1200491151,-0.6333560843,https://salsa.debian.org/games-team/lugaru, https://gitlab.com/osslugaru/lugaru,4314.2199884259,2,25,0 +lunar-date,-1.0901325066,-0.0609883227,-1.3741924046,https://salsa.debian.org/chinese-team/lunar-date, https://github.com/yetist/lunar-date,5400.1525115741,1,8,0 +luola,-0.2736280431,0.4554221137,-0.5709254832,https://salsa.debian.org/debian/luola, https://github.com/callaa/luola.git,0.009537037,0,1,0 +lv2,0.2289288543,2.2423853608,-0.2801973663,https://salsa.debian.org/multimedia-team/lv2, https://github.com/lv2/lv2.git ,4741.7171180556,18,5,0 +lv2file,0.6267118175,3.5316112473,-0.3364614164,https://salsa.debian.org/multimedia-team/lv2file, https://github.com/jeremysalwen/lv2file.git,4139.5358449074,2,9,0 +lwt,-0.134408789,0.9137216874,-0.5254639396,https://salsa.debian.org/ocaml-team/lwt, https://github.com/ocsigen/lwt.git,5681.6560300926,82,99,0 +lxappearance,2.8189754808,5.1307581038,1.6743807599,https://salsa.debian.org/lxde-team/lxappearance, https://github.com/lxde/lxappearance.git,4801.901712963,111,38,0 +lxc,-0.0271689343,0.0295950094,-0.0680905703,https://salsa.debian.org/lxc-team/lxc, https://github.com/lxc/lxc.git,5607.1569444445,269,336,0 +lxcfs,1.3867613073,4.4384143523,0.3489739087,https://salsa.debian.org/lxc-team/lxcfs, https://github.com/lxc/lxcfs.git,3289.0780671296,17,72,0 +lxctl,1.456465586,5.0051312044,0.180488606,https://salsa.debian.org/debian/lxctl, https://github.com/lxctl/lxctl,2540.4811342593,0,29,1 +lxde-icon-theme,0.3420036946,2.5520871,-0.0935522829,https://salsa.debian.org/lxde-team/lxde-icon-theme, https://github.com/lxde/lxde-icon-theme,1739.474375,0,4,0 +lxhotkey,1.1410291912,4.8144910554,0.0876782474,https://salsa.debian.org/lxde-team/lxhotkey, https://github.com/lxde/lxhotkey.git,2759.3632291667,8,4,0 +lxinput,0.7555106667,3.0338681034,0.062981082,https://salsa.debian.org/lxde-team/lxinput, https://github.com/lxde/lxinput.git,5254.8770717593,78,26,0 +lxpanel,0.8592891426,1.4080917912,0.502431476,https://salsa.debian.org/lxde-team/lxpanel, https://github.com/lxde/lxpanel.git,5700.7767013889,151,48,0 +lxqt-about,0.2873316332,2.5576043441,-0.1561132984,https://salsa.debian.org/lxqt-team/lxqt-about, https://github.com/lxqt/lxqt-about.git,4149.1641203704,94,45,0 +lxqt-admin,0.1098608382,1.6180664209,-0.1629300044,https://salsa.debian.org/lxqt-team/lxqt-admin, https://github.com/lxqt/lxqt-admin.git,3455.4298611111,80,41,0 +lxqt-config,-0.1081421416,0.033754419,-0.1463890089,https://salsa.debian.org/lxqt-team/lxqt-config, https://github.com/lxqt/lxqt-config.git,4495.3795486111,137,74,0 +lxqt-globalkeys,0.2347991986,1.8204555607,-0.1421664419,https://salsa.debian.org/lxqt-team/lxqt-globalkeys, https://github.com/lxqt/lxqt-globalkeys.git,4146.0372916667,56,46,0 +lxqt-notificationd,0.3086077761,2.5536421814,-0.1390832282,https://salsa.debian.org/lxqt-team/lxqt-notificationd, https://github.com/lxqt/lxqt-notificationd.git,4167.6499305556,85,48,0 +lxqt-openssh-askpass,0.2639701586,2.0558849821,-0.1403263445,https://salsa.debian.org/lxqt-team/lxqt-openssh-askpass, https://github.com/lxqt/lxqt-openssh-askpass.git,4154.121712963,34,30,0 +lxqt-panel,0.0467863633,0.6410065042,-0.1350093963,https://salsa.debian.org/lxqt-team/lxqt-panel, https://github.com/lxqt/lxqt-panel.git,4797.1699421296,187,111,0 +lxqt-policykit,0.849725532,4.0300053969,-0.0038121327,https://salsa.debian.org/lxqt-team/lxqt-policykit, https://github.com/lxqt/lxqt-policykit.git,4324.8308449074,48,36,0 +lxqt-powermanagement,0.067990476,1.1964435435,-0.1455915958,https://salsa.debian.org/lxqt-team/lxqt-powermanagement, https://github.com/lxqt/lxqt-powermanagement.git,4140.6065509259,76,51,0 +lxqt-runner,0.0124283057,1.1138238756,-0.1647961665,https://salsa.debian.org/lxqt-team/lxqt-runner, https://github.com/lxqt/lxqt-runner.git,4515.7259722222,56,49,0 +lxqt-sudo,0.140114656,1.7783436607,-0.145434792,https://salsa.debian.org/lxqt-team/lxqt-sudo, https://github.com/lxqt/lxqt-sudo.git,3089.1817824074,82,29,0 +lxsession,1.2116112613,1.9433064205,0.7300432073,https://salsa.debian.org/lxde-team/lxsession, https://github.com/lxde/lxsession.git,5699.8882175926,92,44,0 +lz4,0.2140600439,0.6954425453,0.0384684269,https://salsa.debian.org/debian/lz4, https://github.com/lz4/lz4,3549.3137037037,30,172,0 +lz4json,-0.4492537171,1.9714794785,-0.9639366883,https://github.com/kilobyte/lz4json/tree/debian,https://github.com/kilobyte/lz4json,1639.7853125,4,5,0 +m2crypto,1.7080325407,2.9810560081,0.944255638,https://salsa.debian.org/python-team/packages/m2crypto, https://gitlab.com/m2crypto/m2crypto,5773.2309259259,39,30,0 +mac-fdisk,2.7880780441,5.7864461789,1.4460748362,https://github.com/glaubitz/mac-fdisk-debian,https://github.com/glaubitz/mac-fdisk-debian,0.0261342593,1,1,0 +mactelnet,0.2259589335,2.9645776481,-0.5410252908,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,1885.9548726852,0,3,0 +madwimax,0.5386816454,4.8433430858,-0.9450458426,http://github.com/ago/madwimax,http://github.com/ago/madwimax,1040.9560532407,1,3,0 +magic-wormhole,0.630470294,2.9447916755,-0.1756610866,https://salsa.debian.org/debian/magic-wormhole, https://github.com/warner/magic-wormhole.git,3185.5699884259,24,44,0 +magicrescue,0.5638588917,1.9092658203,-0.0393062113,https://salsa.debian.org/pkg-security-team/magicrescue, https://github.com/jbj/magicrescue,1064.0338194445,1,3,0 +magit-popup,0.2571268821,2.5085186003,-0.2260041619,https://salsa.debian.org/emacsen-team/magit-popup, https://github.com/magit/magit-popup.git,3610.5775925926,17,32,0 +magit-todos,-1.9165042596,0.3398402208,-2.3485659317,https://salsa.debian.org/emacsen-team/magit-todos, https://github.com/alphapapa/magit-todos.git,1955.3700925926,9,7,0 +magithub,-0.9153485178,0.2878604704,-1.1484533672,https://salsa.debian.org/emacsen-team/magithub,https://salsa.debian.org/emacsen-team/magithub,1074.2872569445,13,18,0 +mahimahi,-2.3383740713,-0.9568738246,-2.8664707594,https://github.com/ravinet/mahimahi,https://github.com/ravinet/mahimahi,3537.8831712963,7,10,3 +maildir-utils,-0.1070462558,0.2171056472,-0.2782512037,https://salsa.debian.org/emacsen-team/maildir-utils, https://github.com/djcb/mu,5121.8317592593,35,231,0 +mailutils,1.5876504322,2.0823992146,1.207695325,https://salsa.debian.org/debian/mailutils, https://git.savannah.gnu.org/git/mailutils.git,5563.9420949074,7,3,0 +maim,0.1137110537,1.6107062353,-0.3771003078,https://salsa.debian.org/debian/maim, https://github.com/naelstrof/maim.git,3690.030474537,19,40,0 +mako,0.9607195824,2.3152903989,0.3300125847,https://salsa.debian.org/python-team/packages/mako, https://github.com/sqlalchemy/mako,5744.8817476852,23,45,7 +man-db,0.6109089494,0.7481347146,0.4937966879,https://salsa.debian.org/debian/man-db, https://gitlab.com/man-db/man-db.git,5772.9898148148,74,8,0 +mando,-0.8468044385,1.2154767785,-1.3465386928,https://salsa.debian.org/python-team/packages/mando, https://github.com/rubik/mando.git,3495.7249768519,7,5,0 +manpages-zh,0.3013864409,1.4801748551,-0.1366673269,https://salsa.debian.org/chinese-team/manpages-zh, https://github.com/man-pages-zh/manpages-zh,5615.6429976852,2,12,2 +manuel,-1.8188927476,0.9170806837,-2.5490910041,https://salsa.debian.org/python-team/packages/manuel, https://github.com/benji-york/manuel,5520.6818171296,2,23,0 +mapbox-variant,0.159782488,3.7315023577,-0.6830233266,https://salsa.debian.org/debian-gis-team/mapbox-variant/, https://github.com/mapbox/variant.git,2484.9211689815,4,25,0 +mapcache,-0.6849497052,1.4775793478,-1.119704947,https://salsa.debian.org/debian-gis-team/mapcache, https://github.com/mapserver/mapcache.git,4429.8413773148,24,38,0 +mapnik,-0.138316252,0.0607934228,-0.2343846637,https://salsa.debian.org/debian-gis-team/mapnik, https://github.com/mapnik/mapnik.git,5729.8142013889,14,143,0 +mapnik-vector-tile,-1.4005650269,-0.4480098587,-1.6654808601,https://salsa.debian.org/debian-gis-team/mapnik-vector-tile, https://github.com/mapbox/mapnik-vector-tile.git,3418.2549652778,3,30,0 +mapproxy,-0.7922260219,1.5592643395,-1.2711496903,https://salsa.debian.org/debian-gis-team/mapproxy, https://github.com/mapproxy/mapproxy.git,5031.8887731482,37,77,0 +marco,0.4135299353,1.2437097409,0.0623433654,https://salsa.debian.org/debian-mate-team/marco, https://github.com/mate-desktop/marco.git,4344.2543981482,52,52,0 +marisa,-0.2770059581,0.4130762278,-0.5523788144,https://salsa.debian.org/input-method-team/marisa, https://github.com/s-yata/marisa-trie.git,1648.6119675926,1,9,0 +mate-applets,0.6853128183,1.6557989426,0.1970723591,https://salsa.debian.org/debian-mate-team/mate-applets, https://github.com/mate-desktop/mate-applets.git,4346.0884259259,32,41,0 +mate-backgrounds,0.5159356315,3.1381456756,-0.0659273196,https://salsa.debian.org/debian-mate-team/mate-backgrounds, https://github.com/mate-desktop/mate-backgrounds.git,4154.5609837963,7,18,0 +mate-common,0.2236781765,1.5441453615,-0.2936941102,https://salsa.debian.org/debian-mate-team/mate-common, https://github.com/mate-desktop/mate-common.git,4289.5348032407,4,19,0 +mate-control-center,0.442807422,1.1267913622,0.085872745,https://salsa.debian.org/debian-mate-team/mate-control-center, https://github.com/mate-desktop/mate-control-center.git,4382.2688194445,31,51,0 +mate-desktop,1.4429678874,2.800379976,0.7048624548,https://salsa.debian.org/debian-mate-team/mate-desktop, https://github.com/mate-desktop/mate-desktop.git,4339.3214814815,30,45,0 +mate-dock-applet,0.3881982435,2.2401761238,-0.1688322569,https://salsa.debian.org/debian-mate-team/mate-dock-applet, https://github.com/robint99/dock-applet.git,2711.5333680556,9,12,0 +mate-icon-theme,0.4087889597,2.4988457726,-0.055212655,https://salsa.debian.org/debian-mate-team/mate-icon-theme, https://github.com/mate-desktop/mate-icon-theme.git,3997.7458217593,7,25,0 +mate-icon-theme-faenza,0.5142431191,2.3829279771,-0.0287099151,https://salsa.debian.org/debian-mate-team/mate-icon-theme-faenza, https://github.com/mate-desktop/mate-icon-theme-faenza.git,2081.9641898148,2,15,0 +mate-indicator-applet,0.3892855101,2.3140656244,-0.1422611451,https://salsa.debian.org/debian-mate-team/mate-indicator-applet, https://github.com/mate-desktop/mate-indicator-applet.git,4284.6180439815,7,23,0 +mate-media,0.74284359,2.2451502902,0.1368472915,https://salsa.debian.org/debian-mate-team/mate-media, https://github.com/mate-desktop/mate-media.git,4372.3001388889,17,36,0 +mate-menu,0.1192545157,1.1510778234,-0.196137869,https://salsa.debian.org/debian-mate-team/mate-menu, https://github.com/ubuntu-mate/mate-menu.git,4623.4905902778,11,39,0 +mate-menus,0.2916992257,1.5597759321,-0.060469426,https://salsa.debian.org/debian-mate-team/mate-menus, https://github.com/mate-desktop/mate-menus.git,4292.5756944445,15,28,0 +mate-netbook,-0.1990739498,0.92545311,-0.5547977915,https://salsa.debian.org/debian-mate-team/mate-netbook, https://github.com/mate-desktop/mate-netbook.git,4033.4643981482,4,20,0 +mate-notification-daemon,0.294431484,1.2443680719,-0.0375475363,https://salsa.debian.org/debian-mate-team/mate-notification-daemon, https://github.com/mate-desktop/mate-notification-daemon.git,4376.8075462963,19,34,0 +mate-panel,0.5863441848,1.1682346415,0.2564684752,https://salsa.debian.org/debian-mate-team/mate-panel, https://github.com/mate-desktop/mate-panel.git,4378.3811574074,53,62,0 +mate-polkit,0.0844204987,0.7139928108,-0.078912062,https://salsa.debian.org/debian-mate-team/mate-polkit, https://github.com/mate-desktop/mate-polkit.git,4293.1045717593,9,23,0 +mate-power-manager,0.6462168185,1.4696902088,0.214933443,https://salsa.debian.org/debian-mate-team/mate-power-manager, https://github.com/mate-desktop/mate-power-manager.git,4348.006087963,20,47,0 +mate-screensaver,1.6090033174,3.3545484765,0.754555565,https://salsa.debian.org/debian-mate-team/mate-screensaver, https://github.com/mate-desktop/mate-screensaver.git,4208.4707060185,19,41,0 +mate-sensors-applet,0.078901065,1.286959113,-0.1896399837,https://salsa.debian.org/debian-mate-team/mate-sensors-applet, https://github.com/mate-desktop/mate-sensors-applet.git,4304.7667824074,15,25,0 +mate-session-manager,0.3394824632,0.8901095037,0.0687723319,https://salsa.debian.org/debian-mate-team/mate-session-manager, https://github.com/mate-desktop/mate-session-manager.git,4323.5747685185,19,47,0 +mate-settings-daemon,0.1815646983,0.7203109893,-0.0328315734,https://salsa.debian.org/debian-mate-team/mate-settings-daemon, https://github.com/mate-desktop/mate-settings-daemon.git,4342.2338425926,28,45,0 +mate-system-monitor,0.9084771751,3.0973621084,0.1407353866,https://salsa.debian.org/debian-mate-team/mate-system-monitor, https://github.com/mate-desktop/mate-system-monitor.git,4413.0350462963,20,34,0 +mate-terminal,0.4477645624,1.2101010626,0.0838703587,https://salsa.debian.org/debian-mate-team/mate-terminal, https://github.com/mate-desktop/mate-terminal.git,4416.9047569445,30,38,0 +mate-themes,0.4118594105,1.2146796515,0.0545952308,https://salsa.debian.org/debian-mate-team/mate-themes, https://github.com/mate-desktop/mate-themes.git,4238.4329282407,20,27,0 +mate-tweak,1.1711824322,3.5481653821,0.2247998348,https://salsa.debian.org/debian-mate-team/mate-tweak, https://github.com/ubuntu-mate/mate-tweak.git,4804.1971296296,11,22,0 +mate-user-guide,0.5094536603,3.3401486345,-0.0704353393,https://salsa.debian.org/debian-mate-team/mate-user-guide, https://github.com/mate-desktop/mate-user-guide.git,2933.2399768519,5,16,0 +mate-user-share,-0.0144878955,0.7287904866,-0.2142966004,https://salsa.debian.org/debian-mate-team/mate-user-share, https://github.com/mate-desktop/mate-user-share.git,4144.6895601852,7,22,0 +mate-utils,0.6506730235,2.120716891,0.0811905556,https://salsa.debian.org/debian-mate-team/mate-utils, https://github.com/mate-desktop/mate-utils.git,4329.9789930556,19,36,0 +mate-window-applets,-0.186625862,1.9636663587,-0.6313160521,https://salsa.debian.org/debian-mate-team/mate-window-applets, https://github.com/ubuntu-mate/mate-window-applets.git,1140.5334375,6,3,0 +materia-gtk-theme,0.1045234392,1.9891123795,-0.3220563371,https://salsa.debian.org/desktop-themes-team/materia-gtk-theme, https://github.com/nana-4/materia-theme/commits/master,5185.326875,55,11,0 +mathjax,0.3720152715,1.7129828897,-0.0183695942,https://salsa.debian.org/js-team/mathjax, https://github.com/mathjax/MathJax,4869.8166782407,7,40,5 +matlab2tikz,-0.2651693742,1.3660324989,-0.5734026839,https://salsa.debian.org/pkg-octave-team/matlab2tikz, https://github.com/matlab2tikz/matlab2tikz,5208.0300231482,12,52,8 +matrix-synapse,0.0402603462,1.0021738964,-0.4210665035,https://salsa.debian.org/matrix-team/matrix-synapse, https://github.com/matrix-org/synapse.git,3410.0313078704,429,223,0 +matrix-synapse-ldap3,-1.3045245674,0.2636585465,-1.5697266258,https://salsa.debian.org/matrix-team/matrix-synapse-ldap3, https://github.com/matrix-org/matrix-synapse-ldap3,2539.7550694445,27,18,0 +mayavi2,0.5212873755,1.1687568319,0.1310273997,https://salsa.debian.org/python-team/packages/mayavi2, https://github.com/enthought/mayavi.git,5733.273587963,13,100,0 +maybe,-0.652177661,1.9314993227,-1.1686602213,https://salsa.debian.org/debian/maybe, https://github.com/p-e-w/maybe,363.7199652778,0,2,1 +mbpfan,-0.8266385807,1.3220048345,-1.2606406228,https://salsa.debian.org/debian/mbpfan, https://github.com/linux-on-mac/mbpfan.git,4208.3397453704,28,30,0 +mcollective,0.2172201034,1.7225219851,-0.4315505666,https://salsa.debian.org/puppet-team/mcollective, https://github.com/puppetlabs/marionette-collective,3620.6848148148,74,101,0 +mda-lv2,0.4163564297,3.2272407901,-0.2755014862,https://salsa.debian.org/multimedia-team/mda-lv2, https://gitlab.com/drobilla/mda-lv2.git,5537.0059606482,1,1,0 +mdbtools,0.6161871039,1.1807658317,0.2302864182,https://salsa.debian.org/debian/mdbtools, https://github.com/mdbtools/mdbtools,4863.4037152778,30,60,0 +mdk4,-0.0590321422,2.244566977,-0.6808566672,https://salsa.debian.org/pkg-security-team/mdk4, https://github.com/aircrack-ng/mdk4,1545.4045949074,4,9,0 +meanwhile,1.6225494468,3.5813327858,0.7214154539,https://salsa.debian.org/debian/meanwhile, https://github.com/obriencj/meanwhile.git,352.0019560185,1,1,0 +mediaelement,1.1061971377,4.443703809,-0.0080926047,https://salsa.debian.org/debian/mediaelement, https://github.com/johndyer/mediaelement.git,4857.3025462963,68,266,0 +medicalterms,0.6514282352,3.0758624024,-0.1500845415,https://salsa.debian.org/med-team/medicalterms, https://codeberg.org/toddy/medicalterms,5666.9141550926,0,4,0 +mednaffe,0.0695788651,1.694776654,-0.2859050975,https://salsa.debian.org/games-team/mednaffe, https://github.com/AmatCoder/mednaffe,3528.2947337963,2,17,0 +medusa,0.7418834796,1.8416337033,0.1473000467,https://salsa.debian.org/pkg-security-team/medusa, https://github.com/jmk-foofus/medusa,2618.4448032407,4,10,0 +megatools,-0.1421548694,0.8708435846,-0.4147477257,https://salsa.debian.org/berto/megatools, https://megous.com/git/megatools,3594.0475347222,14,18,0 +meld,0.3845198282,0.6598834875,0.1899058575,https://salsa.debian.org/gnome-team/meld, https://gitlab.gnome.org/GNOME/meld.git,5746.1474421296,187,124,0 +memkind,-2.3338755247,-0.4330380435,-2.7754873055,https://github.com/kilobyte/memkind/tree/debian,https://github.com/kilobyte/memkind,3438.6727199074,30,85,0 +memtest86+,2.2601852863,3.3021289749,1.5576924368,https://salsa.debian.org/debian/memtest86plus, https://github.com/memtest86plus/memtest86plus.git,663.5358564815,15,10,0 +mercator,-0.2340868407,1.6571874232,-0.993372484,https://salsa.debian.org/games-team/mercator, https://github.com/worldforge/mercator,5633.2390393519,0,7,0 +mergerfs,-0.1316264165,1.2234494612,-0.4491796077,https://salsa.debian.org/debian/mergerfs, https://github.com/trapexit/mergerfs,3539.2512962963,13,11,0 +merkaartor,0.3289368588,1.0406680202,-0.090827001,https://salsa.debian.org/debian-gis-team/merkaartor, https://github.com/openstreetmap/merkaartor.git,5700.4153009259,8,63,0 +metamonger,-0.6900906238,2.0075726518,-1.5721370157,https://github.com/RichiH/metamonger,https://github.com/RichiH/metamonger,3300.7684837963,1,7,0 +metapixel,1.7970234478,4.4178259899,0.5633223634,https://salsa.debian.org/debian/metapixel, https://github.com/schani/metapixel.git,3264.7618171296,2,6,0 +metastore,-0.4597261727,0.6466323956,-0.8107792072,https://salsa.debian.org/rfrancoise/metastore, https://github.com/przemoc/metastore,5431.9336689815,7,2,1 +meteo-qt,0.8698899777,3.6161721459,0.0040074202,https://salsa.debian.org/lxqt-team/meteo-qt, https://github.com/dglent/meteo-qt.git,3275.9305092593,3,17,0 +mew,-0.487761537,-0.3514010061,-0.554001036,https://salsa.debian.org/debian/mew, https://github.com/kazu-yamamoto/Mew,5007.0253703704,7,24,0 +mg,0.8626842283,2.0640170714,0.2148718944,https://salsa.debian.org/debian/mg, https://github.com/hboetes/mg.git,2838.9768518519,3,9,0 +mhc,-0.8884000458,-0.3595274014,-1.157500378,https://salsa.debian.org/debian/mhc, https://github.com/yoshinari-nomura/mhc,4808.1619907407,0,12,0 +mhwaveedit,-0.0845847669,0.9517864727,-0.4200690155,https://salsa.debian.org/multimedia-team/mhwaveedit, https://github.com/magnush/mhwaveedit,4171.9324305556,3,7,0 +micro-httpd,-0.3300074474,1.1160734611,-0.9308283084,https://github.com/sudipm-mukherjee/micro-httpd.git,https://github.com/sudipm-mukherjee/micro-httpd.git,4120.3943287037,0,4,0 +milkytracker,0.2927952476,1.359126964,-0.1661437741,https://salsa.debian.org/multimedia-team/milkytracker, https://github.com/milkytracker/MilkyTracker,5764.1453472222,35,32,1 +miller,-0.6485962999,1.145337313,-1.0224618063,https://salsa.debian.org/debian/miller, https://github.com/johnkerl/miller.git,3146.11875,32,28,0 +mimetic,-1.0569767141,-0.8952643698,-1.0963723389,https://git.toastfreeware.priv.at/debian/mimetic.git, https://github.com/tat/mimetic.git,2612.777962963,3,10,0 +minder,-0.4197168251,2.1005562235,-0.9632919414,https://salsa.debian.org/yangfl-guest/Minder, https://github.com/phase1geo/Minder.git,2148.0431712963,20,27,0 +minidb,-0.4525684191,1.7891094238,-0.9018820656,https://salsa.debian.org/mwerlen/minidb, https://github.com/thp/minidb.git,4339.2984953704,2,5,0 +minieigen,-0.2097696756,0.7860654925,-0.499567475,https://salsa.debian.org/science-team/minieigen, https://github.com/eudoxos/minieigen,4093.4507523148,0,12,0 +minimodem,-0.3250415773,2.1360118932,-0.8562976169,https://github.com/kamalmostafa/minimodem,https://github.com/kamalmostafa/minimodem,3742.1687037037,10,6,0 +mininet,-0.586251107,1.2693023429,-1.2259353746,https://salsa.debian.org/debian/mininet, https://github.com/mininet/mininet,5029.9877777778,22,77,1 +minisat2,0.081865083,0.8637917657,-0.1532386767,http://github.com/niklasso/minisat,http://github.com/niklasso/minisat,2028.9114699074,1,5,0 +minissdpd,0.5677649626,1.222274611,0.2088174984,https://salsa.debian.org/miniupnp-team/minissdpd, https://github.com/miniupnp/miniupnp,4445.8630555556,27,105,3 +miniupnpc,0.8960285846,2.2095981783,0.296824471,https://salsa.debian.org/miniupnp-team/miniupnpc, https://github.com/miniupnp/miniupnp,4445.8630555556,27,105,3 +miniupnpd,-0.3208669628,0.4711534982,-0.7010624241,https://salsa.debian.org/miniupnp-team/miniupnpd, https://github.com/miniupnp/miniupnp,4445.8630555556,27,105,3 +miscfiles,0.277264004,0.7791994248,-0.0181377866,https://salsa.debian.org/debian/miscfiles, https://git.savannah.gnu.org/git/miscfiles.git,2466.2185069445,0,3,0 +mistune,0.1493545213,1.5798050439,-0.1455176285,https://salsa.debian.org/python-team/packages/mistune, https://github.com/lepture/mistune,3515.8809143519,27,24,1 +mkalias,-0.7408475157,2.3071375002,-1.5762128281,https://salsa.debian.org/ruby-team/mkalias, https://github.com/LucianoPC/mkalias,68.2117476852,0,3,0 +mkchromecast,0.8989730761,3.261162104,-0.0281715967,https://salsa.debian.org/debian/mkchromecast, https://github.com/muammar/mkchromecast.git,2825.8958217593,15,30,0 +mktorrent,0.2711814394,1.9101515608,-0.3158320018,https://salsa.debian.org/debian/mktorrent, https://github.com/pobrn/mktorrent,4360.041099537,6,10,1 +mlpack,0.2081867623,1.6763254932,-0.3960515622,https://salsa.debian.org/science-team/mlpack, https://github.com/mlpack/mlpack,4436.5602083333,135,282,0 +mm-common,0.3689695735,3.2512774056,-0.5557438673,https://salsa.debian.org/gnome-team/mm-common, https://gitlab.gnome.org/GNOME/mm-common.git,5241.5175925926,3,13,0 +mmtf-java,-5.037602316,-2.8514886182,-5.4781542553,https://salsa.debian.org/debichem-team/mmtf-java, https://github.com/rcsb/mmtf-java.git,2412.8476967593,1,12,0 +mmv,1.5597347679,2.9419260396,0.7739885392,https://salsa.debian.org/debian/mmv, https://github.com/rrthomas/mmv.git,971.7580902778,1,1,0 +moarvm,0.1333981101,1.2727614965,-0.2249934871,https://salsa.debian.org/perl6-team/moarvm, https://github.com/MoarVM/MoarVM.git,4245.8103356482,33,154,0 +mobile-broadband-provider-info,0.6658108074,2.1265095055,0.1231079255,https://salsa.debian.org/debian/mobile-broadband-provider-info, https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info,5572.2549884259,183,33,0 +mod-proxy-msrpc,-0.4686771794,2.4036030859,-1.2427083432,https://github.com/bombadil/mod_proxy_msrpc/tree/debian/unstable,https://github.com/bombadil/mod_proxy_msrpc,805.3717013889,0,4,0 +mod-wsgi,2.4454559716,4.1124951084,1.4932574711,https://salsa.debian.org/python-team/packages/mod-wsgi, https://github.com/GrahamDumpleton/mod_wsgi,5754.130150463,20,15,0 +modem-cmd,-0.6052898943,1.7555013841,-1.1587030212,https://salsa.debian.org/debian/modem-cmd, https://github.com/imZack/modem-cmd.git,939.0309143519,1,4,0 +modemmanager,3.5427656086,5.1256966357,2.5789926692,https://salsa.debian.org/DebianOnMobile-team/modemmanager, https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git,5613.1753356482,183,106,0 +modplugtools,0.4632988211,2.9493569553,-0.4712506177,https://salsa.debian.org/multimedia-team/modplugtools, https://github.com/alexmyczko/modplug-tools,1743.9280324074,2,5,0 +modsecurity-crs,0.3062913161,1.6241854934,-0.1504392677,https://salsa.debian.org/debian/modsecurity-crs, https://github.com/coreruleset/coreruleset.git,4151.0876736111,58,142,0 +mom,-0.6777849161,1.9853085783,-1.5072869412,https://salsa.debian.org/debian/mom, https://github.com/oVirt/mom,4972.7826157407,31,16,1 +mongo-c-driver,0.3915954735,1.6519342417,-0.0863313883,https://github.com/mongodb/mongo-c-driver/tree/master,https://github.com/mongodb/mongo-c-driver,5226.5267939815,106,124,0 +monit,-0.0051509548,0.0796625204,-0.0600172229,https://salsa.debian.org/debian/monit, https://bitbucket.org/tildeslash/monit,3579.5902546296,10,52,0 +monitoring-plugins,0.0693351107,0.1273256926,0.0239422118,https://salsa.debian.org/nagios-team/monitoring-plugins, https://github.com/monitoring-plugins/monitoring-plugins.git,5784.3225925926,121,104,0 +montage-wrapper,-0.3865274729,1.1809812531,-0.6680117033,https://salsa.debian.org/debian-astro-team/montage-wrapper, https://github.com/astropy/montage-wrapper,3566.7960416667,2,16,3 +mootools,0.7471893128,2.8560605859,0.0458469775,https://salsa.debian.org/js-team/mootools, https://github.com/mootools/mootools-core.git,2900.1052662037,27,88,0 +mopidy,0.0462147178,1.1238145588,-0.3356435045,https://salsa.debian.org/mopidy-team/mopidy, https://github.com/mopidy/mopidy,5076.7496990741,37,109,4 +mopidy-alsamixer,-0.098708743,2.9303656044,-0.8810971993,https://salsa.debian.org/mopidy-team/mopidy-alsamixer, https://github.com/mopidy/mopidy-alsamixer,3286.4480439815,1,5,0 +mopidy-beets,-0.6046887672,2.3676499619,-1.3922973554,https://salsa.debian.org/mopidy-team/mopidy-beets, https://github.com/mopidy/mopidy-beets,3887.5415162037,2,10,0 +mopidy-dleyna,-0.6150387258,1.8626619639,-1.276416264,https://salsa.debian.org/mopidy-team/mopidy-dleyna, https://github.com/tkem/mopidy-dleyna.git,2554.9614351852,1,6,0 +mopidy-internetarchive,-0.2187337791,2.3088703355,-0.8028100126,https://salsa.debian.org/mopidy-team/mopidy-internetarchive, https://github.com/tkem/mopidy-internetarchive,2991.6193171296,0,3,1 +mopidy-mpris,-0.2110446145,2.461940178,-1.1114345149,https://salsa.debian.org/mopidy-team/mopidy-mpris, https://github.com/mopidy/mopidy-mpris.git,3543.9779050926,2,7,0 +mopidy-podcast,-0.2941570726,1.7690171184,-0.7388669271,https://salsa.debian.org/mopidy-team/mopidy-podcast, https://github.com/tkem/mopidy-podcast.git,2983.3689236111,2,1,0 +mopidy-podcast-itunes,-0.2467767179,2.4591937682,-0.834541946,https://salsa.debian.org/mopidy-team/mopidy-podcast-itunes, https://github.com/tkem/mopidy-podcast-itunes,2949.6816087963,0,2,0 +mopidy-scrobbler,-0.2517299962,2.1335156702,-1.0325443783,https://salsa.debian.org/mopidy-team/mopidy-scrobbler, https://github.com/mopidy/mopidy-scrobbler.git,3546.3970023148,0,2,0 +mopidy-somafm,-0.2746325835,2.1609819918,-0.859324666,https://salsa.debian.org/mopidy-team/mopidy-somafm, https://github.com/AlexandrePTJ/mopidy-somafm,2714.300787037,0,6,2 +mopidy-soundcloud,-0.2546570011,2.1558962885,-0.9457836601,https://salsa.debian.org/mopidy-team/mopidy-soundcloud, https://github.com/mopidy/mopidy-soundcloud,3733.2794212963,4,17,2 +mopidy-tunein,-0.3236002892,2.6224531521,-1.0905202326,https://salsa.debian.org/mopidy-team/mopidy-tunein, https://github.com/kingosticks/mopidy-tunein,2521.2538657407,2,14,1 +more-itertools,0.9737261764,4.3335551766,0.0386205169,https://salsa.debian.org/python-team/packages/more-itertools, https://github.com/erikrose/more-itertools,4227.3815856482,29,97,0 +mosh,0.606003493,1.4356635967,0.18867418,https://github.com/mobile-shell/mosh,https://github.com/mobile-shell/mosh,4605.1291203704,52,35,3 +motion,1.5007537362,2.2256398235,0.9869781394,https://salsa.debian.org/debian/motion, https://github.com/Motion-Project/motion,5726.8099189815,52,51,0 +mozo,1.0472002917,4.1285143428,0.0738627513,https://salsa.debian.org/debian-mate-team/mozo, https://github.com/mate-desktop/mozo.git,3956.1099652778,14,23,0 +mp3fs,0.9163678404,4.5727174058,-0.2047299256,https://salsa.debian.org/multimedia-team/mp3fs, https://github.com/khenriks/mp3fs.git,5444.4987847222,4,13,0 +mp3wrap,0.1511883249,2.4047625906,-0.4072551552,https://github.com/marciosouza20/mp3wrap.git,https://github.com/marciosouza20/mp3wrap.git,36.6266319444,0,2,0 +mpc123,0.851583608,3.5692284528,-0.2366259159,https://salsa.debian.org/debian/mpc123, https://github.com/bucciarati/mpc123,4095.7045717593,0,4,0 +mpdris2,-0.9856715769,-0.7754968336,-1.0277106449,https://salsa.debian.org/debian/mpdris2, https://github.com/eonpatapon/mpDris2.git,4512.1038657407,12,20,0 +mpdscribble,-0.7233101544,-0.5981438455,-0.7658816633,https://salsa.debian.org/mpd-team/mpdscribble, https://github.com/MusicPlayerDaemon/mpdscribble.git,5474.3595486111,22,17,0 +mpv,0.5363042562,0.8628802276,0.3101358986,https://salsa.debian.org/multimedia-team/mpv, https://github.com/mpv-player/mpv,5787.7142361111,512,145,0 +mrboom,-0.241313948,1.6810544874,-0.7335121433,https://salsa.debian.org/games-team/mrboom, https://github.com/Javanaise/mrboom-libretro,2489.0620833333,22,22,0 +mruby,-1.5514391,-1.3019492907,-1.6243857492,https://github.com/mruby-debian/mruby,https://github.com/mruby-debian/mruby,4156.8421527778,37,353,0 +msgpuck,-1.9345101796,0.7538606408,-2.5762644187,https://github.com/rtsisyk/msgpuck,https://github.com/rtsisyk/msgpuck,1946.1415046296,3,13,1 +msitools,0.9685786476,3.4437444916,0.0488138918,https://salsa.debian.org/debian/msitools, https://github.com/GNOME/msitools,4016.1692361111,45,59,0 +msktutil,-0.1662803901,1.2423651932,-0.5841886377,https://salsa.debian.org/debian/msktutil, https://github.com/msktutil/msktutil,4695.5949305556,8,21,2 +mt-st,0.1082142752,0.6983439611,-0.1608193497,https://salsa.debian.org/debian/mt-st, https://github.com/iustin/mt-st,3093.7365972222,14,5,0 +mtpolicyd,-1.3311506647,1.0954039333,-1.9915905372,https://salsa.debian.org/debian/mtpolicyd, https://github.com/benningm/mtpolicyd.git,2186.9926157407,1,4,0 +mtr,2.0179049728,2.8158196867,1.452557991,https://salsa.debian.org/debian/mtr, https://github.com/traviscross/mtr,3917.0060648148,16,90,0 +mtree-netbsd,-1.5216638363,0.5725600433,-2.0355608409,https://github.com/jgoerzen/mtree-netbsd,https://github.com/jgoerzen/mtree-netbsd,1538.1956712963,1,7,0 +mu-cite,-0.9256165282,0.9613021982,-1.3098678212,https://salsa.debian.org/debian/mu-cite, https://github.com/cvs-m17n-org/MU-CITE,4190.5202430556,2,3,0 +mu-editor,-0.5387836246,-0.0686504792,-0.6404798853,https://salsa.debian.org/python-team/applications/mu-editor, https://github.com/mu-editor/mu,5121.8317592593,35,231,4 +mudita24,-0.0566417905,1.5271069455,-0.4568909604,https://salsa.debian.org/multimedia-team/mudita24, https://github.com/NielsMayer/mudita24,2005.0215046296,0,5,0 +muffin,0.571495121,1.4351795849,0.146834752,https://salsa.debian.org/cinnamon-team/muffin, https://github.com/linuxmint/muffin.git,4329.8599421296,106,160,0 +mugshot,0.7316630016,2.7960037279,-0.1554059373,https://salsa.debian.org/python-team/packages/mugshot, https://github.com/bluesabre/mugshot,3560.1744907407,3,9,0 +muparserx,-1.1470134355,1.2119811289,-1.6175084445,https://salsa.debian.org/debian/muparserx, https://github.com/beltoforion/muparserx.git,4293.2344097222,2,26,0 +mupen64plus-core,0.0992350276,1.3043202832,-0.2694544542,https://salsa.debian.org/games-team/mupen64plus-core, https://github.com/mupen64plus/mupen64plus-core.git,5146.4908564815,33,78,0 +mupen64plus-ui-console,0.7264116732,3.6995007165,-0.1670734867,https://salsa.debian.org/games-team/mupen64plus-ui-console, https://github.com/mupen64plus/mupen64plus-ui-console.git,4990.6788773148,5,31,0 +mupen64plus-video-glide64,0.1160309114,2.3242018271,-0.3185351881,https://salsa.debian.org/games-team/mupen64plus-video-glide64, https://github.com/mupen64plus/mupen64plus-video-glide64,4871.8438310185,2,17,0 +mupen64plus-video-glide64mk2,0.1293389165,2.4637475631,-0.3196538821,https://salsa.debian.org/games-team/mupen64plus-video-glide64mk2, https://github.com/mupen64plus/mupen64plus-video-glide64mk2.git,4126.6609027778,7,35,0 +mupen64plus-video-rice,0.1071841352,2.1766235067,-0.3149398833,https://salsa.debian.org/games-team/mupen64plus-video-rice, https://github.com/mupen64plus/mupen64plus-video-rice.git,4977.9831481482,5,34,0 +mupen64plus-video-z64,-0.0630178119,1.307530126,-0.3263531841,https://salsa.debian.org/games-team/mupen64plus-video-z64, https://github.com/mupen64plus/mupen64plus-video-z64,4885.8515046296,2,17,0 +muse,0.3513323565,0.8924420388,0.0076925385,https://salsa.debian.org/multimedia-team/muse, https://github.com/muse-sequencer/muse.git,5773.0492476852,5,55,0 +muse-el,0.9834892976,2.8604314623,0.0726359102,https://salsa.debian.org/emacsen-team/muse-el, https://github.com/alexott/muse,5662.6274884259,5,7,0 +musicbrainzngs,0.5076678121,2.1969185222,-0.005881406,https://salsa.debian.org/python-team/packages/musicbrainzngs, https://github.com/alastair/python-musicbrainz-ngs,3992.7430092593,1,28,3 +musl,-0.2970230552,0.1688133634,-0.486588247,https://salsa.debian.org/reiner/musl, git://git.musl-libc.org/musl,4660.5228240741,122,7,0 +mutagen,0.6308721973,1.4634773717,0.2111869622,https://salsa.debian.org/python-team/packages/mutagen, https://github.com/quodlibet/mutagen.git,3949.2154398148,9,35,0 +mutter,1.3361414077,1.9632597874,0.9054248305,https://salsa.debian.org/gnome-team/mutter, https://gitlab.gnome.org/GNOME/mutter.git,5786.8776157407,506,523,0 +mwparserfromhell,-1.4429733456,0.6827256431,-1.9564395019,https://salsa.debian.org/legoktm/mwparserfromhell, https://github.com/earwig/mwparserfromhell.git,4191.7283680556,10,20,0 +mwrap,-0.6055213344,1.7500683415,-1.3620779276,https://salsa.debian.org/pkg-octave-team/mwrap, https://github.com/zgimbutas/mwrap,3042.6040856482,0,5,0 +mydumper,0.1325643141,1.1086713166,-0.3412798364,https://salsa.debian.org/debian/mydumper, https://github.com/maxbube/mydumper.git,5415.8767013889,39,67,0 +mygpoclient,0.0953328094,1.792427706,-0.3176002055,https://salsa.debian.org/debian/mygpoclient, https://github.com/gpodder/mygpoclient,4565.949837963,3,10,0 +mypaint,0.3480815429,1.0170198092,-0.0287146792,https://salsa.debian.org/python-team/packages/mypaint, https://github.com/mypaint/mypaint,5559.7677199074,333,53,2 +mysecureshell,-0.4842069771,1.8606131049,-0.9637054818,https://github.com/mysecureshell/mysecureshell,https://github.com/mysecureshell/mysecureshell,2575.5671990741,3,14,1 +mysqltuner,1.4500845033,4.4623073775,0.3464758377,https://salsa.debian.org/debian/mysqltuner, https://github.com/major/MySQLTuner-perl,4651.9533217593,46,119,0 +n2n,0.1542450391,2.8427672865,-0.655319557,https://github.com/leggewie-DM/n2n,https://github.com/leggewie-DM/n2n,3071.9561111111,2,3,0 +nabi,-1.1181697355,0.3411872046,-1.5057188398,https://salsa.debian.org/l10n-korean-team/nabi, https://github.com/libhangul/nabi.git,5305.1766782407,0,3,0 +nadoka,-4.0224516234,-0.7310921121,-5.1260106864,https://salsa.debian.org/ruby-team/nadoka, https://github.com/nadoka/nadoka,4550.0664351852,0,9,0 +naev,-0.6769965248,0.4515571117,-0.9303442477,https://salsa.debian.org/debian/naev, https://github.com/naev/naev.git,5788.007349537,70,162,0 +nagios-nrpe,0.47729168,0.8359014689,0.2392185802,https://salsa.debian.org/nagios-team/nrpe, https://github.com/NagiosEnterprises/nrpe.git,5657.7203819445,12,36,0 +nagios-plugin-check-multi,0.1635781549,2.1691859694,-0.5118687535,https://salsa.debian.org/nagios-team/check-multi, https://github.com/flackem/check_multi.git,4620.4081481482,0,15,0 +nagios-snmp-plugins,0.04263926,1.5223412672,-0.3567034243,https://salsa.debian.org/nagios-team/nagios-snmp-plugins, https://github.com/SteScho/manubulon-snmp.git,3770.9597106482,13,22,0 +nagiosplugin,0.2639523449,2.9085640448,-0.3299571239,https://salsa.debian.org/python-team/packages/nagiosplugin, https://github.com/mpounsett/nagiosplugin.git,4266.1149421296,1,18,0 +nagstamon,0.7309077185,2.0290307394,0.0433865204,https://salsa.debian.org/python-team/packages/nagstamon, https://github.com/HenriWahl/Nagstamon,4918.7061574074,17,112,0 +nagvis,0.2016649842,1.2173315085,-0.3600392025,https://salsa.debian.org/nagios-team/nagvis, https://github.com/NagVis/nagvis,5779.6260648148,42,38,0 +nano,0.6261630785,0.9300246774,0.4088641204,https://salsa.debian.org/debian/nano, https://git.savannah.gnu.org/git/nano.git,5758.1,43,5,0 +nanomsg,-0.0613398543,2.1568540907,-0.808748531,https://salsa.debian.org/debian/nanomsg, https://github.com/nanomsg/nanomsg.git,4082.3897569445,88,48,0 +nasty,1.7398622788,6.040628791,0.3559757417,https://salsa.debian.org/pkg-security-team/nasty, https://github.com/folkertvanheusden/nasty,2093.1121412037,0,4,0 +natlog,-3.182094631,-2.5548895702,-3.3274833041,https://salsa.debian.org/debian/natlog, https://gitlab.com/fbb-git/natlog.git,3932.1057407407,0,1,0 +natsort,0.2307395007,2.1095787345,-0.2397860986,https://salsa.debian.org/python-team/packages/natsort, https://github.com/SethMMorton/natsort.git,4065.0547106482,9,17,0 +nautilus,1.7785441472,2.0151951193,1.5753562266,https://salsa.debian.org/gnome-team/nautilus, https://gitlab.gnome.org/GNOME/nautilus.git,5787.9497337963,560,536,0 +nautilus-filename-repairer,0.924989159,3.2280109324,0.0005519878,https://salsa.debian.org/l10n-korean-team/nautilus-filename-repairer, https://github.com/choehwanjin/repairer,2878.1959953704,0,1,0 +nautilus-sendto,0.2548851617,0.6619859791,0.0553301055,https://salsa.debian.org/gnome-team/nautilus-sendto, https://gitlab.gnome.org/GNOME/nautilus-sendto,4412.121400463,110,190,0 +nb2plots,-1.170670669,1.5589366654,-1.743374148,https://salsa.debian.org/python-team/packages/nb2plots, https://github.com/matthew-brett/nb2plots.git,2904.4454282408,2,7,0 +nbconvert,0.1997455107,1.2393657599,-0.1200882201,https://salsa.debian.org/python-team/packages/nbconvert, https://github.com/jupyter/nbconvert,4960.6174421296,124,179,4 +nbformat,0.4374312327,2.7937563067,-0.1068089027,https://salsa.debian.org/python-team/packages/nbformat, https://github.com/jupyter/nbformat,4953.7747106482,35,52,4 +nbtscan,0.2989992596,1.090810849,-0.0722586258,https://salsa.debian.org/pkg-security-team/nbtscan, https://github.com/resurrecting-open-source-projects/nbtscan,1167.6364699074,1,3,0 +ncbi-vdb,-0.6569361569,-0.2675890873,-0.7753516055,https://salsa.debian.org/med-team/ncbi-vdb, https://github.com/ncbi/ncbi-vdb,3367.922349537,2,70,0 +ncompress,0.6360276236,1.8663344659,0.0985497423,https://salsa.debian.org/debian/ncompress, https://github.com/vapier/ncompress.git,4740.1165856482,11,4,0 +ndctl,-0.3026771532,0.473161469,-0.4939488737,https://github.com/kilobyte/ndctl/tree/debian,https://github.com/kilobyte/ndctl,3210.1365509259,74,5,0 +ndcube,-0.4602740726,1.7912725941,-0.9427657569,https://salsa.debian.org/debian-astro-team/ndcube/, https://github.com/sunpy/ndcube.git,2309.230162037,5,25,0 +ndg-httpsclient,0.1546655272,1.0783288299,-0.0773848973,https://salsa.debian.org/debian/ndg-httpsclient, https://github.com/cedadev/ndg_httpsclient,3360.0136342593,2,11,0 +ndpi,0.5263648466,2.5659531127,-0.2474751487,https://salsa.debian.org/debian/ndpi, https://github.com/ntop/nDPI.git,3148.9571990741,65,142,0 +ndppd,-0.5295407302,1.6070155277,-1.0766996059,https://salsa.debian.org/debian/ndppd, https://github.com/DanielAdolfsson/ndppd,4471.5943171296,7,15,1 +neard,0.5311444679,4.0953604611,-0.5296646663,https://github.com/sameo/neard-deb,https://github.com/sameo/neard-deb,1126.7503587963,0,4,0 +neartree,-0.0269486668,2.399314564,-0.5366245779,https://salsa.debian.org/science-team/neartree, https://github.com/yayahjb/neartree,4773.070625,0,3,0 +neko,-0.3476116673,0.4024674223,-0.6520598063,https://github.com/HaxeFoundation/neko-debian,https://github.com/HaxeFoundation/neko-debian,5577.6636111111,6,3,0 +nemo,1.2471635711,2.3734627153,0.6122202796,https://salsa.debian.org/cinnamon-team/nemo, https://github.com/linuxmint/nemo.git,4158.3698958333,76,68,0 +nemo-fileroller,0.5671688971,3.2024539003,-0.0624948002,https://salsa.debian.org/cinnamon-team/nemo-fileroller, https://github.com/linuxmint/nemo-extensions.git,4073.197662037,36,38,0 +nemo-python,0.1622620758,1.9973413366,-0.4119781373,https://salsa.debian.org/cinnamon-team/nemo-python, https://github.com/linuxmint/nemo-extensions.git,4073.197662037,36,38,0 +neomutt,1.0660685693,2.7351403402,0.2935299788,https://salsa.debian.org/mutt-team/neomutt, https://github.com/neomutt/neomutt,5650.5290625,268,117,0 +neovim,0.1395777744,0.6055388004,-0.0780391448,https://salsa.debian.org/vim-team/neovim, https://github.com/neovim/neovim,3604.0696527778,719,402,6 +netcdf,0.6018978911,1.1415688445,0.2731501943,https://salsa.debian.org/debian-gis-team/netcdf, https://github.com/Unidata/netcdf-c.git,4942.1828125,23,110,0 +netcdf-cxx,-0.359140508,1.3957561161,-0.7913195086,https://salsa.debian.org/debian-gis-team/netcdf-cxx, https://github.com/Unidata/netcdf-cxx4.git,4438.9411805556,3,28,0 +netcdf-fortran,-0.1482258041,0.751301518,-0.2962965499,https://salsa.debian.org/debian/netcdf-fortran, https://github.com/Unidata/netcdf-fortran.git,4488.0650115741,7,39,0 +netcdf4-python,-0.00876593,2.2764215098,-0.4506185828,https://salsa.debian.org/debian-gis-team/netcdf4-python/, https://github.com/Unidata/netcdf4-python,5780.898587963,13,68,0 +netconsole,-1.2200873308,0.812746843,-1.6449255455,https://salsa.debian.org/debian/netconsole, https://github.com/ionos-cloud/netconsole,558.8093865741,0,1,0 +netdiscover,0.2541652433,1.9765761262,-0.2111939526,https://salsa.debian.org/debian/netdiscover, https://github.com/netdiscover-scanner/netdiscover,5323.4166087963,1,5,0 +nethogs,1.0566920021,2.6813679321,0.3242578074,https://salsa.debian.org/debian/nethogs, https://github.com/raboof/nethogs,5593.736400463,10,53,0 +netmask,0.1565448394,1.6001239244,-0.32030328,https://salsa.debian.org/debian/netmask, https://github.com/tlby/netmask,3093.1759143519,0,5,0 +netmate,-0.7193504538,2.0828169784,-1.3563191488,https://salsa.debian.org/debian/netmate, https://github.com/Rup0rt/netmate,2070.0839814815,0,5,0 +netmiko,-1.0489066952,1.5253845098,-1.5545549286,https://salsa.debian.org/python-team/packages/netmiko, https://github.com/ktbyers/netmiko,3283.2779282408,134,166,0 +netplan.io,0.0413337826,1.5404784729,-0.3486539272,https://salsa.debian.org/debian/netplan.io, https://github.com/canonical/netplan/commits/master,5185.326875,55,11,0 +netty,0.2116994103,1.1926982659,-0.1522530862,https://salsa.debian.org/java-team/netty, https://github.com/netty/netty,5605.2634027778,792,89,15 +network-manager-applet,3.7932548386,4.6101341484,3.1992338737,https://salsa.debian.org/utopia-team/network-manager-applet, https://gitlab.gnome.org/GNOME/network-manager-applet,5752.7826273148,283,254,0 +network-manager-l2tp,0.1730522588,2.4986742151,-0.2783909483,https://github.com/nm-l2tp/debian.git,https://github.com/nm-l2tp/debian.git,2347.114224537,1,1,0 +network-manager-openvpn,5.0508603179,7.1159374652,3.9069857215,https://salsa.debian.org/utopia-team/network-manager-openvpn, https://gitlab.gnome.org/GNOME/NetworkManager-openvpn,5458.5822106482,129,126,0 +network-manager-pptp,2.1516270241,4.3946574989,1.1247517054,https://salsa.debian.org/utopia-team/network-manager-pptp, https://gitlab.gnome.org/GNOME/NetworkManager-pptp,5360.5983449074,84,99,0 +network-manager-ssh,-0.0086320792,1.1414433729,-0.2761809158,https://salsa.debian.org/lhw-guest/network-manager-ssh, https://github.com/danfruehauf/NetworkManager-ssh,3197.1808449074,4,7,0 +network-manager-vpnc,2.3665407409,4.3674225616,1.3679779251,https://salsa.debian.org/utopia-team/network-manager-vpnc, https://gitlab.gnome.org/GNOME/NetworkManager-vpnc,5426.7166782407,90,109,0 +networkd-dispatcher,-0.3239671074,2.3811130412,-1.0107758291,https://salsa.debian.org/debian/networkd-dispatcher, https://gitlab.com/craftyguy/networkd-dispatcher,2215.2071412037,6,18,0 +networkx,0.1733661269,0.8847256134,-0.1005078085,https://salsa.debian.org/python-team/packages/networkx, https://github.com/networkx/networkx.git,5779.1963657407,533,226,0 +neurodebian,0.2531204057,1.4942698942,-0.2093375646,http://github.com/neurodebian/neurodebian,http://github.com/neurodebian/neurodebian,5270.1396990741,4,25,0 +newpid,-1.3246124466,0.5600587202,-1.752211721,https://github.com/df7cb/newpid,https://github.com/df7cb/newpid,2886.7799652778,3,3,0 +nextepc,-3.1224390213,-0.1970147391,-4.0970791266,https://salsa.debian.org/debian-mobcom-team/nextepc, https://github.com/acetcom/nextepc.git,2506.1347337963,86,27,0 +nfdump,0.9772718382,2.3442169462,0.2331823807,https://salsa.debian.org/debian/nfdump, https://github.com/phaag/nfdump,3040.3677314815,10,40,0 +nfoview,-0.0498945429,1.6663964244,-0.6736195708,https://salsa.debian.org/python-team/packages/nfoview, https://github.com/otsaloma/nfoview,5657.3754861111,14,5,0 +nfstrace,0.7169141553,2.6489983997,-0.0935466194,https://salsa.debian.org/debian/nfstrace, https://github.com/epam/nfstrace,2137.7810300926,9,42,0 +nghttp2,0.1065618369,0.4347187363,0.0029079033,https://salsa.debian.org/debian/nghttp2, https://github.com/nghttp2/nghttp2.git,4348.341724537,32,130,0 +nheko,-0.3139988157,0.6502311234,-0.62973041,https://salsa.debian.org/matrix-team/nheko, https://github.com/Nheko-Reborn/nheko.git,2443.2706365741,100,109,0 +nicotine,1.1799268913,2.1306688201,0.5995358819,https://salsa.debian.org/python-team/packages/nicotine, https://github.com/nicotine-plus/nicotine-plus,5780.241412037,85,41,0 +nifti2dicom,-0.1186607259,1.299142347,-0.6903266138,https://salsa.debian.org/med-team/nifti2dicom, https://github.com/biolab-unige/nifti2dicom.git,2963.0766898148,0,2,0 +nifticlib,0.482582181,2.765829641,-0.1510181369,https://salsa.debian.org/med-team/nifticlib, https://github.com/NIFTI-Imaging/nifti_clib.git,5617.6469212963,18,12,0 +nim,-0.2729941533,0.9223391374,-0.6895767438,https://salsa.debian.org/debian/nim, https://github.com/nim-lang/Nim.git,5653.1098842593,567,454,0 +ninja-build,0.270479694,0.926413304,-0.0254375461,https://salsa.debian.org/debian/ninja-build, https://github.com/ninja-build/ninja.git,4801.452974537,69,249,0 +ninka,-1.2427926984,1.0338618531,-1.6842246523,https://salsa.debian.org/debian/ninka, https://github.com/dmgerman/ninka,4166.3812268519,0,17,0 +nixnote2,-0.3647270032,0.4002965512,-0.4904591503,https://salsa.debian.org/debian/nixnote2, https://github.com/robert7/nixnote2,4104.4428587963,11,48,0 +nload,0.6920286572,1.9662038736,0.1248983732,https://github.com/marciosouza20/nload.git,https://github.com/marciosouza20/nload.git,5.8634143519,0,1,0 +nm-tray,0.2402419984,2.9899186351,-0.4509695416,https://salsa.debian.org/lxqt-team/nm-tray, https://github.com/palinek/nm-tray.git,2973.3749074074,57,7,0 +nml,-1.2281121964,0.4260204109,-1.7415001008,https://salsa.debian.org/openttd-team/nml, https://github.com/OpenTTD/nml.git,4991.1396296296,23,23,0 +nmrpflash,-3.9117966743,-1.8322545897,-4.343551647,https://salsa.debian.org/debian/nmrpflash, https://github.com/jclehner/nmrpflash,2833.1074768519,10,8,0 +nnn,-0.3146729866,0.230218874,-0.4237767237,https://salsa.debian.org/debian/nnn, https://github.com/jarun/nnn.git,2665.9989814815,133,86,0 +noblenote,0.2499893684,3.633169791,-0.7757570797,https://github.com/hakaishi/nobleNote,https://github.com/hakaishi/nobleNote,4167.6854282407,0,13,2 +nocache,0.6323720855,2.8803006592,-0.068529056,https://salsa.debian.org/debian/nocache, https://github.com/Feh/nocache,3331.9030902778,2,12,0 +nodau,-1.5991809833,-0.3805538345,-1.905798655,https://salsa.debian.org/carnil/nodau, https://github.com/TicklishHoneyBee/nodau,4073.1802662037,2,7,0 +node-abbrev,0.3167225092,2.5424116289,-0.1165089261,https://salsa.debian.org/js-team/node-abbrev, https://github.com/npm/abbrev-js,5021.0522106482,6,4,0 +node-active-x-obfuscator,-1.7102077451,0.4939822957,-2.1488227767,https://salsa.debian.org/js-team/node-active-x-obfuscator, https://github.com/felixge/node-active-x-obfuscator.git,979.9255902778,0,5,0 +node-address,-2.3512829732,-0.2296492891,-2.7851879565,https://salsa.debian.org/js-team/node-address, https://github.com/node-modules/address.git,3756.5830208333,7,6,0 +node-ansi,0.651738311,3.3801423506,-0.0622958722,https://salsa.debian.org/js-team/node-ansi, https://github.com/TooTallNate/ansi.js.git,2003.1949884259,2,6,0 +node-applause,-2.6025031313,0.0354812349,-3.2768862018,https://salsa.debian.org/js-team/node-applause, https://github.com/outatime/applause.git,2600.1592592593,1,6,0 +node-argparse,0.7368630053,3.6195056782,-0.1463225449,https://salsa.debian.org/js-team/node-argparse, https://github.com/nodeca/argparse.git,3647.7774421296,4,24,0 +node-async,0.5218373576,3.0881514944,-0.1535917393,https://salsa.debian.org/js-team/node-async, https://github.com/caolan/async,4951.2041435185,77,213,0 +node-babel-plugin-add-module-exports,-1.4169325387,1.5441837408,-2.1700991878,https://salsa.debian.org/js-team/node-babel-plugin-add-module-exports, https://github.com/59naga/babel-plugin-add-module-exports,2579.5546180556,2,7,0 +node-base64url,-1.8861246737,0.890181623,-2.5677734916,https://salsa.debian.org/js-team/node-base64url, https://github.com/brianloveswords/base64url.git,3614.4876388889,6,11,0 +node-bindings,-0.3124286212,2.605717497,-1.0137570127,https://salsa.debian.org/js-team/node-bindings, https://github.com/TooTallNate/node-bindings,2587.1395949074,4,8,0 +node-bluebird,0.0584203533,1.0937802889,-0.1343492494,https://salsa.debian.org/js-team/node-bluebird, https://github.com/petkaantonov/bluebird.git,3418.3106597222,121,152,0 +node-bootstrap-tour,0.4223280319,2.9664539995,-0.1498760091,https://salsa.debian.org/js-team/node-bootstrap-tour, https://github.com/sorich87/bootstrap-tour,4115.3561458333,7,73,2 +node-brace-expansion,0.7162282626,3.6275037079,-0.0452789703,https://salsa.debian.org/js-team/node-brace-expansion, https://github.com/juliangruber/brace-expansion.git,3650.0062615741,12,13,0 +node-browserify-sign,-0.3965627836,2.1824850094,-0.9709240479,https://salsa.debian.org/js-team/node-browserify-sign, https://github.com/browserify/browserify-sign,3266.7325578704,5,13,0 +node-chai,-1.1930063763,1.2430512,-1.8080371871,https://salsa.debian.org/js-team/node-chai, https://github.com/chaijs/chai,4382.9819444445,57,150,1 +node-chart.js,0.0271854957,2.037327139,-0.4179595364,https://salsa.debian.org/js-team/node-chart.js, https://github.com/chartjs/Chart.js.git,3913.8058912037,349,189,0 +node-clean-css,0.1880139003,2.7123268564,-0.4696783378,https://salsa.debian.org/js-team/node-clean-css, https://github.com/GoalSmashers/clean-css.git,4686.8824537037,63,58,0 +node-co,0.4601096377,2.8630730353,-0.1003269721,https://salsa.debian.org/js-team/node-co, https://github.com/tj/co,1229.0172106482,17,46,0 +node-code,-4.7551646559,-1.4632937686,-5.4545700188,https://salsa.debian.org/js-team/node-code, https://github.com/hapijs/code.git,3316.1678125,19,23,0 +node-coffeeify,-1.4017605239,1.4637076784,-2.2159952345,https://salsa.debian.org/js-team/node-coffeeify, https://github.com/jnordberg/coffeeify.git,1705.9137731482,1,13,0 +node-colormin,-3.5089164725,-0.6840024754,-4.2685005942,https://salsa.debian.org/js-team/node-colormin, https://github.com/ben-eb/colormin,2228.6048148148,0,6,0 +node-combine-source-map,-2.1067627582,1.451088997,-3.1431542202,https://salsa.debian.org/js-team/node-combine-source-map, https://github.com/thlorenz/combine-source-map.git,1465.4289583333,4,5,0 +node-concat-stream,0.3435827993,2.8106720089,-0.124130821,https://salsa.debian.org/js-team/node-concat-stream, https://github.com/maxogden/concat-stream.git,2331.5214583333,5,21,0 +node-constants-browserify,-0.11940227,2.8343540596,-0.9198546616,https://salsa.debian.org/js-team/node-constants-browserify, https://github.com/juliangruber/constants-browserify,3669.6149189815,0,3,0 +node-content-disposition,-0.1498091429,2.3260602113,-0.8520258644,https://salsa.debian.org/js-team/node-content-disposition, https://github.com/jshttp/content-disposition.git,2639.7443518519,6,2,0 +node-convert-source-map,0.0871772545,2.7765163193,-0.5756792774,https://salsa.debian.org/js-team/node-convert-source-map, https://github.com/thlorenz/convert-source-map,3505.4009953704,16,11,0 +node-cookie-signature,0.0990081923,2.8247812735,-0.6845514149,https://salsa.debian.org/js-team/node-cookie-signature, https://github.com/visionmedia/node-cookie-signature.git,3831.3145486111,2,13,0 +node-core-js,-0.0701104518,1.8860340205,-0.4290715682,https://salsa.debian.org/js-team/node-core-js, https://github.com/zloirock/core-js.git,3801.3871990741,67,73,0 +node-cross-spawn-async,-0.4789307226,0.5287764974,-0.6568563161,https://salsa.debian.org/js-team/node-cross-spawn-async, https://github.com/IndigoUnited/node-cross-spawn-async.git,674.7693981481,1,12,0 +node-cssstyle,0.0239557668,3.7882296404,-1.1998721983,https://salsa.debian.org/js-team/node-cssstyle, https://github.com/chad3814/CSSStyleDeclaration.git,2137.4537037037,0,9,0 +node-d3-color,-0.5677058758,2.345342576,-1.264606113,https://salsa.debian.org/js-team/node-d3-color, https://github.com/d3/d3-color,3047.9240046296,6,8,0 +node-d3-dsv,-0.6792934342,2.1613351331,-1.3775271458,https://salsa.debian.org/js-team/node-d3-dsv, https://github.com/d3/d3-dsv,3863.8892013889,14,6,0 +node-dashdash,0.812623388,3.8026107021,-0.0104465219,https://salsa.debian.org/js-team/node-dashdash, https://github.com/trentm/node-dashdash,3657.7330671296,5,4,0 +node-dateformat,-0.01865954,1.6506546912,-0.4323251957,https://salsa.debian.org/js-team/node-dateformat, https://github.com/felixge/node-dateformat,3995.8592476852,8,37,0 +node-deep-extend,0.3074384175,2.5963720517,-0.1256934881,https://salsa.debian.org/js-team/node-deep-extend, https://github.com/unclechu/node-deep-extend.git,2469.0779513889,2,14,0 +node-dryice,-1.6777851216,0.5009822025,-2.1440213388,https://salsa.debian.org/js-team/node-dryice, https://github.com/mozilla/dryice,1261.6348842593,1,13,0 +node-errno,0.7419951798,3.986012183,-0.0698570252,https://salsa.debian.org/js-team/node-errno, https://github.com/rvagg/node-errno,3152.3664699074,3,11,0 +node-error-ex,-0.1994307651,1.9233568792,-0.6268261848,https://salsa.debian.org/js-team/node-error-ex, https://github.com/qix-/node-error-ex.git,1448.5513425926,4,8,0 +node-es6-promise,0.1196794162,1.3870551483,-0.1690632599,https://salsa.debian.org/js-team/node-es6-promise, https://github.com/jakearchibald/es6-promise.git,3681.2223148148,18,73,0 +node-escodegen,-0.9093738935,1.6920705658,-1.478079418,https://salsa.debian.org/js-team/node-escodegen, https://github.com/estools/escodegen,4135.2103472222,14,53,0 +node-eslint-plugin-node,-3.5825038685,-0.9222057083,-4.2859491757,https://salsa.debian.org/js-team/node-eslint-plugin-node, https://github.com/mysticatea/eslint-plugin-node.git,2019.6640393519,35,4,0 +node-eslint-scope,-1.0829445808,1.2817678931,-1.5579454642,https://salsa.debian.org/js-team/node-eslint-scope, https://github.com/eslint/eslint-scope.git,4084.6226157407,20,34,0 +node-execa,0.7079961346,3.9551483175,-0.0722137493,https://salsa.debian.org/js-team/node-execa, https://github.com/sindresorhus/execa,2926.6958680556,49,7,0 +node-expat,-0.4080781453,2.3530029048,-1.5150203534,https://salsa.debian.org/js-team/node-expat, https://github.com/astro/node-expat,4931.3002893519,7,34,0 +node-extend,0.7004129328,3.6122581892,-0.0527431497,https://salsa.debian.org/js-team/node-extend, https://github.com/justmoon/node-extend,4212.296400463,1,15,0 +node-extend-shallow,-0.1006921362,1.3927484709,-0.3636715364,https://salsa.debian.org/js-team/node-extend-shallow, https://github.com/jonschlinkert/extend-shallow,1170.6065046296,0,5,0 +node-file-entry-cache,-0.7855336157,1.967354907,-1.5011474598,https://salsa.debian.org/js-team/node-file-entry-cache, https://github.com/royriojas/file-entry-cache.git,3181.5545138889,1,11,0 +node-findit2,-0.2051260072,2.7355493581,-1.1209208962,https://salsa.debian.org/js-team/node-findit2, https://github.com/andrewrk/node-findit.git,1811.4445601852,1,5,0 +node-fined,-0.1637425394,2.1242452034,-0.5982871995,https://salsa.debian.org/js-team/node-fined, https://github.com/js-cli/fined,1982.8433680556,5,3,0 +node-form-data,0.5074076179,3.0343874901,-0.0886742861,https://salsa.debian.org/js-team/node-form-data, https://github.com/felixge/node-form-data.git,3563.1111111111,9,36,0 +node-formidable,-1.0478352411,1.3329643424,-1.6311123883,https://salsa.debian.org/js-team/node-formidable, https://github.com/felixge/node-formidable.git,4861.6687384259,45,72,0 +node-fresh,-0.3450557311,2.0039913503,-0.81124946,https://salsa.debian.org/js-team/node-fresh, https://github.com/visionmedia/node-fresh.git,3886.7925231482,11,3,0 +node-fuzzaldrin-plus,-0.9739589777,1.136573322,-1.4594019089,https://salsa.debian.org/js-team/node-fuzzaldrin-plus, https://github.com/jeancroy/fuzzaldrin-plus,751.1080902778,2,6,0 +node-glob,0.1438254638,1.5362567845,-0.118526066,https://salsa.debian.org/js-team/node-glob, https://github.com/isaacs/node-glob.git,5090.5140740741,32,18,0 +node-glob-parent,0.6450001184,3.7612425822,-0.2184338205,https://salsa.debian.org/js-team/node-glob-parent, https://github.com/es128/glob-parent,3015.0730902778,8,7,0 +node-glob-stream,-0.2667475281,1.9569201908,-0.7011283799,https://salsa.debian.org/js-team/node-glob-stream, https://github.com/gulpjs/glob-stream,3628.7153472222,10,27,0 +node-global-modules,0.781547433,4.3247974319,-0.240879989,https://salsa.debian.org/js-team/node-global-modules, https://github.com/jonschlinkert/global-modules,1379.5605671296,0,5,0 +node-growl,0.2615168471,3.0033282458,-0.5876979402,https://salsa.debian.org/js-team/node-growl, https://github.com/tj/node-growl,4729.7242939815,12,29,0 +node-grunt-babel,-2.3567896079,-0.2595823007,-2.786480601,https://salsa.debian.org/js-team/node-grunt-babel, https://github.com/babel/grunt-babel.git,3011.4746296296,8,12,0 +node-grunt-cli,1.2110710947,4.4921332971,4.42152270994788e-05,https://salsa.debian.org/js-team/node-grunt-cli, https://github.com/gruntjs/grunt-cli.git,3126.2931944445,8,16,0 +node-gulp-babel,-1.6753037226,0.7240298055,-2.2929274971,https://salsa.debian.org/js-team/node-gulp-babel, https://github.com/babel/gulp-babel.git,3018.4431018519,10,21,0 +node-gulp-flatten,-2.894365887,-0.8111009229,-3.321955765,https://salsa.debian.org/js-team/node-gulp-flatten, https://github.com/armed/gulp-flatten,3247.6037152778,2,7,0 +node-gulp-load-plugins,-1.2725888367,2.2883154102,-2.2151032496,https://salsa.debian.org/js-team/node-gulp-load-plugins, https://github.com/jackfranklin/gulp-load-plugins,3321.8455787037,10,29,0 +node-gyp,0.0377305117,0.6211458053,-0.1173242042,https://salsa.debian.org/js-team/node-gyp, https://github.com/nodejs/node-gyp.git,4297.5489699074,197,73,0 +node-has-flag,0.3334743676,2.4592111562,-0.1192014058,https://salsa.debian.org/js-team/node-has-flag, https://github.com/sindresorhus/has-flag,2203.7011111111,6,2,0 +node-i18next,-0.9700696746,1.4692404903,-1.4717866736,https://salsa.debian.org/js-team/node-i18next, https://github.com/i18next/i18next,4381.3880439815,88,163,0 +node-iferr,0.4489682891,2.9841211882,-0.1066894654,https://salsa.debian.org/js-team/node-iferr, https://github.com/shesek/iferr,3291.1148148148,1,3,0 +node-ignore,-1.2595433194,0.389151093,-1.5922224269,https://salsa.debian.org/js-team/node-ignore, https://github.com/kaelzhang/node-ignore.git,3728.032349537,8,15,0 +node-inherits,0.7538197515,4.0841444558,-0.0508306716,https://salsa.debian.org/js-team/node-inherits, https://github.com/isaacs/inherits,4576.503912037,6,4,0 +node-inline-source-map,-1.7253778479,0.3256715997,-2.1428170788,https://salsa.debian.org/js-team/node-inline-source-map, https://github.com/thlorenz/inline-source-map.git,3126.5302314815,5,5,0 +node-ip,0.5473402205,3.0729874251,-0.1357528421,https://salsa.debian.org/js-team/node-ip, https://github.com/indutny/node-ip,3990.2488194445,6,20,0 +node-is-arrayish,-0.0113184631,2.4802704151,-0.5878636382,https://salsa.debian.org/js-team/node-is-arrayish, https://github.com/qix-/node-is-arrayish,1162.9688194445,2,9,0 +node-is-glob,0.6638373369,3.8445632106,-0.214727985,https://salsa.debian.org/js-team/node-is-glob, https://github.com/jonschlinkert/is-glob,2500.3032986111,3,9,0 +node-is-npm,0.9785051776,4.5008052167,0.0095997285,https://salsa.debian.org/js-team/node-is-npm, https://github.com/sindresorhus/is-npm,2619.0418634259,7,2,0 +node-is-typedarray,0.3980978816,2.528720541,-0.0976776715,https://salsa.debian.org/js-team/node-is-typedarray, https://github.com/hughsk/is-typedarray,349.2442476852,0,2,0 +node-iscroll,0.3236470898,2.6334834534,-0.1547197624,https://salsa.debian.org/js-team/node-iscroll, https://github.com/cubiq/iscroll,2222.4944791667,9,37,0 +node-isexe,0.3099265646,2.6155667478,-0.1218258686,https://salsa.debian.org/js-team/node-isexe, https://github.com/isaacs/isexe,2832.2716319445,1,4,0 +node-jed,0.9307464408,4.5334423493,-0.0663016053,https://salsa.debian.org/js-team/node-jed, https://github.com/messageformat/Jed.git,1857.5029166667,3,19,0 +node-jison,-2.8705191059,-0.5904861053,-3.3214497471,https://salsa.debian.org/js-team/node-jison, https://github.com/zaach/jison,3961.6974305556,7,59,1 +node-jquery-mousewheel,0.2686821158,2.6543019787,-0.1911219866,https://salsa.debian.org/js-team/node-jquery-mousewheel, https://github.com/jquery/jquery-mousewheel,5390.8646296296,6,15,1 +node-js-yaml,0.4409745941,3.1934994602,-0.2717318465,https://salsa.debian.org/js-team/node-js-yaml, https://github.com/nodeca/js-yaml.git,3981.0986342593,30,56,0 +node-jsesc,0.1478102512,3.2506359357,-0.5098361018,https://salsa.debian.org/js-team/node-jsesc, https://github.com/mathiasbynens/jsesc,2702.1588310185,6,3,0 +node-jsonld,-0.3900227003,1.4087981003,-0.8349111162,https://salsa.debian.org/js-team/node-jsonld, https://github.com/digitalbazaar/jsonld.js,4896.3341319445,24,28,2 +node-jsonminify,-0.1691871793,2.0408856828,-0.6162694158,https://salsa.debian.org/js-team/node-jsonminify, https://github.com/fkei/JSON.minify,3001.0353819445,2,9,0 +node-jsonselect,0.5601821689,4.3158830877,-0.4551619485,https://salsa.debian.org/js-team/node-jsonselect, https://github.com/lloyd/JSONSelect,984.9768287037,2,8,0 +node-jsonstream,0.0148857887,0.9404939552,-0.13452413,https://salsa.debian.org/js-team/node-jsonstream, https://github.com/dominictarr/JSONStream,2577.6002314815,1,37,0 +node-knockout,-1.6817262176,0.9748888004,-2.3144504112,https://salsa.debian.org/js-team/node-knockout, https://github.com/knockout/knockout.git,4081.7972685185,20,115,0 +node-lastfm,-0.2802502576,3.2316861272,-1.2092934746,https://salsa.debian.org/js-team/node-lastfm, https://github.com/jammus/lastfm-node,4644.4506018519,2,11,2 +node-livescript,-0.7964545677,0.8298622409,-1.2087204198,https://salsa.debian.org/js-team/node-livescript, https://github.com/gkz/LiveScript,3444.0588194445,8,88,2 +node-macaddress,-2.3578089542,0.3286344876,-2.9837856086,https://salsa.debian.org/js-team/node-macaddress, https://github.com/scravy/node-macaddress,2961.7712268519,5,13,0 +node-map-visit,0.0602654466,2.3400984295,-0.3823836028,https://salsa.debian.org/js-team/node-map-visit, https://github.com/jonschlinkert/map-visit,645.0525115741,0,3,0 +node-media-typer,-0.1314554385,2.3567183276,-0.7554351148,https://salsa.debian.org/js-team/node-media-typer, https://github.com/expressjs/media-typer.git,2488.2450925926,1,1,0 +node-merge-descriptors,-0.2368061411,2.2901222412,-0.8069774958,https://salsa.debian.org/js-team/node-merge-descriptors, https://github.com/component/merge-descriptors.git,3669.9310532407,3,3,0 +node-mess,-0.2872327671,3.3046798368,-1.2179833072,https://salsa.debian.org/js-team/node-mess, https://github.com/bobrik/node-mess,420.8625578704,0,3,0 +node-millstone,-1.4457365806,1.0910699973,-2.0387356121,https://salsa.debian.org/js-team/node-millstone, https://github.com/mapbox/millstone,4176.2971875,3,21,0 +node-minimist,0.3063916948,2.5263654362,-0.1223643827,https://salsa.debian.org/js-team/node-minimist, https://github.com/minimistjs/minimist.git,3791.1307175926,12,9,0 +node-mixin-deep,0.2041015905,2.301231867,-0.3460970033,https://salsa.debian.org/js-team/node-mixin-deep, https://github.com/jonschlinkert/mixin-deep.git,1736.2018171296,0,4,0 +node-mocks-http,-1.7138454453,1.129012054,-2.4238704392,https://salsa.debian.org/js-team/node-mocks-http, https://github.com/howardabrams/node-mocks-http,4315.2549074074,38,62,0 +node-moment,0.433395317,2.9128467532,-0.1319986492,https://salsa.debian.org/js-team/node-moment, https://github.com/moment/moment.git,4145.5463541667,438,274,0 +node-mqtt-packet,-2.1961592069,0.0425211631,-2.6185433222,https://salsa.debian.org/js-team/node-mqtt-packet, https://github.com/mqttjs/mqtt-packet,3391.8497337963,19,27,0 +node-node-rest-client,-2.3477177712,-0.1362083826,-2.7858794983,https://salsa.debian.org/js-team/node-node-rest-client, https://github.com/aacerox/node-rest-client,3880.3789814815,2,29,1 +node-nopt,0.1344716537,1.5524995983,-0.1244481877,https://salsa.debian.org/js-team/node-nopt, https://github.com/npm/nopt,4635.8365972222,17,11,0 +node-object-assign,0.3108456046,2.3394912168,-0.1196625452,https://salsa.debian.org/js-team/node-object-assign, https://github.com/sindresorhus/object-assign.git,3563.1044328704,7,8,0 +node-object-path,0.4926843538,3.1465044234,-0.2928602599,https://salsa.debian.org/js-team/node-object-path, https://github.com/mariocasciaro/object-path,3395.5928125,1,21,1 +node-on-finished,0.0613223619,2.8531731142,-0.6913305342,https://salsa.debian.org/js-team/node-on-finished, https://github.com/jshttp/on-finished,3350.0634259259,5,3,0 +node-once,-0.1226053888,-0.1171397715,-0.1237821835,https://salsa.debian.org/js-team/node-once, https://github.com/isaacs/once.git,4074.419212963,2,6,0 +node-os-browserify,-0.3268262004,2.3252681953,-0.9671784701,https://salsa.debian.org/js-team/node-os-browserify, https://github.com/CoderPuppy/os-browserify,1580.0713425926,1,7,0 +node-parse-glob,0.6847833884,3.868282575,-0.2490532696,https://salsa.debian.org/js-team/node-parse-glob, https://github.com/micromatch/parse-glob,1589.2864351852,1,5,0 +node-parseurl,0.275713727,3.6232142368,-0.6473483724,https://salsa.debian.org/js-team/node-parseurl, https://github.com/expressjs/parseurl.git,3251.1265972222,2,3,0 +node-policyfile,-0.9515002748,1.7831825682,-1.7365256836,https://salsa.debian.org/js-team/node-policyfile, https://github.com/3rd-Eden/FlashPolicyFileServer,2142.8337037037,0,3,0 +node-preact,-2.1839793158,0.9768309969,-2.9591096847,https://salsa.debian.org/js-team/node-preact, https://github.com/developit/preact.git,3016.8271064815,228,177,0 +node-prismjs,-1.7075207826,1.436170444,-2.6156514476,https://salsa.debian.org/js-team/node-prismjs, https://github.com/LeaVerou/prism.git,3977.7420486111,239,189,0 +node-promise,-0.5501677705,1.4973541225,-1.0338399154,https://salsa.debian.org/js-team/node-promise, https://github.com/then/promise,3592.5633101852,14,29,0 +node-proxyquire,-4.6960882635,-1.9866626858,-5.410573802,https://salsa.debian.org/js-team/node-proxyquire, https://github.com/thlorenz/proxyquire.git,3798.2810416667,25,13,0 +node-pseudomap,0.9377781668,4.3264809989,-0.0364711838,https://salsa.debian.org/js-team/node-pseudomap, https://github.com/isaacs/pseudomap,2873.803599537,1,5,0 +node-puka,0.1729689888,2.7134685411,-0.4065734856,https://salsa.debian.org/js-team/node-puka, https://gitlab.com/rhendric/puka,959.1950115741,0,1,0 +node-rdf-canonize,-0.3430067939,1.8098696652,-0.8307766937,https://salsa.debian.org/js-team/node-rdf-canonize, https://github.com/digitalbazaar/rdf-canonize.git,2830.3079282407,3,8,0 +node-react-audio-player,-4.8100583491,-2.4298503474,-5.420558223,https://salsa.debian.org/js-team/node-react-audio-player, https://github.com/justinmc/react-audio-player.git,2489.7878125,9,20,0 +node-regenerate-unicode-properties,-0.6674866267,0.9618352502,-1.0118784845,https://salsa.debian.org/js-team/node-regenerate-unicode-properties, https://github.com/mathiasbynens/regenerate-unicode-properties,2664.7656597222,3,2,0 +node-regjsparser,-0.7798404163,1.2003365063,-1.1962820592,https://salsa.debian.org/js-team/node-regjsparser, https://github.com/jviereck/regjsparser.git,3676.996875,2,16,0 +node-repeat-element,0.0303018925,2.2050520215,-0.399164761,https://salsa.debian.org/js-team/node-repeat-element, https://github.com/jonschlinkert/repeat-element,2277.9809027778,1,7,0 +node-resolve,0.5575663073,3.2984179044,-0.1407771771,https://salsa.debian.org/js-team/node-resolve, https://github.com/substack/node-resolve.git,4523.8015162037,39,26,0 +node-rollup-plugin-alias,-4.7520611126,-2.2384737366,-5.4208845202,https://salsa.debian.org/js-team/node-rollup-plugin-alias, https://github.com/rollup/plugins,1574.0213078704,219,12,0 +node-semver-diff,0.3257088663,2.53870067,-0.1250464411,https://salsa.debian.org/js-team/node-semver-diff, https://github.com/sindresorhus/semver-diff,2556.954525463,4,3,0 +node-sha.js,-0.3796284784,2.2003163321,-0.9432268955,https://salsa.debian.org/js-team/node-sha.js, https://github.com/crypto-browserify/sha.js,1546.487037037,3,17,0 +node-simple-swizzle,-3.3828108141,-1.5319435267,-3.7510526278,https://salsa.debian.org/js-team/node-simple-swizzle, https://github.com/qix-/node-simple-swizzle,2271.2482060185,1,3,0 +node-snapdragon,0.0374783954,2.1244720905,-0.3853126603,https://salsa.debian.org/js-team/node-snapdragon, https://github.com/jonschlinkert/snapdragon.git,2160.5059722222,3,7,0 +node-source-map,1.5524520782,5.2633393885,0.3579530469,https://salsa.debian.org/js-team/node-source-map, https://github.com/mozilla/source-map,4395.1949189815,30,77,0 +node-source-map-support,0.0115822458,3.0288667903,-0.7455583159,https://salsa.debian.org/js-team/node-source-map-support, https://github.com/evanw/node-source-map-support.git,3692.3183101852,18,59,0 +node-sourcemap-codec,-0.9782572253,1.0397701347,-1.4204883608,https://salsa.debian.org/js-team/node-sourcemap-codec, https://github.com/Rich-Harris/sourcemap-codec,2611.7215972222,0,12,0 +node-sprintf-js,0.4014290609,3.1578856064,-0.2132993373,https://salsa.debian.org/js-team/node-sprintf-js, https://github.com/alexei/sprintf.js,3813.8363078704,3,28,0 +node-ssri,0.4331740134,2.8578668337,-0.1107367526,https://salsa.debian.org/js-team/node-ssri, https://github.com/zkat/ssri.git,2084.4809606482,2,3,0 +node-starttls,-3.2028271629,0.3123776454,-4.1656333947,https://salsa.debian.org/js-team/node-starttls, https://github.com/mattcg/starttls,960.3696643519,0,1,0 +node-static-module,-2.9295084562,0.0141965632,-3.6919322552,https://salsa.debian.org/js-team/node-static-module, https://github.com/substack/static-module.git,3102.503912037,8,14,0 +node-string-decoder,0.4324513521,3.0006538783,-0.1138855604,https://salsa.debian.org/js-team/node-string-decoder, https://github.com/nodejs/string_decoder.git,2072.5483449074,4,7,0 +node-stringprep,-1.25858701,1.4295408548,-2.2227266177,https://salsa.debian.org/js-team/node-stringprep, https://github.com/node-xmpp/node-stringprep,2104.0097800926,2,22,0 +node-tape,-1.3533456222,0.8230887097,-1.8448352117,https://salsa.debian.org/js-team/node-tape, https://github.com/ljharb/tape.git,4022.1372916667,54,62,0 +node-tar,0.10092401,1.1554569611,-0.1194951399,https://salsa.debian.org/js-team/node-tar, https://github.com/npm/node-tar,4544.3033449074,24,18,1 +node-temp,-0.8998725735,2.4095798708,-1.9534582368,https://salsa.debian.org/js-team/node-temp, https://github.com/bruce/node-temp,4595.6285416667,2,39,2 +node-terser,-0.5996606861,0.7924811095,-1.0414625912,https://salsa.debian.org/js-team/node-terser, https://github.com/terser/terser,4211.1498726852,195,75,0 +node-test,-1.1865527924,1.2057642216,-1.6221327583,https://salsa.debian.org/js-team/node-test, https://github.com/Gozala/test-commonjs,826.1617476852,0,3,0 +node-timed-out,0.534083437,2.8184506266,-0.0696353825,https://salsa.debian.org/js-team/node-timed-out, https://github.com/floatdrop/timed-out,2343.4748726852,6,7,0 +node-timers-browserify,-0.0057775316,2.9797681359,-0.8660612404,https://salsa.debian.org/js-team/node-timers-browserify, https://github.com/jryans/timers-browserify,3168.7872916667,8,10,0 +node-tinycolor,-0.4423608766,1.5948463614,-0.8781083458,https://salsa.debian.org/js-team/node-tinycolor, https://github.com/einaros/tinycolor.git,332.3723611111,0,3,0 +node-tmp,0.0305888512,2.1915037795,-0.4072220903,https://salsa.debian.org/js-team/node-tmp, https://github.com/raszi/node-tmp.git,4359.0872685185,7,35,0 +node-trust-json-document,-4.9532456218,-2.9019375195,-5.4554167334,https://salsa.debian.org/js-team/node-trust-json-document, https://github.com/anvilresearch/json-document.git,471.8604513889,0,5,0 +node-tunnel-agent,1.1792785071,4.9631632678,0.1110924805,https://salsa.debian.org/js-team/node-tunnel-agent, https://github.com/mikeal/tunnel-agent,1464.1568634259,0,12,0 +node-type-check,-0.619856367,1.5719870744,-1.0599876067,https://salsa.debian.org/js-team/node-type-check, https://github.com/gkz/type-check.git,3579.125787037,2,5,0 +node-ultron,-2.7813197419,-0.4758682807,-3.3070168453,https://salsa.debian.org/js-team/node-ultron, https://github.com/unshiftio/ultron,2972.2796527778,1,7,0 +node-unicode-data,-2.4986839661,-1.5066066307,-2.7694541364,https://salsa.debian.org/js-team/node-unicode-data, https://github.com/mathiasbynens/node-unicode-data.git,3658.0537962963,6,3,0 +node-unicode-property-aliases,-2.1224965726,0.5054136483,-2.7508821504,https://salsa.debian.org/js-team/node-unicode-property-aliases, https://github.com/mathiasbynens/unicode-property-aliases,2644.0663657408,2,1,0 +node-unicode-property-aliases-ecmascript,-0.4930241449,2.1362080223,-1.1371319719,https://salsa.debian.org/js-team/node-unicode-property-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-aliases-ecmascript,1978.1429398148,1,2,0 +node-unicode-property-value-aliases,-2.108074165,0.5458957808,-2.7511821006,https://salsa.debian.org/js-team/node-unicode-property-value-aliases, https://github.com/mathiasbynens/unicode-property-value-aliases.git,2643.9666898148,2,2,0 +node-unicode-property-value-aliases-ecmascript,-2.6459525399,-0.0300807748,-3.2844645306,https://salsa.debian.org/js-team/node-unicode-property-value-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript,1977.9928009259,0,1,0 +node-unicode-tr51,-2.8970799304,-0.9087592402,-3.3116008945,https://salsa.debian.org/js-team/node-unicode-tr51, https://github.com/mathiasbynens/unicode-tr51,1619.1367939815,1,1,0 +node-utilities,0.7510248514,4.5416704471,-0.5676243448,https://salsa.debian.org/js-team/node-utilities, https://github.com/mde/utilities.git,3873.0201388889,1,19,0 +node-uuid,0.283624179,1.6049599044,-0.0900742762,https://salsa.debian.org/js-team/node-uuid, https://github.com/kelektiv/node-uuid,4670.2036805556,41,41,2 +node-v8flags,0.1190291187,2.504747846,-0.5070823362,https://salsa.debian.org/js-team/node-v8flags, https://github.com/tkellen/node-v8flags.git,1721.1332407407,15,3,0 +node-vhost,-1.6545263406,0.6845370117,-2.2878465779,https://salsa.debian.org/js-team/node-vhost, https://github.com/expressjs/vhost.git,3246.905150463,1,3,0 +node-vue-resource,-1.8045687517,-0.3856069237,-2.0705983161,https://salsa.debian.org/js-team/node-vue-resource, https://github.com/pagekit/vue-resource,2754.4118518519,8,21,0 +node-webpack-merge,-3.8493072011,-1.380862227,-4.3376760901,https://salsa.debian.org/js-team/node-webpack-merge, https://github.com/survivejs/webpack-merge.git,3033.8957060185,15,23,0 +node-websocket,0.394346969,3.014744253,-0.4930870101,https://salsa.debian.org/js-team/node-websocket, https://github.com/theturtle32/WebSocket-Node,3898.1259490741,14,47,1 +node-window-size,0.8174450414,4.93165221,-0.5057928398,https://salsa.debian.org/js-team/node-window-size, https://github.com/jonschlinkert/window-size,1623.6925347222,3,7,0 +node-worker-loader,-1.9350131226,1.1246788799,-2.7191707724,https://salsa.debian.org/js-team/node-worker-loader, https://github.com/webpack-contrib/worker-loader.git,3320.7711921296,31,18,0 +node-wrap-ansi,0.7557645001,3.6694774434,-0.0297221144,https://salsa.debian.org/js-team/node-wrap-ansi, https://github.com/chalk/wrap-ansi.git,2991.9496412037,8,6,0 +node-ws,-0.5975046436,0.9287832252,-0.9312812427,https://salsa.debian.org/js-team/node-ws, https://github.com/websockets/ws.git,4417.8559606482,91,121,0 +node-ytdl-core,-0.1246800443,2.4581193839,-0.8183512675,https://salsa.debian.org/js-team/node-ytdl-core, https://github.com/fent/node-ytdl-core.git,4096.004525463,70,23,0 +nodeenv,-0.6570648957,1.4812327857,-1.14641203,https://github.com/chriskuehl/nodeenv,https://github.com/chriskuehl/nodeenv,2128.7291782407,1,53,0 +nomacs,-0.1195252619,0.4799728253,-0.3176324087,https://salsa.debian.org/lxqt-team/nomacs, https://github.com/nomacs/nomacs/commits/master,5185.326875,55,11,0 +nomnom,0.4452914343,2.9402706663,-0.3322295975,https://github.com/mogaal/nomnom,https://github.com/mogaal/nomnom,917.9151273148,0,2,0 +nordlicht,-0.4190840106,1.2017878417,-0.7274544195,https://salsa.debian.org/multimedia-team/nordlicht, https://github.com/nordlicht/nordlicht,1854.1766087963,0,8,0 +nordugrid-arc,-0.8890095142,-0.5073399904,-1.0664388012,https://salsa.debian.org/ellert/nordugrid-arc, https://source.coderefinery.org/nordugrid/arc,0.1011921296,1,1,0 +norm,0.0395894571,0.5725879857,-0.0372679262,https://salsa.debian.org/debian/norm, https://github.com/USNavalResearchLaboratory/norm,1453.1532523148,10,9,0 +nose,0.5593235771,1.3368533719,0.153968621,https://salsa.debian.org/python-team/packages/nose, https://github.com/nose-devs/nose.git,2945.2441319445,11,88,0 +nose2,-0.0813046917,1.1174216206,-0.4323603462,https://salsa.debian.org/python-team/packages/nose2, https://github.com/nose-devs/nose2.git,4347.0000115741,27,63,0 +notmuch,0.2958734187,0.617699197,0.1001077828,https://git.notmuchmail.org/git/notmuch, https://git.notmuchmail.org/git/notmuch,5166.8245601852,217,23,0 +notmuch-addrlookup,-0.5765143279,1.1877508137,-1.0148913081,https://salsa.debian.org/debian/notmuch-addrlookup, https://github.com/aperezdc/notmuch-addrlookup-c,3177.0368287037,9,8,0 +nqp,0.2120752597,1.328541292,-0.1863357318,https://salsa.debian.org/perl6-team/nqp, https://github.com/Raku/nqp.git,5159.1587847222,24,165,0 +nsca-ng,-0.5633658512,0.8404353755,-1.1288671432,https://salsa.debian.org/nagios-team/nsca-ng, https://github.com/weiss/nsca-ng.git,3817.9714236111,3,6,0 +nsd,-0.2094967146,0.1662286715,-0.4548887765,https://salsa.debian.org/dns-team/nsd, https://github.com/NLnetLabs/nsd,5722.0815972222,12,44,1 +nsnake,0.294306693,3.1180145865,-0.512619257,https://github.com/alexdantas/nsnake.debian,https://github.com/alexdantas/nsnake.debian,35.0934490741,0,2,0 +nsntrace,-0.2107095266,2.4855302503,-1.1430329763,https://salsa.debian.org/sudip/nsntrace, https://github.com/nsntrace/nsntrace,1665.640150463,1,7,0 +nss-mdns,2.0683043859,3.3001710217,1.3165639145,https://salsa.debian.org/debian/nss-mdns, https://github.com/lathiat/nss-mdns,2585.1120138889,6,5,1 +nss-passwords,0.7982881531,3.7262660831,-0.2843886787,https://salsa.debian.org/ocaml-team/nss-passwords, https://github.com/glondu/nss-passwords,4767.9518865741,1,2,0 +nss-wrapper,-0.5902677358,0.7903246712,-0.943796879,https://salsa.debian.org/sssd-team/nss-wrapper, https://git.samba.org/nss_wrapper.git,3737.9026273148,14,4,0 +ntirpc,-0.5951678873,1.6658190607,-1.2552045305,https://salsa.debian.org/debian/libntirpc, https://github.com/nfs-ganesha/ntirpc.git,4521.189837963,43,88,0 +nuitka,-0.0866725521,0.7058083517,-0.4988086801,https://github.com/Nuitka/Nuitka,https://github.com/Nuitka/Nuitka,4857.7762847222,166,5,3 +nulib2,-2.8835281311,-0.617225292,-3.3218622057,https://salsa.debian.org/debian/nulib2, https://github.com/fadden/nulib2.git,2958.8671643519,0,7,0 +numba,1.7784656757,4.3381978879,0.6363712726,https://salsa.debian.org/science-team/numba, https://github.com/numba/numba.git,4209.7246759259,115,337,0 +numexpr,-0.0194772952,0.3619169281,-0.1464228011,https://salsa.debian.org/science-team/numexpr, https://github.com/pydata/numexpr,5774.6705787037,9,77,0 +numpy-stl,0.6158259402,4.1216818162,-0.2927834208,https://salsa.debian.org/python-team/packages/numpy-stl, https://github.com/WoLpH/numpy-stl,3320.4569444445,4,21,0 +numpydoc,0.2750593039,2.1096050838,-0.1920688887,https://salsa.debian.org/python-team/packages/numpydoc, https://github.com/numpy/numpydoc,5498.2309143519,38,50,1 +nuntius-linux,0.0562256061,3.0068525021,-0.7578958074,https://salsa.debian.org/debian/nuntius-linux, https://github.com/holylobster/nuntius-linux.git,1285.1505324074,2,13,0 +nurpawiki,-4.202425836,-3.4681724303,-4.3504039812,https://salsa.debian.org/ocaml-team/nurpawiki, https://github.com/glondu/nurpawiki.git,5643.4121296296,0,6,0 +nvidia-modprobe,0.5457409995,2.6334328552,-0.0334171669,https://salsa.debian.org/nvidia-team/nvidia-modprobe, https://github.com/NVIDIA/nvidia-modprobe,3894.0040972222,0,3,0 +nvidia-persistenced,0.5544050718,2.8521283153,-0.0537008341,https://salsa.debian.org/nvidia-team/nvidia-persistenced, https://github.com/NVIDIA/nvidia-persistenced,3871.0209606482,0,3,0 +nvidia-settings,0.6646607196,1.2285812207,0.3153351244,https://salsa.debian.org/nvidia-team/nvidia-settings, https://github.com/NVIDIA/nvidia-settings,5776.4649305556,24,5,0 +nvidia-settings-legacy-340xx,0.3151479615,2.7684405123,-0.2288499596,https://salsa.debian.org/nvidia-team/nvidia-settings, https://github.com/NVIDIA/nvidia-settings,5776.4649305556,24,5,0 +nvidia-xconfig,0.9734320248,2.4417272676,0.2943686593,https://salsa.debian.org/nvidia-team/nvidia-xconfig, https://github.com/NVIDIA/nvidia-xconfig,5775.9081134259,1,3,0 +nvpy,-0.3144467073,2.8922861575,-1.2852911447,https://github.com/stefanv/nvpy/tree/debian,https://github.com/stefanv/nvpy,2724.1981134259,2,29,0 +nxt-firmware,0.4066198534,3.9704905036,-0.5796957012,https://salsa.debian.org/debian-lego-team/nxt-firmware, https://git.ni.fr.eu.org/nxt-firmware.git,4581.9566087963,6,2,0 +o-saft,-0.0182736193,2.1999044406,-0.4504212317,https://salsa.debian.org/pkg-security-team/o-saft, https://github.com/OWASP/O-Saft,4011.0202777778,3,10,0 +oar,-1.4634945941,-0.6606837191,-1.7817291006,https://github.com/oar-team/oar,https://github.com/oar-team/oar,5765.8415856482,5,46,5 +oath-toolkit,0.9460832981,2.6041463664,0.235737471,https://salsa.debian.org/debian/oath-toolkit, https://gitlab.com/oath-toolkit/oath-toolkit,4975.3153125,9,6,0 +obconf,0.7475755733,1.7842164637,0.2203904311,https://github.com/mati75/obconf-debian.git,https://github.com/mati75/obconf-debian.git,3725.6903935185,0,5,0 +obfs4proxy,0.0778413444,1.7337484409,-0.354803361,https://salsa.debian.org/pkg-privacy-team/obfs4proxy, https://gitlab.com/yawning/obfs4.git,3442.9295833333,1,6,0 +obs-studio,0.1312922919,0.962234072,-0.1232421438,https://salsa.debian.org/multimedia-team/obs-studio, https://github.com/jp9000/obs-studio.git,3726.9157986111,426,253,0 +obus,-3.5252462011,-1.6650389666,-4.1632184213,https://salsa.debian.org/ocaml-team/obus, https://github.com/ocaml-community/obus,5340.5275115741,3,16,1 +ocaml-alsa,-0.6651242782,1.2653797989,-1.038375358,https://salsa.debian.org/ocaml-team/ocaml-alsa, https://github.com/savonet/ocaml-alsa.git,460.5193634259,2,8,0 +ocaml-batteries,0.411441141,1.7124090256,-0.1184281151,https://salsa.debian.org/ocaml-team/ocaml-batteries, https://github.com/ocaml-batteries-team/batteries-included.git,5695.3693402778,48,89,0 +ocaml-ctypes,-0.1321180827,2.1843239985,-0.7528068954,https://salsa.debian.org/ocaml-team/ocaml-ctypes, https://github.com/ocamllabs/ocaml-ctypes.git,3744.7873032407,13,53,0 +ocaml-curses,-0.3882411717,1.6672546694,-1.070717363,https://salsa.debian.org/ocaml-team/ocaml-curses, https://github.com/mbacarella/curses.git,5368.611724537,1,10,0 +ocaml-dune,-0.3538658511,2.0830041886,-1.0450410974,https://salsa.debian.org/ocaml-team/ocaml-dune, https://github.com/ocaml/dune.git,2601.2655208333,199,111,0 +ocaml-duppy,-1.3054931735,1.4664487385,-2.0959619861,https://salsa.debian.org/ocaml-team/ocaml-duppy, https://github.com/savonet/ocaml-duppy.git,5432.8347337963,2,8,0 +ocaml-expect,-1.1271032549,2.7923660814,-2.3065192266,https://salsa.debian.org/ocaml-team/ocaml-expect, https://github.com/gildor478/ocaml-expect.git,3170.2275231482,0,3,0 +ocaml-extunix,-2.1872917146,-0.3028149378,-2.608406683,https://salsa.debian.org/ocaml-team/ocaml-extunix, https://github.com/ygrek/extunix.git,4849.8496064815,10,12,0 +ocaml-ffmpeg,-1.7680324626,0.6213946308,-2.2379595426,https://salsa.debian.org/ocaml-team/ocaml-ffmpeg, https://github.com/savonet/ocaml-ffmpeg.git,4033.3768634259,2,11,0 +ocaml-fileutils,-1.2078611318,0.0677154031,-1.4595756972,https://salsa.debian.org/ocaml-team/ocaml-fileutils, https://github.com/gildor478/ocaml-fileutils.git,1144.3784027778,5,6,0 +ocaml-flac,-1.7507623662,-0.3502245327,-2.1890215844,https://salsa.debian.org/ocaml-team/ocaml-flac, https://github.com/savonet/ocaml-flac.git,4915.2796990741,1,7,0 +ocaml-gen,-2.9140964642,-0.9922910043,-3.3171869681,https://salsa.debian.org/ocaml-team/ocaml-gen, https://github.com/c-cube/gen.git,3422.9857291667,3,9,0 +ocaml-gstreamer,-0.175799754,2.6087723309,-0.9430825776,https://salsa.debian.org/ocaml-team/ocaml-gstreamer, https://github.com/savonet/ocaml-gstreamer.git,5244.7535532407,0,10,0 +ocaml-http,-1.5494605128,1.5864107076,-2.4465473259,https://salsa.debian.org/ocaml-team/ocaml-http, https://github.com/sacerdot/ocaml-http.git,3570.2121180556,1,3,0 +ocaml-inotify,-1.5984447381,0.206726916,-1.9785130273,https://salsa.debian.org/ocaml-team/ocaml-inotify, https://github.com/whitequark/ocaml-inotify,3586.2803240741,4,14,0 +ocaml-ipaddr,-1.0446018994,1.8622042043,-1.7854758695,https://salsa.debian.org/ocaml-team/ocaml-ipaddr, https://github.com/mirage/ocaml-ipaddr.git,3725.5192476852,9,20,0 +ocaml-ladspa,-0.7118657078,1.2358767302,-1.4392313232,https://salsa.debian.org/ocaml-team/ocaml-ladspa, https://github.com/savonet/ocaml-ladspa.git,4935.8736458333,1,7,0 +ocaml-ogg,-0.348620776,1.64371205,-0.9603602503,https://salsa.debian.org/ocaml-team/ocaml-ogg, https://github.com/savonet/ocaml-ogg.git,5318.8518402778,1,7,0 +ocaml-opus,-0.9457632068,1.3513638625,-1.5381035109,https://salsa.debian.org/ocaml-team/ocaml-opus, https://github.com/savonet/ocaml-opus.git,3889.1978819445,2,8,0 +ocaml-re,-1.0950401153,1.1685448483,-1.5345632117,https://salsa.debian.org/ocaml-team/ocaml-re, https://github.com/ocaml/ocaml-re,4365.6594907407,11,42,1 +ocaml-res,-1.6619256072,0.8404387726,-2.374669465,https://salsa.debian.org/ocaml-team/ocaml-res, https://github.com/mmottl/res,3234.9244791667,0,3,0 +ocaml-sedlex,-2.795399504,0.6121377346,-3.6635666836,https://salsa.debian.org/ocaml-team/ocaml-sedlex, https://github.com/ocaml-community/sedlex,5659.0575925926,13,22,0 +ocaml-sha,-2.1615777656,-1.5624804098,-2.2474510973,https://salsa.debian.org/ocaml-team/ocaml-sha, https://github.com/djs55/ocaml-sha.git,5351.1972453704,6,17,0 +ocaml-shine,-1.6537337701,1.6212733101,-2.5015175014,https://salsa.debian.org/ocaml-team/ocaml-shine, https://github.com/savonet/ocaml-shine.git,3549.8277199074,1,5,0 +ocaml-speex,-0.6153846806,3.1543840863,-1.9637699192,https://salsa.debian.org/ocaml-team/ocaml-speex, https://github.com/savonet/ocaml-speex.git,5316.9980902778,1,7,0 +ocaml-ssl,1.2627219166,4.0685720227,0.1401679649,https://salsa.debian.org/ocaml-team/ocaml-ssl, https://github.com/savonet/ocaml-ssl.git,5405.4381828704,11,30,0 +ocaml-theora,-0.2512292534,3.1544360643,-1.4728171897,https://salsa.debian.org/ocaml-team/ocaml-theora, https://github.com/savonet/ocaml-theora.git,5316.9970717593,1,8,0 +ocaml-usb,-0.5973686893,1.7793339383,-1.206091524,https://salsa.debian.org/ocaml-team/ocaml-usb, https://github.com/letoh/ocaml-usb.git,4549.6073263889,1,8,0 +ocaml-vorbis,-0.9822001321,0.9986914273,-1.5520563192,https://salsa.debian.org/ocaml-team/ocaml-vorbis, https://github.com/savonet/ocaml-vorbis.git,5459.5669675926,1,7,0 +ocamlagrep,-2.1652077496,-1.0121628969,-2.3572482465,https://salsa.debian.org/ocaml-team/ocamlagrep, https://github.com/xavierleroy/ocamlagrep,2115.1310300926,1,2,0 +ocamlbuild,0.83301295,3.604633508,-0.2606702303,https://salsa.debian.org/ocaml-team/ocamlbuild, https://github.com/ocaml/ocamlbuild.git,5691.866099537,18,45,0 +ocamlgsl,0.1216448812,1.0155865797,-0.2462866522,https://salsa.debian.org/ocaml-team/ocamlgsl, https://github.com/mmottl/gsl-ocaml.git,3442.6045023148,1,11,0 +ocamlmakefile,-0.4214445039,1.3411395826,-0.7864395598,https://salsa.debian.org/ocaml-team/ocamlmakefile, https://github.com/mmottl/ocaml-makefile.git,1922.9826967593,0,4,0 +ocl-icd,0.2781454411,0.8515664588,0.03306071,https://salsa.debian.org/opencl-team/ocl-icd, https://github.com/OCL-DEV/ocl-icd.git,4207.2761689815,2,15,0 +ocp,0.7353360216,1.8994727767,0.1001948826,https://salsa.debian.org/multimedia-team/ocp, https://github.com/mywave82/opencubicplayer,4416.0663310185,9,13,0 +ocrfeeder,0.0364401645,0.5642500596,-0.2036941493,https://salsa.debian.org/python-team/packages/ocrfeeder, https://gitlab.gnome.org/GNOME/ocrfeeder,5391.6813078704,47,56,0 +ocrmypdf,-0.3099653598,-0.2770693273,-0.3185765004,https://salsa.debian.org/debian/ocrmypdf, https://github.com/ocrmypdf/OCRmyPDF.git,3897.7415625,69,26,0 +octave-mpi,-0.032052781,2.1492331512,-0.6364834294,https://salsa.debian.org/pkg-octave-team/octave-mpi, https://github.com/carlodefalco/octave-mpi,1390.161724537,1,3,0 +octave-octclip,-0.1783660164,2.1570485351,-0.7731519387,https://salsa.debian.org/pkg-octave-team/octave-octclip, https://bitbucket.org/jgpallero/octclip,4185.1310300926,0,2,0 +octave-octproj,-0.2039434333,2.6176385536,-0.9230865316,https://salsa.debian.org/pkg-octave-team/octave-octproj, https://bitbucket.org/jgpallero/octproj,4710.0728935185,0,2,0 +octave-statistics,0.0046253384,1.0657883889,-0.2691424952,https://salsa.debian.org/pkg-octave-team/octave-statistics, https://github.com/gnu-octave/statistics,5730.789537037,4,41,0 +octave-symbolic,-0.0298070849,0.8934162901,-0.3474976579,https://salsa.debian.org/pkg-octave-team/octave-symbolic, https://github.com/cbm755/octsympy.git,3532.2309027778,6,31,0 +odil,-0.8317789828,-0.397569442,-0.9351734244,https://salsa.debian.org/med-team/odil, https://github.com/lamyj/odil,2678.1739351852,5,12,1 +odt2txt,0.9552454239,3.2643599868,0.0923391006,https://salsa.debian.org/debian/odt2txt, https://github.com/dstosberg/odt2txt,3417.1558564815,1,9,0 +ofxstatement,-0.8387724027,1.4898616569,-1.2924218148,https://github.com/gerasiov/ofxstatement,https://github.com/gerasiov/ofxstatement,1632.6686689815,1,16,0 +ofxstatement-plugins,-0.5554916063,2.2730604682,-1.2542888677,https://github.com/gerasiov/ofxstatement-plugins,https://github.com/gerasiov/ofxstatement-plugins,1689.0224305556,0,3,0 +ogdi-dfsg,0.4637866222,1.3827381608,0.0703190227,https://salsa.debian.org/debian-gis-team/ogdi-dfsg, https://github.com/libogdi/ogdi.git,5366.5318402778,1,9,0 +olive-editor,-0.2344340254,0.9933378448,-0.5672832073,https://salsa.debian.org/multimedia-team/olive-editor, https://github.com/olive-editor/olive,1943.7612384259,34,57,0 +ompl,-0.3151284892,1.1894918537,-0.837997987,https://salsa.debian.org/science-team/ompl, https://github.com/ompl/ompl,4977.9051041667,45,68,0 +onedrive,-0.3674132771,0.5835657795,-0.639828541,https://salsa.debian.org/debian/onedrive, https://github.com/abraunegg/onedrive.git,2997.1442824074,97,17,0 +onesixtyone,-0.0525705364,1.7993576972,-0.4404876155,https://salsa.debian.org/pkg-security-team/onesixtyone, https://github.com/trailofbits/onesixtyone,3350.0547222222,10,11,0 +onionbalance,-1.7072197089,-0.2953383489,-2.1044905747,https://salsa.debian.org/debian/onionbalance, https://github.com/asn-d6/onionbalance.git,3123.2153240741,16,8,0 +onioncircuits,-0.0936864451,1.2678143371,-0.5710218001,https://salsa.debian.org/pkg-privacy-team/onioncircuits, https://gitlab.tails.boum.org/tails/onioncircuits,3211.8334722222,0,14,0 +open-ath9k-htc-firmware,0.7603141973,2.9426626321,-0.0525201094,https://salsa.debian.org/debian/open-ath9k-htc-firmware, https://github.com/qca/open-ath9k-htc-firmware.git,3892.0404398148,5,21,0 +open-build-service,-1.0732032788,-0.5119162672,-1.3752576213,https://salsa.debian.org/ruby-team/open-build-service, https://github.com/openSUSE/open-build-service,5787.9764699074,106,255,0 +open-iscsi,0.8547199903,1.3510903396,0.5119032533,https://salsa.debian.org/linux-blocks-team/open-iscsi, https://github.com/open-iscsi/open-iscsi.git,2731.8349652778,58,55,0 +open-vm-tools,0.0777991408,0.1808118552,0.0076409159,https://salsa.debian.org/vmware-packaging-team/pkg-open-vm-tools, https://github.com/vmware/open-vm-tools.git,5751.9325462963,6,21,0 +openalpr,-0.0827402973,1.5600071001,-0.7055479343,https://github.com/openalpr/openalpr,https://github.com/openalpr/openalpr,3147.0406365741,15,66,0 +openarena,0.9639654631,1.8254256501,0.4370622033,https://salsa.debian.org/games-team/openarena, https://github.com/OpenArena/gamecode,5128.3331944445,5,20,0 +openbox,0.3587708308,0.5696355779,0.2001738591,https://github.com/mati75/openbox-debian,https://github.com/mati75/openbox-debian,3123.4283217593,2,10,0 +openbox-menu,0.6431292738,3.0088710056,-0.1389880185,https://github.com/mati75/openbox-menu.git,https://github.com/mati75/openbox-menu.git,2669.041875,1,4,0 +opencc,0.0219092289,0.4824222963,-0.1611861662,https://salsa.debian.org/debian/opencc, https://github.com/BYVoid/OpenCC,3838.8327430556,56,72,0 +opencore-amr,0.9099599843,3.8261397338,0.130622222,https://salsa.debian.org/multimedia-team/opencore-amr, https://git.code.sf.net/p/opencore-amr/code,3542.8980787037,16,3,0 +opendht,-1.502253613,-0.1124423197,-1.9255361455,https://salsa.debian.org/debian/opendht, https://github.com/savoirfairelinux/opendht.git,3308.8721527778,32,40,0 +opendnssec,-0.1814861226,0.2946307949,-0.5049438221,https://salsa.debian.org/debian/opendnssec, https://github.com/opendnssec/opendnssec.git,5655.8361921296,1,44,0 +openjpeg2,0.7670720733,1.3494658655,0.4091541016,https://salsa.debian.org/debian-phototools-team/openjpeg2, https://github.com/uclouvain/openjpeg.git,5780.2631944445,33,69,0 +openlibm,-0.1034538849,0.9559807615,-0.3207495065,https://salsa.debian.org/julia-team/openlibm, https://github.com/JuliaMath/openlibm.git,4334.3510069445,17,49,0 +openni,0.453148378,1.7090954084,-0.105089182,https://salsa.debian.org/multimedia-team/openni, https://github.com/OpenNI/OpenNI.git,1070.0370601852,0,4,0 +openni-sensor-primesense,-0.705184402,0.5021820033,-0.967790767,https://salsa.debian.org/multimedia-team/openni-sensor-primesense, https://github.com/PrimeSense/Sensor.git,1069.8803587963,0,3,0 +openorienteering-mapper,-0.6311739325,0.7493854645,-1.0776155006,https://salsa.debian.org/debian/openorienteering-mapper, https://github.com/OpenOrienteering/mapper,4199.6665046296,148,39,5 +openscap,-0.2507358215,0.4919225043,-0.6033131851,https://salsa.debian.org/debian/openscap, https://github.com/OpenSCAP/openscap,5510.7205208333,70,121,3 +openscenegraph,0.1219451625,0.380721743,-0.036405397,https://salsa.debian.org/openscenegraph-team/openscenegraph-3.2, https://github.com/openscenegraph/OpenSceneGraph.git,5356.9920138889,72,120,0 +openshot-qt,2.1506520645,3.3280515788,1.3962097823,https://salsa.debian.org/multimedia-team/openshot-qt, https://github.com/Openshot/openshot-qt.git,3627.5347916667,26,46,0 +opensysusers,-3.3096631827,-1.1081118835,-3.751144934,https://salsa.debian.org/debian/opensysusers, https://github.com/cromerc/opensysusers.git,1929.9289236111,4,11,0 +openttd,-0.0532392798,0.1772215958,-0.1693615489,https://salsa.debian.org/openttd-team/openttd, https://github.com/OpenTTD/OpenTTD.git,5788.4102083333,192,50,0 +openttd-opengfx,0.2104931985,1.9248449214,-0.2085191138,https://salsa.debian.org/openttd-team/openttd-opengfx, https://github.com/OpenTTD/OpenGFX.git,5150.5743402778,11,18,0 +openttd-openmsx,0.5832066024,3.2825027954,-0.1430416611,https://salsa.debian.org/openttd-team/openttd-openmsx, https://github.com/OpenTTD/OpenMSX.git,5037.8726041667,7,8,0 +openttd-opensfx,0.0341113683,1.8104216829,-0.3723043838,https://salsa.debian.org/openttd-team/openttd-opensfx, https://github.com/OpenTTD/OpenSFX.git,5073.9709953704,7,9,0 +openturns,-0.1008784091,0.3428075188,-0.3596075398,https://salsa.debian.org/science-team/openturns, https://github.com/openturns/openturns,3036.8733101852,41,26,2 +opentyrian,-0.4709020515,1.8128682506,-0.9006361349,https://salsa.debian.org/games-team/opentyrian, https://github.com/opentyrian/opentyrian.git,5445.2196527778,6,17,0 +openvas-libraries,-0.279589519,0.5555496821,-0.6048154271,https://salsa.debian.org/pkg-security-team/openvas-libraries, https://github.com/greenbone/gvm-libs,5727.8965625,22,60,0 +openvas-manager,0.703025701,3.5431901435,-0.3217910865,https://salsa.debian.org/pkg-security-team/openvas-manager, https://github.com/greenbone/gvmd,5510.7235185185,30,61,0 +openvas-scanner,0.2557000866,2.3925604528,-0.4874112563,https://salsa.debian.org/pkg-security-team/openvas-scanner, https://github.com/greenbone/openvas,5785.3184490741,25,59,0 +openvpn-auth-ldap,0.9492241913,2.9316654455,0.079046326,https://salsa.debian.org/debian/openvpn-auth-ldap, https://github.com/threerings/openvpn-auth-ldap,1866.2952430556,1,10,0 +openvpn-systemd-resolved,0.2716920577,2.7624532328,-0.3345684112,https://salsa.debian.org/debian/openvpn-systemd-resolved, https://github.com/jonathanio/update-systemd-resolved,2661.6920949074,11,17,0 +openvr,-1.1773393746,1.2832311562,-1.677548862,https://salsa.debian.org/xrdesktop-team/openvr, https://github.com/ValveSoftware/openvr.git,3113.7753472222,1,12,0 +openzwave,0.2510314563,2.5288793437,-0.5905008371,https://salsa.debian.org/debian-iot-team/openzwave, https://github.com/OpenZWave/open-zwave,4679.3881481482,241,322,2 +ora2pg,-1.0602778859,1.8945065609,-1.8433668662,https://salsa.debian.org/postgresql/ora2pg, https://github.com/darold/ora2pg.git,4257.9320486111,11,55,0 +orage,0.6221013816,1.3770336422,0.2163063579,https://salsa.debian.org/xfce-team/apps/orage, https://gitlab.xfce.org/apps/orage,5617.6536921296,247,32,0 +orc,0.8699788909,2.1136859932,0.2972050648,https://salsa.debian.org/gstreamer-team/orc/, https://gitlab.freedesktop.org/gstreamer/orc,5664.9577546296,39,46,0 +orca,1.3123954882,2.0069253228,0.8426363733,https://salsa.debian.org/gnome-team/orca, https://gitlab.gnome.org/GNOME/orca,5788.7300462963,249,260,0 +orca-sops,-1.7939909126,0.4776489463,-2.2377231999,https://salsa.debian.org/a11y-team/orca-sops, https://github.com/chrys87/simple-orca-plugin-system.git,1662.2399768519,0,8,0 +orcania,-0.5283709484,2.0514100906,-1.0233328648,https://salsa.debian.org/debian-iot-team/oauth2/orcania.git, https://github.com/babelouest/orcania,1246.8811342593,5,16,0 +original-awk,-0.007234501,1.5010879678,-0.3966116766,https://salsa.debian.org/sanvila/original-awk, https://github.com/onetrueawk/awk,3992.553125,14,18,0 +orocos-bfl,-1.208397347,0.8539254656,-1.6744764019,https://salsa.debian.org/science-team/orocos-bfl, https://github.com/orocos/orocos-bayesian-filtering,3625.9026157407,2,10,1 +orocos-kdl,-0.4945558152,0.6669109207,-0.7546541561,https://salsa.debian.org/science-team/orocos-kdl, https://github.com/orocos/orocos_kinematics_dynamics.git,5760.2385532407,20,61,0 +osdlyrics,-1.0107652487,2.5410275398,-1.9364271071,https://salsa.debian.org/debian/osdlyrics, https://github.com/osdlyrics/osdlyrics.git,5185.1183796296,14,35,0 +osinfo-db,0.4381707092,1.5742094509,0.0354518992,https://salsa.debian.org/libvirt-team/osinfo-db, https://gitlab.com/libosinfo/osinfo-db.git,5150.4414699074,79,76,0 +osinfo-db-tools,-0.6588194602,1.5293100517,-1.0988659524,https://salsa.debian.org/libvirt-team/osinfo-db-tools, https://gitlab.com/libosinfo/osinfo-db-tools.git,5133.7255092593,23,18,0 +osm-gps-map,0.4852394822,1.6315652979,0.0288716929,https://salsa.debian.org/debian-gis-team/osm-gps-map, https://github.com/nzjrs/osm-gps-map,5396.5783564815,12,33,1 +osm2pgsql,-0.1652754624,0.4372761978,-0.3845723831,https://salsa.debian.org/debian-gis-team/osm2pgsql, https://github.com/openstreetmap/osm2pgsql.git,5749.83625,16,90,0 +osmcoastline,-0.3492358827,1.6111415757,-0.7706240372,https://salsa.debian.org/debian-gis-team/osmcoastline, https://github.com/osmcode/osmcoastline.git,4116.9983680556,2,6,0 +osmium-tool,-0.3557021487,1.1534273989,-0.6170797733,https://salsa.debian.org/debian-gis-team/osmium-tool/, https://github.com/osmcode/osmium-tool.git,3639.05375,11,18,0 +osmose-emulator,0.1990547717,2.6726258361,-0.5205191274,https://salsa.debian.org/games-team/osmose-emulator, https://gitlab.com/coringao/osmose-emulator,1312.3067361111,0,3,0 +osmosis,-0.3916331805,-0.2518421719,-0.4594827089,https://salsa.debian.org/debian-gis-team/osmosis, https://github.com/openstreetmap/osmosis.git,5774.2393055556,9,48,0 +osmpbf,-0.0947714798,0.7339060871,-0.299460333,https://salsa.debian.org/debian-gis-team/osmpbf, https://github.com/openstreetmap/OSM-binary.git,4802.1316898148,3,18,0 +ossim,0.2194206159,1.4101222421,-0.3093741078,https://salsa.debian.org/debian-gis-team/ossim, https://github.com/ossimlabs/ossim.git,2917.9942824074,12,49,0 +osslsigncode,0.169238484,2.9087642476,-0.725862886,https://salsa.debian.org/debian/osslsigncode, https://github.com/mtrojnar/osslsigncode.git,3941.3454282407,25,12,0 +ostinato,-0.1569756889,1.8345639417,-0.7645775616,https://salsa.debian.org/debian/ostinato, https://github.com/pstavirs/ostinato,3046.7549884259,4,10,3 +otb,-0.9813569994,-0.9242537632,-0.9933294158,https://salsa.debian.org/debian-gis-team/otb, https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb,4046.8698842593,4,56,0 +othman,-1.2792306,0.9010183816,-1.7193110897,https://salsa.debian.org/islamic-team/othman, https://github.com/ojuba-org/othman.git,4827.9828240741,2,13,0 +ounit,-0.3627412562,0.4497117871,-0.6191203191,https://salsa.debian.org/ocaml-team/ounit, https://github.com/gildor478/ounit.git,1284.2142476852,12,7,0 +outguess,0.1497827549,1.0974956579,-0.226083673,https://salsa.debian.org/pkg-security-team/outguess, https://github.com/resurrecting-open-source-projects/outguess,1029.0813888889,1,3,0 +overpass,-0.0322169908,2.6635478479,-0.7275603387,https://salsa.debian.org/python-team/packages/overpass, https://github.com/mvexel/overpass-api-python-wrapper.git,2968.0383449074,4,26,0 +owslib,0.2271628712,2.742054807,-0.2942907436,https://salsa.debian.org/debian-gis-team/owslib, https://github.com/geopython/OWSLib.git,5660.1285069445,56,114,0 +oxref,-2.1313853437,0.0327536458,-2.7254209081,https://salsa.debian.org/debian/oxref, https://gitlab.com/fbb-git/oxref,4649.082962963,1,1,0 +oxygen,1.2654283703,3.7291785036,0.2892513078,https://salsa.debian.org/qt-kde-team/kde/oxygen, https://invent.kde.org/plasma/oxygen.git,5783.3100578704,7,183,0 +oz,-0.7498295107,1.3031600094,-1.4218268645,https://salsa.debian.org/jas/oz, https://github.com/clalancette/oz.git,4573.4800694445,58,15,0 +p8-platform,0.4510883183,2.2604153125,-0.0788317433,https://salsa.debian.org/debian/p8-platform, https://github.com/Pulse-Eight/platform.git,2947.3549768519,2,28,0 +pacemaker,1.1235155799,1.8849677755,0.6240113585,https://salsa.debian.org/ha-team/pacemaker, https://github.com/ClusterLabs/pacemaker,5780.1951388889,21,156,0 +packit,1.4894283431,3.9572075631,0.3794626915,https://salsa.debian.org/debian/packit, https://github.com/resurrecting-open-source-projects/packit,2522.8474189815,3,11,0 +pacman4console,0.7320531649,3.0292005631,-0.1602141611,https://github.com/alexdantas/pacman4console.debian,https://github.com/alexdantas/pacman4console.debian,442.2178819444,0,2,0 +padthv1,-0.0637358518,2.799184112,-0.6752002578,https://salsa.debian.org/multimedia-team/padthv1, https://github.com/rncbc/padthv1.git,2334.0719907407,2,4,0 +pagekite,-0.0541538684,1.7722374692,-0.7868908867,https://salsa.debian.org/freedombox-team/pagekite, https://github.com/pagekite/PyPagekite,4048.006875,2,18,0 +pajeng,-2.2918945291,-1.4246521723,-2.5749097918,https://salsa.debian.org/debian/pajeng, https://github.com/schnorr/pajeng.git,3890.9853472222,1,24,0 +palapeli,1.2916189186,3.8239992817,0.296302097,https://salsa.debian.org/qt-kde-team/kde/palapeli, https://anongit.kde.org/palapeli.git,5741.5519444445,2,59,0 +pam-mysql,1.4172551789,2.6892441559,0.6781490905,https://salsa.debian.org/debian/pam-mysql, https://github.com/NigelCunningham/pam-MySQL.git,4452.5856365741,5,24,0 +pam-p11,-0.5485831615,0.9644461867,-1.1064659619,https://salsa.debian.org/opensc-team/pam-p11, https://github.com/OpenSC/pam_p11.git,5663.1348842593,3,10,0 +pam-wrapper,-1.347542839,0.1878798118,-1.6518801866,https://salsa.debian.org/sssd-team/pam-wrapper, https://git.samba.org/pam_wrapper.git,2892.2168518519,14,3,0 +pan,0.4134965779,0.6520036102,0.2269007521,https://salsa.debian.org/debian/pan, https://gitlab.gnome.org/GNOME/pan.git,5733.7957407408,59,77,0 +pango1.0,1.0943688807,1.5099402722,0.7872265285,https://salsa.debian.org/gnome-team/pango, https://gitlab.gnome.org/GNOME/pango,5787.3543287037,36,160,0 +panoramisk,-1.667243834,0.6277937741,-2.2869588051,https://salsa.debian.org/python-team/packages/panoramisk, https://github.com/gawel/panoramisk.git,3565.5460416667,6,25,0 +papi,0.1648741367,1.7494996599,-0.3472045276,https://salsa.debian.org/hpc-team/papi, https://github.com/icl-utk-edu/papi,5785.0656134259,65,102,1 +paprefs,1.2235549573,2.9478127829,0.4170400393,https://salsa.debian.org/pulseaudio-team/paprefs, https://gitlab.freedesktop.org/pulseaudio/paprefs,5104.5029513889,89,31,0 +par2cmdline,0.20056085,0.9463023937,-0.114418384,https://salsa.debian.org/jcfp/par2cmdline, https://github.com/Parchive/par2cmdline.git,4198.3890972222,9,27,0 +parafly,-0.7037850797,1.1831572633,-1.0930849211,https://salsa.debian.org/med-team/parafly, https://github.com/ParaFly/ParaFly,1437.0966666667,1,4,0 +parallax,-0.0887932063,2.3891626891,-0.651790374,https://salsa.debian.org/python-team/packages/parallax, https://github.com/krig/parallax,5166.3950231482,4,10,0 +paramiko,1.4366401218,2.3087330593,0.8784815028,https://salsa.debian.org/python-team/packages/paramiko, https://github.com/paramiko/paramiko,5765.7744097222,101,97,7 +parsedatetime,1.1943669328,3.3711848516,0.3370468439,https://salsa.debian.org/python-team/packages/parsedatetime, https://github.com/bear/parsedatetime,3739.2471990741,8,57,2 +partd,0.2096153056,2.6193211803,-0.3193732736,https://salsa.debian.org/python-team/packages/partd, https://github.com/dask/partd.git,3130.7778009259,14,10,0 +parted,1.6706301918,2.0526105298,1.3547546565,https://salsa.debian.org/parted-team/parted, https://git.savannah.gnu.org/git/parted.git,5668.1257986111,80,9,0 +pass-extension-tail,-0.3578050897,2.1366716684,-0.9333806276,https://salsa.debian.org/debian/pass-extension-tail, https://github.com/palortoff/pass-extension-tail,1892.8072222222,4,2,0 +passwordsafe,-0.1624005795,0.8521220603,-0.4499354219,https://salsa.debian.org/bblough/passwordsafe, https://github.com/pwsafe/pwsafe,5787.3005208333,38,78,0 +paste,0.7016788139,1.9722982038,0.1120933207,https://salsa.debian.org/python-team/packages/paste, https://github.com/cdent/paste,3197.4934606482,26,34,0 +pastedeploy,0.1590091885,1.1475071601,-0.1727660592,https://salsa.debian.org/python-team/packages/pastedeploy, https://github.com/Pylons/pastedeploy,4320.1172453704,5,24,0 +pastescript,0.3538232706,1.3551325439,-0.0943410822,https://salsa.debian.org/python-team/packages/pastescript, https://github.com/cdent/pastescript.git,3347.9577893519,0,24,0 +pasystray,0.6288642555,2.2257691757,-0.0058350837,https://salsa.debian.org/debian/pasystray, https://github.com/christophgysin/pasystray.git,4343.9490393519,23,11,0 +path.py,-0.0848290877,1.1385294168,-0.3518373706,https://salsa.debian.org/python-team/packages/path.py, https://github.com/jaraco/path.py.git,5108.109212963,22,38,0 +patsy,0.2674917865,1.4192573153,-0.1261483397,https://salsa.debian.org/med-team/patsy, https://github.com/pydata/patsy,4676.8131944445,3,15,0 +pavucontrol,1.3884593647,2.5751975999,0.7113415188,https://salsa.debian.org/pulseaudio-team/pavucontrol, https://gitlab.freedesktop.org/pulseaudio/pavucontrol.git,5564.733587963,151,58,0 +pavucontrol-qt,1.2464488625,4.8736917607,0.1529128395,https://salsa.debian.org/lxqt-team/pavucontrol-qt, https://github.com/lxqt/pavucontrol-qt.git,5699.7374189815,142,57,0 +pbcopper,-1.3874159842,-0.0972708879,-1.836455251,https://salsa.debian.org/med-team/pbcopper, https://github.com/PacificBiosciences/pbcopper.git,2608.9496875,0,25,0 +pcapfix,0.0933295762,2.1324165499,-0.3712900504,https://salsa.debian.org/debian/pcapfix, https://github.com/Rup0rt/pcapfix,3586.925,0,13,0 +pcapy,0.0349538125,1.2547992825,-0.3075562935,https://salsa.debian.org/python-team/packages/pcapy, https://github.com/CoreSecurity/pcapy.git,1937.2327893519,7,20,0 +pcl,-0.4344154152,-0.1858665736,-0.5376364213,https://salsa.debian.org/science-team/pcl, https://github.com/PointCloudLibrary/pcl,4663.6967824074,183,548,3 +pcmanfm,0.9104711528,1.3106826431,0.6098723045,https://salsa.debian.org/lxde-team/pcmanfm, https://github.com/lxde/pcmanfm,5014.9549074074,162,27,0 +pcmanfm-qt,-0.1379218142,-0.0960956898,-0.1489172729,https://salsa.debian.org/lxqt-team/pcmanfm-qt, https://github.com/lxqt/pcmanfm-qt.git,4124.8018055556,132,60,0 +pcmanx-gtk2,0.4057047307,2.1701828538,-0.4029890769,https://github.com/pcman-bbs/pcmanx/,https://github.com/pcman-bbs/pcmanx,4671.9572106482,20,31,2 +pd-ableton-link,-0.3242999127,2.1635542469,-0.8681743229,https://salsa.debian.org/multimedia-team/pd/pd-ableton-link, https://github.com/libpd/abl_link.git,2218.7531018519,1,11,0 +pd-csound,-0.1761009143,2.2969820811,-0.6652826278,https://salsa.debian.org/multimedia-team/pd/pd-csound, https://github.com/csound/csound_pd,5151.5544791667,2,16,0 +pd-cyclone,-0.0431109426,1.6212225005,-0.5094386925,https://salsa.debian.org/multimedia-team/pd/pd-cyclone, https://github.com/porres/pd-cyclone,5699.0375,3,24,0 +pd-flext,-0.0850254405,1.799559297,-0.6918728933,https://salsa.debian.org/multimedia-team/pd/pd-flext, https://github.com/grrrr/flext.git,5601.7882986111,3,10,0 +pd-ggee,0.2137381335,2.1051137101,-0.4192763849,https://salsa.debian.org/multimedia-team/pd/pd-ggee, https://github.com/pd-externals/ggee,5602.6691782407,2,15,0 +pd-iemmatrix,-0.3267928639,1.4162291626,-0.7027745657,https://salsa.debian.org/multimedia-team/pd/pd-iemmatrix, https://github.com/iem-projects/pd-iemmatrix,5648.0384606482,0,11,0 +pd-libdir,-0.0254803142,1.5396086069,-0.4343390486,https://salsa.debian.org/multimedia-team/pd/pd-libdir, https://github.com/pure-data/libdir,2709.9478356482,1,9,0 +pd-lua,-0.3693835135,1.759056146,-0.7808199336,https://salsa.debian.org/multimedia-team/pd/pd-lua, https://github.com/agraef/pd-lua.git,3302.6912962963,1,8,0 +pd-mediasettings,-0.3833812165,1.9274394838,-0.8157277778,https://salsa.debian.org/multimedia-team/pd/pd-mediasettings, https://git.iem.at/pd/mediasettings.git,4193.7572106482,1,10,0 +pd-moonlib,-0.2205765237,2.0226305482,-0.7345172583,https://salsa.debian.org/multimedia-team/pd/pd-moonlib, https://github.com/MetaluNet/moonlib.git,5328.8024537037,1,11,0 +pd-mrpeach,-0.4357781902,0.7634179736,-0.6961546043,https://salsa.debian.org/multimedia-team/pd/pd-mrpeach, https://github.com/pd-externals/mrpeach.git,5185.5776736111,1,9,0 +pd-purest-json,-0.254922487,2.320237042,-0.8198404593,https://salsa.debian.org/multimedia-team/pd/pd-purest-json, https://github.com/residuum/PuRestJson.git,4472.3532291667,0,8,0 +pd-tclpd,-0.5472322751,1.0653891207,-0.8320989326,https://salsa.debian.org/multimedia-team/pd/pd-tclpd, https://github.com/pd-externals/tclpd.git,5367.8831018519,2,12,0 +pd-vbap,-0.2128975248,1.7544581087,-0.7432504363,https://salsa.debian.org/multimedia-team/pd/pd-vbap, https://github.com/pd-externals/vbap.git,5156.0736574074,1,7,0 +pd-xsample,-0.3812603066,1.9525555214,-0.8681596425,https://salsa.debian.org/multimedia-team/pd/pd-xsample, https://github.com/grrrr/xsample.git,5672.9809259259,1,13,0 +pdal,-0.2380145702,-0.1410401987,-0.2545550115,https://salsa.debian.org/debian-gis-team/pdal, https://github.com/PDAL/PDAL.git,4697.1094444445,132,71,0 +pdd,-0.9684689619,1.3033133236,-1.4106955016,https://salsa.debian.org/debian/pdd, https://github.com/jarun/pdd.git,2233.8472337963,8,9,0 +pdepend,-0.1159838686,1.8753535614,-0.6497169004,https://salsa.debian.org/php-team/pear/pdepend, https://github.com/pdepend/pdepend,5780.3265625,17,96,2 +pdf-presenter-console,0.1642352925,0.7783557239,-0.149365665,https://salsa.debian.org/debian/pdf-presenter-console, https://github.com/pdfpc/pdfpc,4984.1533217593,37,34,1 +pdfarranger,0.4078884497,1.3671850389,-0.0134247423,https://salsa.debian.org/python-team/packages/pdfarranger, https://github.com/pdfarranger/pdfarranger,5142.0676967593,96,11,2 +pdfkit,-0.1447242985,3.0919106346,-1.0508398304,https://salsa.debian.org/python-team/packages/pdfkit, https://github.com/JazzCore/python-pdfkit,3909.8537268519,16,22,0 +pdfminer,0.0208023168,1.0139403963,-0.2584702373,https://salsa.debian.org/python-team/packages/pdfminer, https://github.com/pdfminer/pdfminer.six.git,5691.1447916667,73,66,0 +pdfresurrect,-0.2399652539,1.6794626137,-0.5968823707,https://salsa.debian.org/debian/pdfresurrect, https://github.com/enferex/pdfresurrect.git,5171.962662037,2,6,0 +pdftk-java,0.1189322826,1.0361898191,-0.1042110221,https://gitlab.com/johfel/pdftk, https://gitlab.com/pdftk-java/pdftk.git,2124.7854513889,5,26,0 +pdudaemon,-2.9130668064,-0.1458508245,-3.6790610276,https://github.com/pdudaemon/pkg-pdudaemon,https://github.com/pdudaemon/pkg-pdudaemon,1898.0415972222,9,22,0 +peek,0.2213731786,2.283866536,-0.2790469573,https://salsa.debian.org/debian/peek, https://github.com/phw/peek.git,2556.2171064815,148,23,0 +peewee,0.1037434918,3.3896219604,-0.890060634,https://salsa.debian.org/python-team/packages/peewee, https://github.com/coleifer/peewee,4809.9156365741,33,127,0 +pekka-kana-2,-0.6643938202,1.40278298,-1.1607623832,https://salsa.debian.org/games-team/pekka-kana-2, https://gitlab.com/coringao/pekka-kana-2,656.0519444444,0,2,0 +pekwm,-0.4353385416,0.3774631615,-0.7178554688,https://salsa.debian.org/debian/pekwm, https://github.com/pekdon/pekwm,5508.5197222222,28,12,3 +pelican,-0.0008706584,0.7935678228,-0.3397632589,https://salsa.debian.org/python-team/packages/pelican, https://github.com/getpelican/pelican,4855.1510185185,106,385,2 +pencil2d,0.5667201287,2.8422800153,-0.2026373043,https://salsa.debian.org/debian/pencil2d, https://github.com/pencil2d/pencil,4816.997025463,27,64,2 +peony,-0.3809326467,2.0136159755,-1.0193021203,https://github.com/ukui/peony,https://github.com/ukui/peony,2003.8709375,25,81,0 +peony-extensions,-0.5641116061,1.8659191557,-1.1878043816,https://github.com/ukui/peony-extensions,https://github.com/ukui/peony-extensions,1664.9383333333,13,33,0 +pep517,-1.963999777,0.4570402423,-2.4687148077,https://salsa.debian.org/python-team/packages/pep517, https://github.com/pypa/pep517.git,2336.8596296296,6,25,0 +pep8-naming,-0.0749410807,2.616143214,-0.798099027,https://salsa.debian.org/python-team/packages/pep8-naming, https://github.com/PyCQA/pep8-naming,3922.3641898148,13,28,0 +pep8-simul,-2.3421184912,-0.1155683429,-2.7879581692,https://salsa.debian.org/debian/pep8-simul, https://github.com/StanWarford/pep8,3632.9656944445,2,7,0 +perceptualdiff,0.657565598,3.0184577771,-0.3286732889,https://salsa.debian.org/debian/perceptualdiff, https://github.com/myint/perceptualdiff,4581.7554398148,0,12,0 +perf-tools-unstable,-0.0601624543,1.5123176256,-0.4839285691,https://salsa.debian.org/debian/perf-tools-unstable, https://github.com/brendangregg/perf-tools,2014.1201041667,2,20,0 +perftest,-0.25506659,1.1624795547,-0.6480880894,https://salsa.debian.org/hpc-team/perftest, https://github.com/linux-rdma/perftest.git,5766.2372222222,45,67,0 +perl-cross-debian,0.5442661596,4.5107736512,-0.7462109296,https://github.com/codehelp/perl-cross-debian,https://github.com/codehelp/perl-cross-debian,413.1343634259,0,1,2 +perl-depends,-0.098094395,2.6971113742,-0.7916189031,https://salsa.debian.org/perl-team/modules/packages/perl-depends, https://github.com/jaalto/project--perl-depends.git,2417.02125,0,1,0 +perl6-readline,0.2335812759,2.6358883052,-0.5015207605,https://salsa.debian.org/perl6-team/modules/perl6-readline, https://github.com/drforr/perl6-readline.git,1710.4289351852,3,11,0 +perl6-zef,-0.1589879333,1.6245616073,-0.6015634669,https://salsa.debian.org/perl6-team/modules/perl6-zef, https://github.com/ugexe/zef.git,3805.8422569445,19,20,0 +persp-projectile,-0.639585185,3.286323439,-1.7735281377,https://salsa.debian.org/emacsen-team/persp-projectile, https://github.com/bbatsov/persp-projectile.git,2006.7800810185,9,2,0 +pev,0.3261969594,2.6071816741,-0.2973930728,https://salsa.debian.org/debian/pev, https://github.com/merces/pev,0.0019791667,1,1,0 +pexpect,0.8141215364,1.9888952072,0.2667748433,https://salsa.debian.org/python-team/packages/pexpect, https://github.com/pexpect/pexpect,5767.4715740741,21,92,0 +pg-checksums,-1.8213442024,-0.1372969868,-2.2303187848,https://salsa.debian.org/postgresql/pg-checksums, https://github.com/credativ/pg_checksums.git,1977.03125,1,6,0 +pg-fact-loader,-1.8451499975,1.7612439253,-2.8557684329,https://salsa.debian.org/postgresql/pg-fact-loader, https://github.com/enova/pg_fact_loader.git,1795.1245717593,2,6,0 +pg-partman,-1.1499797822,1.3653731573,-1.7997004285,https://salsa.debian.org/postgresql/pg-partman, https://github.com/pgpartman/pg_partman.git,4104.5828356482,18,11,0 +pg-qualstats,-1.4359077221,0.9498469954,-1.9649826504,https://github.com/powa-team/pg_qualstats,https://github.com/powa-team/pg_qualstats,3499.7138657407,4,13,0 +pg-rage-terminator,-5.0664075164,-3.1688960031,-5.4721313817,https://github.com/disco-stu/pg-rage-terminator-pkg,https://github.com/disco-stu/pg-rage-terminator-pkg,3117.2085416667,0,7,0 +pg-snakeoil,-2.7065363584,9.60353410794286e-05,-3.3030686796,https://github.com/df7cb/pg_snakeoil,https://github.com/df7cb/pg_snakeoil,1864.2726273148,3,7,0 +pg8000,-0.425873307,2.4793925595,-1.2002236195,https://salsa.debian.org/python-team/packages/pg8000, https://github.com/mfenniak/pg8000,3962.2166666667,11,25,0 +pgbackrest,-0.6833676372,0.4256259271,-0.9675421162,https://salsa.debian.org/postgresql/pgbackrest, https://github.com/pgbackrest/pgbackrest,3684.8419791667,47,12,1 +pgbadger,-0.3152167506,1.8941783522,-0.7500435836,https://salsa.debian.org/postgresql/pgbadger, https://github.com/darold/pgbadger.git,4259.9847222222,12,88,0 +pgcharts,-0.3307169052,2.7252468866,-1.42193945,https://github.com/dimitri/pgcharts,https://github.com/dimitri/pgcharts,2256.897962963,2,6,0 +pgextwlist,-2.6334021475,-0.1576929626,-3.2620922871,https://github.com/dimitri/pgextwlist,https://github.com/dimitri/pgextwlist,4298.9919444445,2,19,0 +pgformatter,-0.7666716967,1.4004597135,-1.200718031,https://salsa.debian.org/postgresql/pgformatter, https://github.com/darold/pgFormatter.git,3991.2940740741,8,26,0 +pgl-ddl-deploy,-2.518566076,0.3310770855,-3.2597707489,https://salsa.debian.org/postgresql/pgl-ddl-deploy, https://github.com/enova/pgl_ddl_deploy.git,2403.2563425926,9,12,0 +pglistener,-0.6955936282,3.0762984866,-1.7425258483,https://salsa.debian.org/debian/pglistener, https://gitlab.collabora.com/sysadmin/pglistener/pglistener.git,5507.9584606482,2,14,0 +pgloader,1.0692825346,2.9836783146,0.2121821654,https://github.com/dimitri/pgloader,https://github.com/dimitri/pgloader,5748.9143518519,70,45,2 +pglogical-ticker,-1.9930028095,1.9160778986,-3.1056655448,https://salsa.debian.org/postgresql/pglogical-ticker, https://github.com/enova/pglogical_ticker.git,1787.9691666667,1,7,0 +pgmodeler,-0.3255268831,0.562135624,-0.5684834851,https://salsa.debian.org/postgresql/pgmodeler, https://github.com/pgmodeler/pgmodeler.git,4123.8430555556,6,46,0 +pgpdump,0.3614395033,1.5189339773,-0.144183693,https://salsa.debian.org/debian/pgpdump, https://github.com/kazu-yamamoto/pgpdump.git,4538.9134143519,4,16,0 +pgqd,-1.087235167,1.0595056838,-1.531425517,https://salsa.debian.org/postgresql/pgqd, https://github.com/pgq/pgqd,2225.1037384259,0,1,0 +pgrouting,-0.7652325522,1.5792545779,-1.3149612287,https://salsa.debian.org/debian-gis-team/pgrouting, https://github.com/pgRouting/pgrouting.git,5779.2725,62,134,0 +pgsphere,-0.619432589,1.6193404032,-1.0673571695,https://salsa.debian.org/postgresql/pgsphere, https://github.com/akorotkov/pgsphere,1961.9147569445,2,10,0 +pgsql-asn1oid,-2.1322683467,0.0065837251,-2.973862338,https://github.com/df7cb/pgsql-asn1oid,https://github.com/df7cb/pgsql-asn1oid,2425.8964351852,3,4,0 +pgsql-ogr-fdw,-1.597217053,1.098990575,-2.2031431994,https://salsa.debian.org/debian-gis-team/pgsql-ogr-fdw, https://github.com/pramsey/pgsql-ogr-fdw.git,3285.0248958333,8,10,0 +pgtap,-0.4995665808,0.6006595933,-1.0051204614,https://salsa.debian.org/postgresql/pgtap, https://github.com/theory/pgtap,5595.7467476852,24,30,0 +pgtop,0.1453475096,1.424115464,-0.307108176,https://salsa.debian.org/postgresql/pgtop, https://gitlab.com/pg_top/pg_top.git,5573.2768634259,12,7,0 +pgxnclient,-0.8515588813,0.3709704299,-1.1014910489,https://salsa.debian.org/postgresql/pgxnclient, https://github.com/pgxn/pgxnclient.git,3780.2494212963,0,7,0 +pgzero,-0.0710203462,2.371473236,-0.5273222344,https://github.com/RPi-Distro/pgzero,https://github.com/RPi-Distro/pgzero,1071.605775463,0,31,0 +phing,-0.5385658561,1.5811545108,-1.0297476237,https://salsa.debian.org/php-team/pear/phing, https://github.com/phingofficial/phing,5770.3881944445,74,179,2 +phodav,0.892075243,3.4928177255,0.1124092442,https://salsa.debian.org/gnome-team/phodav, https://gitlab.gnome.org/GNOME/phodav.git,3558.8712731482,37,32,0 +photocollage,0.9810279471,4.4870027859,-0.1284555117,https://salsa.debian.org/debian/photocollage, https://github.com/adrienverge/PhotoCollage,3560.5675231482,15,10,0 +photofilmstrip,0.0565928501,1.2835212473,-0.4414548947,https://salsa.debian.org/python-team/packages/photofilmstrip, https://github.com/PhotoFilmStrip/PFS.git,5467.5698958333,4,6,0 +photutils,-0.5308217305,-0.1475174706,-0.6070626672,https://salsa.debian.org/debian-astro-team/photutils, https://github.com/astropy/photutils.git,4375.0745949074,24,63,0 +php-auth-sasl,0.4421914964,2.6769992169,-0.103972592,https://salsa.debian.org/php-team/pear/php-auth-sasl, https://github.com/pear/Auth_SASL.git,5614.3564699074,3,10,0 +php-codecoverage,0.0554134964,0.8928123398,-0.2536132068,https://salsa.debian.org/php-team/pear/php-codecoverage, https://github.com/sebastianbergmann/php-code-coverage,5309.6024884259,61,64,0 +php-codesniffer,0.725797473,3.0841609882,-0.145017633,https://salsa.debian.org/php-team/pear/php-codesniffer, https://github.com/squizlabs/PHP_CodeSniffer,5773.4666666667,36,241,2 +php-composer-semver,0.409271213,2.8658685018,-0.146438012,https://salsa.debian.org/php-team/pear/php-composer-semver, https://github.com/composer/semver,2969.0927777778,37,21,0 +php-console-table,-0.0495487945,1.7830511717,-0.4127695523,https://salsa.debian.org/php-team/pear/php-console-table, https://github.com/pear/Console_Table.git,2649.3105555556,1,12,0 +php-constant-time,-2.0834505626,2.1057169386,-3.3638483931,https://salsa.debian.org/php-team/pear/php-constant-time, https://github.com/paragonie/constant_time_encoding,2771.7821296296,7,11,0 +php-crypt-gpg,0.9210658037,4.3264478549,-0.3696792994,https://salsa.debian.org/php-team/pear/php-crypt-gpg, https://github.com/pear/Crypt_GPG.git,5743.4965972222,6,19,0 +php-directory-scanner,-0.4493402088,1.855270065,-0.9050981717,https://salsa.debian.org/php-team/pear/php-directory-scanner, https://github.com/theseer/DirectoryScanner.git,4264.1542361111,0,7,0 +php-doctrine-data-fixtures,-1.3887376674,0.81894408,-1.8566708823,https://salsa.debian.org/php-team/pear/php-doctrine-data-fixtures, https://github.com/doctrine/data-fixtures,4832.8952662037,32,91,3 +php-doctrine-instantiator,0.1028581914,2.2738174024,-0.3195352458,https://salsa.debian.org/php-team/pear/php-doctrine-instantiator, https://github.com/doctrine/instantiator,3466.1691666667,8,34,4 +php-dompdf,0.1614384968,1.834266575,-0.3132261154,https://salsa.debian.org/php-team/pear/php-dompdf, https://github.com/dompdf/dompdf,3771.5165625,98,70,5 +php-easyrdf,-4.5398500409,-1.0476097342,-5.4000870506,https://salsa.debian.org/php-team/pear/php-easyrdf, https://github.com/easyrdf/easyrdf.git,4424.6065162037,13,32,0 +php-fdomdocument,0.1029872224,3.0481931323,-0.6044847866,https://salsa.debian.org/php-team/pear/php-fdomdocument, https://github.com/theseer/fDOMDocument,4119.5238310185,0,16,0 +php-fig-link-util,-0.4425381847,2.4746022946,-1.2653714987,https://salsa.debian.org/php-team/pear/php-fig-link-util, https://github.com/php-fig/link-util,1680.1398148148,5,2,0 +php-file-iterator,0.3114533151,2.1129587477,-0.2420172005,https://salsa.debian.org/php-team/pear/php-file-iterator, https://github.com/sebastianbergmann/php-file-iterator,5147.3262731482,9,12,0 +php-font-lib,0.195361939,2.2881574009,-0.3359709162,https://salsa.debian.org/php-team/pear/php-font-lib, https://github.com/dompdf/php-font-lib,4545.5076273148,16,19,2 +php-fxsl,-0.5217439543,1.8678074185,-1.1003018739,https://salsa.debian.org/php-team/pear/php-fxsl, https://github.com/theseer/fXSL.git,1403.9575347222,0,4,0 +php-getid3,0.4769393161,3.1681034995,-0.2101029385,https://salsa.debian.org/php-team/pear/php-getid3, https://github.com/JamesHeinrich/getID3,3892.988275463,13,58,1 +php-guzzlehttp-psr7,0.3074870414,3.5058474808,-0.8581921211,https://salsa.debian.org/php-team/pear/php-guzzlehttp-psr7, https://github.com/guzzle/psr7,3203.6582291667,45,67,2 +php-hamcrest,-1.9033572468,1.3088355068,-2.9684163447,https://salsa.debian.org/php-team/pear/php-hamcrest, https://github.com/hamcrest/hamcrest-php.git,4488.7726157407,11,18,0 +php-horde,-0.4754819462,0.1936727976,-0.7289488029,https://salsa.debian.org/horde-team/php-horde, https://github.com/horde/horde.git,3269.665474537,81,80,0 +php-horde-activesync,-0.0745412838,1.9029925216,-0.5969694129,https://salsa.debian.org/horde-team/php-horde-activesync, https://github.com/horde/ActiveSync.git,4982.0443055556,9,18,0 +php-horde-ansel,-1.6222799231,-0.0808757241,-1.9210437163,https://salsa.debian.org/horde-team/php-horde-ansel, https://github.com/horde/ansel.git,3572.8158912037,8,17,0 +php-horde-auth,0.2047852084,2.9463639076,-0.5544067681,https://salsa.debian.org/horde-team/php-horde-auth, https://github.com/horde/Auth.git,5222.153275463,8,22,0 +php-horde-cache,-0.1744700522,2.1064596197,-0.6213237314,https://salsa.debian.org/horde-team/php-horde-cache, https://github.com/horde/Cache.git,5348.4683796296,2,18,0 +php-horde-compress,-0.0162442716,2.57315541,-0.6076939055,https://salsa.debian.org/horde-team/php-horde-compress, https://github.com/horde/Compress.git,5217.754375,1,13,0 +php-horde-core,-0.3802607961,0.3526269848,-0.6046153747,https://salsa.debian.org/horde-team/php-horde-core, https://github.com/horde/Core.git,5226.4980671296,21,34,0 +php-horde-crypt,0.1875117087,2.6751835929,-0.5329652206,https://salsa.debian.org/horde-team/php-horde-crypt, https://github.com/horde/Crypt.git,5471.7365162037,3,21,0 +php-horde-css-parser,-0.0402081222,2.5291557096,-0.6027329405,https://salsa.debian.org/horde-team/php-horde-css-parser, https://github.com/horde/Css_Parser.git,3874.0563888889,2,10,0 +php-horde-data,0.183171821,3.0993813097,-0.5706552519,https://salsa.debian.org/horde-team/php-horde-data, https://github.com/horde/Data.git,5055.5932638889,0,13,0 +php-horde-dav,-0.3866587637,0.750534239,-0.6284871625,https://salsa.debian.org/horde-team/php-horde-dav, https://github.com/horde/Dav.git,3872.1194328704,2,9,0 +php-horde-db,-0.2646821748,1.3792981818,-0.615400448,https://salsa.debian.org/horde-team/php-horde-db, https://github.com/horde/Db.git,5458.1645833333,6,19,0 +php-horde-editor,-0.2234265847,1.3429870434,-0.6059411864,https://salsa.debian.org/horde-team/php-horde-editor, https://github.com/horde/Editor.git,5432.4430208333,0,10,0 +php-horde-form,0.1425278965,2.5646449602,-0.5503801228,https://salsa.debian.org/horde-team/php-horde-form, https://github.com/horde/Form.git,5422.4999189815,3,17,0 +php-horde-gollem,-0.1716189866,2.8981752591,-0.8667773936,https://salsa.debian.org/horde-team/php-horde-gollem, https://github.com/horde/gollem.git,3924.770474537,2,13,0 +php-horde-groupware,-0.8795755727,1.9558886765,-1.5950928322,https://salsa.debian.org/horde-team/php-horde-groupware, https://github.com/horde/groupware.git,2932.5787731482,1,6,0 +php-horde-icalendar,0.411178925,3.9130953916,-0.5130418157,https://salsa.debian.org/horde-team/php-horde-icalendar, https://github.com/horde/Icalendar.git,5159.3724305556,2,18,0 +php-horde-image,0.8616256223,3.8466113515,-0.1929764669,https://salsa.debian.org/horde-team/php-horde-image, https://github.com/horde/Image.git,5265.7997569445,5,20,0 +php-horde-imap-client,0.0159896159,2.4567285756,-0.5941860898,https://salsa.debian.org/horde-team/php-horde-imap-client, https://github.com/horde/Imap_Client.git,5506.4812615741,14,23,0 +php-horde-imp,-0.3872646541,1.289223631,-0.8571466277,https://salsa.debian.org/horde-team/php-horde-imp, https://github.com/horde/imp.git,5305.9052546296,15,26,0 +php-horde-ingo,-0.7382910403,0.4431034944,-0.9475741714,https://salsa.debian.org/horde-team/php-horde-ingo, https://github.com/horde/ingo.git,4403.5670833333,10,21,0 +php-horde-javascriptminify-jsmin,-1.3153334642,2.2921605757,-2.4364015778,https://salsa.debian.org/horde-team/php-horde-javascriptminify-jsmin, https://github.com/horde/JavascriptMinify_Jsmin.git,3603.5893634259,2,12,0 +php-horde-kronolith,-0.1662532613,1.8723658314,-0.7951139086,https://salsa.debian.org/horde-team/php-horde-kronolith, https://github.com/horde/kronolith.git,4413.8611458333,19,29,0 +php-horde-listheaders,0.4960376568,4.1898452532,-0.5036453419,https://salsa.debian.org/horde-team/php-horde-listheaders, https://github.com/horde/ListHeaders.git,4255.5799305556,2,10,0 +php-horde-mail,-0.3639164444,1.1332103907,-0.6269982172,https://salsa.debian.org/horde-team/php-horde-mail, https://github.com/horde/Mail.git,4915.3072685185,7,13,0 +php-horde-mapi,-0.0661710252,2.5876798045,-0.6185327392,https://salsa.debian.org/horde-team/php-horde-mapi, https://github.com/horde/Mapi.git,2259.7966087963,1,5,0 +php-horde-memcache,0.004016163,2.7221166702,-0.6028996022,https://salsa.debian.org/horde-team/php-horde-memcache, https://github.com/horde/Memcache.git,4490.5543634259,3,7,0 +php-horde-mime,0.312598092,3.6199038108,-0.5392920252,https://salsa.debian.org/horde-team/php-horde-mime, https://github.com/horde/Mime.git,5432.603287037,7,18,0 +php-horde-mime-viewer,-0.1149494509,1.9424076317,-0.6016432814,https://salsa.debian.org/horde-team/php-horde-mime-viewer, https://github.com/horde/Mime_Viewer.git,4839.7695138889,2,13,0 +php-horde-mnemo,-0.6207827443,0.9747903027,-0.8920648669,https://salsa.debian.org/horde-team/php-horde-mnemo, https://github.com/horde/mnemo.git,4989.4455671296,5,17,0 +php-horde-mongo,0.9167713268,5.4298937243,-0.4793837277,https://salsa.debian.org/horde-team/php-horde-mongo, https://github.com/horde/Mongo.git,3839.6499652778,0,8,0 +php-horde-pack,0.2142725625,3.1945332925,-0.549560368,https://salsa.debian.org/horde-team/php-horde-pack, https://github.com/horde/Pack.git,3648.4273842593,1,11,0 +php-horde-passwd,-0.9612115226,1.4732179071,-1.6779013899,https://salsa.debian.org/horde-team/php-horde-passwd, https://github.com/horde/passwd.git,4947.6389583333,4,19,0 +php-horde-role,-0.4479418321,1.1729020603,-0.7670302689,https://salsa.debian.org/horde-team/php-horde-role, https://github.com/horde/Role.git,4810.1311111111,0,8,0 +php-horde-sesha,-1.1621564014,1.5450444492,-1.9921994089,https://salsa.debian.org/horde-team/php-horde-sesha, https://github.com/horde/sesha.git,2802.3719791667,3,8,0 +php-horde-test,-0.238823004,1.8788404924,-0.6415143522,https://salsa.debian.org/horde-team/php-horde-test, https://github.com/horde/Test.git,5359.615,2,15,0 +php-horde-text-filter,-0.1437145474,1.0768696744,-0.5555850141,https://salsa.debian.org/horde-team/php-horde-text-filter, https://github.com/horde/Text_Filter.git,5251.3064930556,3,17,0 +php-horde-text-filter-jsmin,-1.3124045178,2.1222615389,-2.421955358,https://salsa.debian.org/horde-team/php-horde-text-filter-jsmin, https://github.com/horde/Text_Filter_Jsmin.git,2314.7323726852,0,4,0 +php-horde-trean,-0.3058682727,1.9780246873,-0.8789295788,https://salsa.debian.org/horde-team/php-horde-trean, https://github.com/horde/trean.git,3562.8353472222,2,9,0 +php-horde-turba,-0.4579650553,1.3117889624,-0.8859304773,https://salsa.debian.org/horde-team/php-horde-turba, https://github.com/horde/turba.git,4857.3907407407,15,22,0 +php-horde-webmail,-0.4053353634,1.7962363637,-1.0122255509,https://salsa.debian.org/horde-team/php-horde-webmail, https://github.com/horde/webmail.git,2950.8800810185,2,6,0 +php-horde-whups,-1.0654230845,1.9993317897,-1.8956270843,https://salsa.debian.org/horde-team/php-horde-whups, https://github.com/horde/whups.git,3431.4867013889,4,18,0 +php-horde-wicked,-1.0749433837,1.994516371,-1.8921752454,https://salsa.debian.org/horde-team/php-horde-wicked, https://github.com/horde/wicked.git,4893.9981712963,5,14,0 +php-invoker,-0.2905127861,1.9595946138,-0.8899334149,https://salsa.debian.org/php-team/pear/php-invoker, https://github.com/sebastianbergmann/php-invoker,4657.8966203704,2,7,0 +php-mail-mime,0.0757330813,0.6687496969,-0.1249911134,https://salsa.debian.org/php-team/pear/php-mail-mime, https://github.com/pear/Mail_Mime.git,5740.767650463,4,21,0 +php-masterminds-html5,-0.3208200552,2.1227649729,-0.8298475571,https://salsa.debian.org/php-team/pear/php-masterminds-html5, https://github.com/Masterminds/html5-php,3846.3884953704,7,39,1 +php-mikey179-vfsstream,-3.8146826401,-1.3125722962,-4.3356315795,https://salsa.debian.org/php-team/pear/php-mikey179-vfsstream, https://github.com/bovigo/vfsStream,5683.6370138889,11,48,1 +php-monolog,0.5054135947,3.1708681094,-0.3793108578,https://salsa.debian.org/php-team/pear/php-monolog, https://github.com/Seldaek/monolog,4676.6184375,183,372,3 +php-nesbot-carbon,-0.8631537135,1.6595830271,-1.5444681867,https://salsa.debian.org/php-team/pear/php-nesbot-carbon, https://github.com/briannesbitt/carbon,4115.9672800926,161,223,2 +php-net-ldap2,0.6398853183,2.49018646,-0.0984745451,https://salsa.debian.org/php-team/pear/php-net-ldap2, https://github.com/pear/Net_LDAP2.git,3594.4854166667,3,10,0 +php-net-sieve,0.5286086799,2.5513325545,-0.1071035548,https://salsa.debian.org/php-team/pear/php-net-sieve, https://github.com/pear/Net_Sieve.git,4982.018912037,1,17,0 +php-net-smtp,0.6124793985,2.4835695922,0.0048970818,https://salsa.debian.org/php-team/pear/php-net-smtp, https://github.com/pear/Net_SMTP.git,5742.5019097222,6,20,0 +php-net-socket,0.9079949967,3.0405813906,0.1178195629,https://salsa.debian.org/php-team/pear/php-net-socket, https://github.com/pear/Net_Socket.git,3345.4632523148,1,15,0 +php-nrk-predis,0.7580474513,4.2712709933,-0.3598069121,https://salsa.debian.org/php-team/pear/php-predis, https://github.com/predis/predis.git,5141.1934259259,61,57,0 +php-parser,-0.2915250393,1.8269276918,-0.766485228,https://salsa.debian.org/php-team/pear/php-parser, https://github.com/nikic/PHP-Parser,4619.1675115741,120,37,1 +php-phar-io-manifest,0.0385459705,2.4455307258,-0.417874197,https://salsa.debian.org/php-team/pear/php-phar-io-manifest, https://github.com/phar-io/manifest.git,2379.9058680556,3,9,0 +php-phpdocumentor-reflection-common,0.0165590904,2.2866863971,-0.4124357108,https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-common, https://github.com/phpDocumentor/ReflectionCommon,2836.5084606482,10,9,0 +php-phpdocumentor-reflection-docblock,0.0730870231,2.297858814,-0.3547234424,https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-docblock, https://github.com/phpDocumentor/ReflectionDocBlock,4206.5126967593,22,51,0 +php-phpdocumentor-type-resolver,0.0218360214,2.3125319388,-0.4129888352,https://salsa.debian.org/php-team/pear/php-phpdocumentor-type-resolver, https://github.com/phpDocumentor/TypeResolver,3092.0947569445,18,31,1 +php-proxy-manager,-0.4696575625,1.7442933083,-0.9000807342,https://salsa.debian.org/php-team/pear/php-proxy-manager, https://github.com/FriendsOfPHP/proxy-manager-lts.git,3717.8990509259,21,47,0 +php-psr-cache,0.9447656661,4.1692291038,-0.0612099304,https://salsa.debian.org/php-team/pear/php-psr-cache, https://github.com/php-fig/cache.git,2530.1591435185,8,10,0 +php-psr-http-message,-0.068042639,3.3445895377,-1.0312499156,https://salsa.debian.org/php-team/pear/php-psr-http-message, https://github.com/php-fig/http-message,3219.4525347222,3,24,0 +php-sql-formatter,-0.407920411,2.2773849827,-1.1530054701,https://salsa.debian.org/php-team/pear/php-sql-formatter, https://github.com/doctrine/sql-formatter.git,4125.6360300926,10,31,0 +php-symfony-contracts,0.6071508908,3.5307618183,-0.1882490235,https://salsa.debian.org/php-team/pear/php-symfony-contracts, https://github.com/symfony/contracts,1906.8477083333,28,26,0 +php-symfony-polyfill,0.5936130532,2.9045150589,-0.1004774059,https://salsa.debian.org/php-team/pear/php-symfony-polyfill, https://github.com/symfony/polyfill,2902.2220949074,100,47,0 +php-text-password,0.8003864076,3.7354461105,-0.2651582454,https://salsa.debian.org/php-team/pear/php-text-password, https://github.com/pear/text_password.git,3427.7869097222,0,13,0 +php-text-template,0.2735156083,2.2577473237,-0.2649626383,https://salsa.debian.org/php-team/pear/php-text-template, https://github.com/sebastianbergmann/php-text-template,5133.0452083333,0,8,0 +php-tijsverkoyen-css-to-inline-styles,-4.9581043824,-2.5632479534,-5.4701338922,https://salsa.debian.org/php-team/pear/php-tijsverkoyen-css-to-inline-styles, https://github.com/tijsverkoyen/CssToInlineStyles,4791.6600810185,7,34,0 +php-timer,0.0545002782,1.7354029969,-0.3034123852,https://salsa.debian.org/php-team/pear/php-timer, https://github.com/sebastianbergmann/php-timer,4962.9242824074,4,10,0 +php-token-stream,-0.077539845,1.0314574326,-0.3184738926,https://salsa.debian.org/php-team/pear/php-token-stream, https://github.com/sebastianbergmann/php-token-stream,4281.2169675926,15,15,0 +php-webmozart-assert,0.0458454749,2.3738977683,-0.4142725283,https://salsa.debian.org/php-team/pear/php-webmozart-assert, https://github.com/webmozart/assert,2641.2433912037,49,18,0 +php-zend-stdlib,-0.3817238077,2.1530292212,-0.96434111,https://salsa.debian.org/php-team/pear/php-zend-stdlib, https://github.com/laminas/laminas-stdlib,5325.6605555556,28,212,21 +php-zeta-base,-0.0522904132,2.7525381131,-0.9743381106,https://salsa.debian.org/php-team/pear/php-zeta-base, https://github.com/zetacomponents/Base.git,5395.1748726852,0,15,0 +php-zeta-console-tools,-0.0924800072,2.7387441567,-0.9975723832,https://salsa.debian.org/php-team/pear/php-zeta-console-tools, https://github.com/zetacomponents/ConsoleTools,5321.8501851852,2,14,0 +phpab,-0.6029281915,1.6242899795,-1.2012100718,https://salsa.debian.org/php-team/pear/phpab, https://github.com/theseer/Autoload,5109.8970949074,3,23,0 +phpcpd,-0.3485229663,2.4494398669,-1.0411103089,https://salsa.debian.org/php-team/pear/phpcpd, https://github.com/sebastianbergmann/phpcpd,5098.8530902778,11,25,0 +phpdox,-1.0964679734,0.6066407752,-1.5664870339,https://salsa.debian.org/php-team/pear/phpdox, https://github.com/theseer/phpdox,4604.8372800926,11,44,0 +phpldapadmin,0.9538106411,1.6007846261,0.5030751444,https://salsa.debian.org/php-team/pear/phpldapadmin, https://github.com/leenooks/phpLDAPadmin,5264.4283796296,42,25,0 +phpliteadmin,-0.045448614,2.6271006155,-0.7849838134,https://salsa.debian.org/mymedia/phpliteadmin, https://bitbucket.org/phpliteadmin/public.git,3747.9220833333,2,22,0 +phploc,-0.6743294156,1.1227196643,-1.1328550897,https://salsa.debian.org/php-team/pear/phploc, https://github.com/sebastianbergmann/phploc,5362.0425347222,18,31,0 +phpmyadmin-motranslator,0.3875308077,2.8677316161,-0.26542951,https://salsa.debian.org/phpmyadmin-team/motranslator, https://github.com/phpmyadmin/motranslator,2762.9628356482,6,14,2 +phpseclib,-0.073403609,1.2483282321,-0.3161589858,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.2331828704,80,98,0 +phpunit-comparator,0.1016908786,2.3398889578,-0.3301518045,https://salsa.debian.org/php-team/pear/phpunit-comparator, https://github.com/sebastianbergmann/comparator,3686.3957291667,20,9,0 +phpunit-global-state,0.247922925,2.3733235469,-0.3166378665,https://salsa.debian.org/php-team/pear/phpunit-global-state, https://github.com/sebastianbergmann/global-state,3396.3039351852,9,7,0 +phpunit-object-enumerator,0.2543254206,2.979551806,-0.3372246914,https://salsa.debian.org/php-team/pear/phpunit-object-enumerator, https://github.com/sebastianbergmann/object-enumerator,2872.2632523148,6,4,0 +pick,0.1551657364,3.388789847,-0.7551152625,https://github.com/eavgerinos/pkg-pick,https://github.com/eavgerinos/pkg-pick,1591.7380671296,0,2,0 +pickleshare,0.3717500472,2.4243139962,-0.0927808249,https://salsa.debian.org/python-team/packages/pickleshare, https://github.com/pickleshare/pickleshare,3583.9321875,1,14,0 +picmi,0.2240898426,1.8251504888,-0.1501752636,https://salsa.debian.org/qt-kde-team/kde/picmi, https://anongit.kde.org/picmi.git,4318.1741782407,2,36,0 +picocom,0.7162187737,2.5722054768,0.0257322882,https://salsa.debian.org/debian/picocom, https://github.com/npat-efault/picocom,2876.49875,2,13,0 +pidcat,-0.2348175331,2.8745190447,-1.069688066,https://salsa.debian.org/python-team/packages/pidcat, https://github.com/JakeWharton/pidcat.git,3155.524837963,4,40,0 +piexif,-0.8041956898,1.6330932338,-1.3844176603,https://salsa.debian.org/python-team/packages/piexif, https://github.com/hMatoba/Piexif,3307.7984837963,5,12,0 +pikepdf,0.0195418776,1.42023481,-0.2552525133,https://salsa.debian.org/python-team/packages/pikepdf, https://github.com/pikepdf/pikepdf.git,2830.6889467593,16,36,0 +pilkit,-0.3244524167,2.2316061792,-0.9293298632,https://salsa.debian.org/python-team/packages/pilkit, https://github.com/matthewwithanm/pilkit,3883.0524768519,2,19,0 +pimd,-0.6844184958,0.1703714409,-1.0782502879,https://github.com/bobek/pkg-pimd/tree/debian/sid,https://github.com/bobek/pkg-pimd,4933.0961921296,11,25,0 +pingus,0.7847434777,1.2792215361,0.4266099644,https://salsa.debian.org/games-team/pingus, https://github.com/Pingus/pingus,5009.1183796296,4,14,1 +pipenv,1.5755098766,5.7778780459,0.2200249306,https://salsa.debian.org/python-team/packages/pipenv, https://github.com/pypa/pipenv.git,2511.301400463,208,339,0 +piper,-0.6458208279,1.6881343431,-1.0786915089,https://salsa.debian.org/debian/piper, https://github.com/libratbag/piper,2849.4881828704,77,18,0 +pipewalker,0.5020627732,3.1638761301,-0.3613058019,https://salsa.debian.org/debian/pipewalker, https://github.com/artemsen/pipewalker,2088.9552662037,1,4,0 +pipewire,0.7017696812,3.0242562898,0.0416542449,https://salsa.debian.org/utopia-team/pipewire, https://gitlab.freedesktop.org/pipewire/pipewire,3163.8856828704,156,165,0 +pipexec,-0.2552786974,1.5523174274,-0.6883958099,https://salsa.debian.org/alteholz/pipexec, https://github.com/flonatel/pipexec.git,3308.5569560185,0,11,0 +pitivi,2.1078555181,3.2314373401,1.4132545193,https://salsa.debian.org/gnome-team/pitivi, https://gitlab.gnome.org/GNOME/pitivi.git,5776.5090509259,240,162,0 +pius,-0.9042828098,-0.0817697576,-1.1639509728,https://salsa.debian.org/python-team/packages/pius, https://github.com/jaymzh/pius.git,5108.0161458333,16,8,0 +pivy,1.0323442284,3.2415283772,0.1968321026,https://salsa.debian.org/science-team/pivy, https://github.com/Coin3D/pivy,2942.7228587963,15,14,1 +pixelize,0.2484154316,2.1602635228,-0.5671503569,https://salsa.debian.org/debian-phototools-team/pixelize, https://github.com/jcdubois/pixelize.git,802.2084027778,1,2,0 +pixz,0.0431924973,1.0907124514,-0.2104479349,https://salsa.debian.org/debian/pixz, https://github.com/vasi/pixz.git,5100.8172569445,3,19,0 +pk4,-1.8075865154,0.2000705346,-2.2307798324,https://github.com/Debian/pk4,https://github.com/Debian/pk4,1044.0391203704,0,1,0 +pkcs11-helper,1.2104032601,4.0753663669,0.2461129198,https://salsa.debian.org/opensc-team/pkcs11-helper, https://github.com/OpenSC/pkcs11-helper,5754.4088194445,16,2,0 +pkgconf,-0.0511523264,0.6206735889,-0.2703346973,https://salsa.debian.org/debian/pkgconf, https://github.com/pkgconf/pkgconf,4516.657650463,52,29,1 +pktools,-0.4394764666,0.5437323427,-0.7076890722,https://salsa.debian.org/debian-gis-team/pktools, git://git.savannah.nongnu.org/pktools.git,1937.8700115741,1,16,0 +pktstat,2.3338787395,6.0502882403,0.926044188,https://salsa.debian.org/debian/pktstat, https://github.com/dleonard0/pktstat,2938.7848958333,0,4,0 +planetblupi,-0.2798326789,2.3368636861,-0.892136731,https://salsa.debian.org/games-team/planetblupi, https://github.com/blupi-games/planetblupi,2504.3208449074,5,7,1 +planetfilter,-2.6387098168,-1.7058634199,-2.7957557815,https://salsa.debian.org/debian/planetfilter, https://git.launchpad.net/planetfilter,3983.6158680556,0,2,0 +plasma-desktop,5.4411408087,7.1428274012,4.3508957161,https://salsa.debian.org/qt-kde-team/kde/plasma-desktop, https://invent.kde.org/plasma/plasma-desktop.git,3546.0303240741,102,270,0 +plasma-gmailfeed,-0.9078350467,1.5377434382,-1.4604242885,https://salsa.debian.org/qt-kde-team/extras/plasma-gmailfeed, https://github.com/anthon38/gmailfeed.git,2727.0607638889,3,4,0 +plasma-integration,0.8476422723,3.9098669509,0.0257746518,https://salsa.debian.org/qt-kde-team/kde/plasma-integration, https://invent.kde.org/plasma/plasma-integration.git,3648.9289236111,9,80,0 +plasma-nm,2.1856982135,3.2663086874,1.4910645042,https://salsa.debian.org/qt-kde-team/kde/plasma-nm, https://invent.kde.org/plasma/plasma-nm.git,3921.5811342593,42,121,0 +plasma-pa,1.5771727913,4.6899941925,0.4270193058,https://salsa.debian.org/qt-kde-team/kde/plasma-pa, https://invent.kde.org/plasma/plasma-pa.git,3412.3928240741,22,65,0 +plasma-workspace,2.4948570577,3.5724137681,1.7611170735,https://salsa.debian.org/qt-kde-team/kde/plasma-workspace, https://invent.kde.org/plasma/plasma-workspace.git,3546.1462037037,164,297,0 +plasma-workspace-wallpapers,0.2531456431,2.5858219949,-0.1848942631,https://salsa.debian.org/qt-kde-team/kde/plasma-workspace-wallpapers, https://invent.kde.org/plasma/plasma-workspace-wallpapers.git,3005.0631597222,2,16,0 +plaso,0.2312940306,1.9917823859,-0.3331170267,https://salsa.debian.org/pkg-security-team/plaso, https://github.com/log2timeline/plaso,3988.4880208333,81,40,3 +plastex,0.2432695472,2.6132312475,-0.7011641781,https://salsa.debian.org/python-team/packages/plastex, https://github.com/plastex/plastex,5539.2969907407,17,19,1 +playerctl,0.088719234,2.5080297113,-0.448809215,https://salsa.debian.org/multimedia-team/playerctl, https://github.com/altdesktop/playerctl,2720.5505208333,8,30,1 +plexus-interactivity-api,0.2831519667,2.3330540176,-0.1739153338,https://salsa.debian.org/java-team/plexus-interactivity-api, https://github.com/codehaus-plexus/plexus-interactivity.git,2997.8996759259,5,11,0 +plotnetcfg,-1.0220271784,1.3223739863,-1.4560802079,https://salsa.debian.org/debian/plotnetcfg, https://github.com/jbenc/plotnetcfg.git,2530.945150463,2,3,0 +pluma,0.4699827019,1.3242531018,0.0788084084,https://salsa.debian.org/debian-mate-team/pluma, https://github.com/mate-desktop/pluma.git,4416.7881018519,32,44,0 +ply,0.296904458,1.3657960978,-0.0308535513,https://salsa.debian.org/python-team/packages/ply, https://github.com/dabeaz/ply,5540.9160416667,10,30,0 +pmailq,-0.3444018612,2.2693637638,-1.1367799542,https://salsa.debian.org/kolter/pmailq, https://github.com/k0lter/pmailq,3215.8993634259,0,2,0 +pmccabe,0.6393130878,3.5745467056,-0.3647052936,https://salsa.debian.org/jas/pmccabe, https://gitlab.com/pmccabe/pmccabe.git,5305.7911805556,0,2,0 +pmemkv,-2.5666563504,-0.1874336633,-3.0132308585,https://github.com/kilobyte/pmemkv/tree/debian,https://github.com/kilobyte/pmemkv,2071.5010185185,11,29,0 +pnetcdf,-0.7248515002,1.3866108043,-1.357843211,https://salsa.debian.org:/science-team/pnetcdf.git, https://github.com/Parallel-NetCDF/PnetCDF,5739.2425115741,6,9,0 +pngphoon,-0.5575158525,1.971489004,-1.1751233006,https://salsa.debian.org/debian/pngphoon, https://git.h8u.de/svolli/pngphoon,4717.1277199074,0,1,0 +pngquant,0.7530300912,2.4617924213,0.0694002171,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.0383333333,23,38,0 +pnscan,0.0474645485,1.175913765,-0.3376962015,https://salsa.debian.org/pkg-security-team/pnscan, https://github.com/ptrrkssn/pnscan,1864.9276967593,1,4,0 +pocketsphinx,-0.1321092966,0.4767106106,-0.3322064688,https://salsa.debian.org/a11y-team/pocketsphinx, https://github.com/cmusphinx/pocketsphinx,5652.4787847222,5,30,2 +pocl,0.0943083762,0.5327681562,-0.1315933389,https://salsa.debian.org/opencl-team/pocl, https://github.com/pocl/pocl,4689.6507291667,26,119,2 +podcastparser,0.1102473664,2.4024478231,-0.3412380946,https://salsa.debian.org/debian/podcastparser, https://github.com/gpodder/podcastparser.git,3885.4088657407,6,16,0 +podget,0.0442858046,1.2592098163,-0.4584578402,https://salsa.debian.org/debian/podget, https://github.com/dvehrs/podget.git,2945.994837963,1,10,0 +poedit,0.3772407884,0.8636964239,0.0761307654,https://salsa.debian.org/l10n-team/poedit, https://github.com/vslavik/poedit,5784.3782523148,117,44,0 +polari,0.5317030791,1.9781526048,0.0463121558,https://salsa.debian.org/gnome-team/polari, https://gitlab.gnome.org/GNOME/polari.git,3769.3740625,188,128,0 +polib,-0.0525182229,1.1637256532,-0.4334617179,https://salsa.debian.org/python-team/packages/polib, https://github.com/izimobil/polib.git,2651.136875,2,29,0 +policycoreutils,0.1375221615,0.3264848165,0.0169149753,https://salsa.debian.org/selinux-team/policycoreutils, https://github.com/SELinuxProject/selinux,5593.8026157407,179,30,0 +policyd-rate-limit,-1.5483891938,0.8603109839,-1.9855824959,https://salsa.debian.org/python-team/packages/policyd-rate-limit, https://github.com/nitmir/policyd-rate-limit.git,2604.4654513889,1,4,0 +policykit-1,1.1147007368,1.6210390449,0.7432058002,https://salsa.debian.org/utopia-team/polkit, https://gitlab.freedesktop.org/polkit/polkit,5769.5895138889,98,29,0 +policykit-1-gnome,4.2076825406,7.6458280229,2.7469253552,https://salsa.debian.org/utopia-team/polkit-gnome, https://gitlab.gnome.org/GNOME/policykit-gnome,3306.5161111111,41,128,0 +polkit-kde-agent-1,2.2283487193,4.6151960185,1.1436676048,https://salsa.debian.org/qt-kde-team/kde/polkit-kde-agent-1, https://invent.kde.org/plasma/polkit-kde-agent-1.git,5724.2509722222,3,56,0 +ponyorm,-2.2108727819,0.2544818645,-2.7664426752,https://salsa.debian.org/python-team/packages/ponyorm, https://github.com/ponyorm/pony,5706.9338310185,26,14,6 +poppler,2.1003997535,2.5396728066,1.730160468,https://salsa.debian.org/freedesktop-team/poppler, https://gitlab.freedesktop.org/poppler/poppler,5786.4462731482,313,79,0 +popt,0.8457741179,1.4698340745,0.461614112,https://salsa.debian.org/debian/popt, https://github.com/rpm-software-management/popt.git,5739.6746643519,38,10,0 +portalocker,-0.6761775694,1.2289979494,-1.0819015205,https://salsa.debian.org/python-team/packages/portalocker, https://github.com/WoLpH/portalocker,4590.8550231482,5,21,0 +postfixadmin,1.3718594968,2.8225561724,0.562614351,https://salsa.debian.org/debian/postfixadmin, https://github.com/postfixadmin/postfixadmin,5760.0218055556,53,77,1 +postgis,-0.0772593321,0.1063028563,-0.1773902148,https://salsa.debian.org/debian-gis-team/postgis, https://git.osgeo.org/gitea/postgis/postgis.git,5783.9700115741,58,54,0 +postgis-java,-0.2249511782,0.6204972087,-0.4368391732,https://salsa.debian.org/debian-gis-team/postgis-java, https://github.com/postgis/postgis-java.git,5635.3241319445,8,12,0 +postgresql-autodoc,0.4941840875,2.0445546371,-0.1932500455,https://salsa.debian.org/debian/postgresql-autodoc, https://github.com/cbbrowne/autodoc.git,4575.8853587963,5,13,0 +postgresql-filedump,-0.6115611941,1.2319618721,-1.0974123114,https://salsa.debian.org/postgresql/postgresql-filedump, https://github.com/df7cb/pg_filedump.git,4622.5029861111,3,6,0 +postgresql-hll,-1.5534816636,0.6872065961,-2.2881681018,https://salsa.debian.org/postgresql/postgresql-hll, https://github.com/citusdata/postgresql-hll.git,3859.4959259259,23,21,0 +postgresql-mysql-fdw,-1.2606174982,0.3226021522,-1.7176084858,https://salsa.debian.org/postgresql/postgresql-mysql-fdw, https://github.com/EnterpriseDB/mysql_fdw.git,4475.7229861111,5,27,0 +postgresql-numeral,-1.5134522364,1.6243431313,-2.293706422,https://github.com/df7cb/postgresql-numeral,https://github.com/df7cb/postgresql-numeral,2361.1246527778,0,4,0 +postgresql-plsh,-1.6026559782,-0.4185729412,-1.9028536338,https://salsa.debian.org/postgresql/postgresql-plsh, https://github.com/petere/plsh.git,3969.9145023148,1,1,0 +postgrey,0.4162125811,0.8007795616,0.16790509,https://salsa.debian.org/debian/postgrey, https://github.com/schweikert/postgrey.git,5469.9499074074,10,14,0 +postsrsd,0.10383995,2.0191274283,-0.4773257062,https://salsa.debian.org/debian/postsrsd, https://github.com/roehling/postsrsd.git,4014.2085648148,10,17,0 +potool,-0.5814294404,0.0587787858,-0.834772415,https://github.com/porridge/potool/tree/debian,https://github.com/porridge/potool,4430.2149884259,2,3,0 +povray,0.9584216742,1.6940449747,0.4892724706,https://salsa.debian.org/debian/povray, https://github.com/POV-Ray/povray,2833.0740740741,8,15,7 +powa-archivist,-1.3322892717,0.6277535501,-1.7515157782,https://github.com/powa-team/powa-archivist,https://github.com/powa-team/powa-archivist,3471.9301967593,10,15,2 +powercap,-0.3284328359,2.6169095108,-1.1283456001,https://github.com/connorimes/powercap/tree/debian,https://github.com/connorimes/powercap,2525.9958912037,0,4,0 +powerdevil,2.427317713,6.2462558301,1.0445729173,https://salsa.debian.org/qt-kde-team/kde/powerdevil, https://invent.kde.org/plasma/powerdevil.git,5636.6774305556,26,179,0 +powerline,0.2084761436,0.8354708347,-0.073659199,https://salsa.debian.org/python-team/packages/powerline, https://github.com/powerline/powerline,4036.078587963,67,105,3 +powerline-gitstatus,0.322269027,3.8171059531,-0.5302565688,https://salsa.debian.org/python-team/packages/powerline-gitstatus, https://github.com/jaspernbrouwer/powerline-gitstatus.git,2809.6974884259,4,10,0 +powertop,1.155590709,1.7408288434,0.7559251576,https://salsa.debian.org/debian/powertop, https://github.com/fenrus75/powertop,4841.8389467593,89,27,0 +poxml,0.6692366419,2.3071065777,0.0465901935,https://salsa.debian.org/qt-kde-team/kde/poxml, https://invent.kde.org/sdk/poxml,5775.9805439815,0,26,0 +pplpy,-0.7255257385,0.9170725472,-1.0582336057,https://salsa.debian.org/science-team/pplpy, https://gitlab.com/videlec/pplpy,2413.5413888889,4,11,0 +ppp,1.5769782927,1.8749398384,1.3344917748,https://salsa.debian.org/debian/ppp, https://github.com/ppp-project/ppp,5732.9369328704,65,38,0 +pps-tools,0.7472487963,4.4814305955,-0.4374778463,https://github.com/bzed/pps-tools,https://github.com/bzed/pps-tools,3767.0434143519,3,10,0 +pqiv,-0.1638813895,0.7585584788,-0.4540092183,https://salsa.debian.org/pberndt-guest/pqiv, https://github.com/phillipberndt/pqiv,5604.8415509259,11,12,0 +prads,0.259994197,3.8326314267,-1.0339454478,https://salsa.debian.org/debian/prads, https://github.com/gamelinux/prads.git,4237.0082638889,2,39,0 +prboom-plus,0.97864662,1.8842985584,0.4320575143,https://salsa.debian.org/games-team/prboom-plus, https://github.com/coelckers/prboom-plus,5585.983912037,42,11,1 +prefix,-1.1387443889,1.4705314302,-2.0097706447,https://github.com/dimitri/prefix,https://github.com/dimitri/prefix,5681.2066782408,1,10,0 +preggy,-2.9228555263,-1.0464425405,-3.3186736503,https://salsa.debian.org/python-team/packages/preggy, https://github.com/heynemann/preggy,3206.0471759259,1,12,2 +preprepare,-2.2210905897,-0.5977303937,-2.5998570115,https://github.com/dimitri/preprepare,https://github.com/dimitri/preprepare,5242.6337615741,0,4,0 +primus,0.2729569091,1.2481073389,-0.1134531508,https://salsa.debian.org/nvidia-team/primus, https://github.com/amonakov/primus,937.9013425926,3,6,0 +primus-vk,-0.4212908417,2.921882742,-1.2334752443,https://salsa.debian.org/nvidia-team/primus-vk, https://github.com/felixdoerre/primus_vk,1911.529537037,4,7,0 +princeprocessor,-1.2692837532,1.0737092479,-1.7210172993,https://salsa.debian.org/pkg-security-team/princeprocessor, https://github.com/hashcat/princeprocessor.git,3216.9043981482,0,10,0 +pristine-lfs,-1.1107539752,1.400102547,-1.6702241468,https://salsa.debian.org/debian/pristine-lfs, https://salsa.debian.org/pristine-lfs-team/pristine-lfs.git,1398.9192361111,1,2,0 +proftpd-dfsg,0.7373412617,1.0458954995,0.4949535075,https://salsa.debian.org/debian-proftpd-team/proftpd, https://github.com/proftpd/proftpd,5767.726412037,8,45,2 +proftpd-mod-case,-1.4646475873,0.7662724504,-2.0254092437,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-case, https://github.com/Castaglia/proftpd-mod_case.git,4180.9304050926,0,4,0 +proftpd-mod-clamav,-0.5199500157,1.6804203805,-1.2969019371,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-clamav, https://github.com/jbenden/mod_clamav.git,3704.0200810185,2,4,0 +proftpd-mod-counter,-3.9091957799,-1.6311020735,-4.3444753088,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-counter, https://github.com/Castaglia/proftpd-mod_counter,4182.156412037,0,3,0 +proftpd-mod-msg,-1.7610775956,0.1821621492,-2.2899965266,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-msg, https://github.com/Castaglia/proftpd-mod_msg,1530.1719212963,0,2,0 +proftpd-mod-tar,-1.0180464333,1.4128864786,-1.7353120048,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-tar, https://github.com/Castaglia/proftpd-mod_tar.git,4180.9053935185,0,2,0 +proftpd-mod-vroot,1.5988542337,4.0231527893,0.5685130663,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-vroot, https://github.com/Castaglia/proftpd-mod_vroot.git,3875.2868518519,0,5,0 +progress,0.3671411304,3.1287519645,-0.30497477,https://salsa.debian.org/debian/progress, https://github.com/Xfennec/progress,3611.7222569445,7,34,0 +proj,0.1750377961,0.451924065,0.0225183484,https://salsa.debian.org/debian-gis-team/proj, https://github.com/OSGeo/PROJ.git,5782.0658101852,86,100,0 +projectm,1.0865043655,2.3048036631,0.4424841509,https://salsa.debian.org/multimedia-team/projectm, https://github.com/projectM-visualizer/projectm.git,5766.7227314815,55,53,0 +prometheus-alertmanager,-0.6277167971,0.1912775526,-0.9101527724,https://salsa.debian.org/go-team/packages/prometheus-alertmanager, https://github.com/prometheus/alertmanager,3799.9337268519,223,166,0 +prometheus-bind-exporter,-1.219120384,0.70031567,-1.6696173791,https://salsa.debian.org/go-team/packages/prometheus-bind-exporter, https://github.com/prometheus-community/bind_exporter,2946.8200115741,21,14,0 +prometheus-bird-exporter,-3.477178786,-0.0329330544,-4.2892202007,https://salsa.debian.org/go-team/packages/prometheus-bird-exporter, https://github.com/czerwonk/bird_exporter,2542.4624768519,10,16,6 +prometheus-blackbox-exporter,-0.9819043469,0.1891536468,-1.2071593012,https://salsa.debian.org/go-team/packages/prometheus-blackbox-exporter, https://github.com/prometheus/blackbox_exporter,3018.8387268519,91,47,0 +prometheus-haproxy-exporter,-3.8607213348,-2.0700503351,-4.3161894613,https://salsa.debian.org/go-team/packages/prometheus-haproxy-exporter, https://github.com/prometheus/haproxy_exporter,3672.0941203704,21,40,0 +prometheus-mailexporter,-1.4619262945,0.8353265582,-1.9708877275,https://salsa.debian.org/go-team/packages/prometheus-mailexporter, https://github.com/cherti/mailexporter,2367.3820486111,4,4,1 +prometheus-mysqld-exporter,-0.4842172205,1.4677354349,-1.1653791021,https://salsa.debian.org/go-team/packages/prometheus-mysqld-exporter, https://github.com/prometheus/mysqld_exporter,3197.2337268519,55,65,0 +prometheus-nginx-exporter,-0.9170017934,1.9572961427,-1.7139132912,https://salsa.debian.org/go-team/packages/prometheus-nginx-exporter, https://github.com/nginxinc/nginx-prometheus-exporter,2021.3354861111,34,16,1 +prometheus-node-exporter,0.0690726386,0.9842326561,-0.2313319287,https://salsa.debian.org/go-team/packages/prometheus-node-exporter, https://github.com/prometheus/node_exporter,3891.8962384259,281,181,1 +prometheus-node-exporter-collectors,-0.3272452489,3.2301548238,-1.2826595893,https://salsa.debian.org/go-team/packages/prometheus-node-exporter-collectors, https://github.com/prometheus-community/node-exporter-textfile-collector-scripts,2551.9948032407,47,28,0 +prometheus-postfix-exporter,-2.309018579,-0.0678780093,-2.9354675488,https://salsa.debian.org/go-team/packages/prometheus-postfix-exporter, https://github.com/kumina/postfix_exporter,2274.256712963,7,24,0 +prometheus-postgres-exporter,-0.8002651054,1.5850609691,-1.3872868315,https://salsa.debian.org/go-team/packages/prometheus-postgres-exporter, https://github.com/prometheus-community/postgres_exporter,3027.0144328704,102,49,0 +prometheus-pushgateway,-0.8937395968,2.0265228669,-1.5977918562,https://salsa.debian.org/go-team/packages/prometheus-pushgateway, https://github.com/prometheus/pushgateway,3606.187337963,18,76,1 +prometheus-snmp-exporter,-1.3551310327,1.447420652,-2.0173461726,https://salsa.debian.org/go-team/packages/prometheus-snmp-exporter, https://github.com/prometheus/snmp_exporter,3213.7672916667,96,43,0 +prometheus-squid-exporter,-2.4184825127,0.2419519547,-2.996629758,https://salsa.debian.org/go-team/packages/prometheus-squid-exporter, https://github.com/boynux/squid-exporter,2307.5272222222,13,20,0 +prometheus-varnish-exporter,-2.2273768444,0.194394138,-2.908572358,https://salsa.debian.org/go-team/packages/prometheus-varnish-exporter, https://github.com/jonnenauha/prometheus_varnish_exporter.git,2552.1847337963,20,7,0 +prompt-toolkit,0.4872192883,2.9978306954,-0.0809488244,https://salsa.debian.org/python-team/packages/prompt-toolkit, https://github.com/prompt-toolkit/python-prompt-toolkit,3391.9453472222,231,9,0 +proot,1.0920103364,3.4894212371,0.1526188422,https://github.com/ivoire/proot-debian,https://github.com/ivoire/proot-debian,508.0834837963,0,2,0 +prospector,-0.1396414973,2.1237521604,-0.9708127034,https://salsa.debian.org/python-team/packages/prospector, https://github.com/PyCQA/prospector,3767.6942939815,36,66,2 +ps-watcher,-1.1508870047,0.3011149127,-1.48882153,https://gitlab.uncompleted.org/debian/ps-watcher, https://git.code.sf.net/p/ps-watcher/code,3542.8980787037,16,3,0 +ps2eps,1.532120796,4.5656897613,0.4495361846,https://salsa.debian.org/debian/ps2eps, https://github.com/roland-bless/ps2eps.git,0.1197453704,1,2,0 +psad,-0.1576432836,0.28089801,-0.427371641,https://salsa.debian.org/debian/psad, https://github.com/mrash/psad/commits/master,5185.326875,55,11,0 +psi,1.2135210428,1.7743724923,0.8069612861,https://salsa.debian.org/xmpp-team/psi, https://github.com/psi-im/psi.git,5747.445775463,30,65,0 +psi-plus,-0.0389491457,0.359609186,-0.2591755959,https://salsa.debian.org/xmpp-team/psi-plus, https://github.com/psi-plus/psi-plus-snapshots.git,4282.4423726852,3,4,0 +psi-plus-l10n,0.0021957149,2.2864167914,-0.4312230713,https://salsa.debian.org/xmpp-team/psi-plus-l10n, https://github.com/psi-plus/psi-plus-l10n.git,4205.424212963,1,2,0 +psi-translations,-0.0176490018,1.6005000105,-0.5891802168,https://salsa.debian.org/xmpp-team/psi-translations, https://github.com/psi-im/psi-l10n.git,3818.9027083333,1,10,0 +psmisc,0.4700906712,0.7101851703,0.3064243869,https://salsa.debian.org/debian/psmisc, https://gitlab.com/psmisc/psmisc.git,5711.3826157408,28,21,0 +pspg,-0.3610506999,2.0130078842,-0.820706513,https://salsa.debian.org/postgresql/pspg, https://github.com/okbob/pspg,2316.4040509259,13,25,0 +pssh,1.2512609315,3.0978642636,0.3425290598,https://salsa.debian.org/python-team/packages/pssh, https://github.com/lilydjwg/pssh.git,5265.2351388889,5,13,0 +psychtoolbox-3,0.2033527556,1.6529232576,-0.3714926285,https://github.com/neurodebian/Psychtoolbox-3/tree/debian,https://github.com/neurodebian/Psychtoolbox-3,5782.8479166667,14,56,0 +pt2-clone,-0.3668249418,2.0442471334,-0.8709375553,https://salsa.debian.org/multimedia-team/pt2-clone, https://github.com/8bitbubsy/pt2-clone,1458.0896180556,2,4,0 +ptable,-0.4977567219,1.9029777422,-1.0355607788,https://salsa.debian.org/python-team/packages/ptable, https://github.com/kxxoling/PTable,3352.2971990741,2,16,0 +ptouch-driver,2.9461393952,6.8234280435,1.5185561181,https://salsa.debian.org/printing-team/ptouch-driver, https://github.com/philpem/printer-driver-ptouch.git,1342.5621990741,5,13,0 +publicsuffix,0.5899249843,2.2203411339,0.0757451171,https://salsa.debian.org/debian/publicsuffix, https://github.com/publicsuffix/list,5785.0285069445,598,98,0 +pudb,0.5652873271,3.503587652,-0.3825137639,https://salsa.debian.org/debian/pudb, https://github.com/inducer/pudb.git,5292.8559490741,32,73,0 +pugixml,0.2283027223,1.2925781183,-0.0618880815,https://salsa.debian.org/debian/pugixml, https://github.com/zeux/pugixml,5448.187962963,24,58,0 +pulseaudio,1.687413918,1.975291099,1.4447684613,https://salsa.debian.org/pulseaudio-team/pulseaudio, https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git,5707.6521990741,515,140,0 +puppet-beaker,-3.3388976797,-1.3573176586,-3.7466107228,https://salsa.debian.org/debian/puppet-beaker, https://github.com/voxpupuli/beaker,4907.9281134259,70,283,1 +puppet-module-puppetlabs-apache,-1.5417844408,-0.1240652061,-1.9888612169,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-apache, https://github.com/puppetlabs/puppetlabs-apache,4851.4447106482,122,563,2 +puppet-module-puppetlabs-concat,-0.9082644121,1.0039677427,-1.2905255535,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-concat, https://github.com/puppetlabs/puppetlabs-concat,4953.9728703704,37,176,1 +puppet-module-puppetlabs-firewall,-1.675498359,0.1640188164,-2.1230701805,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-firewall, https://github.com/puppetlabs/puppetlabs-firewall,4586.8520833333,80,232,1 +puppet-module-puppetlabs-mysql,-1.0852269476,0.911414697,-1.5945594785,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-mysql, https://github.com/puppetlabs/puppetlabs-mysql,4577.2790046296,89,362,0 +puppet-module-puppetlabs-ntp,-1.6019329854,0.0840048992,-1.9766118562,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-ntp, https://github.com/puppetlabs/puppetlabs-ntp.git,4661.5050231482,40,171,0 +puppet-module-puppetlabs-postgresql,-1.9587827729,-0.0955597618,-2.4441695028,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-postgresql, https://github.com/puppetlabs/puppetlabs-postgresql.git,4242.2840046296,62,322,0 +puppet-module-puppetlabs-xinetd,-1.728520912,0.7618236366,-2.2296657543,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-xinetd, https://github.com/puppetlabs/puppetlabs-xinetd,4771.0705671296,11,67,0 +puppet-module-saz-memcached,-2.1214448407,0.1646765079,-2.6091973246,https://salsa.debian.org/puppet-team/puppet-module-saz-memcached, https://github.com/saz/puppet-memcached,4458.983287037,12,53,1 +puppetdb,-0.0430137599,1.9234948909,-0.7787120621,https://salsa.debian.org/puppet-team/puppetdb, https://github.com/puppetlabs/puppetdb.git,4517.0981134259,63,158,0 +puredata,0.0157019697,0.2816684082,-0.130901583,https://salsa.debian.org/multimedia-team/pd/puredata, https://github.com/pure-data/pure-data,5785.4329861111,63,77,2 +purl,-1.3403902917,0.9095061718,-1.8075410282,https://salsa.debian.org/python-team/packages/purl, https://github.com/codeinthehole/purl,3937.9855092593,4,18,0 +pwgen,1.3539562516,2.2914753933,0.7855817259,https://github.com/tytso/pwgen,https://github.com/tytso/pwgen,1771.0365509259,6,3,0 +pwget,-0.4530628758,1.9572713675,-1.0628915119,https://salsa.debian.org/debian/pwget, https://github.com/jaalto/project--perl-webget,3883.3964236111,0,1,0 +px,-0.4234224327,0.5819577652,-0.6330336811,https://salsa.debian.org/debian/px, https://github.com/walles/px,2833.1755092593,1,6,0 +py-lmdb,-0.075515578,2.3670377588,-0.9569815252,https://salsa.debian.org/debian/py-lmdb, https://github.com/jnwatson/py-lmdb,3712.4741898148,18,23,0 +py-postgresql,0.0569254607,2.238596245,-0.7405534191,https://salsa.debian.org/python-team/packages/py-postgresql, https://github.com/python-postgres/fe,5231.8056712963,1,11,0 +py-radix,-0.2347152131,1.2849195969,-0.668352957,https://salsa.debian.org/python-team/packages/py-radix, https://github.com/mjschultz/py-radix,1374.4915856482,3,11,0 +py-ubjson,0.3258683606,2.3051690362,-0.1923435128,https://salsa.debian.org/python-team/packages/py-ubjson, https://github.com/Iotic-Labs/py-ubjson,2987.1609027778,3,4,0 +py3status,-0.6041629972,0.9427378284,-0.931408601,https://salsa.debian.org/debian/py3status, https://github.com/ultrabug/py3status.git,3948.0062615741,125,142,0 +pyacoustid,0.1623642828,1.6198829415,-0.297127441,https://salsa.debian.org/python-team/packages/pyacoustid, https://github.com/beetbox/pyacoustid.git,4388.5853125,7,21,0 +pyaes,0.0439799147,1.4656384769,-0.2904973327,https://salsa.debian.org/python-team/packages/pyaes, https://github.com/ricmoo/pyaes.git,1227.0517476852,0,7,0 +pyasn1,0.2890241302,1.2375698482,-0.0048553555,https://salsa.debian.org/python-team/packages/pyasn1, https://github.com/etingof/pyasn1,4382.9294907407,6,11,0 +pybigwig,-1.3783874926,0.9066989322,-1.9474426651,https://salsa.debian.org/med-team/pybigwig, https://github.com/deeptools/pyBigWig.git,2807.2654282408,2,15,0 +pycairo,1.8611353266,3.0551049835,1.1479506832,https://salsa.debian.org/python-team/packages/pycairo, https://github.com/pygobject/pycairo,2389.8532175926,13,23,2 +pychm,0.1959778752,1.6504366967,-0.1847897986,https://salsa.debian.org/python-team/packages/pychm, https://github.com/dottedmag/pychm.git,3381.7747222222,2,4,0 +pychromecast,0.0550333172,1.8645058973,-0.3583381658,https://salsa.debian.org/python-team/packages/pychromecast, https://github.com/home-assistant-libs/pychromecast.git,3717.1753935185,57,30,0 +pycoast,-0.9264089102,1.0445653141,-1.3282069805,https://salsa.debian.org/debian-gis-team/pycoast, https://github.com/pytroll/pycoast,3185.132662037,7,21,0 +pycodestyle,0.4399866344,2.1742206342,-0.0747451364,https://salsa.debian.org/python-team/packages/pycodestyle, https://github.com/PyCQA/pycodestyle,5163.460625,31,117,1 +pycountry,0.2948166986,1.5736482099,-0.1223094797,https://salsa.debian.org/debian/pycountry, https://github.com/flyingcircusio/pycountry,5687.0857407408,1,26,1 +pycsw,-2.6870452045,-2.1028211304,-2.7954357596,https://salsa.debian.org/debian-gis-team/pycsw, https://github.com/geopython/pycsw.git,4758.6263425926,26,33,0 +pycuda,-0.4562918094,0.4818798671,-0.7299765939,https://salsa.debian.org/nvidia-team/python-pycuda, https://github.com/inducer/pycuda,5664.963599537,28,68,0 +pydbus,-0.3266767704,1.5456091484,-0.7365401037,https://salsa.debian.org/python-team/packages/pydbus, https://github.com/LEW21/pydbus,1343.8662731482,4,10,0 +pydenticon,-0.865220641,1.8522581651,-1.5367272325,https://salsa.debian.org/python-team/packages/pydenticon, https://github.com/azaghal/pydenticon,1376.6938657407,2,1,0 +pydicom,0.3543730908,1.939756419,-0.1871292016,https://salsa.debian.org/med-team/pydicom, https://github.com/pydicom/pydicom.git,5576.1416435185,69,58,0 +pydl,-0.4956083654,0.3240229847,-0.642218824,https://salsa.debian.org/debian-astro-team/pydl, https://github.com/weaverba137/pydl,4774.0527777778,1,11,1 +pydocstyle,0.5531580789,3.8832816133,-0.434312514,https://salsa.debian.org/python-team/packages/pydocstyle, https://github.com/PyCQA/pydocstyle.git,4295.4277893519,58,44,0 +pydoctor,-1.4230035479,-0.3331583157,-1.8205603705,https://salsa.debian.org/python-team/packages/pydoctor, https://github.com/twisted/pydoctor,5762.1994907407,10,47,2 +pydot,0.7107056136,2.1401436392,0.0878537579,https://salsa.debian.org/python-team/packages/pydot, https://github.com/pydot/pydot.git,4914.8573032407,17,9,0 +pyee,-1.3745265857,2.1445825063,-2.1864882834,https://salsa.debian.org/python-team/packages/pyee, https://github.com/jfhbrook/pyee,4518.1167361111,13,8,0 +pyephem,-0.0227131663,2.3529010648,-0.4516668765,https://salsa.debian.org/debian-astro-team/pyephem, https://github.com/brandon-rhodes/pyephem.git,5699.0022222222,31,9,0 +pyepr,-0.9391839973,0.1389487685,-1.21878767,https://salsa.debian.org/debian-gis-team/pyepr, https://github.com/avalentino/pyepr.git,4620.4665856482,0,3,0 +pyfai,0.4806003399,2.2308213346,-0.2405739765,https://salsa.debian.org/science-team/pyfai, https://github.com/silx-kit/pyFAI,3860.8997106482,31,70,7 +pyferret,-0.72004345,0.502761217,-1.0271649007,https://salsa.debian.org:/science-team/pyferret, https://github.com/NOAA-PMEL/PyFerret.git,4609.9006597222,4,23,0 +pyfftw,-0.3163980427,0.8022051992,-0.7007613353,https://salsa.debian.org/science-team/pyfftw, https://github.com/pyFFTW/pyFFTW,4024.0905671296,11,25,0 +pyflakes,0.6042364777,1.3550591178,0.1923311329,https://salsa.debian.org/python-team/packages/pyflakes, https://github.com/PyCQA/pyflakes,5606.0790277778,52,38,0 +pyfribidi,-1.3111437363,-0.4469862862,-1.5898484292,https://salsa.debian.org/python-team/packages/pyfribidi, https://github.com/pediapress/pyfribidi.git,2842.4984953704,1,5,0 +pygame,1.0962196099,1.7796648639,0.6560498539,https://salsa.debian.org/python-team/packages/pygame, https://github.com/pygame/pygame.git,2564.2205208333,126,252,0 +pygame-sdl2,0.0393673283,2.2406850518,-0.449471554,https://salsa.debian.org/games-team/pygame-sdl2, https://github.com/renpy/pygame_sdl2,3332.3333796296,5,23,0 +pygccxml,-0.4955517342,0.4864924689,-0.8491388898,https://salsa.debian.org/debian/pygccxml, https://github.com/gccxml/pygccxml,5668.9765046296,5,16,0 +pygments,1.0943284665,2.3132348209,0.4693624635,https://salsa.debian.org/python-team/packages/pygments, https://github.com/pygments/pygments.git,2886.0544328704,306,558,0 +pygnuplot,-0.3092811424,1.9971008368,-0.816765548,https://salsa.debian.org/python-team/packages/pygnuplot, https://github.com/benschneider/PyGnuplot,2586.3193055556,0,7,0 +pygobject,1.8735678775,2.5721777285,1.3681624229,https://salsa.debian.org/gnome-team/pygobject, https://gitlab.gnome.org/GNOME/pygobject,5671.774375,139,127,0 +pygresql,0.6546350335,1.713004741,0.0882104427,https://salsa.debian.org/debian/pygresql, https://github.com/PyGreSQL/PyGreSQL,5390.1054513889,4,4,4 +pygtail,-0.539020119,3.1329292561,-1.6179088283,https://salsa.debian.org/python-team/packages/pygtail, https://github.com/bgreenlee/pygtail,4147.3947800926,7,19,0 +pygtkspellcheck,0.7257355054,2.6166114148,0.0292934832,https://salsa.debian.org/python-team/packages/pygtkspellcheck, https://github.com/koehlma/pygtkspellcheck,4478.3301851852,2,11,1 +pyhamcrest,0.4770044067,2.0276091701,-0.0667553805,https://salsa.debian.org/python-team/packages/pyhamcrest, https://github.com/hamcrest/PyHamcrest,5756.5347222222,18,36,0 +pyicu,0.5670644168,1.6983016649,0.0840500818,https://salsa.debian.org/python-team/packages/pyicu, https://github.com/ovalhub/pyicu.git,2184.9113078704,5,15,0 +pyinotify,0.5393038114,1.5597329492,0.1070106933,https://salsa.debian.org/python-team/packages/pyinotify, https://github.com/seb-m/pyinotify.git,2642.3433796296,0,16,0 +pyjokes,-0.2132231438,3.5420373155,-1.225758658,https://salsa.debian.org/python-team/packages/pyjokes, https://github.com/pyjokes/pyjokes,3166.3977546296,9,30,1 +pyjwt,0.2950888791,1.370430653,-0.0542571025,https://salsa.debian.org/python-team/packages/pyjwt, https://github.com/jpadilla/pyjwt.git,4675.8973263889,105,47,0 +pylama,-0.1685043243,2.3124561576,-0.8358206635,https://salsa.debian.org/python-team/packages/pylama, https://github.com/klen/pylama,3643.0438888889,6,46,0 +pylast,0.1007769388,2.2899648047,-0.3798195506,https://salsa.debian.org/python-team/packages/pylast, https://github.com/pylast/pylast,5565.5985532407,8,38,2 +pylibtiff,0.0190555879,2.1644424074,-0.7692360791,https://salsa.debian.org/debian-gis-team/pylibtiff, https://github.com/pearu/pylibtiff.git,3040.1433796296,10,20,0 +pylint,0.1744987157,0.4665293327,-0.0043463956,https://salsa.debian.org/python-team/packages/pylint, https://github.com/PyCQA/pylint.git,5621.9113194445,451,185,0 +pylint-flask,0.121478376,2.8144652216,-0.7933125834,https://salsa.debian.org/python-team/packages/pylint-flask, https://github.com/jschaf/pylint-flask,2579.0026851852,3,8,0 +pylint-plugin-utils,-0.0597596177,2.4927234887,-0.676049395,https://salsa.debian.org/python-team/packages/pylint-plugin-utils, https://github.com/PyCQA/pylint-plugin-utils.git,3719.6033912037,6,13,0 +pymacs,0.9303815697,2.7144075758,0.1401254636,https://salsa.debian.org/python-team/packages/pymacs, https://github.com/pinard/Pymacs.git,2214.3501157408,2,9,0 +pymarkups,0.0477864201,1.7967990324,-0.2898612909,https://salsa.debian.org/python-team/packages/pymarkups, https://github.com/retext-project/pymarkups.git,4159.1562731482,2,3,0 +pymca,-0.4153476895,-0.1437047675,-0.5016872933,https://salsa.debian.org/science-team/pymca, https://github.com/vasole/pymca,5785.8055439815,7,32,0 +pymediainfo,0.3813327313,2.7232285427,-0.3112268398,https://salsa.debian.org/python-team/packages/pymediainfo, https://github.com/sbraz/pymediainfo,4970.7511111111,10,7,0 +pymodbus,0.0732799109,1.8646692265,-0.5844401794,https://salsa.debian.org/python-team/packages/pymodbus, https://github.com/pymodbus-dev/pymodbus.git,5499.738599537,102,63,0 +pympler,-2.5554616546,1.3732171766,-3.6067183246,https://salsa.debian.org/python-team/packages/pympler, https://github.com/pympler/pympler.git,5079.4090393519,13,20,0 +pympress,-1.0824023077,0.6109334446,-1.3937672948,https://salsa.debian.org/python-team/packages/pympress, https://github.com/Cimbali/pympress/commits/master,5185.326875,55,11,0 +pymssql,1.0413415976,3.4025855912,0.0397901466,https://salsa.debian.org/python-team/packages/pymssql, https://github.com/pymssql/pymssql.git,4832.0408217593,33,33,0 +pyodbc,0.885597745,3.4877670512,0.0174921768,https://salsa.debian.org/python-team/packages/pyodbc, https://github.com/mkleehammer/pyodbc.git,5503.0789814815,46,20,0 +pyopencl,0.1782677537,0.865226367,-0.1694455174,https://salsa.debian.org/opencl-team/python-pyopencl, https://github.com/inducer/pyopencl,5374.16875,28,83,0 +pyopenssl,0.46851829,1.1058196557,0.153109358,https://salsa.debian.org/python-team/packages/pyopenssl, https://github.com/pyca/pyopenssl,5770.23,60,60,1 +pyorbital,-0.835136266,1.1503801119,-1.2127768903,https://salsa.debian.org/debian-gis-team/pyorbital, https://github.com/pytroll/pyorbital.git,4467.5734606482,9,33,0 +pyosmium,-0.4857404718,1.1124410015,-0.8149872991,https://salsa.debian.org/debian-gis-team/pyosmium/, https://github.com/osmcode/pyosmium.git,3345.7311574074,7,19,0 +pyotherside,0.0820831317,2.6940917432,-0.7179165545,https://salsa.debian.org/python-team/packages/pyotherside, https://github.com/thp/pyotherside,4575.2678703704,2,16,0 +pyparsing,0.829153778,1.8988301741,0.2870841965,https://salsa.debian.org/python-team/packages/pyparsing, https://github.com/pyparsing/pyparsing,4066.1944907407,57,14,1 +pypass,-0.8847004821,1.9218976351,-1.6206835515,https://salsa.debian.org/python-team/packages/pypass, https://github.com/ReAzem/python-pass.git,1834.5500810185,3,11,0 +pypdf2,0.3363136294,1.8784846763,-0.1155181855,https://salsa.debian.org/debian/pypdf, https://github.com/py-pdf/pypdf,4367.5921759259,137,91,3 +pypeg2,0.0855915399,2.2545524529,-0.3458051782,https://github.com/fiete201/python-pypeg2-debian,https://github.com/fiete201/python-pypeg2-debian,825.4394097222,0,2,0 +pyphen,-0.5188951039,1.8020010624,-0.9777786823,https://salsa.debian.org/python-team/packages/pyphen, https://github.com/Kozea/Pyphen,3769.9223263889,0,13,0 +pypng,0.6570254283,3.6942436097,-0.1603821685,https://salsa.debian.org/debian/pypng, https://github.com/drj11/pypng,5144.0196412037,4,24,0 +pypuppetdb,-1.329401636,2.4185219671,-2.4698360721,https://salsa.debian.org/python-team/packages/pypuppetdb, https://github.com/voxpupuli/pypuppetdb,3781.8189814815,18,46,2 +pyqi,-0.6659052808,0.4267300657,-0.9064389106,https://salsa.debian.org/med-team/pyqi, https://github.com/biocore/pyqi,1051.0106481482,0,13,1 +pyqso,-0.3070953036,2.5075014452,-0.9777672312,https://salsa.debian.org/debian-hamradio-team/pyqso, https://github.com/ctjacobs/pyqso,2213.7885648148,2,9,5 +pyquery,0.2533160207,2.1476722718,-0.276904445,https://salsa.debian.org/python-team/packages/pyquery, https://github.com/gawel/pyquery.git,5354.1741550926,7,50,0 +pyqwt3d,-0.3970590115,0.7440597483,-0.9451413135,https://salsa.debian.org/python-team/packages/pyqwt3d, https://github.com/GauiStori/PyQwt3D,1540.4164930556,0,3,0 +pyraf,-0.127260534,2.0994615998,-0.5643454684,https://salsa.debian.org/debian-astro-team/pyraf, https://github.com/iraf-community/pyraf.git,5659.8291666667,7,26,0 +pyregion,-0.5423298762,-0.2341352644,-0.6086601817,https://salsa.debian.org/debian-astro-team/pyregion/, https://github.com/astropy/pyregion.git,4914.6397453704,1,20,0 +pyresample,-1.1534487682,-1.0950553784,-1.1653453974,https://salsa.debian.org/debian-gis-team/pyresample, https://github.com/pytroll/pyresample,4965.4070138889,20,51,2 +pyrfc3339,0.2375193564,1.6166813486,-0.0819212234,https://salsa.debian.org/python-team/packages/pyrfc3339, https://github.com/kurtraschke/pyRFC3339,3552.2014583333,1,7,0 +pysal,-0.673878057,-0.3855516275,-0.712976291,https://salsa.debian.org/debian-gis-team/pysal, https://github.com/pysal/pysal.git,5281.8235532407,17,89,0 +pysimplesoap,0.5549095046,2.2150664895,0.060625055,https://salsa.debian.org/python-team/packages/pysimplesoap, https://github.com/pysimplesoap/pysimplesoap,4858.2039930556,4,57,0 +pysmi,0.2393270185,2.2118303467,-0.1841478946,https://salsa.debian.org/python-team/packages/pysmi, https://github.com/etingof/pysmi,1806.3306018519,5,7,0 +pysodium,-0.9250342629,1.6337160906,-1.6304178321,https://salsa.debian.org/python-team/packages/pysodium, https://github.com/stef/pysodium.git,3761.6783217593,9,38,0 +pysoundfile,-0.4259563033,1.9817809485,-0.87334628,https://salsa.debian.org/multimedia-team/pysoundfile, https://github.com/bastibe/python-soundfile.git,3757.2281481482,8,31,0 +pysph,-0.1957650825,0.8352828367,-0.6085553873,https://salsa.debian.org/science-team/pysph, https://github.com/pypr/pysph,3944.0042824074,12,53,0 +pysrs,-2.5865636963,-0.2466583264,-3.0140171336,https://salsa.debian.org/python-team/packages/pysrs, https://github.com/sdgathman/pysrs.git,5232.0373842593,2,4,0 +pyssim,-1.4493782429,1.5830189811,-2.3198514231,https://salsa.debian.org/python-team/packages/pyssim, https://github.com/jterrace/pyssim,4069.879375,2,12,0 +pystaticconfiguration,-2.0472160299,0.7630493618,-2.7265555606,https://salsa.debian.org/python-team/packages/pystaticconfiguration, https://github.com/dnephin/PyStaticConfiguration,3745.7102662037,3,26,2 +pysubnettree,-0.9461476097,1.2999152117,-1.5398813128,https://salsa.debian.org/python-team/packages/pysubnettree, https://github.com/zeek/pysubnettree.git,4655.7478587963,1,18,0 +pytables,0.1816127955,0.5142360332,-0.0078057701,https://salsa.debian.org/science-team/pytables, https://github.com/PyTables/PyTables,5755.9130092593,18,124,2 +pytaglib,0.4908333078,3.7983768388,-0.6465368847,https://salsa.debian.org/python-team/packages/pytaglib, https://github.com/supermihi/pytaglib,4465.748599537,1,9,0 +pytango,-0.3975054511,0.2406393435,-0.6313632117,https://salsa.debian.org/science-team/pytango, https://gitlab.com/tango-controls/pytango,4678.1425231482,25,82,0 +pyte,0.3637485445,3.5348771032,-0.5466377135,https://salsa.debian.org/python-team/modules/pyte, https://github.com/selectel/pyte,4528.1454050926,19,17,0 +pytest,-0.0946842033,-0.0017053723,-0.134620685,https://salsa.debian.org/python-team/packages/pytest, https://github.com/pytest-dev/pytest.git,5788.1087384259,365,661,0 +pytest-arraydiff,0.1898441175,2.3416228263,-0.2394386956,https://salsa.debian.org/python-team/packages/pytest-arraydiff, https://github.com/astrofrog/pytest-arraydiff,2688.582349537,5,12,0 +pytest-bdd,-3.4287681139,-0.5039458847,-4.2303785564,https://salsa.debian.org/python-team/packages/pytest-bdd, https://github.com/pytest-dev/pytest-bdd.git,3909.5599768519,26,45,0 +pytest-django,-0.5475125041,2.3821280987,-1.3233502359,https://salsa.debian.org/python-team/packages/pytest-django, https://github.com/pytest-dev/pytest-django,5190.7967708333,98,53,2 +pytest-expect,-1.4175585643,1.7604433826,-2.2515689023,https://salsa.debian.org/python-team/packages/pytest-expect, https://github.com/gsnedders/pytest-expect,1755.9376273148,2,3,0 +pytest-forked,-0.2835965603,2.2951460175,-0.8532920276,https://salsa.debian.org/python-team/packages/pytest-forked, https://github.com/pytest-dev/pytest-forked.git,2315.6524421296,5,15,0 +pytest-httpbin,-2.0359469755,-0.1421897106,-2.5587625634,https://salsa.debian.org/python-team/packages/pytest-httpbin, https://github.com/kevin1024/pytest-httpbin,3280.7402662037,1,13,0 +pytest-mock,-0.2515657251,1.6981150681,-0.9740219911,https://salsa.debian.org/python-team/packages/pytest-mock, https://github.com/pytest-dev/pytest-mock.git,3405.9988541667,26,48,0 +pytest-openfiles,0.0198117056,1.5348745714,-0.246139013,https://salsa.debian.org/python-team/packages/pytest-openfiles, https://github.com/astropy/pytest-openfiles,4143.7103240741,7,35,1 +pytest-pylint,-0.8320096401,0.1532890227,-1.1006353608,https://salsa.debian.org/python-team/packages/pytest-pylint, https://github.com/carsongee/pytest-pylint,3089.6046180556,5,20,0 +pytest-remotedata,0.030168843,1.6486281266,-0.2466155852,https://salsa.debian.org/python-team/packages/pytest-remotedata, https://github.com/astropy/pytest-remotedata,4372.8560069445,4,28,1 +pytest-runner,0.4615736429,3.294817871,-0.4721455985,https://salsa.debian.org/python-team/packages/pytest-runner, https://github.com/pytest-dev/pytest-runner.git,4387.1189699074,16,10,0 +pytest-sugar,-1.9343898664,0.0895529374,-2.5336128329,https://salsa.debian.org/python-team/packages/pytest-sugar, https://github.com/Teemu/pytest-sugar.git,3774.5057060185,13,48,0 +pytest-tornado,-1.6610342646,0.2346703329,-2.0594120368,https://salsa.debian.org/python-team/packages/pytest-tornado, https://github.com/eugeniy/pytest-tornado,2043.2375578704,2,15,0 +pytest-xdist,0.0009584864,1.9643277804,-0.6159863044,https://salsa.debian.org/python-team/packages/pytest-xdist, https://github.com/pytest-dev/pytest-xdist,5069.9814814815,28,79,0 +python-activipy,-2.4231132595,-0.8156429792,-2.7787913771,https://salsa.debian.org/python-team/packages/python-activipy, https://github.com/w3c-social/activipy,294.9819907407,0,1,0 +python-adal,-0.0706935884,2.6258496512,-0.8822661717,https://salsa.debian.org/python-team/packages/python-adal, https://github.com/AzureAD/azure-activedirectory-library-for-python.git,2979.6132060185,14,24,0 +python-admesh,-0.1275889532,1.1910011407,-0.48238652,https://salsa.debian.org/science-team/python-admesh, https://github.com/admesh/python-admesh,1607.8702662037,1,1,0 +python-aiohttp,0.659320456,2.1276330294,0.0372710571,https://salsa.debian.org/python-team/packages/python-aiohttp, https://github.com/aio-libs/aiohttp.git,3726.5305555556,542,215,0 +python-aiomeasures,-2.8867797938,-0.729559981,-3.3232946681,https://salsa.debian.org/python-team/packages/python-aiomeasures, https://lab.errorist.xyz/abc/aiomeasures/tree/master,5185.326875,55,11,0 +python-aiosmtpd,-0.6703070138,1.4844522271,-1.1160076203,https://salsa.debian.org/python-team/packages/python-aiosmtpd, https://github.com/aio-libs/aiosmtpd,2704.0818171296,23,23,3 +python-alignlib,-4.6393972307,-1.9112598753,-5.3987487651,https://salsa.debian.org/med-team/python-alignlib, https://github.com/marcelm/alignlib.git,1738.8239930556,1,3,0 +python-altgraph,-0.1776641612,2.0796554317,-0.6175630942,https://salsa.debian.org/python-team/packages/python-altgraph, https://github.com/ronaldoussoren/altgraph,5013.4008912037,1,6,0 +python-amqp,0.4927928639,2.9780373711,-0.1037801308,https://salsa.debian.org/python-team/packages/python-amqp, https://github.com/celery/py-amqp.git,5725.5644791667,68,43,0 +python-argh,0.2339030674,2.0159100899,-0.2686508718,https://salsa.debian.org/python-team/packages/python-argh, https://github.com/neithere/argh.git,4744.0471875,5,24,0 +python-argon2,-0.5074286956,2.4795462677,-1.245837202,https://salsa.debian.org/python-team/packages/python-argon2, https://github.com/hynek/argon2-cffi,2912.6790509259,15,4,0 +python-arpy,-0.7545902864,2.54869808,-1.7298420281,https://salsa.debian.org/python-team/packages/python-arpy, https://github.com/viraptor/arpy.git,4328.1231134259,1,9,0 +python-arrow,-0.0155472431,1.3763581282,-0.2962658161,https://salsa.debian.org/debian/python-arrow, https://github.com/crsmithdev/arrow.git,3968.0696527778,101,197,0 +python-ase,-0.0151634712,1.2129564258,-0.5153479293,https://salsa.debian.org/debichem-team/python-ase, https://gitlab.com/ase/ase,5787.8641550926,41,371,0 +python-asteval,0.1259722889,2.776799847,-0.5394389553,https://salsa.debian.org/science-team/python-asteval, https://github.com/newville/asteval.git,4236.6654513889,4,25,0 +python-astor,-0.1242415334,2.0667720089,-0.5600857657,https://salsa.debian.org/python-team/packages/python-astor, https://github.com/berkerpeksag/astor,4003.0631365741,29,11,1 +python-asttokens,0.3340810363,3.0114183655,-0.2887013264,https://salsa.debian.org/python-team/packages/python-asttokens, https://github.com/gristlabs/asttokens.git,2518.9855439815,9,8,0 +python-async-timeout,0.9050712213,4.4767861651,-0.0884989381,https://salsa.debian.org/python-team/packages/python-async-timeout, https://github.com/aio-libs/async_timeout.git,2650.1446759259,17,12,0 +python-asyncssh,-1.1827053689,0.2562433063,-1.6493196582,https://salsa.debian.org/python-team/packages/python-asyncssh, https://github.com/ronf/asyncssh,3723.8668634259,18,9,0 +python-atomicwrites,0.8071747449,3.936888395,-0.0360579534,https://salsa.debian.org/python-team/packages/python-atomicwrites, https://github.com/untitaker/python-atomicwrites,2718.0744907407,9,8,0 +python-avro,-0.6764070684,0.594195245,-0.9704692662,https://salsa.debian.org/python-team/packages/python-avro, https://github.com/apache/avro,5362.5630555556,342,76,0 +python-aws-xray-sdk,-0.6565672961,2.2186104229,-1.3887187484,https://salsa.debian.org/science-team/python-aws-xray-sdk, https://github.com/aws/aws-xray-sdk-python,2264.9942939815,64,31,0 +python-azure-devtools,-1.8877692262,1.0407212341,-2.6897741774,https://salsa.debian.org/python-team/packages/python-azure-devtools, https://github.com/Azure/azure-python-devtools,1688.8337962963,6,14,0 +python-b2sdk,-2.7091203496,0.0195888217,-3.2985895116,https://salsa.debian.org/python-team/packages/python-b2sdk, https://github.com/Backblaze/b2-sdk-python.git,2948.6294907407,24,86,0 +python-babel,0.4571086267,1.1252224199,0.1143783436,https://salsa.debian.org/python-team/packages/python-babel, https://github.com/python-babel/babel,5776.7216782407,75,93,2 +python-base58,-0.6380025418,1.8870432293,-1.1948721512,https://salsa.debian.org/python-team/packages/python-base58, https://github.com/keis/base58,3504.7240046296,9,12,0 +python-bayespy,-0.4133726859,2.2939543254,-1.2809021253,https://salsa.debian.org/science-team/python-bayespy, https://github.com/bayespy/bayespy,4227.6050231482,4,9,0 +python-bcrypt,0.720872399,2.4323524124,0.0873154337,https://salsa.debian.org/python-team/packages/python-bcrypt, https://github.com/pyca/bcrypt.git,3870.0652083333,26,10,0 +python-bioblend,-2.9259430646,-0.9822846595,-3.3206601713,https://salsa.debian.org/med-team/python-bioblend, https://github.com/galaxyproject/bioblend,4206.6765393519,23,71,0 +python-biplist,0.1779529959,2.6589861394,-0.4474660814,https://salsa.debian.org/python-team/packages/python-biplist, https://bitbucket.org/wooster/biplist/issues/new,2746.3319791667,2,17,0 +python-bitarray,0.1853646536,2.7169621171,-0.3898567385,https://salsa.debian.org/python-team/packages/python-bitarray, https://github.com/ilanschnell/bitarray.git,5492.0023032407,4,24,0 +python-bitbucket-api,-1.8076804714,0.6553214331,-2.4271193436,https://salsa.debian.org/python-team/packages/python-bitbucket-api, https://github.com/Sheeprider/BitBucket-api,2673.0337152778,1,9,0 +python-blessed,0.2326523586,3.2060505689,-0.718351254,https://salsa.debian.org/python-team/packages/python-blessed, https://github.com/jquast/blessed,4419.8700925926,11,20,0 +python-blosc,0.4104792893,2.7209909901,-0.2401314247,https://salsa.debian.org/python-team/packages/python-blosc, https://github.com/Blosc/python-blosc.git,4736.2912268519,17,36,0 +python-boltons,-0.0997518599,2.672673187,-0.8614154477,https://salsa.debian.org/python-team/packages/python-boltons, https://github.com/mahmoud/boltons,3938.2483333333,42,55,0 +python-boto3,0.0763924268,1.5485301804,-0.3067229714,https://salsa.debian.org/cloud-team/python-boto3, https://github.com/boto/boto3,3388.8384143519,77,94,0 +python-botocore,0.2856121815,1.6399958356,-0.1494357194,https://salsa.debian.org/cloud-team/python-botocore, https://github.com/boto/botocore,4048.245625,86,149,0 +python-bottle,0.4171524394,1.617943163,-0.0429886232,https://salsa.debian.org/debian/python-bottle, https://github.com/bottlepy/bottle.git,5239.7126157407,78,171,0 +python-btrees,0.1317713567,2.7927817986,-0.6326038143,https://salsa.debian.org/python-team/packages/python-btrees, https://github.com/zopefoundation/BTrees.git,4005.3823842593,5,28,0 +python-bugzilla,-0.5633669976,2.1069525275,-1.2124051626,https://salsa.debian.org/python-team/packages/python-bugzilla, https://github.com/python-bugzilla/python-bugzilla,5775.4981712963,51,11,0 +python-bumps,-0.8935367246,0.0933032097,-1.1605313205,https://salsa.debian.org/science-team/python-bumps, https://github.com/bumps/bumps,4409.9511574074,1,19,0 +python-cachetools,0.5221597712,3.3731185733,-0.2589146292,https://salsa.debian.org/python-team/packages/python-cachetools, https://github.com/tkem/cachetools,3511.0841203704,2,11,0 +python-caja,0.0214160855,0.7395995669,-0.2085070184,https://salsa.debian.org/debian-mate-team/python-caja, https://github.com/mate-desktop/python-caja.git,4326.7211342593,10,21,0 +python-can,-1.2006633806,0.7941956215,-1.6959369238,https://salsa.debian.org/python-team/packages/python-can, https://github.com/hardbyte/python-can.git,3258.6977083333,133,94,0 +python-cartopy,-0.0663703642,1.6972787933,-0.601068844,https://salsa.debian.org/debian-gis-team/python-cartopy, https://github.com/SciTools/cartopy.git,4150.5205092593,44,111,0 +python-casacore,-0.230128076,0.6440030276,-0.4561585938,https://salsa.debian.org/debian-astro-team/python-casacore, https://github.com/casacore/python-casacore,5786.2480555556,2,26,3 +python-cassandra-driver,-0.8062754247,1.604168392,-1.7480948985,https://salsa.debian.org/python-team/packages/python-cassandra-driver, https://github.com/datastax/python-driver.git,3941.7978935185,43,186,0 +python-certbot,0.0530697006,0.2050620338,-0.034501071,https://salsa.debian.org/letsencrypt-team/certbot/certbot, https://github.com/letsencrypt/letsencrypt.git,4226.9669907407,268,343,0 +python-certbot-apache,0.1643763851,1.1569070053,-0.1136583194,https://salsa.debian.org/letsencrypt-team/certbot/certbot-apache, https://github.com/letsencrypt/letsencrypt,4226.9669907407,268,343,2 +python-certbot-dns-cloudflare,-0.0402097725,2.614109883,-0.7118021855,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-cloudflare, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0 +python-certbot-dns-digitalocean,-1.4021907243,0.9700041587,-1.95674156,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-digitalocean, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0 +python-certbot-dns-dnsimple,-2.2720142983,0.1157477766,-2.775909363,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-dnsimple, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0 +python-certbot-dns-google,-0.8998199839,1.9089794558,-1.5782805062,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-google, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0 +python-certbot-dns-rfc2136,-0.2811377468,1.8247084979,-0.7514361439,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0 +python-certbot-dns-route53,-1.1000615706,1.1834717942,-1.6727445902,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-route53, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0 +python-changelog,-1.7044805447,-0.290367733,-2.0502430594,https://salsa.debian.org/python-team/packages/python-changelog, https://github.com/sqlalchemyorg/changelog,3951.4740509259,6,7,0 +python-cheroot,0.2184766626,2.5790389703,-0.2566344453,https://salsa.debian.org/python-team/packages/python-cheroot, https://github.com/cherrypy/cheroot.git,5771.2991898148,32,151,0 +python-click,0.5332611337,1.8696354987,0.0413641367,https://salsa.debian.org/python-team/packages/python-click, https://github.com/pallets/click.git,3511.524525463,222,172,0 +python-click-plugins,0.1835966503,2.5094374551,-0.2993391913,https://salsa.debian.org/debian-gis-team/python-click-plugins/, https://github.com/click-contrib/click-plugins.git,1359.2907638889,1,8,0 +python-cligj,0.0110381728,2.5995508465,-0.499940708,https://salsa.debian.org/debian-gis-team/python-cligj, https://github.com/mapbox/cligj.git,2777.8914699074,2,10,0 +python-clint,-0.0438781208,1.7107497398,-0.4294373965,https://salsa.debian.org/python-team/packages/python-clint, https://github.com/kennethreitz/clint,2517.0820023148,3,67,1 +python-cloudflare,0.0381996033,2.7740641999,-0.6663750377,https://salsa.debian.org/python-team/packages/python-cloudflare, https://github.com/cloudflare/python-cloudflare,3286.4968981482,13,32,0 +python-cluster,-0.5595552804,1.7445096488,-1.2732209624,https://salsa.debian.org/python-team/packages/python-cluster, https://github.com/exhuma/python-cluster.git,2854.7879513889,1,7,0 +python-cmarkgfm,-1.3150135933,1.231941831,-1.8951479522,https://salsa.debian.org/python-team/packages/python-cmarkgfm, https://github.com/theacodes/cmarkgfm,1977.4600578704,18,8,0 +python-colorama,0.7784754841,2.4846627407,0.147974244,https://salsa.debian.org/python-team/packages/python-colorama, https://github.com/tartley/colorama,3514.6796527778,15,42,0 +python-colorlog,0.0760601286,2.176247301,-0.417655582,https://salsa.debian.org/python-team/packages/python-colorlog, https://github.com/borntyping/python-colorlog.git,4104.9554398148,10,24,0 +python-colormap,-0.8079814337,1.468837378,-1.3890414287,https://salsa.debian.org/python-team/packages/python-colormap, https://github.com/cokelaer/colormap,3308.9144444445,1,7,0 +python-concurrent.futures,0.253069403,1.4926901749,-0.0680161382,https://salsa.debian.org/python-team/modules/python-concurrent.futures, https://github.com/agronholm/pythonfutures.git,4929.1742592593,10,12,0 +python-configargparse,0.6238780174,3.3511057459,-0.0441913435,https://salsa.debian.org/python-team/packages/configargparse, https://github.com/bw2/ConfigArgParse,3315.6581828704,8,51,0 +python-confluent-kafka,-1.0151798744,0.8336357494,-1.4063143513,https://salsa.debian.org/python-team/packages/python-confluent-kafka, https://github.com/confluentinc/confluent-kafka-python.git,2799.9781365741,89,53,0 +python-consul,0.9547263968,4.6231150915,-0.0266969033,https://salsa.debian.org/python-team/packages/python-consul, https://github.com/cablehead/python-consul,1432.7212152778,12,52,1 +python-cpuinfo,0.2100565498,2.8417185331,-0.3770445961,https://salsa.debian.org/python-team/packages/python-cpuinfo, https://github.com/workhorsy/py-cpuinfo,3300.5731597222,1,24,0 +python-crontab,-1.2089349753,-0.0526821093,-1.5168960802,https://salsa.debian.org/python-team/packages/python-crontab, https://gitlab.com/doctormo/python-crontab,5219.7258101852,5,15,0 +python-cryptography-vectors,0.0542953296,2.8719925033,-0.5550702876,https://salsa.debian.org/python-team/packages/python-cryptography-vectors, https://github.com/pyca/cryptography/issues/new,2746.3319791667,2,17,0 +python-cs,-1.5863871228,0.481665569,-2.233290675,https://salsa.debian.org/python-team/packages/python-cs, https://github.com/exoscale/cs,3277.6950578704,6,20,0 +python-css-parser,0.7375204292,3.6525325545,-0.047073823,https://salsa.debian.org/python-team/packages/python-css-parser, https://github.com/ebook-utils/css-parser,1765.7022685185,2,7,0 +python-cssselect,0.7663890486,3.666235057,-0.0218050513,https://salsa.debian.org/python-team/packages/python-cssselect, https://github.com/scrapy/cssselect,5713.5145601852,8,23,0 +python-cups,0.7229281241,2.1065141416,0.1579248085,https://salsa.debian.org/python-team/packages/python-cups, https://github.com/OpenPrinting/pycups.git,5524.6673842593,4,9,0 +python-curtsies,0.3166501906,2.6067653967,-0.304611589,https://salsa.debian.org/sramacher/python-curtsies, https://github.com/bpython/curtsies,3799.8890277778,15,32,1 +python-cycler,0.6283830281,2.4968734847,0.0195972629,https://salsa.debian.org/python-team/packages/python-cycler, https://github.com/matplotlib/cycler,2790.0141087963,6,19,2 +python-cytoolz,-0.3584848,2.3538098789,-1.0758303941,https://salsa.debian.org/python-team/packages/python-cytoolz, https://github.com/pytoolz/cytoolz,3395.421412037,2,21,0 +python-darkslide,0.9320448351,4.4954117391,-0.2883231751,https://salsa.debian.org/debian/darkslide, https://github.com/ionelmc/python-darkslide.git,4282.7612268519,4,56,0 +python-darts.lib.utils.lru,-1.8927494334,0.2922334772,-2.3461638638,https://salsa.debian.org/pkg-security-team/python-darts.lib.utils.lru, https://github.com/deterministic-arts/DartsPyLRU.git,362.9079398148,0,2,0 +python-datrie,-0.50605789,1.3803188391,-0.9784823552,https://salsa.debian.org/python-team/packages/python-datrie, https://github.com/kmike/datrie.git,2978.6536226852,7,11,0 +python-dbusmock,-0.627944788,0.3000038238,-0.8505709773,https://salsa.debian.org/python-team/packages/python-dbusmock, https://github.com/martinpitt/python-dbusmock,4100.7724189815,32,16,0 +python-debianbts,0.5135384712,1.0251605893,0.2314442315,https://github.com/venthur/python-debianbts,https://github.com/venthur/python-debianbts,5257.8413310185,2,16,0 +python-decorator,0.4704212561,1.7923957087,0.0135959484,https://salsa.debian.org/python-team/packages/python-decorator, https://github.com/micheles/decorator.git,5376.3999537037,6,23,0 +python-deeptoolsintervals,-2.8771627651,-0.6096159473,-3.3226496791,https://salsa.debian.org/med-team/python-deeptoolsintervals, https://github.com/deeptools/deeptools_intervals,1246.0450694445,0,4,0 +python-demjson,-0.2370389615,1.8179175852,-0.8013751143,https://salsa.debian.org/python-team/packages/python-demjson, https://github.com/dmeranda/demjson,1291.8414699074,0,1,0 +python-deprecated,0.1196653299,2.2597788252,-0.3084855603,https://salsa.debian.org/debian-gis-team/python-deprecated, https://github.com/tantale/deprecated.git,2057.2850694445,18,4,0 +python-diaspy,-2.1745867988,0.053506734,-2.6165608868,https://salsa.debian.org/python-team/packages/python-diaspy, https://github.com/marekjm/diaspy,3779.1691319445,4,18,0 +python-diff-match-patch,0.5846033815,3.0986556298,-0.1184020196,https://salsa.debian.org/debian/python-diff-match-patch, https://github.com/diff-match-patch-python/diff-match-patch,1729.8804282407,3,2,0 +python-django-braces,-1.2510273472,0.3406489189,-1.6388153686,https://salsa.debian.org/python-team/packages/python-django-braces, https://github.com/brack3t/django-braces.git,4108.7193865741,10,79,0 +python-django-casclient,-1.1534352121,1.6719173633,-2.0695177654,https://salsa.debian.org/python-team/packages/python-django-casclient, https://github.com/kstateome/django-cas,2792.0546875,7,19,0 +python-django-celery-beat,-1.5340000106,1.8871025985,-2.3905396458,https://salsa.debian.org/python-team/packages/python-django-celery-beat, https://github.com/celery/django-celery-beat,2687.8796643519,111,13,1 +python-django-contact-form,-1.1097333705,0.6281218172,-1.6435972974,https://salsa.debian.org/python-team/packages/python-django-contact-form, https://github.com/ubernostrum/django-contact-form,5539.2370717593,2,14,0 +python-django-csp,-1.4583174327,1.3398431142,-2.1686114772,https://salsa.debian.org/python-team/packages/python-django-csp, https://github.com/mozilla/django-csp.git,4885.7183101852,17,40,0 +python-django-debug-toolbar,-0.7947917167,-0.1497178564,-1.0240000665,https://salsa.debian.org/python-team/packages/python-django-debug-toolbar, https://github.com/jazzband/django-debug-toolbar.git,5583.4441550926,108,202,0 +python-django-etcd-settings,-0.9896632674,2.2575790822,-1.9919766953,https://salsa.debian.org/python-team/packages/python-django-etcd-settings, https://github.com/kpn-digital/django-etcd-settings,2402.9784375,6,17,0 +python-django-extensions,-0.4045451417,0.4426300974,-0.7460103417,https://salsa.debian.org/python-team/packages/python-django-extensions, https://github.com/django-extensions/django-extensions,5734.1733564815,145,466,0 +python-django-extra-views,-1.2587713718,1.08523072,-1.8662212132,https://salsa.debian.org/python-team/packages/python-django-extra-views, https://github.com/AndrewIngram/django-extra-views,4072.4001041667,12,61,1 +python-django-gravatar2,-0.663578474,1.1679046767,-1.1279388031,https://salsa.debian.org/python-team/packages/python-django-gravatar2, https://github.com/twaddington/django-gravatar,3121.6933101852,1,16,0 +python-django-imagekit,-1.3510241486,0.3749851789,-1.7864034212,https://salsa.debian.org/python-team/packages/python-django-imagekit, https://github.com/matthewwithanm/django-imagekit.git,5386.1103935185,18,69,0 +python-django-jsonfield,-1.0714207355,-0.0546197296,-1.3093579612,https://salsa.debian.org/python-team/modules/python-django-jsonfield, https://github.com/adamchainz/django-jsonfield,3841.3997222222,3,25,0 +python-django-libsass,-4.8173196894,-2.3911675188,-5.4384155483,https://salsa.debian.org/python-team/packages/python-django-libsass, https://github.com/torchbox/django-libsass.git,3571.0059490741,10,9,0 +python-django-modelcluster,-3.9620317451,-2.0344269896,-4.3414266404,https://salsa.debian.org/python-team/packages/python-django-modelcluster, https://github.com/wagtail/django-modelcluster.git,3534.2000347222,21,13,0 +python-django-mptt,-1.411339598,0.7199525307,-2.1385418423,https://salsa.debian.org/python-team/packages/python-django-mptt, https://github.com/django-mptt/django-mptt.git,5687.5098958333,39,129,0 +python-django-netfields,-2.1284092972,-0.3963259071,-2.4781591516,https://salsa.debian.org/python-team/packages/python-django-netfields, https://github.com/jimfunk/django-postgresql-netfields,5006.3760300926,11,46,0 +python-django-ordered-model,-1.2408350372,1.3290539563,-1.877337753,https://salsa.debian.org/python-team/packages/python-django-ordered-model, https://github.com/bfirsh/django-ordered-model.git,5015.3152430556,29,40,0 +python-django-push-notifications,-2.8835271415,1.1630797644,-4.0600861759,https://salsa.debian.org/python-team/packages/python-django-push-notifications, https://github.com/jazzband/django-push-notifications,3892.009525463,69,44,1 +python-django-rest-framework-guardian,-3.3209075154,-1.1464196518,-3.751236078,https://salsa.debian.org/python-team/packages/python-django-rest-framework-guardian, https://github.com/rpkilby/django-rest-framework-guardian.git,626.7550231481,2,4,0 +python-django-rest-hooks,-1.5050875724,1.1869723949,-2.1906025512,https://salsa.debian.org/python-team/packages/python-django-rest-hooks, https://github.com/zapier/django-rest-hooks,2693.6027777778,12,13,0 +python-django-split-settings,-2.7895751152,-0.3987847133,-3.3101515707,https://salsa.debian.org/python-team/packages/python-django-split-settings, https://github.com/sobolevn/django-split-settings,3860.1584027778,17,13,0 +python-django-storages,-3.1386978641,-0.5967779923,-3.725863839,https://salsa.debian.org/python-team/packages/python-django-storages, https://github.com/jschneier/django-storages.git,4486.1115740741,175,96,0 +python-django-treebeard,-1.4430134685,-0.7351656258,-1.6842741632,https://salsa.debian.org/python-team/packages/python-django-treebeard, https://github.com/django-treebeard/django-treebeard.git,5493.911400463,24,59,0 +python-django-waffle,-4.8687740558,-2.2779187232,-5.4516808384,https://salsa.debian.org/python-team/packages/python-django-waffle, https://github.com/django-waffle/django-waffle,4704.6359375,82,44,2 +python-django-x509,-1.2627654181,2.1153946363,-2.1408515248,https://salsa.debian.org/python-team/packages/python-django-x509, https://github.com/openwisp/django-x509,2694.0179282408,14,28,0 +python-djangosaml2,-1.6436490716,0.974792759,-2.3032684343,https://salsa.debian.org/python-team/packages/python-djangosaml2, https://github.com/IdentityPython/djangosaml2,3275.3256597222,33,81,4 +python-djvulibre,1.834301716,4.1486186029,0.7330319734,https://salsa.debian.org/python-team/packages/python-djvulibre, https://github.com/jwilk/python-djvulibre,5340.873275463,0,1,0 +python-dmidecode,0.6965127554,2.3773186195,-0.1244349613,https://salsa.debian.org/python-team/packages/python-dmidecode, https://github.com/nima/python-dmidecode,5342.5758333333,10,17,0 +python-dnsq,-0.8493777922,1.6513810932,-1.4106021621,https://salsa.debian.org/python-team/packages/python-dnsq, https://github.com/mailgun/dnsq.git,1028.9045138889,1,6,0 +python-dotenv,-0.0646647075,2.8616640278,-0.9758026604,https://salsa.debian.org/debian/python-dotenv, https://github.com/theskumar/python-dotenv.git,3676.0798726852,81,18,0 +python-dpkt,0.019610667,2.4762696052,-0.5848881328,https://salsa.debian.org/python-team/packages/python-dpkt, https://github.com/kbandla/dpkt,3886.9183680556,36,43,1 +python-dropbox,-0.1301813578,2.8452134881,-0.8655819935,https://salsa.debian.org/python-team/packages/python-dropbox, https://github.com/dropbox/dropbox-sdk-python,2984.0770833333,28,31,0 +python-dugong,-0.5914713911,0.3761740468,-0.8252986097,https://salsa.debian.org/python-team/packages/python-dugong, https://github.com/python-dugong/python-dugong.git,3200.2688541667,4,5,0 +python-easydev,-1.0634186539,0.4092421308,-1.417126244,https://salsa.debian.org/python-team/packages/python-easydev, https://github.com/cokelaer/easydev.git,3717.344375,0,5,0 +python-easywebdav,-0.193448412,1.9590581698,-0.6371910366,https://salsa.debian.org/python-team/packages/python-easywebdav, https://github.com/amnong/easywebdav,813.3765625,1,13,0 +python-ecdsa,0.1427395231,1.7301290558,-0.1550589722,https://salsa.debian.org/python-team/packages/python-ecdsa, https://github.com/warner/python-ecdsa.git,4921.8631134259,21,34,0 +python-elasticsearch,0.9270966361,4.1589957023,-0.1008820691,https://salsa.debian.org/python-team/packages/python-elasticsearch, https://github.com/elastic/elasticsearch-py.git,3877.6857060185,168,65,0 +python-engineio,-1.2138983285,1.3697650592,-1.9645495435,https://salsa.debian.org/debian/python-engineio, https://github.com/miguelgrinberg/python-engineio.git,3095.8040625,43,8,0 +python-envisage,0.7220961261,3.0235619971,-0.070778033,https://salsa.debian.org/python-team/packages/python-envisage, https://github.com/enthought/envisage,5520.9997337963,12,70,2 +python-epc,-0.6679338747,1.8418923245,-1.2097561588,https://salsa.debian.org/python-team/packages/python-epc, https://github.com/tkf/python-epc,2413.0286574074,1,4,0 +python-esmre,-2.0064156677,0.202087282,-2.4755780824,https://salsa.debian.org/debian/python-esmre, https://github.com/wharris/esmre.git,5681.6213078704,0,3,0 +python-ethtool,0.2749622306,1.8273292709,-0.3035215573,https://salsa.debian.org/python-team/packages/python-ethtool, https://github.com/fedora-python/python-ethtool/issues/new,2746.3319791667,2,17,0 +python-evdev,0.0402339249,1.3051401516,-0.2109508194,https://salsa.debian.org/debian/python-evdev, https://github.com/gvalkov/python-evdev.git,4232.826412037,17,38,0 +python-eventlet,0.2521156098,1.1518645718,-0.1980555168,https://salsa.debian.org/openstack-team/third-party/python-eventlet, https://github.com/eventlet/eventlet.git,5751.2650347222,91,103,0 +python-exif,0.0156493175,1.0036035588,-0.2489350249,https://salsa.debian.org/python-team/packages/python-exif, https://github.com/ianare/exif-py,3998.0291898148,34,23,0 +python-fabio,0.0104950221,1.2100758664,-0.4380511126,https://salsa.debian.org/science-team/python-fabio, https://github.com/silx-kit/fabio.git,5765.1214351852,18,45,0 +python-fakeredis,-1.8401484911,0.7194535393,-2.535065839,https://salsa.debian.org/python-team/packages/python-fakeredis, https://github.com/jamesls/fakeredis.git,3981.188900463,20,88,0 +python-fastimport,0.1052775184,1.7457116755,-0.2624270625,https://salsa.debian.org/python-team/packages/python-fastimport, https://github.com/jelmer/python-fastimport,5680.5950578704,13,39,0 +python-feather-format,-1.2506828845,1.7049241641,-2.4360868757,https://salsa.debian.org/python-team/packages/python-feather-format, https://github.com/wesm/feather,1834.8181597222,30,9,0 +python-fedora,-2.2996740739,0.484863817,-3.1427964436,https://salsa.debian.org/python-team/packages/python-fedora, https://github.com/fedora-infra/python-fedora,4670.5618634259,38,64,0 +python-filelock,0.2586404225,2.5644842898,-0.2056719027,https://salsa.debian.org/debian/python-filelock, https://github.com/tox-dev/py-filelock,3582.474849537,31,14,0 +python-fisx,-0.0903144328,1.779732029,-0.5983249377,https://salsa.debian.org/python-team/packages/python-fisx, https://github.com/vasole/fisx,3592.9752777778,0,12,0 +python-fitbit,-1.6856347532,-1.0235675077,-1.8163628369,https://salsa.debian.org/med-team/python-fitbit, https://github.com/orcasgit/python-fitbit,2733.1176967593,1,37,1 +python-fitsio,-0.4610557174,0.3940574407,-0.637876907,https://salsa.debian.org/debian-astro-team/python-fitsio, https://github.com/esheldon/fitsio,4439.4105671296,4,32,0 +python-flaky,-0.8238726702,2.0811606782,-1.6526698831,https://salsa.debian.org/python-team/packages/python-flaky, https://github.com/box/flaky.git,3089.6002083333,11,23,0 +python-flask-marshmallow,-2.8015573363,-0.4292933309,-3.3082365526,https://salsa.debian.org/python-team/packages/python-flask-marshmallow, https://github.com/marshmallow-code/flask-marshmallow.git,3428.1755439815,6,18,0 +python-fluids,-0.4421216281,2.7506775199,-1.3660582858,https://salsa.debian.org/science-team/python-fluids, https://github.com/CalebBell/fluids/issues/new,2746.3319791667,2,17,0 +python-frozendict,0.1906884697,2.6355499741,-0.3237980302,https://salsa.debian.org/openstack-team/python/python-frozendict, https://github.com/slezica/python-frozendict.git,1398.6479861111,1,9,0 +python-fs,0.4313510017,2.3761512552,-0.2832476638,https://salsa.debian.org/python-team/packages/python-fs, https://github.com/PyFilesystem/pyfilesystem2,2194.8289236111,39,12,3 +python-fswrap,-2.1065130681,0.310291029,-2.734452563,https://salsa.debian.org/debian/python-fswrap, https://github.com/hyde/fswrap,1272.0712384259,0,7,0 +python-fudge,-1.6564439081,-0.3042480524,-1.9212288075,https://salsa.debian.org/python-team/packages/python-fudge, https://github.com/fudge-py/fudge,3423.9785069445,2,11,0 +python-future,0.5030594892,1.6872003042,0.0486866338,https://salsa.debian.org/python-team/packages/python-future, https://github.com/PythonCharmers/python-future,3485.5687847222,22,94,0 +python-fysom,-0.7585603333,1.38289184,-1.1858234109,https://salsa.debian.org/debian/python-fysom, https://github.com/mriehl/fysom.git,3641.9876967593,3,22,0 +python-geneimpacts,-1.8069134623,0.4508156575,-2.2387477164,https://salsa.debian.org/med-team/python-geneimpacts, https://github.com/brentp/geneimpacts/issues/new,2746.3319791667,2,17,0 +python-genty,-1.5312416046,1.7202436984,-2.3792600782,https://salsa.debian.org/python-team/packages/python-genty, https://github.com/box/genty.git,701.8032986111,0,10,0 +python-geopandas,-0.6609433764,-0.487064149,-0.6916411218,https://salsa.debian.org/debian-gis-team/python-geopandas/, https://github.com/geopandas/geopandas.git,3819.1359490741,199,32,0 +python-gevent,0.7096547467,1.5322288281,0.2582136507,https://salsa.debian.org/python-team/packages/python-gevent, https://github.com/gevent/gevent,5272.767025463,35,88,1 +python-gflags,0.4541293661,2.9555556485,-0.2028361045,https://salsa.debian.org/python-team/packages/python-gflags, https://github.com/google/python-gflags.git,2858.4975,15,8,0 +python-git,0.086769676,0.8365280382,-0.2175416201,https://salsa.debian.org/python-team/packages/python-git, https://github.com/gitpython-developers/GitPython,5697.5567361111,130,209,0 +python-gitdb,-0.0108595085,1.2148959087,-0.3007169325,https://salsa.debian.org/python-team/packages/python-gitdb, https://github.com/gitpython-developers/gitdb,4929.9338657407,7,31,0 +python-gitlab,0.220589704,1.5242989396,-0.2052146861,https://salsa.debian.org/debian/python-pygitlab, https://github.com/python-gitlab/python-gitlab.git,3961.1241087963,129,178,0 +python-glad,-1.3457272309,1.093467749,-1.9015379081,https://salsa.debian.org/python-team/packages/glad, https://github.com/Dav1dde/glad.git,3530.1536458333,54,19,0 +python-gnupg,0.3458917214,1.220869917,-0.050061794,https://salsa.debian.org/python-team/packages/python-gnupg, https://github.com/vsajip/python-gnupg.git,3594.9863773148,6,12,0 +python-gnuplotlib,-0.5540723096,1.9911774543,-1.1225767623,https://salsa.debian.org/python-team/packages/python-gnuplotlib, https://github.com/dkogan/gnuplotlib,3062.559849537,1,2,0 +python-graphviz,-0.2775267395,1.2889253499,-0.6503415057,https://salsa.debian.org/python-team/packages/python-graphviz, https://github.com/xflr6/graphviz,3612.6320833333,12,12,0 +python-greenlet,0.8047616843,1.7061049423,0.3070462935,https://salsa.debian.org/python-team/packages/python-greenlet, https://github.com/python-greenlet/greenlet,5315.6529166667,21,53,1 +python-gssapi,0.3289179765,2.3550255223,-0.2500485627,https://salsa.debian.org/python-team/packages/python-gssapi, https://github.com/pythongssapi/python-gssapi,3263.0338078704,18,17,0 +python-h11,0.0628463609,2.5298903305,-0.3966248627,https://salsa.debian.org/python-team/packages/python-h11, https://github.com/python-hyper/h11.git,2700.4708217593,21,14,0 +python-h2,0.075869847,2.1757715687,-0.3867968533,https://salsa.debian.org/python-team/packages/python-h2, https://github.com/python-hyper/hyper-h2,2777.0896990741,14,44,0 +python-h5netcdf,-0.5512930145,1.3542279703,-1.0911199676,https://salsa.debian.org/science-team/python-h5netcdf, https://github.com/h5netcdf/h5netcdf.git,3169.913587963,13,15,0 +python-hiredis,-0.3124185118,1.2752110833,-0.6377697773,https://salsa.debian.org/python-team/packages/python-hiredis, https://github.com/redis/hiredis-py.git,4704.1113541667,26,23,0 +python-hl7,-0.7626378243,0.9988106393,-1.372928154,https://salsa.debian.org/med-team/python-hl7, https://github.com/johnpaulett/python-hl7.git,5098.8429398148,5,6,0 +python-hpack,-0.0884037207,1.4112891445,-0.3966267691,https://salsa.debian.org/debian/python-hpack, https://github.com/python-hyper/hpack,2246.0186689815,9,22,0 +python-http-parser,0.1551517746,3.183808915,-0.6403562799,https://salsa.debian.org/python-team/packages/python-http-parser, https://github.com/benoitc/http-parser,3280.316724537,14,48,2 +python-httplib2,0.5220301337,1.5281004855,0.118057713,https://salsa.debian.org/python-team/packages/python-httplib2, https://github.com/httplib2/httplib2.git,5422.7818402778,50,36,0 +python-httptools,-1.016257232,1.5255190337,-1.6306842731,https://salsa.debian.org/python-team/packages/python-httptools, https://github.com/MagicStack/httptools.git,2908.9019444445,11,7,0 +python-hug,-3.0397380563,1.0403955032,-4.5048430223,https://salsa.debian.org/debian/python-hug, https://github.com/timothycrosley/hug.git,2905.4028935185,23,104,0 +python-humanize,0.206016005,2.3211874331,-0.279157365,https://salsa.debian.org/python-team/packages/python-humanize, https://github.com/jmoiron/humanize,3901.5590856482,11,59,0 +python-hupper,-0.4811484079,1.3299311475,-0.8419038999,https://salsa.debian.org/python-team/packages/python-hupper, https://github.com/Pylons/hupper,2605.9951273148,4,15,0 +python-hyperframe,0.1834945795,2.8967676962,-0.3816488752,https://salsa.debian.org/debian/python-hyperframe, https://github.com/python-hyper/hyperframe.git,2262.7143634259,4,18,0 +python-icalendar,0.2959486995,2.0805782838,-0.2630052785,https://salsa.debian.org/python-team/packages/python-icalendar, https://github.com/collective/icalendar,5605.0292361111,35,92,4 +python-icecream,-1.65888642,1.204522104,-2.4105513541,https://salsa.debian.org/debian/python-icecream, https://github.com/gruns/icecream.git,1755.1249305556,9,20,0 +python-idna,0.428827323,2.3998733008,0.0023232441,https://salsa.debian.org/python-team/packages/python-idna, https://github.com/kjd/idna,3836.1993865741,12,16,2 +python-igraph,0.0376901786,1.3175716747,-0.475589362,https://salsa.debian.org/python-team/packages/python-igraph, https://github.com/igraph/python-igraph,5787.0935416667,38,44,1 +python-ijson,-0.7882494907,1.6183503032,-1.3435678266,https://salsa.debian.org/debian/python-ijson, https://github.com/ICRAR/ijson.git,4844.9471180556,7,21,0 +python-ilorest,-2.0000980106,0.3378488014,-2.470805544,https://salsa.debian.org/tijuca/python-ilorest, https://github.com/HewlettPackard/python-ilorest-library.git,1431.3361342593,12,11,0 +python-imagesize,0.7812671799,3.7438976125,-0.0426186257,https://salsa.debian.org/python-team/packages/python-imagesize, https://github.com/shibukawa/imagesize_py,2343.1267013889,9,9,0 +python-inflect,-0.8308799984,1.3756792517,-1.4363948833,https://salsa.debian.org/python-team/packages/python-inflect, https://github.com/jazzband/inflect.git,4917.0826388889,24,37,0 +python-iniparse,0.6059741739,3.1142228174,-0.1008867852,https://salsa.debian.org/debian/python-iniparse, https://github.com/candlepin/python-iniparse,5579.4078587963,6,8,0 +python-internetarchive,-1.2132006084,-0.2272816503,-1.376560632,https://salsa.debian.org/python-team/packages/python-internetarchive, https://github.com/jjjake/internetarchive.git,4122.9653703704,16,46,0 +python-intervaltree-bio,-0.5864931947,1.6648991521,-1.1805901394,https://salsa.debian.org/med-team/python-intervaltree-bio, https://github.com/konstantint/intervaltree-bio.git,961.9282638889,0,5,0 +python-ipaddr,0.6433933144,3.2903739444,-0.0419910302,https://salsa.debian.org/python-team/modules/python-ipaddr, https://github.com/google/ipaddr-py/issues/new,2746.3319791667,2,17,0 +python-ipaddress,0.6123592223,3.1947690745,-0.0003839016,https://salsa.debian.org/python-team/modules/python-ipaddress, https://github.com/phihag/ipaddress,2728.476099537,1,7,0 +python-ipcalc,0.7141016308,3.4398389904,-0.255334424,https://github.com/craneworks/python-ipcalc,https://github.com/craneworks/python-ipcalc,756.8280324074,1,1,0 +python-iptables,-1.3768945792,-0.1620145007,-1.5972298957,https://salsa.debian.org/python-team/packages/python-iptables, https://github.com/ldx/python-iptables,4469.2364236111,3,51,0 +python-isc-dhcp-leases,-1.2144164676,1.3723753572,-1.7887539722,https://salsa.debian.org/python-team/packages/python-isc-dhcp-leases, https://github.com/MartijnBraam/python-isc-dhcp-leases,3184.8126041667,4,9,0 +python-itsdangerous,0.6642302819,3.2169189216,-0.0415160477,https://salsa.debian.org/python-team/packages/python-itsdangerous, https://github.com/pallets/itsdangerous,4546.9291435185,24,19,0 +python-jellyfish,0.0674101012,2.0051276836,-0.4205869787,https://salsa.debian.org/python-team/packages/python-jellyfish, https://github.com/jamesturk/jellyfish,4902.3308101852,15,24,0 +python-jira,-0.3980829938,2.423176583,-1.0411208861,https://salsa.debian.org/python-team/packages/python-jira, https://github.com/pycontribs/jira,4267.40125,111,155,3 +python-jmespath,0.3629172949,2.0686645362,-0.1003834425,https://salsa.debian.org/python-team/packages/python-jmespath, https://github.com/jmespath/jmespath.py,3691.1897222222,12,21,0 +python-josepy,0.3513511179,2.2923963637,-0.0869215969,https://salsa.debian.org/letsencrypt-team/certbot/josepy, https://github.com/certbot/josepy,4184.7847685185,104,276,0 +python-jpype,0.4572792607,2.2841115006,-0.3446212585,https://salsa.debian.org/python-team/packages/python-jpype, https://github.com/originell/jpype.git,4153.0550347222,18,58,0 +python-jsbeautifier,-0.0501142105,1.0271634031,-0.3372952347,https://salsa.debian.org/debian/python-jsbeautifier, https://github.com/beautify-web/js-beautify,5785.9237962963,72,206,3 +python-jsondiff,0.4634376639,3.5094673299,-0.3470961986,https://salsa.debian.org/science-team/python-jsondiff, https://github.com/xlwings/jsondiff,2879.5310532408,8,16,0 +python-jsonrpc,-1.0345444929,1.8901832997,-1.8247771846,https://salsa.debian.org/python-team/packages/python-jsonrpc, https://github.com/pavlov99/json-rpc,3540.9974421296,17,29,0 +python-junit-xml,-0.4874384495,3.2461576764,-1.4580304291,https://salsa.debian.org/python-team/packages/python-junit-xml, https://github.com/kyrus/python-junit-xml.git,2595.0297685185,5,18,0 +python-kajiki,-2.3594950912,-1.2299434314,-2.6159157482,https://salsa.debian.org/python-team/packages/python-kajiki, https://github.com/jackrosenthal/kajiki,4546.9668518519,3,22,0 +python-kaptan,-0.238361389,2.3964025525,-0.8063707104,https://salsa.debian.org/debian/python-kaptan, https://github.com/emre/kaptan.git,3814.6996064815,6,17,0 +python-keyring,0.2785657414,0.8636608035,0.0171233745,https://salsa.debian.org/python-team/packages/python-keyring, https://github.com/jaraco/keyring,5290.9131481482,34,102,0 +python-langdetect,-0.3586215785,1.818109753,-0.7963417578,https://salsa.debian.org/python-team/packages/python-langdetect, https://github.com/Mimino666/langdetect,2551.6624884259,2,11,0 +python-latexcodec,0.0827349547,1.881364242,-0.3568640067,https://salsa.debian.org/python-team/packages/python-latexcodec, https://github.com/mcmtroffaes/latexcodec,3743.9199652778,5,9,0 +python-ldap,0.3790154349,0.8810691083,0.0976923959,https://salsa.debian.org/python-team/packages/python-ldap, https://github.com/python-ldap/python-ldap,5723.2000115741,28,15,3 +python-ldap3,-0.0100929822,0.9036998675,-0.2522218207,https://salsa.debian.org/python-team/packages/python-ldap3, https://github.com/cannatag/ldap3,3120.5291435185,36,78,1 +python-levenshtein,0.4783401273,1.9718349997,-0.0580315974,https://salsa.debian.org/python-team/packages/python-levenshtein, https://github.com/maxbachmann/python-Levenshtein,378.9515509259,1,2,0 +python-libarchive-c,0.2084355293,1.8864921166,-0.3011849402,https://salsa.debian.org/debian/python-libarchive-c, https://github.com/Changaco/python-libarchive-c.git,3365.1853587963,15,18,0 +python-libdiscid,0.0391061082,1.6124132852,-0.2458440286,https://salsa.debian.org/multimedia-team/python-libdiscid, https://github.com/sebastinas/python-libdiscid.git,3900.1796643519,3,5,0 +python-libnacl,-0.5748525142,1.055075496,-0.9944771692,https://salsa.debian.org/python-team/packages/python-libnacl, https://github.com/saltstack/libnacl.git,3360.8544791667,4,45,0 +python-librtmp,0.1316033854,2.9370114855,-0.6388179337,https://github.com/breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian,409.9315625,0,1,0 +python-libusb1,0.2265462586,3.5735295241,-0.6911313873,https://salsa.debian.org/python-team/packages/python-libusb1, https://github.com/vpelletier/python-libusb1.git,5022.3082060185,13,14,0 +python-limits,-1.8099178916,1.1597434478,-2.6617541172,https://salsa.debian.org/python-team/packages/python-limits, https://github.com/alisaifee/limits.git,3594.3510416667,8,20,0 +python-line-profiler,-0.171840947,2.578426745,-0.918337546,https://salsa.debian.org/python-team/packages/python-line-profiler, https://github.com/pyutils/line_profiler,5567.7133101852,22,30,0 +python-livereload,0.1076298615,1.5969324217,-0.3534578894,https://salsa.debian.org/debian/python-livereload, https://github.com/lepture/python-livereload,4103.8939699074,16,51,1 +python-llfuse,0.4198628301,1.2703333594,0.0164187331,https://salsa.debian.org/python-team/packages/python-llfuse, https://github.com/python-llfuse/python-llfuse.git,4733.7463425926,11,9,0 +python-louvain,-2.2685779365,1.4962495682,-3.4339761137,https://salsa.debian.org/python-team/packages/python-louvain, https://github.com/taynaud/python-louvain/issues/new,2746.3319791667,2,17,0 +python-ltfatpy,-1.2089577862,0.8611085717,-2.0258126972,https://salsa.debian.org/science-team/python-ltfatpy, https://gitlab.lis-lab.fr/dev/ltfatpy,1082.880150463,0,5,0 +python-lti,-1.9083591935,0.6995479122,-2.570199413,https://salsa.debian.org/python-team/packages/python-lti, https://github.com/pylti/lti.git,2862.783125,11,19,0 +python-lupa,-0.9541371491,2.1498359551,-1.8950413009,https://salsa.debian.org/python-team/packages/python-lupa, https://github.com/scoder/lupa,4904.859849537,9,18,1 +python-lz4,0.2828189113,1.8016304752,-0.1138420548,https://salsa.debian.org/python-team/packages/python-lz4, https://github.com/python-lz4/python-lz4.git,3988.215625,8,43,0 +python-lzo,0.6457852422,3.6246917685,-0.1788164823,https://salsa.debian.org/python-team/packages/python-lzo, https://github.com/jd-boyd/python-lzo,4282.0784259259,2,13,0 +python-macholib,-0.2065761669,2.1953061241,-0.6422011034,https://salsa.debian.org/python-team/packages/python-macholib, https://github.com/ronaldoussoren/macholib,5321.569525463,1,18,0 +python-magcode-core,-0.7794988336,2.2254089124,-1.7093223217,https://github.com/grantma/py-magcode-core,https://github.com/grantma/py-magcode-core,2649.7967939815,0,2,0 +python-mapnik,-0.22946102,0.3549703224,-0.441137685,https://salsa.debian.org/debian-gis-team/python-mapnik, https://github.com/mapnik/python-mapnik.git,5494.8782638889,10,101,0 +python-markdown,-0.0672775301,0.0633658209,-0.1115484973,https://salsa.debian.org/python-team/packages/python-markdown, https://github.com/Python-Markdown/markdown,5779.5951967593,101,82,0 +python-marshmallow,0.2801604234,2.6552029048,-0.1681900437,https://salsa.debian.org/debian/python-marshmallow, https://github.com/marshmallow-code/marshmallow.git,3679.1383217593,70,160,0 +python-mastodon,-1.1148277485,1.5568978843,-1.6683499451,https://salsa.debian.org/python-team/packages/mastodon, https://github.com/halcy/Mastodon.py.git,2403.054849537,22,55,0 +python-matplotlib-venn,-0.6844221876,-0.0349680618,-0.8318994156,https://salsa.debian.org/python-team/packages/python-matplotlib-venn, https://github.com/konstantint/matplotlib-venn/issues/new,2746.3319791667,2,17,0 +python-maxminddb,-0.0144317936,2.0969989713,-0.6070551314,https://salsa.debian.org/debian/python-maxminddb, https://github.com/maxmind/MaxMind-DB-Reader-python,3808.3984953704,17,18,0 +python-measurement,-1.3916124319,1.2685038759,-1.9615503352,https://salsa.debian.org/python-team/packages/python-measurement, https://github.com/coddingtonbear/python-measurement,3798.2584953704,10,14,0 +python-mechanicalsoup,-0.5139427981,1.6546261984,-1.0099675897,https://salsa.debian.org/python-team/packages/python-mechanicalsoup, https://github.com/hickford/MechanicalSoup,3488.7486574074,39,28,0 +python-mechanize,0.5587118446,1.5296801165,0.1098543172,https://salsa.debian.org/python-team/packages/python-mechanize, https://github.com/python-mechanize/mechanize.git,5735.6054513889,5,12,0 +python-meld3,1.4808008162,4.1711738218,0.4100529738,https://salsa.debian.org/python-team/packages/python-meld3, https://github.com/supervisor/meld3.git,4279.117650463,0,8,0 +python-memoize,-1.6877152559,1.1203038488,-2.4079093642,https://salsa.debian.org/debian/python-memoize, https://github.com/mikeboers/PyMemoize,4629.8626388889,2,6,0 +python-memprof,-1.0055408653,0.6195771117,-1.559509906,https://salsa.debian.org/python-team/packages/python-memprof, https://github.com/jmdana/memprof,2110.1480324074,1,8,0 +python-midiutil,-0.4550519333,2.0970578814,-0.9760105027,https://salsa.debian.org/multimedia-team/python-midiutil, https://github.com/MarkCWirt/MIDIUtil.git,532.2564583333,2,4,0 +python-miio,-2.4535132218,0.0572909827,-2.9975615853,https://salsa.debian.org/python-team/packages/miio, https://github.com/rytilahti/python-miio.git,2467.2539236111,163,5,0 +python-mimeparse,0.635087679,2.3635412747,-0.0635295991,https://salsa.debian.org/python-team/modules/python-mimeparse, https://github.com/dbtsai/python-mimeparse.git,3368.8721296296,9,11,0 +python-mkdocs,-0.2068543272,0.5936504335,-0.4435469492,https://salsa.debian.org/python-team/packages/python-mkdocs, https://github.com/mkdocs/mkdocs,3625.5789583333,175,93,2 +python-mne,-0.3755648359,0.8750255559,-0.9081438207,https://salsa.debian.org/med-team/python-mne, https://github.com/mne-tools/mne-python.git,4735.8476851852,278,90,0 +python-mnemonic,-0.4981526494,2.4164317938,-1.2788744859,https://salsa.debian.org/python-team/packages/python-mnemonic, https://github.com/trezor/python-mnemonic,3828.3236689815,21,13,0 +python-mock,0.1659793024,0.7445400679,-0.0468504603,https://salsa.debian.org/python-team/packages/python-mock, https://github.com/testing-cabal/mock,4146.6304861111,84,22,0 +python-molotov,-2.8827685025,-0.9804730756,-3.3081393587,https://salsa.debian.org/python-team/packages/python-molotov, https://github.com/loads/molotov.git,3129.6588194445,9,11,0 +python-mongoengine,-0.8330412657,0.5683205244,-1.3861417428,https://salsa.debian.org/python-team/packages/python-mongoengine, https://github.com/mongoengine/mongoengine,5135.6912962963,78,361,4 +python-motor,-1.6905579654,-0.1116236972,-2.117236641,https://salsa.debian.org/python-team/packages/python-motor, https://github.com/mongodb/motor,3986.9431365741,28,30,0 +python-mox,-0.4239911007,2.121473449,-1.1839102652,https://salsa.debian.org/debian/python-mox, https://github.com/ivancrneto/pymox,3025.5165856482,3,7,0 +python-mpd,-0.2990738247,0.3266786344,-0.4283928832,https://salsa.debian.org/mpd-team/python-mpd, https://github.com/Mic92/python-mpd2,5765.5434143519,16,38,0 +python-mplexporter,-0.1464208389,2.3064325181,-0.9188944106,https://salsa.debian.org/python-team/packages/python-mplexporter, https://github.com/mpld3/mplexporter,3220.5932523148,4,24,0 +python-msrest,-0.2449200779,1.9610694851,-0.8939704726,https://salsa.debian.org/python-team/packages/python-msrest, https://github.com/Azure/msrest-for-python,2450.3254398148,22,11,0 +python-msrestazure,0.0746756554,2.5199798682,-0.7629171195,https://salsa.debian.org/python-team/packages/python-msrestazure, https://github.com/Azure/msrestazure-for-python,2351.9969097222,13,9,1 +python-multidict,0.4792085495,3.1280759046,-0.1995327763,https://salsa.debian.org/python-team/packages/python-multidict, https://github.com/aio-libs/multidict.git,2868.3713194445,43,8,0 +python-multipletau,-0.6987933509,0.5806821661,-0.9526942305,https://salsa.debian.org/python-team/packages/python-multipletau, https://github.com/FCS-analysis/multipletau,3692.0178935185,2,10,0 +python-munch,-0.2465013394,0.5983820842,-0.4180502505,https://salsa.debian.org/python-team/packages/python-munch, https://github.com/Infinidat/munch.git,4904.2753125,6,26,0 +python-murmurhash,-0.581276748,1.7599072349,-1.1918965779,https://salsa.debian.org/python-team/packages/python-murmurhash, https://github.com/explosion/murmurhash,3382.167962963,3,8,0 +python-mysqldb,0.4362959055,0.8610662347,0.1794309346,https://salsa.debian.org/python-team/packages/python-mysqldb, https://github.com/PyMySQL/mysqlclient,5425.1593634259,54,38,1 +python-nacl,0.3194025143,1.5580852197,-0.0692227421,https://salsa.debian.org/python-team/packages/python-nacl, https://github.com/pyca/pynacl,3948.360462963,44,26,1 +python-nameparser,-2.0123667482,0.1499038072,-2.4759914091,https://salsa.debian.org/python-team/packages/python-nameparser, https://github.com/derek73/python-nameparser,4612.1091203704,9,18,1 +python-nest-asyncio,-3.3220087743,0.2652013224,-4.2429827404,https://salsa.debian.org/python-team/packages/python-nest-asyncio, https://github.com/erdewit/nest_asyncio,1907.2440740741,4,10,0 +python-netaddr,0.0168867873,0.3272246191,-0.1009353472,https://salsa.debian.org/python-team/packages/python-netaddr, https://github.com/netaddr/netaddr/issues/new,2746.3319791667,2,17,0 +python-netfilter,-1.0831097652,1.3819658705,-1.6354879803,https://salsa.debian.org/python-team/modules/python-netfilter, https://github.com/jlaine/python-netfilter.git,1238.4928935185,0,1,0 +python-netsyslog,-3.0699282944,-0.7408374792,-3.6931507709,https://github.com/dpocock/python-netsyslog,https://github.com/dpocock/python-netsyslog,1856.5705092593,0,2,0 +python-networkmanager,-0.3294740738,1.4731534732,-0.9543699399,https://salsa.debian.org/python-team/packages/python-networkmanager, https://github.com/seveas/python-networkmanager,4090.3196759259,12,3,0 +python-neuroshare,-1.423617322,1.7680897251,-2.4529679907,http://github.com/G-Node/python-neuroshare,http://github.com/G-Node/python-neuroshare,2028.2039583333,0,10,1 +python-nine,-0.8784732907,1.5749400058,-1.435685821,https://salsa.debian.org/python-team/packages/python-nine, https://github.com/nandoflorestan/nine,2401.4576273148,0,3,0 +python-noise,-3.7225843383,-1.0965675709,-4.3183675373,https://salsa.debian.org/python-team/packages/python-noise, https://github.com/caseman/noise.git,2101.5036111111,1,8,0 +python-nose-random,-2.0063531384,0.3270712054,-2.4723359773,https://salsa.debian.org/science-team/python-nose-random, https://github.com/fzumstein/nose-random,352.6133101852,0,1,0 +python-numpysane,-0.4267537204,1.9973501717,-0.9903343511,https://salsa.debian.org/python-team/packages/python-numpysane, https://github.com/dkogan/numpysane,2696.1738194445,0,2,0 +python-oauthlib,0.3884344854,2.2364514825,-0.0809544139,https://salsa.debian.org/python-team/packages/python-oauthlib, https://github.com/oauthlib/oauthlib,4357.2754050926,51,167,2 +python-odf,-0.1752613644,1.26653294,-0.4678571818,https://salsa.debian.org/python-team/packages/python-odf, https://github.com/eea/odfpy,4744.619375,6,27,0 +python-ofxclient,-0.4701025821,2.1509335312,-1.3787090318,https://salsa.debian.org/python-team/packages/python-ofxclient, https://github.com/captin411/ofxclient,2154.9641203704,2,13,0 +python-opcua,-0.9732883028,0.8154203203,-1.5983893355,https://salsa.debian.org/python-team/modules/python-opcua, https://github.com/FreeOpcUa/python-opcua,2848.7678356482,95,42,1 +python-osmapi,-0.3520566185,1.8449840893,-0.7821526013,https://salsa.debian.org/debian-gis-team/python-osmapi, https://github.com/metaodi/osmapi.git,3568.7783796296,2,9,0 +python-padme,-0.8073688582,2.1816485148,-1.677229387,https://salsa.debian.org/python-team/packages/python-padme, https://github.com/zyga/padme,2875.0020023148,1,3,1 +python-paho-mqtt,-0.2638569032,1.5178457378,-0.6378730846,https://salsa.debian.org/debian/python-paho-mqtt, https://github.com/eclipse/paho.mqtt.python.git,3273.1238194445,17,55,0 +python-pampy,0.7194661619,3.5092607756,-0.0318286678,https://salsa.debian.org/python-team/packages/python-pampy, https://github.com/FirefighterBlu3/python-pam,2926.9394907408,2,10,0 +python-pandocfilters,0.4325771732,2.9731648905,-0.1436774117,https://salsa.debian.org/python-team/packages/python-pandocfilters, https://github.com/jgm/pandocfilters,2924.0615740741,12,31,0 +python-parameterized,-0.0852476016,1.7634629159,-0.4735189307,https://salsa.debian.org/python-team/packages/python-parameterized, https://github.com/wolever/parameterized,4033.873125,6,29,0 +python-parse-type,-0.7766894785,2.2657323306,-1.6027471957,https://salsa.debian.org/python-team/packages/python-parse-type, https://github.com/jenisys/parse_type,3544.3490162037,0,4,0 +python-parsel,-0.2782348356,2.3299969894,-0.8953709838,https://salsa.debian.org/python-team/packages/python-parsel, https://github.com/scrapy/parsel,5267.1232407407,16,49,0 +python-pathlib2,0.6118360243,3.0698579678,-0.0318203312,https://salsa.debian.org/python-team/packages/python-pathlib2, https://github.com/mcmtroffaes/pathlib2.git,4260.3981944445,8,12,0 +python-pbcommand,-0.5600744313,1.3812928775,-1.1229384478,https://salsa.debian.org/med-team/python-pbcommand, https://github.com/PacificBiosciences/pbcommand,3024.5842592593,0,28,1 +python-pbcore,-0.4652509717,1.0308185029,-0.9712683675,https://salsa.debian.org/med-team/python-pbcore, https://github.com/PacificBiosciences/pbcore,4123.1293055556,2,42,0 +python-pcl,-2.4895657363,-0.899633303,-2.7924145107,https://salsa.debian.org/python-team/packages/python-pcl, https://github.com/strawlab/python-pcl/issues/new,2746.3319791667,2,17,0 +python-periodictable,-1.0615188189,0.0399913751,-1.3403053026,https://salsa.debian.org/science-team/python-periodictable, https://github.com/pkienzle/periodictable.git,5457.176412037,0,18,0 +python-pex,-0.7476267621,1.4651691422,-1.6685430991,https://salsa.debian.org/python-team/packages/python-pex, https://github.com/pantsbuild/pex.git,3433.3294212963,95,47,0 +python-pgpdump,-0.1879378602,2.3259223777,-0.7707539804,https://salsa.debian.org/python-team/packages/python-pgpdump, https://github.com/toofishes/python-pgpdump,826.806712963,5,2,0 +python-pgpy,-0.2430201905,2.4059068222,-1.197889114,https://salsa.debian.org/debian/pgpy, https://github.com/SecurityInnovation/PGPy,3246.9911458333,11,33,2 +python-pgspecial,0.3830684523,3.0333672127,-0.3897890378,https://salsa.debian.org/python-team/packages/python-pgspecial, https://github.com/dbcli/pgspecial,2959.9866319445,21,33,0 +python-phply,-0.0136994366,0.8386196269,-0.2146141125,https://salsa.debian.org/debian/python-phply, https://github.com/viraptor/phply.git,4545.3284143519,2,13,0 +python-picklable-itertools,-1.9017855155,0.0686564891,-2.3399948958,https://salsa.debian.org/python-team/packages/python-picklable-itertools, https://github.com/mila-iqia/picklable-itertools,176.1980324074,0,5,0 +python-pika,0.6194442951,2.792024793,-0.1295291186,https://salsa.debian.org/python-team/packages/python-pika, https://github.com/pika/pika,5099.3438078704,52,181,1 +python-pint,-0.3754363922,0.7824435125,-0.7281363329,https://salsa.debian.org/python-team/packages/python-pint, https://github.com/hgrecco/pint.git,4238.0099537037,64,177,0 +python-pipx,-0.3110046647,1.1533042134,-0.6975276149,https://salsa.debian.org/python-team/packages/python-pipx, https://github.com/pypa/pipx.git,1893.5339814815,113,19,0 +python-pkgconfig,0.1589137832,2.4301443545,-0.3239570925,https://salsa.debian.org/python-team/packages/python-pkgconfig, https://github.com/matze/pkgconfig,2902.384537037,4,12,0 +python-plaster,-0.2804648853,2.1267152731,-0.8306048313,https://salsa.debian.org/python-team/packages/python-plaster, https://github.com/pylons/plaster,2744.1181365741,7,5,0 +python-plaster-pastedeploy,-0.2975329299,2.1673923637,-0.8381262743,https://salsa.debian.org/python-team/packages/python-plaster-pastedeploy, https://github.com/Pylons/plaster_pastedeploy.git,2741.5056365741,4,5,0 +python-pluggy,0.2562860267,1.7890977355,-0.1250324835,https://salsa.debian.org/python-team/packages/python-pluggy, https://github.com/pytest-dev/pluggy,3135.2442708333,14,48,1 +python-pluginbase,-0.2812881057,2.0590234382,-0.7551622974,https://salsa.debian.org/python-team/packages/python-pluginbase, https://github.com/mitsuhiko/pluginbase.git,2511.8068518519,1,9,0 +python-pomegranate,-1.4470228436,1.2851658264,-2.1752648813,https://salsa.debian.org/python-team/packages/python-pomegranate, https://github.com/jmschrei/pomegranate.git,3275.6750347222,56,26,0 +python-popcon,-0.2335331727,2.0183447681,-1.1098924395,https://github.com/venthur/python-popcon,https://github.com/venthur/python-popcon,4753.6013657408,3,5,0 +python-poppler-qt5,0.1202276082,2.3680686792,-0.3076713871,https://salsa.debian.org/python-team/packages/python-poppler-qt5, https://github.com/frescobaldi/python-poppler-qt5,3161.7950231482,7,7,1 +python-portpicker,-0.8378084904,1.8598481156,-1.5521700439,https://salsa.debian.org/debian/python-portpicker, https://github.com/google/python_portpicker,3069.1269212963,11,7,0 +python-potr,-0.0437206443,2.0655225856,-0.6499675642,https://salsa.debian.org/python-team/packages/python-potr, https://github.com/python-otr/pure-python-otr,3956.9618634259,0,15,3 +python-pretend,-0.7061164562,2.3197823691,-1.5465608612,https://salsa.debian.org/python-team/packages/python-pretend, https://github.com/alex/pretend,3941.0314351852,2,9,0 +python-progressbar,0.3759281126,2.2892745816,-0.1083290674,https://salsa.debian.org/python-team/packages/python-progressbar, https://github.com/niltonvolpato/python-progressbar,3503.7755555556,3,12,0 +python-prometheus-client,0.4164114599,2.8368951162,-0.1593420326,https://salsa.debian.org/debian/python-prometheus-client, https://github.com/prometheus/client_python.git,3206.068599537,103,56,0 +python-protobix,-3.1476883564,-0.7372721621,-3.7253868496,https://salsa.debian.org/python-team/packages/python-protobix, https://github.com/jbfavre/python-protobix,3133.4746064815,0,14,1 +python-psutil,0.4686122688,1.3162359678,0.0838678537,https://salsa.debian.org/python-team/packages/python-psutil, https://github.com/giampaolo/psutil,5698.3589467593,140,75,0 +python-pulp,0.1825004112,2.2768415582,-0.3249522323,https://salsa.debian.org/math-team/python-pulp, https://github.com/coin-or/pulp/issues/new,2746.3319791667,2,17,0 +python-pweave,0.1974177671,3.6215699256,-0.8175147018,https://salsa.debian.org/science-team/python-pweave, https://github.com/mpastell/Pweave/issues/new,2746.3319791667,2,17,0 +python-py,0.059369232,0.7302836436,-0.1271665882,https://salsa.debian.org/python-team/packages/python-py, https://github.com/pytest-dev/py.git,5610.1145833333,12,76,0 +python-py-zipkin,-0.7498317724,1.6637201623,-1.2785800389,https://salsa.debian.org/python-team/packages/python-py-zipkin, https://github.com/Yelp/py_zipkin,2422.0620486111,16,29,1 +python-pyasn1-modules,0.8803664927,3.4463995193,0.0828398689,https://salsa.debian.org/python-team/packages/python-pyasn1-modules, https://github.com/etingof/pyasn1-modules.git,3319.6793171296,3,11,0 +python-pybadges,-3.4188935767,0.0271868396,-4.2767006556,https://salsa.debian.org/python-team/packages/python-pybadges, https://github.com/google/pybadges.git,1932.0270833333,2,14,0 +python-pyelftools,-0.1597829039,0.9521142145,-0.4368671362,https://salsa.debian.org/debian/python-pyelftools, https://github.com/eliben/pyelftools.git,4475.2510069445,75,34,0 +python-pyface,0.9368982933,3.3999994539,0.0564449455,https://salsa.debian.org/python-team/packages/python-pyface, https://github.com/enthought/pyface,5535.6367476852,22,107,3 +python-pyftpdlib,-0.1028969973,1.6271806139,-0.7069948318,https://salsa.debian.org/python-team/packages/python-pyftpdlib, https://github.com/giampaolo/pyftpdlib,5695.2602314815,16,22,1 +python-pygit2,-0.348839726,0.3037438312,-0.6217658305,https://salsa.debian.org/python-team/packages/python-pygit2, https://github.com/libgit2/pygit2,4313.8217708333,22,199,0 +python-pygraphviz,0.2545261057,0.9702757828,-0.060422906,https://salsa.debian.org/python-team/packages/python-pygraphviz, https://github.com/pygraphviz/pygraphviz.git,579.678275463,21,35,0 +python-pykka,-0.1284809584,1.4011363942,-0.4465695788,https://salsa.debian.org/python-team/packages/python-pykka, https://github.com/jodal/pykka.git,4770.5155092593,5,9,0 +python-pyld,-1.1864691928,0.8554807373,-1.6199139543,https://salsa.debian.org/python-team/packages/python-pyld, https://github.com/digitalbazaar/pyld,4498.3005787037,14,14,1 +python-pylibacl,0.1315288374,1.0071315021,-0.1323746153,https://salsa.debian.org/debian/python-pylibacl, https://github.com/iustin/pylibacl,5414.6585300926,1,3,0 +python-pymeasure,-0.0345798255,2.662684469,-0.7066701418,https://salsa.debian.org/science-team/python-pymeasure, https://github.com/ralph-group/pymeasure/issues/new,2746.3319791667,2,17,0 +python-pynvim,0.1793262124,2.0167259674,-0.2014913603,https://salsa.debian.org/python-team/packages/python-pynvim, https://github.com/neovim/pynvim,3504.5291782407,26,35,0 +python-pyotp,-0.1936486463,2.043929727,-0.7744180298,https://salsa.debian.org/python-team/packages/python-pyotp, https://github.com/pyauth/pyotp.git,4631.6125462963,26,20,0 +python-pyperclip,0.520944025,2.1523556396,-0.0782247035,https://salsa.debian.org/sramacher/python-pyperclip, https://github.com/asweigart/pyperclip,3772.0925925926,7,31,0 +python-pyproj,-0.1814047386,0.2461708969,-0.2576178377,https://salsa.debian.org/debian-gis-team/python-pyproj, https://github.com/pyproj4/pyproj.git,5681.2389236111,30,46,0 +python-pypubsub,-1.763743949,-0.068250645,-2.0677092705,https://salsa.debian.org/python-team/packages/python-pypubsub, https://github.com/schollii/pypubsub,1788.0433680556,4,5,0 +python-pypump,-1.9507723056,0.3327992682,-2.5660263321,https://salsa.debian.org/python-team/packages/python-pypump, https://github.com/xray7224/PyPump,1973.6342824074,0,28,2 +python-pyqrcode,0.3569003566,2.9420903016,-0.2193375927,https://salsa.debian.org/debian/python-pyqrcode, https://github.com/mnooner256/pyqrcode.git,1108.5763078704,0,8,0 +python-pyqtgraph,0.5641615479,2.4051805159,-0.0614102206,https://salsa.debian.org/science-team/python-pyqtgraph, https://github.com/pyqtgraph/pyqtgraph.git,4007.3308217593,135,173,0 +python-pyramid-chameleon,-3.3901466113,-0.2809766931,-4.2355765796,https://salsa.debian.org/python-team/packages/python-pyramid-chameleon, https://github.com/Pylons/pyramid_chameleon,4187.2125694445,2,17,0 +python-pyramid-multiauth,-1.9341240314,0.3100051717,-2.4480383752,https://github.com/douardda/pyramid_multiauth,https://github.com/douardda/pyramid_multiauth,1636.4991203704,0,10,0 +python-pysnmp4,0.6296288884,1.9466089716,0.0848638325,https://salsa.debian.org/python-team/packages/python-pysnmp4, https://github.com/etingof/pysnmp,4346.8111226852,17,11,0 +python-pytest-cov,-0.2743297157,1.0006495825,-0.5686402037,https://salsa.debian.org/debian/python-pytest-cov, https://github.com/pytest-dev/pytest-cov.git,4778.2272337963,51,45,0 +python-pytest-timeout,-0.8752000203,0.8474768556,-1.3422480073,https://salsa.debian.org/python-team/packages/python-pytest-timeout, https://github.com/pytest-dev/pytest-timeout.git,4316.8614351852,24,17,0 +python-pyvmomi,-0.7231896282,1.8098422235,-1.2788411962,https://salsa.debian.org/python-team/packages/python-pyvmomi, https://github.com/vmware/pyvmomi,3625.6832523148,15,50,1 +python-pywebview,-1.3175197672,1.1220699127,-1.8020299821,https://salsa.debian.org/python-team/packages/python-pywebview, https://github.com/r0x0r/pywebview,3307.0006597222,61,74,0 +python-qrcode,0.2765714329,1.7975046692,-0.1576827666,https://salsa.debian.org/python-team/packages/python-qrcode, https://github.com/lincolnloop/python-qrcode.git,4693.7458217593,11,50,0 +python-qrencode,0.0034268604,1.6950809833,-0.4794074089,https://salsa.debian.org/debian/python-qrencode, https://github.com/Arachnid/pyqrencode.git,3791.5353703704,0,6,0 +python-qtawesome,0.262776649,1.8881492909,-0.1736448903,https://salsa.debian.org/python-team/packages/python-qtawesome, https://github.com/spyder-ide/qtawesome,3206.9787152778,8,29,3 +python-qtpy,0.3491974082,2.2294676618,-0.1435114165,https://salsa.debian.org/python-team/packages/python-qtpy, https://github.com/spyder-ide/qtpy,3201.4270949074,20,62,3 +python-quantities,-0.0106025798,1.9580121766,-0.690445939,https://salsa.debian.org/science-team/python-quantities, https://github.com/python-quantities/python-quantities.git,5020.6635069445,7,39,0 +python-qwt,0.5933841457,3.6301488353,-0.4097779828,https://salsa.debian.org/science-team/python-qwt, https://github.com/PierreRaybaut/PythonQwt.git,1193.9426967593,2,6,0 +python-rarfile,0.2024927767,3.0961464994,-0.5861303229,https://salsa.debian.org/python-team/packages/python-rarfile, https://github.com/markokr/rarfile.git,5495.9042361111,8,13,0 +python-ratelimiter,-0.1714954577,2.6072632937,-0.9266913485,https://salsa.debian.org/python-team/packages/python-ratelimiter, https://github.com/RazerM/ratelimiter,1781.4938425926,1,5,0 +python-rdflib-jsonld,-0.0904254945,1.6642685449,-0.4956744476,https://salsa.debian.org/python-team/packages/python-rdflib-jsonld, https://github.com/RDFLib/rdflib-jsonld,3605.0071180556,4,18,0 +python-readme-renderer,-0.1456681528,2.207631483,-0.5831215172,https://salsa.debian.org/python-team/packages/python-readme-renderer, https://github.com/pypa/readme_renderer,3479.9030902778,12,22,0 +python-rebulk,-0.1999574426,2.0907811548,-0.82792677,https://salsa.debian.org/python-team/packages/python-rebulk, https://github.com/Toilal/rebulk,3019.4120833333,1,7,2 +python-redmine,-1.5201008808,-0.7760434325,-1.6602973255,https://salsa.debian.org/debian/python-redmine, https://github.com/maxtepkeev/python-redmine.git,3326.3184606482,3,20,0 +python-regex,0.3981322011,1.6381684623,-0.0293183037,https://salsa.debian.org/python-team/packages/python-regex, https://github.com/mrabarnett/mrab-regex,4659.5763425926,1,10,0 +python-releases,-1.9118573942,-0.0482016173,-2.4247492673,https://salsa.debian.org/python-team/packages/python-releases, https://github.com/bitprophet/releases.git,3728.6334143519,2,9,0 +python-rencode,0.3723707617,3.0060692556,-0.2039050857,https://salsa.debian.org/debian/python-rencode, https://github.com/aresch/rencode.git,4103.1734490741,4,4,0 +python-repoze.sphinx.autointerface,-1.3367767902,1.5129207319,-2.1830695792,https://salsa.debian.org/python-team/packages/python-repoze.sphinx.autointerface, https://github.com/repoze/repoze.sphinx.autointerface/issues/new,2746.3319791667,2,17,0 +python-repoze.tm2,-0.795011466,1.8758832556,-1.600218467,https://salsa.debian.org/python-team/packages/python-repoze.tm2, https://github.com/repoze/repoze.tm2.git,5299.0136921296,0,6,0 +python-requests-cache,0.0096011449,2.3407248708,-0.463486914,https://salsa.debian.org/python-team/packages/python-requests-cache, https://github.com/requests-cache/requests-cache,4266.3939236111,17,43,3 +python-restless,-1.933361243,-0.9031369663,-2.2877460686,https://salsa.debian.org/python-team/packages/python-restless, https://github.com/toastdriven/restless,2872.2400231482,8,30,0 +python-roman,0.4266969046,1.9457667884,-0.0044298123,https://salsa.debian.org/python-team/packages/python-roman, https://github.com/zopefoundation/roman,5054.6666666667,3,8,0 +python-rply,-0.0320431964,1.7010393246,-0.4724323632,https://salsa.debian.org/python-team/packages/python-rply, https://github.com/alex/rply,3096.8436689815,9,17,0 +python-rsa,0.3772367225,1.9634900436,-0.1098199505,https://salsa.debian.org/python-team/packages/python-rsa, https://github.com/sybrenstuvel/python-rsa,5670.1946296296,33,16,2 +python-rtree,-0.1090383067,2.131754724,-0.531642492,https://salsa.debian.org/debian-gis-team/python-rtree, https://github.com/Toblerity/rtree.git,5739.5775925926,25,24,0 +python-s3transfer,0.3673618005,2.5341337999,-0.1810184019,https://salsa.debian.org/python-team/packages/python-s3transfer, https://github.com/boto/s3transfer,2891.8518634259,24,28,0 +python-sabyenc,0.4522797507,3.6365145505,-0.3981014069,https://salsa.debian.org/python-team/packages/python-sabyenc, https://github.com/sabnzbd/sabyenc.git,2872.8934606482,9,4,0 +python-scandir,0.8273012672,3.7868324648,0.0056074744,https://salsa.debian.org/python-team/packages/python-scandir, https://github.com/benhoyt/scandir,3760.0535185185,8,20,0 +python-schema-salad,-0.1160173613,1.5305992661,-0.5140232816,https://salsa.debian.org/python-team/packages/python-schema-salad, https://github.com/common-workflow-language/schema_salad,3066.4161921296,34,21,0 +python-scipy,0.6240824811,1.0096108664,0.35592135,https://salsa.debian.org/python-team/modules/python-scipy, https://github.com/scipy/scipy.git,5788.2724884259,799,787,0 +python-scp,-0.3441676332,1.8544379442,-0.903579824,https://salsa.debian.org/python-team/packages/python-scp, https://github.com/jbardin/scp.py,4662.0352199074,6,28,0 +python-scrapy,-0.2802213265,0.4919677064,-0.6331690991,https://salsa.debian.org/python-team/packages/python-scrapy, https://github.com/scrapy/scrapy,5322.6562731482,256,486,2 +python-scrapy-djangoitem,-1.8401324548,0.5412820006,-2.4359072724,https://salsa.debian.org/python-team/packages/python-scrapy-djangoitem, https://github.com/scrapy-plugins/scrapy-djangoitem,2837.1132523148,0,13,0 +python-scruffy,-0.8950842584,1.9677123819,-1.6884452058,https://salsa.debian.org/python-team/packages/python-scruffy, https://github.com/snare/scruffy,1665.7056828704,2,5,0 +python-secretstorage,0.3387544545,2.1308358714,-0.0585012825,https://salsa.debian.org/python-team/packages/python-secretstorage, https://github.com/mitya57/secretstorage,3916.1693055556,4,7,0 +python-serverfiles,-3.270914062,-0.0867153,-4.1789525946,https://salsa.debian.org/python-team/packages/python-serverfiles, https://github.com/biolab/serverfiles,2007.9058333333,1,6,0 +python-setoptconf,-0.6718962402,1.1532142556,-1.127131302,https://salsa.debian.org/python-team/packages/python-setoptconf, https://github.com/jayclassless/setoptconf.git,2788.0056365741,0,3,0 +python-setproctitle,1.0838445468,3.2588810317,0.2442150847,https://salsa.debian.org/python-team/packages/python-setproctitle, https://github.com/dvarrazzo/py-setproctitle,5054.5442361111,9,10,0 +python-sfml,-0.3784249777,0.2624085655,-0.5818259297,https://salsa.debian.org/games-team/python-sfml, https://github.com/intjelic/python-sfml,3326.0384143519,1,21,2 +python-sh,0.0684316621,2.7449205881,-0.5744266283,https://salsa.debian.org/python-team/packages/python-sh, https://github.com/amoffat/sh,4327.6361689815,29,75,2 +python-shapely,-0.0401779688,0.5049709459,-0.2128503676,https://salsa.debian.org/debian-gis-team/python-shapely, https://github.com/shapely/shapely.git,3816.1341435185,96,63,0 +python-shellescape,0.2161028988,2.9530475223,-0.4781845202,https://salsa.debian.org/python-team/packages/python-shellescape, https://github.com/chrissimpkins/shellescape,2183.7914583333,2,2,0 +python-shodan,-0.0231660336,2.2753419649,-0.562754026,https://salsa.debian.org/python-team/packages/python-shodan, https://github.com/achillean/shodan-python,4784.5801273148,12,27,0 +python-sievelib,-1.4953430732,1.3051623977,-2.3298927856,https://salsa.debian.org/python-team/packages/python-sievelib, https://github.com/tonioo/sievelib,3482.8872337963,4,23,1 +python-sigmavirus24-urltemplate,-0.9425910125,1.7056074877,-1.4904130596,https://salsa.debian.org/debian/python-sigmavirus24-urltemplate, https://github.com/python-hyper/uritemplate.git,3887.772662037,5,19,0 +python-signedjson,-0.4972041941,1.1352937233,-0.7813605442,https://salsa.debian.org/matrix-team/python-signedjson, https://github.com/matrix-org/python-signedjson.git,2409.117025463,5,10,0 +python-skbio,-1.3075992948,-0.3853481245,-1.6968254233,https://salsa.debian.org/med-team/python-skbio, https://github.com/scikit-bio/scikit-bio,3646.2870717593,44,58,2 +python-slip,0.6771552086,2.9650065243,-0.0680375927,https://salsa.debian.org/debian/python-slip, https://github.com/nphilipp/python-slip.git,4760.8424189815,5,3,0 +python-slugify,-0.1216991783,1.414032002,-0.4325012299,https://salsa.debian.org/python-team/packages/python-slugify, https://github.com/un33k/python-slugify,4027.6128240741,29,16,0 +python-smmap,0.0842345215,1.8862167897,-0.302978642,https://salsa.debian.org/python-team/packages/python-smmap, https://github.com/gitpython-developers/smmap,4570.872037037,4,18,0 +python-snuggs,-0.4089829703,1.0919909019,-0.6715786054,https://salsa.debian.org/debian-gis-team/python-snuggs, https://github.com/mapbox/snuggs.git,1698.5099305556,2,7,0 +python-socketio-client,0.9390849724,4.9112952662,-0.4668774995,https://salsa.debian.org/debian/python-socketio-client, https://github.com/invisibleroads/socketIO-client,1970.3003472222,0,39,2 +python-socketpool,-0.433473063,1.9120698535,-1.1349538282,https://salsa.debian.org/python-team/packages/python-socketpool, https://github.com/benoitc/socketpool,2141.4605208333,0,17,0 +python-socksipy,1.0550621894,3.7043852987,0.1526077193,https://salsa.debian.org/python-team/packages/python-socksipy, https://github.com/Anorov/PySocks,2386.177962963,3,31,0 +python-socksipychain,-0.0678442589,2.0576051001,-0.7593283222,https://salsa.debian.org/freedombox-team/python-socksipychain, https://github.com/pagekite/PySocksipyChain.git,3262.1183564815,1,7,0 +python-softlayer,-0.8413588192,0.2498230184,-1.0930860807,https://salsa.debian.org/python-team/packages/python-softlayer, https://github.com/softlayer/softlayer-python,4975.9333217593,36,124,0 +python-spur,-1.7914262965,0.441278191,-2.2376309535,https://salsa.debian.org/python-team/packages/python-spur, https://github.com/mwilliamson/spur.py.git,3757.0802199074,1,3,0 +python-srp,-0.2655598789,2.0901350297,-0.982879077,https://salsa.debian.org/python-team/packages/python-srp, https://github.com/cocagne/pysrp,4536.7902777778,2,26,0 +python-ssdeep,-1.6753783276,-0.7457424439,-1.8662568075,https://salsa.debian.org/python-team/packages/python-ssdeep, https://github.com/DinoTools/python-ssdeep/issues/new,2746.3319791667,2,17,0 +python-static3,-2.1484350509,0.7824659551,-2.9204988941,https://salsa.debian.org/debian/python-static3, https://github.com/rmohr/static3,1017.1397800926,0,5,0 +python-stetl,-0.3809518697,1.8599216022,-0.8158187286,https://salsa.debian.org/debian-gis-team/python-stetl, https://github.com/geopython/stetl.git,4123.3037847222,1,12,0 +python-stopit,-1.4382358759,1.0640373111,-2.3707053284,https://salsa.debian.org/python-team/packages/python-stopit, https://github.com/glenfant/stopit,2025.0025810185,3,4,0 +python-subprocess32,0.809721279,3.7269442727,-0.0005664334,https://salsa.debian.org/python-team/modules/python-subprocess32, https://github.com/google/python-subprocess32,2769.8086226852,4,6,0 +python-sunlight,-0.4386787931,3.6650119727,-1.7599151869,https://salsa.debian.org/python-team/modules/python-sunlight, https://github.com/sunlightlabs/python-sunlight,1218.8703009259,0,11,0 +python-swiftclient,-0.3330993617,0.5977456669,-0.6144758274,https://salsa.debian.org/openstack-team/clients/python-swiftclient, https://github.com/openstack/python-swiftclient.git,4179.3618518519,20,194,0 +python-systemd,0.186853671,1.4520714492,-0.0787581662,https://salsa.debian.org/systemd-team/python-systemd, https://github.com/systemd/python-systemd,3925.6328356482,47,10,0 +python-tabulate,0.4140804306,2.807860448,-0.2305820053,https://salsa.debian.org/python-team/packages/python-tabulate, https://github.com/astanin/python-tabulate.git,3791.7183796296,22,72,0 +python-tasklib,0.0418096657,2.4101943872,-0.7381367832,https://salsa.debian.org/tasktools-team/python-tasklib, https://github.com/GothenburgBitFactory/tasklib.git,3516.4481481482,7,15,0 +python-tblib,-0.7353049539,0.9990220369,-1.1483402151,https://salsa.debian.org/python-team/packages/python-tblib, https://github.com/ionelmc/python-tblib,3634.6597453704,5,11,0 +python-tesserocr,-0.0713400087,2.5040315407,-0.9645789788,https://salsa.debian.org/python-team/packages/python-tesserocr, https://github.com/sirfz/tesserocr.git,2852.5099537037,21,18,0 +python-testfixtures,-1.2559497362,1.6255436778,-1.9966424136,https://salsa.debian.org/python-team/packages/python-testfixtures, https://github.com/Simplistix/testfixtures,5484.404849537,6,35,0 +python-textile,0.3424022956,1.7744319252,-0.1804144888,https://salsa.debian.org/python-team/packages/python-textile, https://github.com/textile/python-textile.git,3971.2575578704,0,25,0 +python-thinc,-0.1636388937,3.6595544065,-1.1926133351,https://salsa.debian.org/science-team/python-thinc, https://github.com/explosion/thinc.git,3455.0176388889,46,35,0 +python-tmdbsimple,-2.144412661,0.3464885502,-2.7543684408,https://salsa.debian.org/python-team/packages/python-tmdbsimple, https://github.com/celiao/tmdbsimple,2973.5930324074,10,20,0 +python-tornado,0.3660786844,1.1388489535,0.017458306,https://salsa.debian.org/python-team/packages/python-tornado, https://github.com/tornadoweb/tornado,5193.9288773148,75,401,0 +python-tornado4,0.6633916588,3.8620091091,-0.1937187195,https://salsa.debian.org/python-team/modules/python-tornado, https://github.com/tornadoweb/tornado,5193.9288773148,75,401,0 +python-traits,0.8841739185,3.0035775487,0.0820122282,https://salsa.debian.org/python-team/packages/python-traits, https://github.com/enthought/traits.git,5788.0244560185,23,101,0 +python-traitsui,0.5155188405,2.6613271015,-0.1425782056,https://salsa.debian.org/python-team/packages/python-traitsui, https://github.com/enthought/traitsui.git,5617.5333101852,37,132,0 +python-translationstring,-0.284062414,1.4802740524,-0.7286152652,https://salsa.debian.org/python-team/packages/python-translationstring, https://github.com/Pylons/translationstring.git,3733.753599537,2,15,0 +python-transliterate,-1.5052976672,1.0843261213,-2.1168561972,https://salsa.debian.org/python-team/packages/python-transliterate, https://github.com/barseghyanartur/transliterate,3701.1602314815,5,13,0 +python-trezor,-0.9202820092,1.1488758494,-1.5897475776,https://salsa.debian.org/python-team/packages/python-trezor, https://github.com/trezor/trezor-firmware.git,2634.9138425926,237,100,0 +python-trie,0.7315585585,3.8588772154,-0.1184562487,https://salsa.debian.org/python-team/packages/python-trie, https://github.com/gsakkis/pytrie,4036.1710763889,5,3,0 +python-trio,-1.6126789205,1.0363415759,-2.3575588659,https://salsa.debian.org/python-team/packages/python-trio, https://github.com/python-trio/trio,2528.430625,56,130,0 +python-twilio,-1.4434125864,1.0065009213,-2.0359816453,https://salsa.debian.org/python-team/packages/python-twilio, https://github.com/twilio/twilio-python,5203.3486689815,54,122,0 +python-twitter,0.4188950426,2.608451722,-0.5608878135,https://salsa.debian.org/python-team/packages/python-twitter, https://github.com/bear/python-twitter.git,3385.4683449074,27,157,0 +python-tzlocal,0.2105199468,2.3487549308,-0.2866926628,https://salsa.debian.org/python-team/packages/python-tzlocal, https://github.com/regebro/tzlocal,4104.7635185185,12,22,0 +python-uinput,-0.4895299649,2.0822444703,-1.2154886237,https://salsa.debian.org/python-team/packages/python-uinput, https://github.com/tuomasjjrasanen/python-uinput,2471.1649768519,3,17,0 +python-unicodecsv,0.2177173313,2.0742154186,-0.2503122986,https://salsa.debian.org/python-team/packages/python-unicodecsv, https://github.com/jdunck/python-unicodecsv,1788.5991550926,0,17,0 +python-uritools,0.5665608671,3.6360712032,-0.2250089468,https://salsa.debian.org/python-team/packages/python-uritools, https://github.com/tkem/uritools,3490.5498032407,0,3,1 +python-urllib3,0.104157442,0.2946346096,0.0192366253,https://salsa.debian.org/python-team/packages/python-urllib3, https://github.com/urllib3/urllib3,5113.9802083333,176,225,1 +python-urlobject,-1.4032067102,1.0645121312,-1.9682182483,https://salsa.debian.org/python-team/packages/python-urlobject, https://github.com/zacharyvoase/urlobject,3098.5456481482,4,10,0 +python-urwidtrees,0.4916470757,4.0558334655,-0.5275660918,https://salsa.debian.org/python-team/packages/python-urwidtrees, https://github.com/pazz/urwidtrees/issues/new,2746.3319791667,2,17,0 +python-venusian,-0.2389886502,1.4708114679,-0.7217668025,https://salsa.debian.org/python-team/packages/python-venusian, https://github.com/Pylons/venusian,5042.1797800926,6,25,0 +python-vulndb,-2.1064074455,0.1631136587,-2.60808327,https://salsa.debian.org/pkg-security-team/python-vulndb, https://github.com/vulndb/python-sdk,1623.0260300926,0,3,0 +python-w3lib,0.0035292163,2.8693146119,-0.6586681856,https://salsa.debian.org/python-team/packages/python-w3lib, https://github.com/scrapy/w3lib.git,4554.9233796296,17,37,0 +python-watson-developer-cloud,-2.2310007125,0.517262572,-2.9475586446,https://salsa.debian.org/python-team/packages/watson-developer-cloud, https://github.com/watson-developer-cloud/python-sdk.git,2927.1329976852,24,59,0 +python-webob,0.2692481144,0.9394089266,-0.0205851246,https://salsa.debian.org/python-team/packages/python-webob, https://github.com/Pylons/webob,5771.4689351852,14,108,0 +python-websockets,0.8214347987,2.8000432239,0.0649687212,https://salsa.debian.org/python-team/packages/python-websockets, https://github.com/aaugustin/websockets.git,2952.8593981482,59,16,0 +python-werkzeug,0.6469808555,1.6210316055,0.1636782742,https://salsa.debian.org/python-team/packages/python-werkzeug, https://github.com/pallets/werkzeug,5778.3072453704,256,251,0 +python-wordcloud,-2.3533134617,-0.117333833,-2.7862995006,https://salsa.debian.org/python-team/packages/python-wordcloud, https://github.com/amueller/word_cloud,4051.6273842593,33,54,0 +python-ws4py,-0.3061877909,1.5232020738,-1.0477652346,https://salsa.debian.org/python-team/packages/python-ws4py, https://github.com/Lawouach/WebSocket-for-Python.git,4476.5480902778,6,66,0 +python-wsproto,0.0162269703,2.3090059731,-0.4249971154,https://salsa.debian.org/python-team/packages/python-wsproto, https://github.com/python-hyper/wsproto/issues/new,2746.3319791667,2,17,0 +python-xapian-haystack,-1.109004629,0.9965388597,-1.7612034563,https://salsa.debian.org/python-team/packages/python-xapian-haystack, https://github.com/notanumber/xapian-haystack,5023.7127662037,14,13,1 +python-xapp,0.4966659567,2.7934932391,-0.0692386084,https://salsa.debian.org/cinnamon-team/python-xapp, https://github.com/linuxmint/python3-xapp.git,2312.6997685185,5,4,0 +python-xarray,-0.3996603032,-0.0304966424,-0.5488070912,https://salsa.debian.org/science-team/python-xarray, https://github.com/pydata/xarray,3725.9331481482,456,67,1 +python-xattr,-0.0230704615,0.6979815955,-0.3049006326,https://salsa.debian.org/debian/python-xattr, https://github.com/xattr/xattr.git,5518.3290740741,3,25,0 +python-xeddsa,-1.1633252234,1.3819292376,-1.7395228535,https://salsa.debian.org/python-team/packages/python-xeddsa, https://github.com/Syndace/python-xeddsa,1709.0088425926,1,4,0 +python-xlib,0.7504389392,1.6131596333,0.2809384621,https://salsa.debian.org/python-team/packages/python-xlib, https://github.com/python-xlib/python-xlib,5407.9212268519,24,31,0 +python-xlrd,0.2419722546,1.6921113748,-0.1509001314,https://salsa.debian.org/python-team/packages/python-xlrd, https://github.com/Dragon2fly/xlrd3.git,4601.1105092593,9,44,0 +python-xmltodict,0.5981063759,3.2438940023,-0.1054526563,https://salsa.debian.org/debian/python-xmltodict, https://github.com/martinblech/xmltodict.git,3981.1987152778,26,29,0 +python-xopen,-0.3435053785,1.7701848391,-0.7787807244,https://salsa.debian.org/python-team/packages/python-xopen, https://github.com/marcelm/xopen/issues/new,2746.3319791667,2,17,0 +python-zeep,-0.3082431137,1.5280123028,-0.6975425198,https://salsa.debian.org/tryton-team/python-zeep, https://github.com/mvantellingen/python-zeep.git,2573.7169907407,110,44,0 +python-zeroconf,0.4465633902,2.724295065,-0.1238106648,https://salsa.debian.org/python-team/packages/python-zeroconf, https://github.com/python-zeroconf/python-zeroconf.git,5330.5696180556,53,14,0 +python-zipp,0.4774890873,3.052578942,-0.1372426604,https://salsa.debian.org/python-team/packages/python-zipp, https://github.com/jaraco/zipp,1845.9332291667,22,6,0 +python-zxcvbn,-0.8746724969,1.76784415,-1.5930285013,https://salsa.debian.org/python-team/packages/python-zxcvbn, https://github.com/dwolfhub/zxcvbn-python.git,1831.8494791667,12,3,0 +python3-lxc,0.3784883081,2.8542412309,-0.1562694805,https://salsa.debian.org/lxc-team/python3-lxc, https://github.com/lxc/python3-lxc.git,1985.8989351852,0,11,0 +python3-proselint,-0.2560564541,1.5321180857,-0.8080818381,https://salsa.debian.org/python-team/packages/python3-proselint, https://github.com/amperser/proselint,3160.1412962963,47,44,5 +python3-typed-ast,0.1877642348,2.5189505627,-0.2520259647,https://salsa.debian.org/python-team/packages/python3-typed-ast, https://github.com/python/typed_ast.git,2639.0503009259,22,9,0 +pytrainer,-0.1492986337,0.6667449272,-0.6246450089,https://salsa.debian.org/python-team/packages/pytrainer, https://github.com/pytrainer/pytrainer.git,5724.7457175926,2,26,0 +pytsk,-0.0170924765,1.3661578979,-0.4069676209,https://salsa.debian.org/pkg-security-team/pytsk, https://github.com/py4n6/pytsk.git,4730.6620833333,5,8,0 +pyuca,-1.879124707,0.4546058772,-2.3447337433,https://salsa.debian.org/python-team/packages/pyuca, https://github.com/jtauber/pyuca,2863.4539467593,0,6,0 +pyudev,0.3052041709,1.5797390647,-0.0988792966,https://salsa.debian.org/python-team/packages/pyudev, https://github.com/pyudev/pyudev,4959.3462037037,7,18,0 +pyutilib,-0.2260212517,1.9708399125,-0.6584040073,https://salsa.debian.org/python-team/packages/pyutilib, https://github.com/pyutilib/pyutilib,3833.6739467593,5,24,4 +pyvirtualdisplay,-0.7443150581,1.4769132038,-1.1764950176,https://salsa.debian.org/python-team/packages/pyvirtualdisplay, https://github.com/ponty/pyvirtualdisplay.git,4649.3207175926,4,15,0 +pyvisa,-0.2528773197,1.6065778854,-0.65162186,https://salsa.debian.org/python-team/packages/pyvisa, https://github.com/pyvisa/pyvisa.git,5784.7690856482,22,61,0 +pyvisa-py,-0.1586466,2.2264471793,-0.6509575913,https://salsa.debian.org/python-team/packages/pyvisa-py, https://github.com/pyvisa/pyvisa-py.git,3385.7217013889,23,46,0 +pyvo,0.160160957,2.3096974076,-0.4819183407,https://salsa.debian.org/debian-astro-team/pyvo, https://github.com/pyvirtobs/pyvo.git,3991.3728819445,6,28,0 +pyvows,-3.5855137651,-1.4150725383,-4.2453464176,https://salsa.debian.org/python-team/packages/pyvows, https://github.com/heynemann/pyvows.git,4554.9610763889,1,29,0 +pywavelets,0.5416064278,2.1893034722,-0.080242689,https://salsa.debian.org/python-team/packages/pywavelets, https://github.com/PyWavelets/pywt.git,5734.7995601852,25,28,0 +pywebdav,-0.4415298354,0.1562199484,-0.5984518002,https://salsa.debian.org/tryton-team/pywebdav, https://github.com/andrewleech/PyWebDAV3.git,5191.6373958333,7,13,0 +pywinrm,1.3688605787,4.5307310299,0.2477962041,https://salsa.debian.org/python-team/packages/python-winrm, https://github.com/diyan/pywinrm.git,3968.3538425926,2,35,0 +pywws,-2.0058814842,0.4297872508,-2.5845945208,https://salsa.debian.org/debian-iot-team/pywws, https://github.com/jim-easterbrook/pywws,5328.5947916667,7,19,0 +pyx3,-0.4214323147,0.0635788825,-0.526071945,https://salsa.debian.org/debian/pyx3, https://github.com/pyx-project/pyx,5502.6121064815,6,10,0 +pyxid,-1.0618344074,1.7377650499,-1.9813829645,https://salsa.debian.org/med-team/pyxid, https://github.com/cedrus-opensource/pyxid/issues/new,2746.3319791667,2,17,0 +pyxnat,0.8029079218,3.9217278842,-0.2730026627,https://salsa.debian.org/med-team/pyxnat, https://github.com/pyxnat/pyxnat.git,4754.1324652778,6,37,0 +pyyaml,0.295656714,0.9675344795,0.0168556096,https://salsa.debian.org/python-team/packages/pyyaml, https://github.com/yaml/pyyaml.git,5656.1894444445,35,19,0 +pyzmq,0.4307050759,1.1698948026,0.0838852381,https://salsa.debian.org/python-team/packages/pyzmq, https://github.com/zeromq/pyzmq.git,5044.3949189815,48,161,0 +pyzor,0.91715325,1.9335464362,0.3494382533,https://salsa.debian.org/python-team/packages/pyzor, https://github.com/SpamExperts/pyzor,5279.2096064815,6,19,1 +q2-types,-2.7996928015,0.3440549403,-3.6386854932,https://salsa.debian.org/med-team/q2-types, https://github.com/qiime2/q2-types.git,2710.9659490741,29,12,0 +q2cli,-1.0315018673,2.475509895,-2.0031334574,https://salsa.debian.org/med-team/q2cli, https://github.com/qiime2/q2cli,2795.9663773148,18,12,0 +q2templates,-5.0482247015,-2.7964556336,-5.4769511928,https://salsa.debian.org/med-team/q2templates, https://github.com/qiime2/q2templates.git,2619.2390393519,9,8,0 +q4wine,-0.1511094825,0.0770464397,-0.2120059522,https://github.com/tehnick/q4wine-debian,https://github.com/tehnick/q4wine-debian,4144.3286111111,0,1,0 +qastools,0.3418771252,2.8253284323,-0.2525548951,https://salsa.debian.org/multimedia-team/qastools, https://gitlab.com/sebholt/qastools,4413.9091435185,0,2,0 +qca2,1.0909215244,2.549228069,0.4027028988,https://salsa.debian.org/qt-kde-team/extras/qca2, https://invent.kde.org/libraries/qca.git,5764.5927314815,14,59,0 +qconf,-0.3811268622,1.6595217121,-0.7762847478,https://salsa.debian.org/qt-kde-team/extras/qconf, https://github.com/psi-im/qconf.git,5624.6740740741,1,15,0 +qdacco,-1.6662726628,-0.4610104246,-2.0217074624,https://salsa.debian.org/debian/qdacco, https://github.com/cpina/qdacco.git,5691.2413541667,1,6,0 +qemuctl,1.3474122059,3.3653108214,0.3818068479,https://github.com/operatornormal/qemuctl,https://github.com/operatornormal/qemuctl,627.1595486111,3,2,0 +qgit,0.3927418654,1.2779503368,-0.0312896728,https://salsa.debian.org/debian/qgit, https://github.com/tibirna/qgit.git,5665.6882060185,28,35,0 +qhull,0.4042449278,1.3622086551,0.0359891539,https://salsa.debian.org/science-team/qhull, https://github.com/qhull/qhull,1796.1123958333,6,20,0 +qiskit-terra,-3.7959816497,0.3010304353,-5.0649543011,https://salsa.debian.org/science-team/qiskit-terra, https://github.com/Qiskit/qiskit-terra,2477.5348726852,512,61,7 +qjackctl,0.2137927078,0.6351704979,-0.0038535593,https://salsa.debian.org/multimedia-team/qjackctl, https://github.com/rncbc/qjackctl.git,5709.7532986111,8,38,0 +qjoypad,0.8529794114,3.2612636032,-0.0822850011,https://github.com/kilobyte/qjoypad/tree/debian,https://github.com/kilobyte/qjoypad,4422.6630092593,2,12,0 +qlipper,0.3185306159,2.6813028481,-0.1364561161,https://salsa.debian.org/lxqt-team/qlipper, https://github.com/pvanek/qlipper,4049.8032291667,52,28,0 +qmapshack,-0.1189410105,1.4350027345,-0.3804271854,https://salsa.debian.org/debian-gis-team/qmapshack, https://github.com/Maproom/qmapshack.git,1715.6550115741,29,51,0 +qmenu,0.2416596829,3.6062250713,-0.9305566725,https://github.com/teopost/qmenu,https://github.com/teopost/qmenu,3121.65625,0,12,2 +qmidiarp,0.1060884453,2.4093772481,-0.4462133548,https://salsa.debian.org/multimedia-team/qmidiarp, https://github.com/emuse/qmidiarp.git,5041.9955208333,2,10,0 +qmidinet,0.3987634563,2.3272584853,-0.2919992565,https://salsa.debian.org/multimedia-team/qmidinet, https://github.com/rncbc/qmidinet.git,4992.0509143519,1,11,0 +qps,1.5109770483,2.606165016,0.8452800566,https://salsa.debian.org/lxqt-team/qps, https://github.com/lxqt/qps.git,3468.9271990741,55,15,0 +qpxtool,0.5149831098,2.3423269711,-0.2700558463,https://salsa.debian.org/debian/qpxtool, https://git.code.sf.net/p/qpxtool/code,3542.8980787037,16,3,0 +qr-code-generator,0.3898433791,2.7692070299,-0.0955378774,https://salsa.debian.org/yangfl-guest/QR-Code-generator, https://github.com/nayuki/QR-Code-generator,2688.5360069445,1,6,0 +qsampler,0.22306551,2.8539174302,-0.5046019625,https://salsa.debian.org/multimedia-team/qsampler, https://github.com/rncbc/qsampler.git,5737.9962847222,3,14,0 +qstat,1.4847469863,3.5445875957,0.5684335793,https://salsa.debian.org/debian/qstat, https://github.com/Unity-Technologies/qstat,4992.716099537,11,11,0 +qsynth,0.1425312579,0.7343171417,-0.1064510745,https://salsa.debian.org/multimedia-team/qsynth, https://github.com/rncbc/qsynth.git,5674.9236458333,3,19,0 +qtads,0.5108490252,2.4840737536,-0.3393338609,https://salsa.debian.org/games-team/qtads, https://github.com/realnc/qtads.git,4788.6839583333,5,7,0 +qterm,-0.9155978148,-0.4024112301,-1.1525455527,https://salsa.debian.org/chinese-team/qterm, https://github.com/qterm/qterm,4614.8412384259,1,8,0 +qterminal,0.1882892078,1.6687131981,-0.1384034122,https://salsa.debian.org/lxqt-team/qterminal, https://github.com/lxqt/qterminal.git,4827.1334143519,126,63,0 +qtermwidget,0.0585769973,0.8209460091,-0.1390823274,https://salsa.debian.org/lxqt-team/qtermwidget, https://github.com/lxqt/qtermwidget.git,4842.9296180556,84,49,0 +qthid-fcd-controller,0.9857595028,3.4252194956,-0.0252435045,https://salsa.debian.org/debian-hamradio-team/qthid-fcd-controller, https://github.com/csete/qthid,1030.239525463,4,5,1 +qtkeychain,0.0558876134,0.4424695499,-0.0879663492,https://salsa.debian.org/qt-kde-team/extras/qtkeychain, https://github.com/frankosterfeld/qtkeychain,4430.6995486111,28,41,0 +qtltools,-0.8144312308,0.8555249967,-1.1223211435,https://salsa.debian.org/med-team/qtltools, https://github.com/qtltools/qtltools/issues/new,2746.3319791667,2,17,0 +qtnetworkauth-everywhere-src,0.4459396993,3.0337353312,-0.143771233,https://salsa.debian.org/qt-kde-team/qt/qtnetworkauth, https://code.qt.io/qt/qtnetworkauth.git,2677.758275463,5,77,0 +qtox,-0.1863382315,1.5503547782,-0.4947604729,https://salsa.debian.org/yangfl-guest/qTox, https://github.com/qTox/qTox,3154.6886689815,156,294,7 +qtpass,-0.2443828761,0.6069592093,-0.421666166,https://salsa.debian.org/debian/qtpass, https://github.com/IJHack/QtPass,3407.0546643519,102,101,0 +qtractor,0.2052424785,1.081754113,-0.1776083366,https://salsa.debian.org/multimedia-team/qtractor, https://github.com/rncbc/qtractor.git,5788.915474537,11,33,0 +qtspell,-1.1174264874,0.8182545984,-1.5529339,https://salsa.debian.org/qt-kde-team/extras/qtspell, https://github.com/manisandro/qtspell.git,2705.0642476852,0,4,0 +quadrapassel,1.8163883428,4.0480240433,0.8092688273,https://salsa.debian.org/gnome-team/quadrapassel, https://gitlab.gnome.org/GNOME/quadrapassel/issues/new,2746.3319791667,2,17,0 +quark-sphinx-theme,-1.5957093311,0.6085430644,-2.187903602,https://salsa.debian.org/python-team/packages/quark-sphinx-theme, https://gitlab.com/fkrull/quark-sphinx-theme,1866.554224537,0,1,0 +quickroute-gps,-0.1342848887,2.9572779507,-1.1039128379,https://github.com/ralovich/quickroute-linux.git,https://github.com/ralovich/quickroute-linux.git,5000.8862152778,1,8,0 +quodlibet,1.1237325121,1.5723396478,0.7963668157,https://salsa.debian.org/python-team/packages/quodlibet, https://github.com/quodlibet/quodlibet,5753.5957638889,125,118,3 +quotatool,0.7343905274,1.98407627,0.1576598507,https://salsa.debian.org/debian/quotatool, https://github.com/ekenberg/quotatool,4244.0694097222,0,6,0 +qutebrowser,-0.2567902939,0.2199396629,-0.3609467547,https://github.com/qutebrowser/qutebrowser-debian,https://github.com/qutebrowser/qutebrowser-debian,3469.0941087963,47,290,0 +qwinff,-0.0728687396,2.354155921,-0.6148079494,https://salsa.debian.org/multimedia-team/qwinff, https://github.com/qwinff/qwinff,3333.9424189815,0,10,0 +qxgedit,0.0309448749,2.6946289528,-0.6152383196,https://salsa.debian.org/multimedia-team/qxgedit, https://github.com/rncbc/qxgedit.git,5219.9988078704,1,11,0 +qxmpp,-0.5119300912,1.2450413293,-0.9220194723,https://salsa.debian.org/xmpp-team/qxmpp, https://github.com/qxmpp-project/qxmpp.git,5420.5084722222,31,20,0 +r-bioc-annotationdbi,0.0182386654,2.4812782442,-0.5700140917,https://salsa.debian.org/r-pkg-team/r-bioc-annotationdbi, https://github.com/Bioconductor/AnnotationDbi.git,5746.8815509259,1,33,0 +r-bioc-biocparallel,-0.3260931785,0.8473313885,-0.5919329079,https://salsa.debian.org/r-pkg-team/r-bioc-biocparallel, https://github.com/Bioconductor/BiocParallel,3995.750625,8,26,0 +r-bioc-biostrings,-0.3434817294,1.1478032448,-0.6149383263,https://salsa.debian.org/r-pkg-team/r-bioc-biostrings, https://github.com/Bioconductor/Biostrings.git,5738.5090740741,8,24,0 +r-bioc-chemminer,-4.9478723057,-2.463477009,-5.4701350553,https://salsa.debian.org/r-pkg-team/r-bioc-chemminer, https://github.com/girke-lab/ChemmineR.git,5502.0317476852,2,22,0 +r-bioc-delayedarray,-0.2975708224,1.8774099119,-0.748150564,https://salsa.debian.org/r-pkg-team/r-bioc-delayedarray, https://github.com/Bioconductor/DelayedArray.git,2510.2796296296,3,13,0 +r-bioc-genomeinfodb,-0.3034923805,1.2280186744,-0.5938539877,https://salsa.debian.org/r-pkg-team/r-bioc-genomeinfodb, https://github.com/Bioconductor/GenomeInfoDb.git,3592.0431597222,5,21,0 +r-bioc-genomicalignments,-0.0620075073,2.2952168072,-0.6079488331,https://salsa.debian.org/r-pkg-team/r-bioc-genomicalignments, https://github.com/Bioconductor/GenomicAlignments.git,3637.7668287037,1,21,0 +r-bioc-genomicranges,-0.3216038801,1.2623780689,-0.6013624703,https://salsa.debian.org/r-pkg-team/r-bioc-genomicranges, https://github.com/Bioconductor/GenomicRanges.git,4977.821712963,4,35,0 +r-bioc-iranges,-0.2732928737,0.9495069035,-0.572231786,https://salsa.debian.org/r-pkg-team/r-bioc-iranges, https://github.com/Bioconductor/IRanges.git,5556.7386458333,4,26,0 +r-bioc-preprocesscore,-0.5732675432,1.6147898925,-1.0092066733,https://salsa.debian.org/r-pkg-team/r-bioc-preprocesscore, https://github.com/bmbolstad/preprocessCore.git,2983.7131828704,0,24,0 +r-bioc-rsamtools,-0.2310113342,1.6900769525,-0.6158536063,https://salsa.debian.org/r-pkg-team/r-bioc-rsamtools, https://github.com/Bioconductor/Rsamtools.git,5200.0497569445,3,23,0 +r-bioc-s4vectors,-0.0375813239,2.2525487662,-0.5982212588,https://salsa.debian.org/r-pkg-team/r-bioc-s4vectors, https://github.com/Bioconductor/S4Vectors/issues/new,2746.3319791667,2,17,0 +r-bioc-xvector,-0.1488435412,2.1308487448,-0.5902275914,https://salsa.debian.org/r-pkg-team/r-bioc-xvector, https://github.com/Bioconductor/XVector.git,3819.2003935185,0,10,0 +r-cran-afex,0.4836644925,3.2436921927,-0.4383334184,https://salsa.debian.org/r-pkg-team/r-cran-afex, https://github.com/singmann/afex.git,2884.5159027778,6,14,0 +r-cran-animation,-0.3515983765,2.1779345723,-0.9193080299,https://salsa.debian.org/r-pkg-team/r-cran-animation, https://github.com/yihui/animation/issues/new,2746.3319791667,2,17,0 +r-cran-arm,-0.2157734257,1.5269652897,-0.5053279666,https://salsa.debian.org/r-pkg-team/r-cran-arm, https://github.com/suyusung/arm.git,2199.2741898148,0,4,0 +r-cran-av,-3.30692254,-1.0664029566,-3.7499442887,https://salsa.debian.org/r-pkg-team/r-cran-av, https://github.com/ropensci/av.git,1927.0685763889,2,3,0 +r-cran-batchjobs,-0.1423929049,2.0461094879,-0.5905942546,https://salsa.debian.org/r-pkg-team/r-cran-batchjobs, https://github.com/tudo-r/BatchJobs.git,3055.3365162037,0,18,0 +r-cran-bbmisc,-0.0791867315,2.2103067426,-0.5239193282,https://salsa.debian.org/r-pkg-team/r-cran-bbmisc, https://github.com/berndbischl/BBmisc/issues/new,2746.3319791667,2,17,0 +r-cran-bitops,0.1812196348,2.5081885743,-0.2636167197,https://salsa.debian.org/r-pkg-team/r-cran-bitops, https://github.com/mmaechler/R-bitops/issues/new,2746.3319791667,2,17,0 +r-cran-bold,-0.3589941343,1.8830194903,-0.7984155261,https://salsa.debian.org/r-pkg-team/r-cran-bold, https://github.com/ropensci/bold/issues/new,2746.3319791667,2,17,0 +r-cran-callr,0.1151383856,2.3717797275,-0.3448253166,https://salsa.debian.org/r-pkg-team/r-cran-callr, https://github.com/r-lib/callr.git,2730.1466203704,8,18,0 +r-cran-caret,-0.1589115092,1.3747064996,-0.4410381069,https://salsa.debian.org/r-pkg-team/r-cran-caret, https://github.com/topepo/caret.git,3231.0891319445,48,79,0 +r-cran-checkmate,0.0859378554,2.3942389138,-0.3501105734,https://salsa.debian.org/r-pkg-team/r-cran-checkmate, https://github.com/mllg/checkmate.git,3631.5784722222,11,53,0 +r-cran-crayon,0.2585448991,2.4711889525,-0.1898457145,https://salsa.debian.org/r-pkg-team/r-cran-crayon, https://github.com/r-lib/crayon/issues/new,2746.3319791667,2,17,0 +r-cran-crosstalk,0.1167413716,2.2666840084,-0.3491412979,https://salsa.debian.org/r-pkg-team/r-cran-crosstalk, https://github.com/rstudio/crosstalk.git,2973.0628472222,5,12,0 +r-cran-crul,-0.379530865,2.0620312007,-0.8847066541,https://salsa.debian.org/r-pkg-team/r-cran-crul, https://github.com/ropensci/crul.git,2488.6026967593,12,5,0 +r-cran-curl,0.0770915344,1.5047095366,-0.260737954,https://salsa.debian.org/r-pkg-team/r-cran-curl, https://github.com/jeroen/curl,3312.506412037,11,17,0 +r-cran-data.table,0.2136711627,2.3818673171,-0.2205863845,https://salsa.debian.org/r-pkg-team/r-cran-data.table, https://github.com/Rdatatable/data.table/issues/new,2746.3319791667,2,17,0 +r-cran-devtools,0.0055059269,2.2554345887,-0.4260202475,https://salsa.debian.org/r-pkg-team/r-cran-devtools, https://github.com/r-lib/devtools.git,4932.9859490741,82,116,0 +r-cran-dqrng,-1.8308471297,0.6369312397,-2.3363165014,https://salsa.debian.org/r-pkg-team/r-cran-dqrng, https://github.com/daqana/dqrng.git,2053.1736342593,7,10,0 +r-cran-dygraphs,-0.0490909843,3.3935834895,-0.9135064606,https://salsa.debian.org/r-pkg-team/r-cran-dygraphs, https://github.com/rstudio/dygraphs/issues/new,2746.3319791667,2,17,0 +r-cran-eaf,-0.4302337125,1.8302163149,-0.875193303,https://salsa.debian.org/r-pkg-team/r-cran-eaf, https://github.com/MLopez-Ibanez/eaf/issues/new,2746.3319791667,2,17,0 +r-cran-filehash,0.2805937396,2.9173226699,-0.2488806021,https://salsa.debian.org/r-pkg-team/r-cran-filehash, https://github.com/rdpeng/filehash/issues/new,2746.3319791667,2,17,0 +r-cran-fs,0.5160636344,3.5162528692,-0.2653989308,https://salsa.debian.org/r-pkg-team/r-cran-fs, https://github.com/r-lib/fs/issues/new,2746.3319791667,2,17,0 +r-cran-gbm,0.3279916789,3.2242802977,-0.4462694205,https://salsa.debian.org/r-pkg-team/r-cran-gbm, https://github.com/gbm-developers/gbm/issues/new,2746.3319791667,2,17,0 +r-cran-ggeffects,-0.4101115748,1.6625213011,-0.8467537951,https://salsa.debian.org/r-pkg-team/r-cran-ggeffects, https://github.com/strengejacke/ggeffects.git,2388.1511805556,6,17,0 +r-cran-gnm,-0.0730492729,2.200175057,-0.5474121482,https://salsa.debian.org/r-pkg-team/r-cran-gnm, https://github.com/hturner/gnm.git,5664.8181712963,2,3,0 +r-cran-gsl,0.0315524778,2.2302539622,-0.4763283116,https://salsa.debian.org/r-pkg-team/r-cran-gsl, https://github.com/RobinHankin/gsl/issues/new,2746.3319791667,2,17,0 +r-cran-gtable,0.3604619903,2.5918478385,-0.180163877,https://salsa.debian.org/r-pkg-team/r-cran-gtable, https://github.com/r-lib/gtable.git,4252.7226967593,3,15,0 +r-cran-hms,0.2803130949,2.6915633826,-0.2371947898,https://salsa.debian.org/r-pkg-team/r-cran-hms, https://github.com/tidyverse/hms,2747.6862152778,3,21,1 +r-cran-htmlwidgets,0.2223804836,2.4523082161,-0.2245513837,https://salsa.debian.org/r-pkg-team/r-cran-htmlwidgets, https://github.com/ramnathv/htmlwidgets.git,3428.7835185185,9,25,0 +r-cran-httpuv,0.3875945435,2.2228957646,-0.1562790757,https://salsa.debian.org/r-pkg-team/r-cran-httpuv, https://github.com/rstudio/httpuv.git,3956.9682986111,10,30,0 +r-cran-httr,0.2318431801,2.7200793099,-0.3197511291,https://salsa.debian.org/r-pkg-team/r-cran-httr, https://github.com/r-lib/httr.git,4372.2388425926,38,54,0 +r-cran-igraph,-0.123303996,1.3317344383,-0.4807915836,https://salsa.debian.org/r-pkg-team/r-cran-igraph, https://github.com/igraph/igraph.git,5787.0887037037,45,61,0 +r-cran-jsonld,0.0438577765,3.4446984755,-0.9479566357,https://salsa.debian.org/r-pkg-team/r-cran-jsonld, https://github.com/ropensci/jsonld/issues/new,2746.3319791667,2,17,0 +r-cran-later,0.2199051797,2.5828340121,-0.2446694596,https://salsa.debian.org/r-pkg-team/r-cran-later, https://github.com/r-lib/later/issues/new,2746.3319791667,2,17,0 +r-cran-lmertest,-0.2259054579,2.0342017389,-0.6812216469,https://salsa.debian.org/r-pkg-team/r-cran-lmertest, https://github.com/runehaubo/lmerTestR.git,1009.6075115741,2,4,0 +r-cran-lubridate,0.2601513109,2.7009258043,-0.2430036473,https://salsa.debian.org/r-pkg-team/r-cran-lubridate, https://github.com/tidyverse/lubridate.git,5324.8468981482,53,93,0 +r-cran-lwgeom,0.0058180918,2.4188629892,-0.7327945006,https://salsa.debian.org/r-pkg-team/r-cran-lwgeom, https://github.com/r-spatial/lwgeom/issues/new,2746.3319791667,2,17,0 +r-cran-matrixcalc,0.635479198,4.3464268954,-0.3463558892,https://salsa.debian.org/r-pkg-team/r-cran-matrixcalc, https://github.com/TomKellyGenetics/matrixcalc/issues/new,2746.3319791667,2,17,0 +r-cran-mcmc,0.1542552699,2.7368602124,-0.4513098316,https://salsa.debian.org/r-pkg-team/r-cran-mcmc, https://github.com/cjgeyer/mcmc/issues/new,2746.3319791667,2,17,0 +r-cran-memoise,0.1925230273,2.3898049253,-0.2410666252,https://salsa.debian.org/r-pkg-team/r-cran-memoise, https://github.com/hadley/memoise.git,1189.1777777778,16,15,0 +r-cran-mice,-1.1703228936,1.1700115105,-1.5897791054,https://salsa.debian.org/r-pkg-team/r-cran-mice, https://github.com/amices/mice/issues/new,2746.3319791667,2,17,0 +r-cran-mnp,-0.0051235593,2.1439929564,-0.4400210306,https://salsa.debian.org/r-pkg-team/r-cran-mnp, https://github.com/kosukeimai/MNP/issues/new,2746.3319791667,2,17,0 +r-cran-nozzle.r1,-2.8854861587,-0.5978017889,-3.3250463837,https://salsa.debian.org/r-pkg-team/r-cran-nozzle.r1, https://github.com/parklab/nozzle.git,926.0286111111,0,1,0 +r-cran-openssl,0.1408311251,1.9736821031,-0.3054590509,https://salsa.debian.org/r-pkg-team/r-cran-openssl, https://github.com/jeroen/openssl.git,3340.7487152778,9,9,0 +r-cran-optparse,-0.2070927617,2.0241027782,-0.6422022567,https://salsa.debian.org/r-pkg-team/r-cran-optparse, https://github.com/trevorld/r-optparse.git,3364.6461689815,0,11,0 +r-cran-parameters,-0.9185358072,1.4404121187,-1.4407629776,https://salsa.debian.org/r-pkg-team/r-cran-parameters, https://github.com/easystats/parameters.git,1766.2581018519,12,53,0 +r-cran-pbdzmq,0.1891713681,3.4926433557,-0.7475172495,https://salsa.debian.org/r-pkg-team/r-cran-pbdzmq, https://github.com/snoweye/pbdZMQ/issues/new,2746.3319791667,2,17,0 +r-cran-plotly,-0.4552038857,1.8075929068,-0.8905357539,https://salsa.debian.org/r-pkg-team/r-cran-plotly, https://github.com/plotly/plotly.R.git,3638.2152546296,25,44,0 +r-cran-plyr,0.2396916445,2.3397739545,-0.1920061376,https://salsa.debian.org/r-pkg-team/r-cran-plyr, https://github.com/hadley/plyr/issues/new,2746.3319791667,2,17,0 +r-cran-processx,0.2430850542,2.7163257488,-0.3258066533,https://salsa.debian.org/r-pkg-team/r-cran-processx, https://github.com/r-lib/processx.git,2669.6444791667,12,67,0 +r-cran-ps,0.1035877787,2.5492783444,-0.3466845119,https://salsa.debian.org/r-pkg-team/r-cran-ps, https://github.com/r-lib/ps/issues/new,2746.3319791667,2,17,0 +r-cran-pscl,0.7428074668,3.4473876545,-0.1554350642,https://salsa.debian.org/r-pkg-team/r-cran-pscl, https://github.com/atahk/pscl/issues/new,2746.3319791667,2,17,0 +r-cran-raster,-0.0742369851,2.2567964839,-0.5232908402,https://salsa.debian.org/r-pkg-team/r-cran-raster, https://github.com/rspatial/raster.git,1952.0897800926,9,23,0 +r-cran-rcmdcheck,0.2146726991,2.6895020277,-0.3988188518,https://salsa.debian.org/r-pkg-team/r-cran-rcmdcheck, https://github.com/r-Lib/rcmdcheck/issues/new,2746.3319791667,2,17,0 +r-cran-recipes,0.1163745873,2.5503641986,-0.4654484789,https://salsa.debian.org/r-pkg-team/r-cran-recipes, https://github.com/tidymodels/recipes,2554.7539351852,31,80,0 +r-cran-repr,-0.4200486236,1.3653979876,-0.7931488934,https://salsa.debian.org/r-pkg-team/r-cran-repr, https://github.com/IRkernel/repr.git,3009.4312615741,13,11,0 +r-cran-rgenoud,-0.3488800713,2.0874491929,-0.9117194293,https://salsa.debian.org/r-pkg-team/r-cran-rgenoud, https://github.com/JasjeetSekhon/rgenoud/issues/new,2746.3319791667,2,17,0 +r-cran-rhandsontable,-0.5116959513,1.6967263903,-0.9527875743,https://salsa.debian.org/r-pkg-team/r-cran-rhandsontable, https://github.com/jrowen/rhandsontable.git,2472.1080902778,10,16,0 +r-cran-ritis,-0.2993761764,1.9534734206,-0.7980064599,https://salsa.debian.org/r-pkg-team/r-cran-ritis, https://github.com/ropensci/ritis.git,3983.0266666667,1,4,0 +r-cran-rlang,0.2636635316,1.9445865877,-0.17670944,https://salsa.debian.org/r-pkg-team/r-cran-rlang, https://github.com/r-lib/rlang.git,3372.9181828704,69,87,0 +r-cran-rmarkdown,0.1881159075,1.3884406045,-0.2017070736,https://salsa.debian.org/r-pkg-team/r-cran-rmarkdown, https://github.com/rstudio/rmarkdown,3609.9971643519,81,81,1 +r-cran-rncl,-0.3371319454,1.9103735604,-0.7874553216,https://salsa.debian.org/r-pkg-team/r-cran-rncl, https://github.com/fmichonneau/rncl/issues/new,2746.3319791667,2,17,0 +r-cran-rnexml,-0.3075461351,1.8086751231,-0.7991501573,https://salsa.debian.org/r-pkg-team/r-cran-rnexml, https://github.com/ropensci/RNeXML.git,3480.1707407407,2,22,0 +r-cran-roxygen2,0.0295105312,2.1408944189,-0.4089735161,https://salsa.debian.org/r-pkg-team/r-cran-roxygen2, https://github.com/r-lib/roxygen2,5674.9912384259,84,74,1 +r-cran-rpostgresql,0.1055240035,2.6128418992,-0.4853871285,https://salsa.debian.org/r-pkg-team/r-cran-rpostgresql, https://github.com/tomoakin/RPostgreSQL/issues/new,2746.3319791667,2,17,0 +r-cran-rprotobuf,-0.6366352318,1.6233621016,-1.07827539,https://salsa.debian.org/r-pkg-team/r-cran-rprotobuf, https://github.com/eddelbuettel/rprotobuf/issues/new,2746.3319791667,2,17,0 +r-cran-rredlist,-0.2938584635,2.0226834023,-0.7943140683,https://salsa.debian.org/r-pkg-team/r-cran-rredlist, https://github.com/ropensci/rredlist/issues/new,2746.3319791667,2,17,0 +r-cran-rsdmx,0.0863834689,2.7167878975,-0.5319943601,https://salsa.debian.org/r-pkg-team/r-cran-rsdmx, https://github.com/opensdmx/rsdmx.git,3728.8602314815,3,10,0 +r-cran-rsqlite,0.1076797972,1.584784657,-0.228522633,https://salsa.debian.org/r-pkg-team/r-cran-rsqlite, https://github.com/r-dbi/RSQLite.git,5762.8896990741,5,55,0 +r-cran-rstan,-0.4477446309,2.0965150025,-0.9946879678,https://salsa.debian.org/r-pkg-team/r-cran-rstan, https://github.com/stan-dev/rstan,4456.9383680556,19,72,3 +r-cran-scales,0.3393047477,2.6754123074,-0.1823320689,https://salsa.debian.org/r-pkg-team/r-cran-scales, https://github.com/r-lib/scales,4768.6190740741,32,47,1 +r-cran-scatterd3,-0.5356566444,0.9941132193,-0.8099532649,https://salsa.debian.org/r-pkg-team/r-cran-scatterd3, https://github.com/juba/scatterD3.git,3041.2167939815,1,11,0 +r-cran-sendmailr,-0.310367019,1.273189062,-0.5860673635,https://salsa.debian.org/r-pkg-team/r-cran-sendmailr, https://github.com/olafmersmann/sendmailR/issues/new,2746.3319791667,2,17,0 +r-cran-sf,-0.1808665535,1.4870487257,-0.6723715813,https://salsa.debian.org/r-pkg-team/r-cran-sf, https://github.com/r-spatial/sf,2960.6821527778,52,104,0 +r-cran-shiny,0.0548346158,1.0096954953,-0.2054156436,https://salsa.debian.org/r-pkg-team/r-cran-shiny, https://github.com/rstudio/shiny.git,4194.575162037,42,82,0 +r-cran-sjlabelled,-0.393809497,1.9438771162,-0.8379121496,https://salsa.debian.org/r-pkg-team/r-cran-sjlabelled, https://github.com/strengejacke/sjlabelled,1972.0379861111,0,10,0 +r-cran-sjmisc,-0.3973576187,1.8898048203,-0.8484139218,https://salsa.debian.org/r-pkg-team/r-cran-sjmisc, https://github.com/strengejacke/sjmisc/issues/new,2746.3319791667,2,17,0 +r-cran-sjplot,-0.4235792275,1.7243482084,-0.8624718343,https://salsa.debian.org/r-pkg-team/r-cran-sjplot, https://github.com/strengejacke/sjPlot/issues/new,2746.3319791667,2,17,0 +r-cran-sp,0.0394136667,1.2723016672,-0.2295664437,https://salsa.debian.org/r-pkg-team/r-cran-sp, https://github.com/edzer/sp.git,2848.9715277778,1,18,0 +r-cran-stringr,0.0964776845,1.6534181355,-0.1881647637,https://salsa.debian.org/r-pkg-team/r-cran-stringr, https://github.com/tidyverse/stringr/issues/new,2746.3319791667,2,17,0 +r-cran-svglite,-0.1885587375,2.5890472118,-0.9181907319,https://salsa.debian.org/r-pkg-team/r-cran-svglite, https://github.com/r-lib/svglite.git,4029.9752546296,5,22,0 +r-cran-taxize,-0.5524366287,0.9514376137,-0.8175241604,https://salsa.debian.org/r-pkg-team/r-cran-taxize, https://github.com/ropensci/taxize.git,4557.2839467593,10,50,0 +r-cran-testthat,0.2152448805,2.4132680581,-0.2339528095,https://salsa.debian.org/r-pkg-team/r-cran-testthat, https://github.com/r-lib/testthat.git,5204.1229861111,83,126,0 +r-cran-tibble,0.3354220475,2.2392090058,-0.1635360256,https://salsa.debian.org/r-pkg-team/r-cran-tibble, https://github.com/tidyverse/tibble/issues/new,2746.3319791667,2,17,0 +r-cran-tidyr,0.1146345976,2.3028053608,-0.3125423477,https://salsa.debian.org/r-pkg-team/r-cran-tidyr, https://github.com/tidyverse/tidyr.git,3434.3552777778,108,76,0 +r-cran-tidyselect,0.1852675188,2.3953237335,-0.2435826168,https://salsa.debian.org/r-pkg-team/r-cran-tidyselect, https://github.com/r-lib/tidyselect/issues/new,2746.3319791667,2,17,0 +r-cran-tikzdevice,0.3851857723,2.9400832337,-0.227082444,https://salsa.debian.org/r-pkg-team/r-cran-tikzdevice, https://github.com/daqana/tikzDevice.git,5310.7431944445,8,26,0 +r-cran-truncnorm,-0.0250364198,2.0343035584,-0.4668055836,https://salsa.debian.org/r-pkg-team/r-cran-truncnorm, https://github.com/olafmersmann/truncnorm/issues/new,2746.3319791667,2,17,0 +r-cran-utf8,0.4292727883,3.0821382028,-0.1776413564,https://salsa.debian.org/r-pkg-team/r-cran-utf8, https://github.com/patperry/r-utf8/issues/new,2746.3319791667,2,17,0 +r-cran-uwot,-2.1360077927,0.1637273439,-2.6156421022,https://salsa.debian.org/r-pkg-team/r-cran-uwot, https://github.com/jlmelville/uwot.git,2010.5388078704,2,8,0 +r-cran-vcdextra,-0.1359675027,2.0732853363,-0.5645165568,https://salsa.debian.org/r-pkg-team/r-cran-vcdextra, https://github.com/friendly/vcdExtra.git,5383.4657523148,0,9,0 +r-cran-vctrs,-0.1481806506,1.4447640329,-0.425809233,https://salsa.debian.org/r-pkg-team/r-cran-vctrs, https://github.com/r-lib/vctrs.git,2644.680474537,32,219,0 +r-cran-vioplot,-0.5117688173,1.754135969,-0.9412408999,https://salsa.debian.org/r-pkg-team/r-cran-vioplot, https://github.com/TomKellyGenetics/vioplot,2457.8733912037,2,6,0 +r-cran-webmockr,-0.4310376105,1.8277386609,-0.9299279762,https://salsa.debian.org/r-pkg-team/r-cran-webmockr, https://github.com/ropensci/webmockr.git,3289.3273726852,4,4,0 +r-cran-webshot,-0.0794526323,2.776629773,-0.8695700666,https://salsa.debian.org/r-pkg-team/r-cran-webshot, https://github.com/wch/webshot,3137.5207291667,3,15,0 +r-cran-worrms,-0.5997090341,1.1419114747,-0.9334770127,https://salsa.debian.org/r-pkg-team/r-cran-worrms, https://github.com/ropensci/worrms/issues/new,2746.3319791667,2,17,0 +r-cran-xml2,0.1813139855,2.1792504654,-0.2368258554,https://salsa.debian.org/r-pkg-team/r-cran-xml2, https://github.com/r-lib/xml2,3216.8915046296,23,41,0 +r-cran-xts,0.2411801919,2.5096287722,-0.3986548072,https://salsa.debian.org/r-pkg-team/r-cran-xts, https://github.com/joshuaulrich/xts.git,5770.9489236111,14,17,0 +r-cran-zelig,0.7234179385,3.5136261784,-0.1954309797,https://salsa.debian.org/r-pkg-team/r-cran-zelig, https://github.com/IQSS/Zelig/issues/new,2746.3319791667,2,17,0 +rabbit,-1.0753863465,-0.4524613205,-1.2515230442,https://salsa.debian.org/ruby-team/rabbit, https://github.com/rabbit-shocker/rabbit,5766.7662962963,8,40,0 +rabbitvcs,1.6714946058,3.5426783719,0.7068248862,https://salsa.debian.org/python-team/packages/rabbitvcs, https://github.com/rabbitvcs/rabbitvcs.git,5506.5331481482,17,45,0 +radare2,-0.001835483,0.290941294,-0.1737536018,https://salsa.debian.org/pkg-security-team/radare2, https://github.com/radareorg/radare2/issues/new,2746.3319791667,2,17,0 +radcli,0.8077891464,3.0284268528,0.04850184,https://salsa.debian.org/debian/radcli, https://github.com/radcli/radcli,0.0082986111,10,25,0 +radeontop,0.7905156023,3.9954216105,-0.1328982237,https://salsa.debian.org/debian/radeontop, https://github.com/clbr/radeontop.git,3881.8500231482,5,20,0 +radio-beam,0.0745073319,3.00372116,-0.6555904149,https://salsa.debian.org/debian-astro-team/radio-beam, https://github.com/radio-astro-tools/radio_beam,3526.8169791667,2,17,0 +radium-compressor,0.1355972195,2.8572373451,-0.7243626073,https://salsa.debian.org/multimedia-team/radium-compressor, https://github.com/kmatheussen/radium_compressor.git,2426.0817361111,0,1,0 +radon,-1.263648812,0.2952439103,-1.5392083653,https://salsa.debian.org/python-team/packages/radon, https://github.com/rubik/radon.git,4032.6238773148,45,20,0 +radsecproxy,-1.2258402548,0.3482737763,-1.8643939562,https://salsa.debian.org/debian/radsecproxy, https://github.com/radsecproxy/radsecproxy.git,5771.4660069445,15,23,0 +rainbow.js,-2.2315150038,-0.9649972127,-2.481288314,https://salsa.debian.org/js-team/rainbow.js, https://github.com/ccampbell/rainbow/issues/new,2746.3319791667,2,17,0 +rake-compiler,-0.1765905828,1.968096231,-0.8991055528,https://salsa.debian.org/ruby-team/rake-compiler, https://github.com/rake-compiler/rake-compiler/issues/new,2746.3319791667,2,17,0 +rakudo,0.9566218472,2.1033155845,0.3242094037,https://salsa.debian.org/perl6-team/rakudo, https://github.com/Raku/nqp.git,5159.1587847222,24,165,0 +rally,-2.8786935931,-1.5522576561,-3.2760098395,https://salsa.debian.org/openstack-team/services/rally, https://github.com/openstack/rally.git,3774.9832175926,69,441,0 +ranger,0.1585578329,0.8874528104,-0.1188764889,https://salsa.debian.org/debian/ranger, https://github.com/ranger/ranger.git,5250.5453472222,73,205,0 +rapache,-1.9452855915,-0.2626388012,-2.421875321,https://salsa.debian.org/r-pkg-team/rapache, https://github.com/jeffreyhorner/rapache.git,4155.5934953704,1,13,0 +raphael,0.6406275138,3.7045765255,-0.2507834388,https://salsa.debian.org/debian/raphael, https://github.com/DmitryBaranovskiy/raphael/issues/new,2746.3319791667,2,17,0 +rapidjson,0.1262991917,1.4791596352,-0.3179431395,https://salsa.debian.org/debian/rapidjson, https://github.com/miloyip/rapidjson.git,4414.841412037,54,185,0 +raqm,0.2574510326,1.9661554479,-0.1824008196,https://salsa.debian.org/debian/raqm, https://github.com/HOST-Oman/libraqm.git,2871.0404513889,22,19,0 +raspell,0.0344606053,2.1888191814,-0.7015258119,https://salsa.debian.org/ruby-team/raspell, https://github.com/evan/raspell/issues/new,2746.3319791667,2,17,0 +rasterio,-0.1071898305,2.015565348,-0.6779665658,https://salsa.debian.org/debian-gis-team/rasterio, https://github.com/rasterio/rasterio.git,3692.9866550926,96,61,0 +ratt,-0.4370630128,1.1211106019,-0.8710659773,https://salsa.debian.org/go-team/packages/ratt, https://github.com/Debian/ratt,2545.9663194445,4,6,0 +rawtherapee,0.3597592828,1.093545704,-0.004882,https://salsa.debian.org/debian/rawtherapee, https://github.com/Beep6581/RawTherapee,4840.9254861111,48,164,2 +rbdoom3bfg,-0.4925040281,0.8021431101,-0.8428139965,https://salsa.debian.org/games-team/rbdoom3bfg, https://github.com/RobertBeckebans/RBDOOM-3-BFG,4030.942662037,14,74,0 +rbenv,0.566539916,3.4151092263,-0.3016972118,https://salsa.debian.org/ruby-team/rbenv, https://github.com/rbenv/rbenv,4512.975162037,36,100,0 +rblcheck,0.2442941001,1.1699026865,-0.1769566182,https://github.com/rfc1036/rblcheck,https://github.com/rfc1036/rblcheck,5711.4476273148,2,1,0 +rc,3.2636458375,5.8919473595,1.9643991546,https://salsa.debian.org/debian/rc, https://github.com/rakitzis/rc,3601.3893981482,12,15,1 +rclone,0.3320420054,1.7172327788,-0.1236656241,https://salsa.debian.org/go-team/packages/rclone, https://github.com/rclone/rclone.git,4043.6951851852,821,36,0 +rdate,0.4382808092,1.3203416533,0.0177798963,https://salsa.debian.org/debian/rdate, https://github.com/resurrecting-open-source-projects/openrdate,876.4736111111,0,4,0 +rdflib,0.4483040394,1.4220859719,-0.0042786141,https://salsa.debian.org/python-team/packages/rdflib, https://github.com/RDFLib/rdflib.git,5415.8487731482,61,129,0 +rdiff-backup,1.0568039762,1.5664048612,0.6904043618,https://salsa.debian.org/python-team/applications/rdiff-backup, https://github.com/rdiff-backup/rdiff-backup.git,5728.7282407408,45,27,0 +rdma-core,0.8802521737,1.9032496828,0.3488624446,https://github.com/linux-rdma/rdma-core,https://github.com/linux-rdma/rdma-core,5201.698912037,285,181,0 +re2c,0.0490479646,0.5364366324,-0.0933902923,https://salsa.debian.org/jcfp/re2c, https://github.com/skvadrik/re2c,5784.0503703704,20,22,0 +rear,-0.3147123154,0.5880887444,-0.6484318562,https://salsa.debian.org/debian/rear, https://github.com/rear/rear.git,5387.7814236111,35,162,0 +recoll,0.5148678027,1.1735337445,0.105710657,https://salsa.debian.org/debian/recoll, https://framagit.org/medoc92/recoll/issues/new,2746.3319791667,2,17,0 +recommonmark,0.0137812846,1.8609919426,-0.3646428818,https://salsa.debian.org/python-team/packages/recommonmark, https://github.com/readthedocs/recommonmark.git,2822.8469328704,10,35,0 +recon-ng,-0.3432489844,1.4347909078,-0.8080036222,https://salsa.debian.org/pkg-security-team/recon-ng, https://github.com/lanmaster53/recon-ng.git,3226.8799074074,8,37,0 +redis,-0.0771619629,-0.0349183767,-0.101407646,https://salsa.debian.org/lamby/pkg-redis, https://github.com/redis/redis.git,5381.2444675926,506,365,0 +redis-py-cluster,-1.8001809263,0.773142511,-2.5308098382,https://salsa.debian.org/python-team/packages/redis-py-cluster, https://github.com/Grokzen/redis-py-cluster,3217.2146527778,55,25,3 +redmine,0.3407457767,0.6324893804,0.1156893055,https://salsa.debian.org/ruby-team/redmine, https://www.redmine.org/projects/redmine/issues/new,2746.3319791667,2,17,0 +redmine-plugin-local-avatars,-1.4572727561,1.4827307788,-2.2601628352,https://salsa.debian.org/debian/redmine-plugin-local-avatars, https://github.com/ncoders/redmine_local_avatars,3991.5587615741,3,11,0 +redsocks,0.6328601406,4.2203426343,-0.3998826602,https://salsa.debian.org/debian/redsocks, https://github.com/darkk/redsocks.git,4174.7984027778,2,11,0 +ree,0.455206434,2.7126650543,-0.2943021607,https://salsa.debian.org/debian/ree, https://github.com/alexmyczko/ree,1112.0390740741,3,1,0 +reflex,-0.9747252066,2.0178746564,-1.6361886011,https://salsa.debian.org/debian/reflex, https://github.com/cespare/reflex.git,3024.8018634259,4,7,0 +regexxer,-0.1878746355,0.5464536343,-0.5230912733,https://salsa.debian.org/debian/regexxer, https://gitlab.gnome.org/Archive/regexxer,4953.1095023148,32,53,0 +remaster-iso,-2.0473516929,0.1202211372,-2.4770101415,https://github.com/unixabg/remaster-iso,https://github.com/unixabg/remaster-iso,251.8044791667,1,3,0 +renderdoc,-0.5716522155,1.3682284969,-1.0764605896,https://salsa.debian.org/xorg-team/app/renderdoc, https://github.com/baldurk/renderdoc.git,3576.9787268519,255,31,0 +reptyr,0.9590754247,3.541031645,0.0685934084,https://github.com/nelhage/reptyr/tree/debian,https://github.com/nelhage/reptyr,4619.4708680556,13,37,0 +requests,0.1314131814,0.3425065579,0.0347416957,https://salsa.debian.org/python-team/packages/requests, https://github.com/psf/requests,4683.8957060185,185,623,2 +requests-aws,-0.7617204879,2.8252172293,-1.7279435269,https://salsa.debian.org/python-team/packages/requests-aws, https://github.com/tax/python-requests-aws,1319.2575,2,12,1 +requirejs,0.307781271,1.8450766211,-0.1061121379,https://salsa.debian.org/js-team/requirejs, https://github.com/requirejs/r.js.git,4511.8290740741,2,70,0 +requirejs-text,-1.2414080169,1.0509071188,-1.685054559,https://salsa.debian.org/js-team/requirejs-text, https://github.com/requirejs/text,2533.6334375,0,20,0 +rerun,-0.4314612854,3.3152754481,-1.4987677111,https://salsa.debian.org/ruby-team/rerun, https://github.com/alexch/rerun/issues/new,2746.3319791667,2,17,0 +responses,0.1933463924,2.6904713616,-0.537774518,https://salsa.debian.org/python-team/packages/responses, https://github.com/getsentry/responses,3678.9310416667,55,78,0 +resvg,-0.8706965662,2.5429179421,-1.7032916571,https://salsa.debian.org/debian/resvg, https://github.com/RazrFalcon/resvg.git,2182.7898726852,46,8,0 +rexical,-1.8414750192,0.9895052788,-2.7520386326,https://salsa.debian.org/ruby-team/rexical, https://github.com/tenderlove/rexical,5447.083912037,2,10,0 +rhythmbox,1.86573104,2.202464609,1.5884974038,https://salsa.debian.org/gnome-team/rhythmbox, https://gitlab.gnome.org/GNOME/rhythmbox/issues/new,2746.3319791667,2,17,0 +rhythmbox-plugin-alternative-toolbar,-0.2967422828,1.1331519186,-0.5644700995,https://github.com/fossfreedom/alternative-toolbar/tree/debian,https://github.com/fossfreedom/alternative-toolbar,3255.9015277778,2,19,0 +ring,0.595986806,1.5325574341,0.0961278372,https://salsa.debian.org/pkg-voip-team/ring, https://git.jami.net/savoirfairelinux/jami-project/-/issues/new,2746.3319791667,2,17,0 +ripe-atlas-cousteau,-0.9764944882,1.3924863314,-1.4702991314,https://salsa.debian.org/python-team/packages/ripe-atlas-cousteau, https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,3286.9945949074,5,15,0 +ripe-atlas-sagan,-0.8350788458,1.3446746037,-1.3262997043,https://salsa.debian.org/python-team/packages/ripe-atlas-sagan, https://github.com/RIPE-NCC/ripe.atlas.sagan,2585.8181481482,2,22,0 +rkhunter,0.3936649641,0.6206761513,0.2195563481,https://salsa.debian.org/pkg-security-team/rkhunter, https://git.code.sf.net/p/rkhunter/rkh_code,5365.8083101852,0,4,0 +rlwrap,-0.017815457,0.2341200643,-0.1189260094,https://salsa.debian.org/debian/rlwrap, https://github.com/hanslub42/rlwrap,3317.1894560185,6,18,2 +robocut,-0.2824151439,2.3754574352,-1.0923195505,https://github.com/alpharesearch/robocut,https://github.com/alpharesearch/robocut,831.4363194444,0,6,0 +robotfindskitten,0.0179376982,1.3078276454,-0.485626997,https://github.com/rfinnie/robotfindskitten-pkg-debian,https://github.com/rfinnie/robotfindskitten-pkg-debian,1629.5291319445,3,1,0 +rolo,-0.0498132259,2.1330027792,-0.8216828066,https://salsa.debian.org/debian/rolo, https://github.com/libvc/rolo,1738.2993634259,2,2,0 +rope,1.5978468361,3.9671998177,0.5551935604,https://salsa.debian.org/python-team/packages/rope, https://github.com/python-rope/rope,5713.8836458333,27,64,1 +ros-bond-core,-0.4557919444,0.8030863044,-0.7461613445,https://salsa.debian.org/science-team/ros-bond-core, https://github.com/ros/bond_core,5161.8582291667,13,47,0 +ros-catkin,-0.4890397815,0.1181291407,-0.6030390773,https://salsa.debian.org/science-team/ros-catkin, https://github.com/ros/catkin.git,3969.0014583333,64,80,0 +ros-catkin-pkg,-0.1672034974,1.2861285448,-0.485635068,https://salsa.debian.org/science-team/ros-catkin-pkg, https://github.com/ros-infrastructure/catkin_pkg.git,4009.4744097222,38,38,0 +ros-common-msgs,-0.2607356859,1.641884641,-0.6875278737,https://salsa.debian.org/science-team/ros-common-msgs, https://github.com/ros/common_msgs,4220.6578472222,11,81,1 +ros-gencpp,-0.1600911491,2.2557178524,-0.7191030763,https://salsa.debian.org/science-team/ros-gencpp, https://github.com/ros/gencpp,4002.0123032407,11,18,1 +ros-genlisp,-0.1663543225,2.2486695074,-0.7301964423,https://salsa.debian.org/science-team/ros-genlisp, https://github.com/ros/genlisp.git,2913.2089930556,2,16,0 +ros-genmsg,-0.0171725935,2.3757962259,-0.5825726576,https://salsa.debian.org/science-team/ros-genmsg, https://github.com/ros/genmsg,4008.1554976852,10,28,1 +ros-genpy,-0.6136991201,-0.6108271088,-0.6141657046,https://salsa.debian.org/science-team/ros-genpy, https://github.com/ros/genpy.git,4178.1003472222,21,31,0 +ros-geometry,-0.5506557748,0.4058218051,-0.730025317,https://salsa.debian.org/science-team/ros-geometry, https://github.com/ros/geometry,5094.8150694445,26,84,1 +ros-image-common,-0.4587743218,0.0450984941,-0.6096991982,https://salsa.debian.org/science-team/ros-image-common, https://github.com/ros-perception/image_common.git,5179.6323611111,38,47,0 +ros-interactive-markers,-0.2522280854,2.1257586459,-0.8003900423,https://salsa.debian.org/science-team/ros-interactive-markers, https://github.com/ros-visualization/interactive_markers.git,5635.5972685185,21,62,0 +ros-kdl-parser,-0.3386572847,2.2780300935,-0.9138488719,https://salsa.debian.org/science-team/ros-kdl-parser, https://github.com/ros/kdl_parser,4840.7517013889,32,70,0 +ros-laser-geometry,-0.418947578,0.783831601,-0.6760367366,https://salsa.debian.org/science-team/ros-laser-geometry, https://github.com/ros-perception/laser_geometry,5200.3426388889,9,44,0 +ros-message-runtime,-0.2905975286,1.6300481977,-0.6771923217,https://salsa.debian.org/science-team/ros-message-runtime, https://github.com/ros/message_runtime.git,2931.9169212963,1,6,0 +ros-navigation-msgs,-0.585376458,1.338109234,-0.9801897126,https://salsa.debian.org/science-team/ros-navigation-msgs, https://github.com/ros-planning/navigation_msgs,4055.7909027778,6,14,0 +ros-nodelet-core,-0.0806493057,2.3062700037,-0.6511678143,https://salsa.debian.org/science-team/ros-nodelet-core, https://github.com/ros/nodelet_core,4750.0362731482,13,47,1 +ros-pluginlib,-0.6634443823,0.7184010327,-0.9470101264,https://salsa.debian.org/science-team/ros-pluginlib, https://github.com/ros/pluginlib.git,5189.6688194445,29,44,0 +ros-robot-state-publisher,-0.5924558866,1.3576605397,-1.0109364513,https://salsa.debian.org/science-team/ros-robot-state-publisher, https://github.com/ros/robot_state_publisher,4113.0053356482,37,41,0 +ros-ros,-0.1745422172,1.7437198621,-0.5705067706,https://salsa.debian.org/science-team/ros-ros, https://github.com/ros/ros.git,4392.927650463,48,77,0 +ros-roscpp-core,-0.0331525353,2.3654999123,-0.5011196208,https://salsa.debian.org/science-team/ros-roscpp-core, https://github.com/ros/roscpp_core,4254.7056712963,25,32,1 +ros-rosinstall-generator,-0.1430258216,2.2110658666,-0.6993429291,https://salsa.debian.org/science-team/ros-rosinstall-generator, https://github.com/ros-infrastructure/rosinstall_generator,3820.0138425926,11,14,2 +ros-rospack,-0.2414662592,1.0688853941,-0.5553517117,https://salsa.debian.org/science-team/ros-rospack, https://github.com/ros/rospack.git,3438.9073958333,20,26,0 +ros-rospkg,-0.0548646672,1.8580305855,-0.5008277906,https://salsa.debian.org/science-team/ros-rospkg, https://github.com/ros-infrastructure/rospkg.git,4295.6529861111,33,59,0 +ros-rviz,-0.3481139561,0.6608442544,-0.6676848619,https://salsa.debian.org/science-team/ros-rviz, https://github.com/ros-visualization/rviz,5387.729837963,93,123,0 +ros-std-msgs,-0.0206690342,2.386166873,-0.5747059717,https://salsa.debian.org/science-team/ros-std-msgs, https://github.com/ros/std_msgs.git,3274.7244560185,3,17,0 +ros-vision-opencv,-0.5521042677,0.5682460886,-0.8284518786,https://salsa.debian.org/science-team/ros-vision-opencv, https://github.com/ros-perception/vision_opencv,5223.1408680556,33,82,0 +roundcube,0.1988106743,0.3674991336,0.0702870506,https://salsa.debian.org/roundcube-team/roundcube, https://github.com/roundcube/roundcubemail,5787.847337963,173,156,3 +rows,-0.5016738249,1.9996510726,-1.2999078923,https://salsa.debian.org/debian/rows, https://github.com/turicas/rows,3317.3650115741,11,25,2 +rr,-0.5526200069,-0.1320087756,-0.661304843,https://salsa.debian.org/debian/rr, https://github.com/rr-debugger/rr.git,4494.4015972222,157,47,0 +rrdtool,0.9502547566,1.3591452991,0.6495739673,https://salsa.debian.org/rrdtool-team/rrdtool, https://github.com/oetiker/rrdtool-1.x.git,5729.185787037,45,105,0 +rsh-redone,0.2434579926,2.4765843324,-0.7125516261,https://salsa.debian.org/debian/rsh-redone, https://github.com/gsliepen/rsh-redone,3762.4461458333,1,2,0 +rsnapshot,1.0729522506,1.8097566932,0.5930775251,https://salsa.debian.org/leepen/rsnapshot, https://github.com/rsnapshot/rsnapshot.git,5724.6217361111,13,34,0 +rss2email,0.3314855505,0.7157681983,0.0455417284,https://salsa.debian.org/python-team/packages/rss2email, https://github.com/rss2email/rss2email.git,3888.6072916667,25,44,0 +rsyslog,0.6110549773,0.8797763642,0.4155877323,https://salsa.debian.org/debian/rsyslog, https://github.com/rsyslog/rsyslog,5442.8970138889,186,283,2 +rsyslog-doc,-0.174161086,0.6972214918,-0.3745321962,https://salsa.debian.org/debian/rsyslog-doc, https://github.com/rsyslog/rsyslog-doc,5603.1068634259,74,286,3 +rt-extension-repeatticket,-1.2713455525,2.448057755,-2.2206005858,https://salsa.debian.org/request-tracker-team/rt-extension-repeatticket, https://github.com/bestpractical/rt-extension-repeatticket,4204.3307407408,0,5,0 +rtags,-0.5265839452,1.6384686559,-1.0098214432,https://salsa.debian.org/emacsen-team/rtags, https://github.com/Andersbakken/rtags,4530.6735648148,27,123,0 +rtkit,1.5914934939,3.4753341698,0.6818583583,https://salsa.debian.org/multimedia-team/rtkit, https://github.com/heftig/rtkit,3958.7431828704,18,3,0 +rtl-sdr,0.0392172564,0.6922703968,-0.1757210595,https://salsa.debian.org/bottoms/pkg-rtl-sdr, https://gitea.osmocom.org/sdr/rtl-sdr.git,4287.7309490741,35,11,0 +rtmidi,0.1452827752,1.3367580788,-0.1661396859,https://salsa.debian.org/multimedia-team/rtmidi, https://github.com/thestk/rtmidi.git,3632.2693287037,22,64,0 +rubberband,0.9182349758,2.6226888587,0.2148423241,https://salsa.debian.org/multimedia-team/rubberband, https://github.com/breakfastquay/rubberband.git,5683.900474537,0,9,0 +ruby-actionpack-action-caching,-0.0195395793,2.0209197518,-0.4608551365,https://salsa.debian.org/ruby-team/ruby-actionpack-action-caching, https://github.com/rails/actionpack-action_caching/issues/new,2746.3319791667,2,17,0 +ruby-actionpack-page-caching,-2.0979772282,1.0629868716,-2.9170878445,https://salsa.debian.org/ruby-team/ruby-actionpack-page-caching, https://github.com/rails/actionpack-page_caching/issues/new,2746.3319791667,2,17,0 +ruby-actionpack-xml-parser,-0.2996184364,1.3428057072,-0.5955184752,https://salsa.debian.org/ruby-team/ruby-actionpack-xml-parser, https://github.com/rails/actionpack-xml_parser,1540.6708333333,2,13,0 +ruby-active-model-serializers,-2.6276778243,-0.1926975438,-3.2592310267,https://salsa.debian.org/ruby-team/ruby-active-model-serializers, https://github.com/rails-api/active_model_serializers/issues/new,2746.3319791667,2,17,0 +ruby-activeldap,-1.4156697614,-0.4511022965,-1.5988774793,https://salsa.debian.org/ruby-team/ruby-activeldap, https://github.com/activeldap/activeldap/issues/new,2746.3319791667,2,17,0 +ruby-activerecord-import,-1.9687719488,1.0512667089,-2.7168041881,https://salsa.debian.org/ruby-team/ruby-activerecord-import, https://github.com/zdennis/activerecord-import/issues/new,2746.3319791667,2,17,0 +ruby-activerecord-nulldb-adapter,-2.9231293508,0.23307279,-3.9919104886,https://salsa.debian.org/ruby-team/ruby-activerecord-nulldb-adapter, https://github.com/nulldb/nulldb/issues/new,2746.3319791667,2,17,0 +ruby-acts-as-list,-1.8199662912,-1.4681851633,-1.8707866646,https://salsa.debian.org/ruby-team/ruby-acts-as-list, https://github.com/swanandp/acts_as_list,4913.7026157407,58,72,1 +ruby-addressable,0.4108416878,2.8755637332,-0.1685908494,https://salsa.debian.org/ruby-team/ruby-addressable, https://github.com/sporkmonger/addressable/issues/new,2746.3319791667,2,17,0 +ruby-ahoy-email,-4.4435950424,-0.9410641928,-5.3641400248,https://salsa.debian.org/ruby-team/ruby-ahoy-email, https://github.com/ankane/ahoy_email/issues/new,2746.3319791667,2,17,0 +ruby-amqp,-1.8149935347,0.3288060449,-2.3239990954,https://salsa.debian.org/ruby-team/ruby-amqp, https://github.com/ruby-amqp/amqp.git,4994.8880787037,18,59,0 +ruby-api-pagination,-3.3044182875,-0.0567093294,-4.1951110602,https://salsa.debian.org/ruby-team/ruby-api-pagination, https://github.com/davidcelis/api-pagination.git,3040.7300578704,2,39,0 +ruby-arbre,-4.8029050341,-2.1273433872,-5.4412019806,https://salsa.debian.org/ruby-team/ruby-arbre, https://github.com/activeadmin/arbre/issues/new,2746.3319791667,2,17,0 +ruby-arel,0.3106589726,2.474631097,-0.2177948361,https://salsa.debian.org/ruby-team/ruby-arel, https://github.com/rails/arel,3724.6690277778,28,165,0 +ruby-aruba,-1.3624851534,0.7430654318,-1.9853929341,https://salsa.debian.org/ruby-team/ruby-aruba, https://github.com/cucumber/aruba.git,5041.5396643519,15,94,0 +ruby-ascii85,0.2206824389,2.5687214029,-0.2090030653,https://salsa.debian.org/ruby-team/ruby-ascii85, https://github.com/datawraith/ascii85gem,5104.9701851852,3,5,0 +ruby-atomic,0.457757312,3.0035455682,-0.1488604021,https://salsa.debian.org/ruby-team/ruby-atomic, https://github.com/headius/ruby-atomic,1459.8353125,0,15,2 +ruby-attr-encrypted,-0.4595515114,2.3427552724,-1.2100183498,https://salsa.debian.org/ruby-team/ruby-attr-encrypted, https://github.com/attr-encrypted/attr_encrypted.git,5251.6153935185,13,31,0 +ruby-autoprefixer-rails,-0.2315449554,2.8349504609,-1.0454191857,https://salsa.debian.org/ruby-team/ruby-autoprefixer-rails, https://github.com/ai/autoprefixer-rails/issues/new,2746.3319791667,2,17,0 +ruby-awesome-print,-0.1589005828,2.0284975516,-0.8426752553,https://salsa.debian.org/ruby-team/ruby-awesome-print, https://github.com/awesome-print/awesome_print/issues/new,2746.3319791667,2,17,0 +ruby-backports,0.1539156176,2.1183447847,-0.4562399385,https://salsa.debian.org/ruby-team/ruby-backports, https://github.com/marcandre/backports/issues/new,2746.3319791667,2,17,0 +ruby-bacon,-1.4997697176,0.69875474,-2.0358441625,https://salsa.debian.org/ruby-team/ruby-bacon, https://github.com/leahneukirchen/bacon,5364.0763657407,3,17,0 +ruby-base62,-3.2007890763,-0.5710294937,-3.7408477417,https://salsa.debian.org/ruby-team/ruby-base62, https://github.com/jtzemp/base62.git,1973.6897222222,1,5,0 +ruby-batch-loader,-1.39118114,1.051907531,-1.9658421191,https://salsa.debian.org/ruby-team/ruby-batch-loader, https://github.com/exAspArk/batch-loader/issues/new,2746.3319791667,2,17,0 +ruby-bcrypt,-0.1670366207,2.5485813659,-0.7840534303,https://salsa.debian.org/ruby-team/ruby-bcrypt, https://github.com/bcrypt-ruby/bcrypt-ruby/issues/new,2746.3319791667,2,17,0 +ruby-beaneater,-1.3606359648,1.1630055771,-2.0175948675,https://salsa.debian.org/ruby-team/ruby-beaneater, https://github.com/beanstalkd/beaneater,3900.0326736111,5,29,1 +ruby-beautify,-1.8179395924,0.5723544617,-2.4288221334,https://salsa.debian.org/ruby-team/ruby-beautify.git, https://github.com/erniebrodeur/ruby-beautify,2708.0809837963,1,19,0 +ruby-bogus,-2.97011868,-1.1536023268,-3.3242631007,https://salsa.debian.org/ruby-team/ruby-bogus, https://github.com/psyho/bogus/issues/new,2746.3319791667,2,17,0 +ruby-bootsnap,0.4969446581,4.0467699375,-0.4453655481,https://salsa.debian.org/ruby-team/ruby-bootsnap, https://github.com/Shopify/bootsnap/issues/new,2746.3319791667,2,17,0 +ruby-bootstrap-sass,-0.2286159095,1.7117901741,-0.9407442719,https://salsa.debian.org/ruby-team/ruby-bootstrap-sass, https://github.com/twbs/bootstrap-sass,4131.8156944445,18,111,1 +ruby-browser,-0.1660846663,3.3869132145,-1.1464271076,https://salsa.debian.org/ruby-team/ruby-browser, https://github.com/fnando/browser.git,4214.4159027778,56,56,0 +ruby-bson,-0.4876456206,1.8841260262,-1.1170056726,https://salsa.debian.org/ruby-team/ruby-bson, https://github.com/mongodb/mongo-ruby-driver/issues/new,2746.3319791667,2,17,0 +ruby-buff-config,-2.0406131429,-0.5802367653,-2.3469509456,https://salsa.debian.org/ruby-team/ruby-buff-config, https://github.com/berkshelf/buff-config/issues/new,2746.3319791667,2,17,0 +ruby-buff-extensions,-1.7001314331,0.6961340583,-2.1479955125,https://salsa.debian.org/ruby-team/ruby-buff-extensions, https://github.com/RiotGames/buff-extensions,1162.5226851852,0,5,0 +ruby-build,0.7893354917,3.7529260423,-0.2311750464,https://salsa.debian.org/ruby-team/ruby-build, https://github.com/rbenv/ruby-build.git,4513.8946527778,46,256,0 +ruby-builder,0.2891790514,2.0567550581,-0.1483490017,https://salsa.debian.org/ruby-team/ruby-builder, https://github.com/tenderlove/builder/issues/new,2746.3319791667,2,17,0 +ruby-byebug,0.1180553967,2.3001711673,-0.3220977863,https://salsa.debian.org/ruby-team/ruby-byebug, https://github.com/deivid-rodriguez/byebug/issues/new,2746.3319791667,2,17,0 +ruby-cairo,0.1581645671,1.8085959907,-0.2449580714,https://salsa.debian.org/ruby-team/ruby-cairo, https://github.com/rcairo/rcairo,5677.5943055556,5,14,0 +ruby-capture-output,-2.8922262934,-0.7342713061,-3.3221878931,https://salsa.debian.org/ruby-team/ruby-capture-output, https://github.com/jpastuszek/capture-output,0.0173611111,0,1,0 +ruby-capybara,0.2496990629,2.4303429017,-0.4282559769,https://salsa.debian.org/ruby-team/ruby-capybara, https://github.com/teamcapybara/capybara/issues/new,2746.3319791667,2,17,0 +ruby-cassiopee,-1.5851518029,1.3271244261,-2.3664077484,https://salsa.debian.org/ruby-team/ruby-cassiopee, https://github.com/osallou/cassiopee/issues/new,2746.3319791667,2,17,0 +ruby-celluloid,0.0913806587,1.1865611887,-0.2892192569,https://salsa.debian.org/ruby-team/ruby-celluloid, https://github.com/celluloid/celluloid/issues/new,2746.3319791667,2,17,0 +ruby-certificate-authority,-2.001867048,0.4618631999,-2.7039312007,https://salsa.debian.org/ruby-team/ruby-certificate-authority, https://github.com/cchandler/certificate_authority/issues/new,2746.3319791667,2,17,0 +ruby-charlock-holmes,-0.2741468778,2.0152003546,-0.834403773,https://salsa.debian.org/ruby-team/ruby-charlock-holmes, https://github.com/brianmario/charlock_holmes,3398.8280902778,5,21,0 +ruby-childprocess,0.6526229125,3.2331928631,-0.0924023393,https://salsa.debian.org/ruby-team/ruby-childprocess, https://github.com/jarib/childprocess.git,4814.2096527778,16,34,0 +ruby-clockwork,-1.6175893707,0.2897910827,-2.1048468681,https://salsa.debian.org/ruby-team/ruby-clockwork, https://github.com/Rykian/clockwork,4663.0759143519,22,47,0 +ruby-cmdparse,0.6782564731,4.5071204079,-0.416431913,https://salsa.debian.org/ruby-team/ruby-cmdparse, https://github.com/gettalong/cmdparse/issues/new,2746.3319791667,2,17,0 +ruby-coffee-rails,0.3091824065,2.8142114504,-0.2736133929,https://salsa.debian.org/ruby-team/ruby-coffee-rails, https://github.com/rails/coffee-rails,3619.3450231482,7,34,0 +ruby-color,-1.6594930763,0.7881397104,-2.2203703357,https://salsa.debian.org/ruby-team/ruby-color, https://github.com/halostatue/color,4994.1460185185,1,11,1 +ruby-colorator,0.17562997,2.3024347781,-0.2637255242,https://salsa.debian.org/ruby-team/ruby-colorator, https://github.com/octopress/colorator/issues/new,2746.3319791667,2,17,0 +ruby-combustion,-2.7077626864,-0.5070219842,-3.2814670287,https://salsa.debian.org/ruby-team/ruby-combustion, https://github.com/pat/combustion/issues/new,2746.3319791667,2,17,0 +ruby-commander,-0.3544313341,2.5524463745,-1.091065268,https://salsa.debian.org/ruby-team/ruby-commander, https://github.com/commander-rb/commander/issues/new,2746.3319791667,2,17,0 +ruby-concurrent,0.5566030605,2.9441693658,-0.0717542554,https://salsa.debian.org/ruby-team/ruby-concurrent, https://github.com/ruby-concurrency/concurrent-ruby.git,3789.0811458333,43,132,0 +ruby-connection-pool,-0.107782789,2.7608316302,-0.9083898684,https://salsa.debian.org/ruby-team/ruby-connection-pool, https://github.com/mperham/connection_pool/issues/new,2746.3319791667,2,17,0 +ruby-coveralls,-1.0639842925,0.6886883657,-1.6214631931,https://salsa.debian.org/ruby-team/ruby-coveralls, https://github.com/lemurheavy/coveralls-ruby/issues/new,2746.3319791667,2,17,0 +ruby-crack,-0.2561449098,2.087316532,-0.8772440851,https://salsa.debian.org/ruby-team/ruby-crack, https://github.com/jnunemaker/crack,4290.8581481482,10,28,0 +ruby-crb-blast,-0.6967501476,1.5636879643,-1.4854285145,https://salsa.debian.org/ruby-team/ruby-crb-blast, https://github.com/cboursnell/crb-blast,1070.1020717593,0,5,0 +ruby-cri,-0.2343045243,2.3306711919,-0.7929491714,https://salsa.debian.org/ruby-team/ruby-cri, https://github.com/ddfreyne/cri,5399.7816666667,2,13,0 +ruby-css-parser,0.4702988432,3.0731837512,-0.226276662,https://salsa.debian.org/ruby-team/ruby-css-parser, https://github.com/premailer/css_parser/issues/new,2746.3319791667,2,17,0 +ruby-curb,-0.9519936286,0.5852000443,-1.3702997899,https://salsa.debian.org/ruby-team/ruby-curb, https://github.com/taf2/curb/issues/new,2746.3319791667,2,17,0 +ruby-curses,0.2397321091,3.7638726076,-0.6627285256,https://salsa.debian.org/ruby-team/ruby-curses, https://github.com/ruby/curses.git,5368.611724537,1,10,0 +ruby-dalli,-0.7493522151,1.7345835465,-1.4848953309,https://salsa.debian.org/ruby-team/ruby-dalli, https://github.com/petergoldstein/dalli/issues/new,2746.3319791667,2,17,0 +ruby-database-cleaner,-1.7483292241,0.7391018235,-2.4850803555,https://salsa.debian.org/ruby-team/ruby-database-cleaner, https://github.com/DatabaseCleaner/database_cleaner,5351.4246527778,37,192,0 +ruby-dataobjects,-0.6052286355,1.9239090144,-1.1703509305,https://salsa.debian.org/ruby-team/ruby-dataobjects, https://github.com/datamapper/do,2417.1817939815,23,80,0 +ruby-dataobjects-mysql,-0.54200159,1.330833118,-1.1220383383,https://salsa.debian.org/ruby-team/ruby-dataobjects-mysql, https://github.com/datamapper/do/issues/new,2746.3319791667,2,17,0 +ruby-dataobjects-postgres,-1.0090440226,0.6175409683,-1.3002932121,https://salsa.debian.org/ruby-team/ruby-dataobjects-postgres, https://github.com/datamapper/do,2417.1817939815,23,80,0 +ruby-dbf,-2.1729354458,-1.1249256758,-2.3569268761,https://salsa.debian.org/ruby-team/ruby-dbf, https://github.com/infused/dbf/issues/new,2746.3319791667,2,17,0 +ruby-dbus,-0.5967981722,1.7453526545,-1.2803486489,https://salsa.debian.org/ruby-team/ruby-dbus, https://github.com/mvidner/ruby-dbus,4746.8070601852,9,33,0 +ruby-default-value-for,-0.8448203677,1.505826156,-1.3079220043,https://salsa.debian.org/ruby-team/ruby-default-value-for, https://github.com/FooBarWidget/default_value_for/issues/new,2746.3319791667,2,17,0 +ruby-delayed-job,-0.2286424071,2.470279089,-0.9617467357,https://salsa.debian.org/ruby-team/ruby-delayed-job, http://github.com/collectiveidea/delayed_job/issues/new,2746.3319791667,2,17,0 +ruby-devise-two-factor,-0.6624262185,1.6467126273,-1.2753154222,https://salsa.debian.org/ruby-team/ruby-devise-two-factor, https://github.com/tinfoil/devise-two-factor.git,3466.0953935185,20,37,0 +ruby-diaspora-federation,-4.7376054498,-2.2734066052,-5.4037842301,https://salsa.debian.org/ruby-team/ruby-diaspora-federation, https://github.com/diaspora/diaspora_federation/issues/new,2746.3319791667,2,17,0 +ruby-diff-lcs,0.3071796152,2.5635803467,-0.2628240016,https://salsa.debian.org/ruby-team/ruby-diff-lcs, https://github.com/halostatue/diff-lcs/issues/new,2746.3319791667,2,17,0 +ruby-diffy,-0.2255220294,2.8131844872,-1.0283299527,https://salsa.debian.org/ruby-team/ruby-diffy, https://github.com/samg/diffy,4494.6685763889,5,31,0 +ruby-distribution,-2.1011793074,0.9112617849,-3.0579162724,https://salsa.debian.org/ruby-team/ruby-distribution, https://github.com/sciruby/distribution/issues/new,2746.3319791667,2,17,0 +ruby-docker-api,0.2906321596,4.2039401292,-1.0121523475,https://salsa.debian.org/ruby-team/ruby-docker-api, https://github.com/swipely/docker-api,3249.0699421296,17,99,0 +ruby-domain-name,0.2651495015,2.3454735809,-0.1388653919,https://salsa.debian.org/ruby-team/ruby-domain-name, https://github.com/knu/ruby-domain_name/issues/new,2746.3319791667,2,17,0 +ruby-doorkeeper,-0.5886462751,1.377166164,-1.1632549626,https://salsa.debian.org/ruby-team/ruby-doorkeeper, https://github.com/doorkeeper-gem/doorkeeper,4399.0135532407,90,260,2 +ruby-doorkeeper-openid-connect,-1.4327375969,1.0332936076,-1.9662070524,https://salsa.debian.org/ruby-team/ruby-doorkeeper-openid-connect, https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git,3262.6136111111,16,56,0 +ruby-dotenv,-0.7067406549,1.5565180252,-1.2286709687,https://salsa.debian.org/ruby-team/ruby-dotenv, https://github.com/bkeepers/dotenv,4059.5279976852,18,99,0 +ruby-eim-xml,-0.7146782347,2.4094998812,-1.5508131873,https://salsa.debian.org/ruby-team/ruby-eim-xml, https://github.com/hirakuro/eim_xml/issues/new,2746.3319791667,2,17,0 +ruby-elasticsearch,-1.3051267172,1.0426707233,-1.8005408114,https://salsa.debian.org/ruby-team/ruby-elasticsearch, https://github.com/elastic/elasticsearch-ruby,3879.9172106482,171,15,0 +ruby-em-http-request,-0.182257018,2.1432197933,-1.011053135,https://salsa.debian.org/ruby-team/ruby-em-http-request, https://github.com/igrigorik/em-http-request/issues/new,2746.3319791667,2,17,0 +ruby-em-redis,-2.4322275314,0.3220252422,-3.2383595542,https://salsa.debian.org/ruby-team/ruby-em-redis, https://github.com/libc/em-redis,3058.3058101852,3,10,0 +ruby-em-synchrony,-2.0598738156,0.4564215093,-2.9786603575,https://salsa.debian.org/ruby-team/ruby-em-synchrony, https://github.com/igrigorik/em-synchrony,2910.8221180556,2,57,0 +ruby-encryptor,0.4811221705,4.0560529867,-0.7455390491,https://salsa.debian.org/ruby-team/ruby-encryptor, https://github.com/attr-encrypted/encryptor,2635.9583564815,1,9,0 +ruby-entypo-rails,0.5391017786,4.3530001784,-0.5148206393,https://salsa.debian.org/ruby-team/ruby-entypo-rails, https://github.com/lwe/entypo-rails,1757.4358333333,1,10,0 +ruby-enumerize,-3.5842960195,-1.0600757701,-4.2631150762,https://salsa.debian.org/ruby-team/ruby-enumerize, https://github.com/brainspec/enumerize/issues/new,2746.3319791667,2,17,0 +ruby-escape-utils,-0.3520723582,1.3204538371,-0.8030228346,https://salsa.debian.org/ruby-team/ruby-escape-utils, https://github.com/brianmario/escape_utils.git,4731.6076041667,5,24,0 +ruby-espeak,-0.7286751247,2.0352078637,-1.4874218872,https://salsa.debian.org/ruby-team/ruby-espeak, https://github.com/dejan/espeak-ruby/issues/new,2746.3319791667,2,17,0 +ruby-ethon,-0.0042860534,2.2301309151,-0.5633876951,https://salsa.debian.org/ruby-team/ruby-ethon, https://github.com/typhoeus/ethon/issues/new,2746.3319791667,2,17,0 +ruby-excon,0.3241647951,2.1161660144,-0.1827284225,https://salsa.debian.org/ruby-team/ruby-excon, https://github.com/excon/excon/issues/new,2746.3319791667,2,17,0 +ruby-execjs,0.8128959283,3.6876363054,-0.0541606598,https://salsa.debian.org/ruby-team/ruby-execjs, https://github.com/rails/execjs/issues/new,2746.3319791667,2,17,0 +ruby-factory-bot,-2.8031110385,-0.7539374887,-3.2965562449,https://salsa.debian.org/ruby-team/ruby-factory-bot, https://github.com/thoughtbot/factory_bot/issues/new,2746.3319791667,2,17,0 +ruby-factory-bot-rails,-4.3362753842,-1.1849251406,-5.2964482175,https://salsa.debian.org/ruby-team/ruby-factory-bot-rails, https://github.com/thoughtbot/factory_bot_rails/issues/new,2746.3319791667,2,17,0 +ruby-factory-girl,-1.4263061364,0.5433633199,-1.9953583847,https://salsa.debian.org/ruby-team/ruby-factory-girl, https://github.com/thoughtbot/factory_girl.git,4913.9169675926,224,76,0 +ruby-faker,-2.043268084,0.4558232112,-2.7260545607,https://salsa.debian.org/ruby-team/ruby-faker, https://github.com/faker-ruby/faker/issues/new,2746.3319791667,2,17,0 +ruby-fakeredis,-3.9027611166,-1.9110018697,-4.3340476978,https://salsa.debian.org/ruby-team/ruby-fakeredis, https://github.com/guilleiguaran/fakeredis.git,3981.188900463,20,88,0 +ruby-fakeweb,-2.1455045277,-0.7731874586,-2.5667966225,https://salsa.debian.org/ruby-team/ruby-fakeweb, https://github.com/chrisk/fakeweb.git,3218.6643865741,6,19,0 +ruby-faraday-middleware,-0.2690476788,2.0619472224,-0.7696905372,https://salsa.debian.org/ruby-team/ruby-faraday-middleware, https://github.com/lostisland/faraday_middleware,4563.5818981482,47,29,1 +ruby-fast-gettext,-0.1209401725,1.2360688234,-0.5688307825,https://salsa.debian.org/ruby-team/ruby-fast-gettext, https://github.com/grosser/fast_gettext,5110.3340046296,3,48,0 +ruby-fastimage,-0.9259690851,1.7219406128,-1.4847810256,https://salsa.debian.org/ruby-team/ruby-fastimage, https://github.com/sdsykes/fastimage,5223.7173726852,7,44,0 +ruby-faye,-2.0069321827,1.4374394085,-2.9099352678,https://salsa.debian.org/ruby-team/ruby-faye, https://github.com/faye/faye,4073.2484837963,5,46,0 +ruby-fcgi,0.3005043747,2.2153527182,-0.3456056618,https://salsa.debian.org/ruby-team/ruby-fcgi, https://github.com/alphallc/ruby-fcgi-ng,3559.9222685185,1,6,0 +ruby-ferret,-1.152482197,0.9802706874,-1.8377454457,https://salsa.debian.org/ruby-team/ruby-ferret, https://github.com/dbalmain/ferret/issues/new,2746.3319791667,2,17,0 +ruby-ffaker,-2.5489714355,0.5028353652,-3.5038139593,https://salsa.debian.org/ruby-team/ruby-ffaker, https://github.com/ffaker/ffaker/issues/new,2746.3319791667,2,17,0 +ruby-ffi,0.7507411929,2.0786767636,0.1677842861,https://salsa.debian.org/ruby-team/ruby-ffi, https://github.com/ffi/ffi/wiki/issues/new,2746.3319791667,2,17,0 +ruby-ffi-rzmq,-1.7723964358,0.1072926119,-2.431946797,https://salsa.debian.org/ruby-team/ruby-ffi-rzmq, https://github.com/chuckremes/ffi-rzmq,3424.7133912037,1,37,0 +ruby-ffi-yajl,0.031166956,2.3413932203,-0.4046477411,https://salsa.debian.org/ruby-team/ruby-ffi-yajl, https://github.com/chef/ffi-yajl.git,3568.5882986111,5,25,0 +ruby-filepath,-2.3053481268,0.1409903961,-2.9510491569,https://salsa.debian.org/ruby-team/ruby-filepath, https://github.com/gioele/filepath/issues/new,2746.3319791667,2,17,0 +ruby-fission,-1.6562095743,0.8388115306,-2.2192481171,https://salsa.debian.org/ruby-team/ruby-fission, https://github.com/thbishop/fission,876.3192708333,0,10,0 +ruby-flexmock,-0.3454878367,2.571112926,-1.0719182939,https://salsa.debian.org/ruby-team/ruby-flexmock, https://github.com/doudou/flexmock/issues/new,2746.3319791667,2,17,0 +ruby-flipper,-1.2125373893,1.2148920977,-1.8579954518,https://salsa.debian.org/ruby-team/ruby-flipper, https://github.com/jnunemaker/flipper,4162.0917013889,31,105,1 +ruby-fog-core,0.6091506734,3.4479009172,-0.153332088,https://salsa.debian.org/ruby-team/ruby-fog-core, https://github.com/fog/fog-core/issues/new,2746.3319791667,2,17,0 +ruby-fog-libvirt,0.2178632878,2.503513076,-0.2369500898,https://salsa.debian.org/ruby-team/ruby-fog-libvirt, https://github.com/fog/fog-libvirt,3115.7615162037,9,33,0 +ruby-fog-local,-0.5604968871,1.9424075855,-1.1725410205,https://salsa.debian.org/ruby-team/ruby-fog-local, https://github.com/fog/fog-local,5023.4471759259,4,29,0 +ruby-fog-rackspace,-0.4991371264,1.9082417738,-1.1448163084,https://salsa.debian.org/ruby-team/ruby-fog-rackspace, https://github.com/fog/fog-rackspace,1479.8924537037,3,5,0 +ruby-fogbugz,-0.712082495,1.9230578337,-1.2759846712,https://salsa.debian.org/ruby-team/ruby-fogbugz, https://github.com/firmafon/ruby-fogbugz,2091.2249884259,2,11,0 +ruby-font-awesome-rails,-0.8180755531,0.4347325375,-1.0809960447,https://salsa.debian.org/ruby-team/ruby-font-awesome-rails, https://github.com/bokmann/font-awesome-rails,4227.7840856482,7,30,0 +ruby-foreman,-0.8272618131,1.5097537204,-1.3755635236,https://salsa.debian.org/ruby-team/ruby-foreman, http://github.com/ddollar/foreman/issues/new,2746.3319791667,2,17,0 +ruby-fssm,-0.4348169171,2.3642288128,-1.1313798455,https://salsa.debian.org/ruby-team/ruby-fssm, https://github.com/ttilley/fssm.git,2641.9220023148,2,11,0 +ruby-gelf,-2.0473403812,0.3850902599,-2.7168981677,https://salsa.debian.org/ruby-team/ruby-gelf, https://github.com/Graylog2/gelf-rb,4546.1701157407,9,25,0 +ruby-gettext-i18n-rails,-0.7613069529,2.0256293486,-1.5091771924,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails, https://github.com/grosser/gettext_i18n_rails,5235.7802546296,11,59,0 +ruby-gettext-i18n-rails-js,-0.9612583287,2.4872560383,-1.8785203213,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails-js, https://github.com/webhippie/gettext_i18n_rails_js,4076.9871759259,2,24,0 +ruby-gettext-setup,-0.5280470276,1.250073738,-0.9596386922,https://salsa.debian.org/puppet-team/ruby-gettext-setup, https://github.com/puppetlabs/gettext-setup-gem,2424.9263310185,17,20,0 +ruby-gir-ffi,-1.5231800876,0.4754387315,-2.1310553218,https://salsa.debian.org/ruby-team/ruby-gir-ffi, https://github.com/mvz/ruby-gir-ffi,5437.5734375,3,7,0 +ruby-git,-0.6108616509,1.212287958,-1.0441459189,https://salsa.debian.org/ruby-team/ruby-git, https://github.com/ruby-git/ruby-git/issues/new,2746.3319791667,2,17,0 +ruby-github-api,-2.3136488279,0.3256391086,-2.9739498003,https://salsa.debian.org/ruby-team/ruby-github-api,https://salsa.debian.org/ruby-team/ruby-github-api,2392.4012268519,0,6,0 +ruby-github-linguist,-0.649517699,1.7591556518,-1.1632479129,https://salsa.debian.org/ruby-team/ruby-github-linguist,https://salsa.debian.org/ruby-team/ruby-github-linguist,3497.9967939815,0,11,0 +ruby-github-markdown,-1.105143203,0.5312271054,-1.4552026927,https://salsa.debian.org/ruby-team/ruby-github-markdown,https://salsa.debian.org/ruby-team/ruby-github-markdown,3170.9246875,0,7,0 +ruby-github-markup,-0.0402315958,2.2658512207,-0.751462188,https://salsa.debian.org/ruby-team/ruby-github-markup,https://salsa.debian.org/ruby-team/ruby-github-markup,3514.5048263889,0,15,0 +ruby-globalid,0.5667944257,3.0518520834,-0.164807865,https://salsa.debian.org/ruby-team/ruby-globalid, https://github.com/rails/globalid/issues/new,2746.3319791667,2,17,0 +ruby-gnome,-0.1061053814,0.1043079467,-0.2106645933,https://salsa.debian.org/ruby-team/ruby-gnome, https://github.com/ruby-gnome/ruby-gnome.git,5781.7583449074,22,71,0 +ruby-gollum-rugged-adapter,-0.5046283138,1.6931787869,-0.9507597095,https://salsa.debian.org/ruby-team/ruby-gollum-rugged-adapter, https://gitlab.com/gitlab-org/gitlab-gollum-rugged_adapter,2512.6936226852,5,19,0 +ruby-gon,-0.661728283,1.4665985993,-1.2132657239,https://salsa.debian.org/ruby-team/ruby-gon, https://github.com/gazay/gon,3627.6142361111,4,70,2 +ruby-gpgme,-0.0751654777,2.583174237,-0.6612937476,https://salsa.debian.org/ruby-team/ruby-gpgme, https://github.com/ueno/ruby-gpgme,5752.7104050926,29,17,0 +ruby-graffiti,-1.4846935384,1.5503379929,-2.3930105658,https://salsa.debian.org/ruby-team/ruby-graffiti, https://github.com/angdraug/graffiti,3536.2679166667,0,3,0 +ruby-grape,-0.4350415295,1.4006419917,-1.070629589,https://salsa.debian.org/ruby-team/ruby-grape, https://github.com/ruby-grape/grape/issues/new,2746.3319791667,2,17,0 +ruby-grape-entity,-0.5418112968,2.0004562175,-1.1990100999,https://salsa.debian.org/ruby-team/ruby-grape-entity, https://github.com/intridea/grape-entity,3988.0353587963,43,59,0 +ruby-graphviz,-0.281553724,2.1524260723,-1.1267460692,https://salsa.debian.org/ruby-team/ruby-graphviz, https://github.com/glejeune/Ruby-Graphviz/issues/new,2746.3319791667,2,17,0 +ruby-grit,-0.8537908592,1.1155176233,-1.3448945439,https://salsa.debian.org/ruby-team/ruby-grit, https://gitlab.com/gitlab-org/gitlab-grit/issues/new,2746.3319791667,2,17,0 +ruby-gruff,-1.4288063601,1.0095368708,-2.244253882,https://salsa.debian.org/ruby-team/ruby-gruff, https://github.com/topfunky/gruff,5638.6255555556,13,44,1 +ruby-gsl,-0.3230766707,0.701457517,-0.7464638333,https://salsa.debian.org/ruby-team/ruby-gsl, https://github.com/SciRuby/rb-gsl/issues/new,2746.3319791667,2,17,0 +ruby-guard,-2.9807132483,-1.6178467609,-3.3128126957,https://salsa.debian.org/ruby-team/ruby-guard, https://github.com/guard/guard.git,4726.434537037,21,191,0 +ruby-haml,-0.2288560111,0.7789985582,-0.5585413968,https://salsa.debian.org/ruby-team/ruby-haml, https://github.com/haml/haml/issues/new,2746.3319791667,2,17,0 +ruby-haml-rails,-1.7986736177,0.2769400484,-2.4010715421,https://salsa.debian.org/ruby-team/ruby-haml-rails, https://github.com/haml/haml-rails/issues/new,2746.3319791667,2,17,0 +ruby-hamster,0.1910108771,2.6568022387,-0.3608024404,https://salsa.debian.org/ruby-team/ruby-hamster, https://github.com/hamstergem/hamster/issues/new,2746.3319791667,2,17,0 +ruby-hangouts-chat,-1.2144339097,0.4818108524,-1.5637566918,https://salsa.debian.org/ruby-team/ruby-hangouts-chat, https://github.com/enzinia/hangouts-chat,1065.9778472222,3,4,0 +ruby-hashie,0.5722550457,3.4085323574,-0.2355411618,https://salsa.debian.org/ruby-team/ruby-hashie, https://github.com/hashie/hashie/issues/new,2746.3319791667,2,17,0 +ruby-highline,0.2453167047,2.4988399297,-0.2235846904,https://salsa.debian.org/ruby-team/ruby-highline, https://github.com/JEG2/highline/issues/new,2746.3319791667,2,17,0 +ruby-hipchat,-0.6566424992,1.6469892033,-1.2629040655,https://salsa.debian.org/ruby-team/ruby-hipchat, https://github.com/hipchat/hipchat-rb,2705.747349537,7,102,0 +ruby-hiredis,-0.8641250548,1.2597163597,-1.3598436427,https://salsa.debian.org/ruby-team/ruby-hiredis, https://github.com/redis/hiredis-rb.git,4451.3495601852,10,19,0 +ruby-hitimes,0.1068100876,2.6613098357,-0.447701455,https://salsa.debian.org/ruby-team/ruby-hitimes, https://github.com/copiousfreetime/hitimes/issues/new,2746.3319791667,2,17,0 +ruby-html-pipeline,-0.3782141806,2.4999259043,-1.1470246908,https://salsa.debian.org/ruby-team/ruby-html-pipeline, https://github.com/jch/html-pipeline,4034.7769328704,33,88,0 +ruby-html2haml,-0.284722491,1.1708771552,-0.6449129827,https://salsa.debian.org/ruby-team/ruby-html2haml, https://github.com/haml/html2haml/issues/new,2746.3319791667,2,17,0 +ruby-http,0.5328919596,3.1587146036,-0.5041412503,https://salsa.debian.org/ruby-team/ruby-http, https://github.com/httprb/http.rb,4428.9060416667,68,68,2 +ruby-http-parser.rb,0.1854835398,2.3002590743,-0.2582983638,https://salsa.debian.org/ruby-team/ruby-http-parser.rb, https://github.com/tmm1/http_parser.rb.git,4794.1611111111,3,23,0 +ruby-httparty,-0.2296319294,1.8101133693,-0.8217200797,https://salsa.debian.org/ruby-team/ruby-httparty, https://github.com/jnunemaker/httparty/issues/new,2746.3319791667,2,17,0 +ruby-httpclient,3.1560222782,6.3396701333,1.7933132224,https://salsa.debian.org/ruby-team/ruby-httpclient, https://github.com/nahi/httpclient,4669.1735648148,7,81,0 +ruby-i18n,0.8152415757,2.7696084069,0.1031413415,https://salsa.debian.org/ruby-team/ruby-i18n, https://github.com/ruby-i18n/i18n/issues/new,2746.3319791667,2,17,0 +ruby-i18n-inflector-rails,-3.6101910392,-1.2035908486,-4.2660614395,https://salsa.debian.org/ruby-team/ruby-i18n-inflector-rails, https://github.com/siefca/i18n-inflector-rails/issues/new,2746.3319791667,2,17,0 +ruby-icalendar,-0.9967703811,1.7616614381,-1.7133045592,https://salsa.debian.org/ruby-team/ruby-icalendar, https://github.com/icalendar/icalendar/issues/new,2746.3319791667,2,17,0 +ruby-ice-cube,-2.9447850831,0.3245689035,-3.696715811,https://salsa.debian.org/ruby-team/ruby-ice-cube, http://seejohnrun.github.com/ice_cube/issues/new,2746.3319791667,2,17,0 +ruby-image-science,-0.6109855428,1.3356911263,-1.2647438358,https://salsa.debian.org/ruby-team/ruby-image-science, https://github.com/seattlerb/image_science/issues/new,2746.3319791667,2,17,0 +ruby-influxdb,0.0573197432,3.227120433,-0.9690594839,https://salsa.debian.org/ruby-team/ruby-influxdb, https://github.com/InfluxCommunity/influxdb-ruby/issues/new,2746.3319791667,2,17,0 +ruby-inherited-resources,-4.4805244395,-1.6125821355,-5.323696982,https://salsa.debian.org/ruby-team/ruby-inherited-resources, https://github.com/activeadmin/inherited_resources/issues/new,2746.3319791667,2,17,0 +ruby-inline,-0.5488463078,1.586460929,-1.1539952628,https://salsa.debian.org/ruby-team/ruby-inline, https://github.com/seattlerb/rubyinline.git,5600.4261805556,0,4,0 +ruby-innertube,-0.8869903201,1.6021467977,-1.6544158523,https://salsa.debian.org/ruby-team/ruby-innertube, https://github.com/basho/innertube.git,1008.2290162037,0,4,0 +ruby-ipaddress,0.3785874101,3.1933979431,-0.2196161692,https://salsa.debian.org/ruby-team/ruby-ipaddress, https://github.com/bluemonk/ipaddress/issues/new,2746.3319791667,2,17,0 +ruby-jar-dependencies,0.0460603946,2.8173117768,-0.7407876075,https://salsa.debian.org/ruby-team/ruby-jar-dependencies, https://github.com/mkristian/jar-dependencies,3114.2440277778,4,15,0 +ruby-jbuilder,0.9268158933,3.9024359113,-0.0482062973,https://salsa.debian.org/ruby-team/ruby-jbuilder, https://github.com/rails/jbuilder,4285.4706134259,42,114,1 +ruby-jekyll-commonmark,-3.9057611496,-1.6518132292,-4.3433705046,https://salsa.debian.org/ruby-team/ruby-jekyll-commonmark, https://github.com/jekyll/jekyll-commonmark/issues/new,2746.3319791667,2,17,0 +ruby-jekyll-feed,0.1675771135,2.2494684672,-0.2627259539,https://salsa.debian.org/ruby-team/ruby-jekyll-feed, https://github.com/jekyll/jekyll-feed/issues/new,2746.3319791667,2,17,0 +ruby-jekyll-watch,0.7728369205,3.7297014486,-0.0961095868,https://salsa.debian.org/ruby-team/ruby-jekyll-watch, https://github.com/jekyll/jekyll-watch,2617.3110532408,6,10,1 +ruby-jira,-1.1635676753,1.6419856099,-1.8195005803,https://salsa.debian.org/ruby-team/ruby-jira, https://github.com/sumoheavy/jira-ruby,4065.4467013889,15,112,0 +ruby-joiner,-0.899573388,2.1329741465,-1.7030771732,https://salsa.debian.org/ruby-team/ruby-joiner, https://github.com/pat/joiner/issues/new,2746.3319791667,2,17,0 +ruby-jquery-atwho-rails,-0.7423375517,1.4980767196,-1.2841911773,https://salsa.debian.org/ruby-team/ruby-jquery-atwho-rails, https://github.com/ichord/jquery-atwho-rails/issues/new,2746.3319791667,2,17,0 +ruby-jquery-rails,0.4762916242,2.5289403929,-0.1671409996,https://salsa.debian.org/ruby-team/ruby-jquery-rails, https://github.com/rails/jquery-rails.git,4697.0958680556,14,69,0 +ruby-jquery-ui-rails,-0.5553100399,1.254748517,-1.1496297544,https://salsa.debian.org/ruby-team/ruby-jquery-ui-rails, https://github.com/joliss/jquery-ui-rails,4080.9697453704,4,20,0 +ruby-js-routes,-3.4644388809,-0.4489124279,-4.2577079397,https://salsa.debian.org/ruby-team/ruby-js-routes, https://github.com/railsware/js-routes,3471.607662037,19,61,0 +ruby-json-jwt,-0.6646781739,1.8243330124,-1.3376720774,https://salsa.debian.org/ruby-team/ruby-json-jwt, https://github.com/nov/json-jwt/issues/new,2746.3319791667,2,17,0 +ruby-json-schema,-2.1030941989,-0.2528356332,-2.4758055487,https://salsa.debian.org/ruby-team/ruby-json-schema, https://github.com/voxpupuli/json-schema/issues/new,2746.3319791667,2,17,0 +ruby-json-spec,-2.5962462222,0.2357466454,-3.2697648762,https://salsa.debian.org/ruby-team/ruby-json-spec, https://github.com/collectiveidea/json_spec,2153.749525463,1,19,0 +ruby-jwt,-0.0089310607,2.9299158213,-0.7358933013,https://salsa.debian.org/ruby-team/ruby-jwt, https://github.com/jwt/ruby-jwt/issues/new,2746.3319791667,2,17,0 +ruby-kakasi-ffi,-3.4351277044,-0.6639963768,-4.2188884559,https://salsa.debian.org/ruby-team/ruby-kakasi-ffi, https://github.com/knu/kakasi_ffi/issues/new,2746.3319791667,2,17,0 +ruby-kaminari,-0.5485185975,1.0463989901,-0.9640266374,https://salsa.debian.org/ruby-team/ruby-kaminari, https://github.com/kaminari/kaminari,4634.2992476852,35,152,3 +ruby-kitchen-salt,-5.0389266876,-2.9100359531,-5.4788025236,https://salsa.debian.org/ruby-team/ruby-kitchen-salt, https://github.com/saltstack/kitchen-salt/issues/new,2746.3319791667,2,17,0 +ruby-kramdown,0.1585424898,1.288591817,-0.1774821194,https://salsa.debian.org/ruby-team/ruby-kramdown, https://github.com/gettalong/kramdown/issues/new,2746.3319791667,2,17,0 +ruby-ldap,0.9723697162,3.8411235557,-0.1487304827,https://salsa.debian.org/ruby-team/ruby-ldap, https://github.com/bearded/ruby-ldap,3395.5528703704,4,15,0 +ruby-libvirt,0.4100840444,1.9704162016,-0.135206172,https://salsa.debian.org/libvirt-team/ruby-libvirt, https://gitlab.com/libvirt/libvirt-ruby.git,5783.4875925926,10,22,0 +ruby-libxml,-0.1652439642,1.5527354518,-0.7540442503,https://salsa.debian.org/ruby-team/ruby-libxml, https://github.com/xml4r/libxml-ruby/issues/new,2746.3319791667,2,17,0 +ruby-licensee,-0.5594810715,1.9978936158,-1.1338465294,https://salsa.debian.org/ruby-team/ruby-licensee, https://github.com/licensee/licensee,3404.3053819445,14,56,2 +ruby-locale,0.3803802231,1.524276319,-0.0365821889,https://salsa.debian.org/ruby-team/ruby-locale, https://github.com/ruby-gettext/locale/issues/new,2746.3319791667,2,17,0 +ruby-loofah,0.2836546496,2.3307235597,-0.2358896402,https://salsa.debian.org/ruby-team/ruby-loofah, https://github.com/flavorjones/loofah,5476.0333796296,22,39,1 +ruby-magic,-0.136206368,2.210685595,-0.7957036211,https://salsa.debian.org/ruby-team/ruby-magic, https://github.com/qoobaa/magic,2808.4621990741,0,9,0 +ruby-mail,0.5698243911,2.9429319479,-0.1281852441,https://salsa.debian.org/ruby-team/ruby-mail, https://github.com/mikel/mail,5260.2857407408,90,197,6 +ruby-mail-gpg,-0.9409015952,1.9853520354,-1.675246259,https://salsa.debian.org/ruby-team/ruby-mail-gpg, https://github.com/jkraemer/mail-gpg,4267.9559722222,18,136,0 +ruby-mail-room,-0.7848385769,1.3051087526,-1.2605222066,https://salsa.debian.org/ruby-team/ruby-mail-room, https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git,3975.7012037037,4,30,0 +ruby-markdown-it-html5-embed,-2.8648647448,0.5943602868,-3.688121554,https://salsa.debian.org/ruby-team/ruby-markdown-it-html5-embed, https://github.com/cmrd-senya/markdown-it-html5-embed,2489.0705555556,3,10,0 +ruby-maruku,-0.2165404309,2.4394801532,-0.7700760204,https://salsa.debian.org/ruby-team/ruby-maruku, https://github.com/bhollis/maruku,3523.0504282407,0,23,2 +ruby-maxitest,-2.3507463091,0.2011168043,-2.9821664947,https://salsa.debian.org/ruby-team/ruby-maxitest, https://github.com/grosser/maxitest,3302.3780092593,0,10,0 +ruby-mechanize,-0.3858941786,1.2331276206,-0.8805502233,https://salsa.debian.org/ruby-team/ruby-mechanize, https://github.com/sparklemotion/mechanize.git,5735.6054513889,5,12,0 +ruby-method-source,0.3967690887,3.2318024051,-0.2913605087,https://salsa.debian.org/ruby-team/ruby-method-source, https://github.com/banister/method_source,3988.6090393519,4,19,0 +ruby-mime-types,0.3717629365,2.6878654539,-0.1300864966,https://salsa.debian.org/ruby-team/ruby-mime-types, https://github.com/mime-types/ruby-mime-types/issues/new,2746.3319791667,2,17,0 +ruby-mini-magick,-1.0439670842,0.2157840612,-1.3997145193,https://salsa.debian.org/ruby-team/ruby-mini-magick, https://github.com/minimagick/minimagick/issues/new,2746.3319791667,2,17,0 +ruby-minitar,-0.0660695838,1.7554167483,-0.5639163741,https://salsa.debian.org/ruby-team/ruby-minitar, https://github.com/halostatue/minitar,5658.6576851852,8,6,1 +ruby-minitest,0.6291543197,3.2530425688,0.0059259645,https://salsa.debian.org/ruby-team/ruby-minitest, https://github.com/seattlerb/minitest/issues/new,2746.3319791667,2,17,0 +ruby-minitest-around,-1.7698068776,0.7510788114,-2.5114054563,https://salsa.debian.org/ruby-team/ruby-minitest-around, https://github.com/splattael/minitest-around,2552.4467708333,2,14,0 +ruby-minitest-shared-description,-3.2057434289,-0.7536793446,-3.735520243,https://salsa.debian.org/ruby-team/ruby-minitest-shared-description, https://github.com/jeremyevans/minitest-shared_description,2605.2266666667,0,2,0 +ruby-mixlib-install,-0.6385298321,2.1889207953,-1.4847448361,https://salsa.debian.org/ruby-team/ruby-mixlib-install, https://github.com/chef/mixlib-install/issues/new,2746.3319791667,2,17,0 +ruby-mmap2,-2.5031482679,1.2026639036,-3.5678086954,https://salsa.debian.org/ruby-team/ruby-mmap2, https://gitlab.com/gitlab-org/mmap2,2959.9497569445,0,8,0 +ruby-mocha,-0.0854006271,1.5328416557,-0.5865753787,https://salsa.debian.org/ruby-team/ruby-mocha, https://github.com/freerange/mocha/issues/new,2746.3319791667,2,17,0 +ruby-moneta,-0.5640132497,0.2515905482,-0.8103956074,https://salsa.debian.org/ruby-team/ruby-moneta, https://github.com/moneta-rb/moneta,5182.1595023148,20,32,0 +ruby-mousetrap-rails,-0.5414473391,2.2995115053,-1.3022888739,https://salsa.debian.org/ruby-team/ruby-mousetrap-rails, https://github.com/kugaevsky/mousetrap-rails,2627.8625810185,0,4,0 +ruby-msgpack,0.2893496157,2.7505742261,-0.3169362878,https://salsa.debian.org/ruby-team/ruby-msgpack, https://github.com/msgpack/msgpack-ruby,4471.1247453704,7,115,0 +ruby-multi-json,0.6582999616,3.1811345182,-0.0546345167,https://salsa.debian.org/ruby-team/ruby-multi-json, https://github.com/intridea/multi_json,3679.9527430556,10,44,1 +ruby-mustache,0.3863898236,2.9819707709,-0.4052274614,https://salsa.debian.org/ruby-team/ruby-mustache, https://github.com/defunkt/mustache,4729.4908680556,23,58,1 +ruby-mysql2,0.3134512975,1.4731032493,-0.1330082155,https://salsa.debian.org/ruby-team/ruby-mysql2, https://github.com/brianmario/mysql2,4877.8413194445,60,107,4 +ruby-net-ldap,0.247373085,1.9390382482,-0.2927112522,https://salsa.debian.org/ruby-team/ruby-net-ldap, https://github.com/ruby-ldap/ruby-net-ldap.git,5396.7690856482,19,114,0 +ruby-net-sftp,0.512822573,2.6427692706,-0.1200757583,https://salsa.debian.org/ruby-team/ruby-net-sftp, https://github.com/net-ssh/net-sftp/issues/new,2746.3319791667,2,17,0 +ruby-net-ssh,0.3423712483,1.5708505632,-0.0962002825,https://salsa.debian.org/ruby-team/ruby-net-ssh, https://github.com/net-ssh/net-ssh/issues/new,2746.3319791667,2,17,0 +ruby-net-ssh-gateway,0.0949247841,2.4061879488,-0.3883582933,https://salsa.debian.org/ruby-team/ruby-net-ssh-gateway, https://github.com/net-ssh/net-ssh-gateway/issues/new,2746.3319791667,2,17,0 +ruby-netrc,0.6689404268,3.5600163117,-0.1237597689,https://salsa.debian.org/ruby-team/ruby-netrc, https://github.com/heroku/netrc,3633.5661342593,0,30,0 +ruby-nio4r,0.406565147,3.3402523717,-0.3509246257,https://salsa.debian.org/ruby-team/ruby-nio4r, https://github.com/socketry/nio4r,5508.9239699074,25,41,8 +ruby-nokogiri,0.0984970577,0.7468154749,-0.1063244283,https://salsa.debian.org/ruby-team/ruby-nokogiri, https://github.com/sparklemotion/nokogiri/issues/new,2746.3319791667,2,17,0 +ruby-nokogumbo,0.0754524159,3.1770090074,-0.7520177345,https://salsa.debian.org/ruby-team/ruby-nokogumbo, https://github.com/rubys/nokogumbo,3061.6749537037,9,20,1 +ruby-ntlm,-0.0624150923,2.5862392951,-0.7205122229,https://salsa.debian.org/ruby-team/ruby-ntlm, https://github.com/winrb/rubyntlm/issues/new,2746.3319791667,2,17,0 +ruby-oauth,0.0832778896,2.8453147176,-0.5926012173,https://salsa.debian.org/ruby-team/ruby-oauth, https://github.com/oauth-xx/oauth-ruby,5341.0796643519,47,77,3 +ruby-oauth2,-0.165607622,2.3195911932,-0.9005135088,https://salsa.debian.org/ruby-team/ruby-oauth2, https://github.com/intridea/oauth2,4856.2432986111,41,112,2 +ruby-oily-png,0.1453183816,3.1507405338,-0.7131154739,https://salsa.debian.org/ruby-team/ruby-oily-png, https://github.com/wvanbergen/oily_png/issues/new,2746.3319791667,2,17,0 +ruby-oj,0.2009601344,1.5648205522,-0.1380338639,https://salsa.debian.org/ruby-team/ruby-oj, https://github.com/ohler55/oj/issues/new,2746.3319791667,2,17,0 +ruby-ole,-0.6621692167,1.4303576538,-1.3055179465,https://salsa.debian.org/ruby-team/ruby-ole, https://github.com/aquasync/ruby-ole/issues/new,2746.3319791667,2,17,0 +ruby-omniauth-cas3,-0.5952547028,1.8217576227,-1.2467001517,https://salsa.debian.org/ruby-team/ruby-omniauth-cas3, https://github.com/tduehr/omniauth-cas3,3904.2384027778,7,20,0 +ruby-omniauth-crowd,-0.5393910023,2.0196041023,-1.2327402235,https://salsa.debian.org/ruby-team/ruby-omniauth-crowd, https://github.com/robdimarco/omniauth_crowd,3405.9749189815,0,18,0 +ruby-omniauth-facebook,-0.4419806184,2.4241452718,-1.1810272218,https://salsa.debian.org/ruby-team/ruby-omniauth-facebook, https://github.com/simi/omniauth-facebook,4035.1388425926,21,43,0 +ruby-omniauth-github,-0.6432733622,1.9225985539,-1.2230466394,https://salsa.debian.org/ruby-team/ruby-omniauth-github,https://salsa.debian.org/ruby-team/ruby-omniauth-github,3158.4246296296,0,8,0 +ruby-omniauth-gitlab,-0.8634553119,1.3390999825,-1.29446321,https://salsa.debian.org/ruby-team/ruby-omniauth-gitlab, https://github.com/linchus/omniauth-gitlab/issues/new,2746.3319791667,2,17,0 +ruby-omniauth-openid,-2.3993574129,-0.1716426742,-2.9778348021,https://salsa.debian.org/ruby-team/ruby-omniauth-openid, https://github.com/intridea/omniauth-openid,4671.7113888889,3,19,0 +ruby-omniauth-saml,-0.5579531725,2.353187853,-1.2497308047,https://salsa.debian.org/ruby-team/ruby-omniauth-saml, https://github.com/PracticallyGreen/omniauth-saml.git,4118.1158217593,12,46,0 +ruby-open4,0.0907349731,2.6591042616,-0.4921712465,https://salsa.debian.org/ruby-team/ruby-open4, https://github.com/ahoward/open4,1740.4206597222,2,8,0 +ruby-openid-connect,-1.1502490607,2.0041817142,-2.12720173,https://salsa.debian.org/ruby-team/ruby-openid-connect, https://github.com/nov/openid_connect,4182.9791435185,0,17,0 +ruby-ox,-1.6650363012,1.1726716688,-2.4858064344,https://salsa.debian.org/ruby-team/ruby-ox, https://github.com/ohler55/ox.git,4590.9174421296,19,32,0 +ruby-packable,-3.0992250392,-0.7077744526,-3.6975414863,https://salsa.debian.org/ruby-team/ruby-packable, https://github.com/marcandre/packable/issues/new,2746.3319791667,2,17,0 +ruby-paint,0.0340746752,1.782920882,-0.2850565902,https://salsa.debian.org/ruby-team/ruby-paint, https://github.com/janlelis/paint.git,4285.910474537,4,14,0 +ruby-parallel,0.6193238415,3.5398365982,-0.3774990833,https://salsa.debian.org/ruby-team/ruby-parallel, https://github.com/grosser/parallel/issues/new,2746.3319791667,2,17,0 +ruby-paranoia,-0.1012866416,3.7176288674,-1.2611069956,https://salsa.debian.org/ruby-team/ruby-paranoia, https://github.com/rubysherpas/paranoia/issues/new,2746.3319791667,2,17,0 +ruby-parser,-0.2008414789,1.500579567,-0.6200732147,https://salsa.debian.org/ruby-team/ruby-parser, https://github.com/seattlerb/ruby_parser.git,5671.9061921296,0,3,0 +ruby-pathname2,-0.9624861378,1.7646456748,-1.5703348288,https://salsa.debian.org/ruby-team/ruby-pathname2, https://github.com/djberg96/pathname2,4825.4280902778,0,6,0 +ruby-pdf-core,0.4904301487,3.0385774309,-0.1720936555,https://salsa.debian.org/ruby-team/ruby-pdf-core, https://github.com/prawnpdf/pdf-core,3635.7233912037,6,16,0 +ruby-pdf-reader,0.5615735066,2.9676531602,-0.1143510479,https://salsa.debian.org/ruby-team/ruby-pdf-reader, https://github.com/yob/pdf-reader,5741.4093981482,14,55,0 +ruby-pgplot,-2.6363964332,-2.1680994385,-2.777770353,https://salsa.debian.org/ruby-team/ruby-pgplot, https://github.com/masa16/ruby-pgplot,1430.3931597222,0,3,0 +ruby-pkg-config,0.3988956635,1.8385888168,-0.0542821557,https://salsa.debian.org/ruby-team/ruby-pkg-config, https://github.com/ruby-gnome/pkg-config/issues/new,2746.3319791667,2,17,0 +ruby-posix-spawn,0.1309262243,1.6920070582,-0.2475689059,https://salsa.debian.org/ruby-team/ruby-posix-spawn, https://github.com/rtomayko/posix-spawn,3425.5233101852,3,31,0 +ruby-powerpack,-0.1934084944,2.1339641007,-0.895456645,https://salsa.debian.org/ruby-team/ruby-powerpack, https://github.com/bbatsov/powerpack.git,2684.7776041667,4,14,0 +ruby-prawn,0.3390252645,2.7175574892,-0.1970880192,https://salsa.debian.org/ruby-team/ruby-prawn, https://github.com/prawnpdf/prawn,5724.9282986111,63,142,0 +ruby-premailer,-0.5173304375,2.1881663412,-1.1678917683,https://salsa.debian.org/ruby-team/ruby-premailer, https://github.com/premailer/premailer,5001.0799884259,26,100,0 +ruby-prof,-0.1949107514,1.3326720344,-0.8407334944,https://salsa.debian.org/ruby-team/ruby-prof, https://github.com/ruby-prof/ruby-prof,5272.258287037,11,69,0 +ruby-progressbar,0.8495085041,3.8284313345,-0.1583697084,https://salsa.debian.org/ruby-team/ruby-progressbar, https://github.com/jfelchner/ruby-progressbar/issues/new,2746.3319791667,2,17,0 +ruby-psych,0.1356905572,2.4813899471,-0.6287647557,https://salsa.debian.org/ruby-team/ruby-psych, https://github.com/ruby/psych/issues/new,2746.3319791667,2,17,0 +ruby-pundit,-0.8182828925,2.7881910452,-1.7878790239,https://salsa.debian.org/ruby-team/ruby-pundit, https://github.com/varvet/pundit,3993.9621990741,28,115,2 +ruby-puppet-syntax,-1.4274929514,0.597721473,-2.0050274993,https://salsa.debian.org/ruby-team/ruby-puppet-syntax, https://github.com/voxpupuli/puppet-syntax/issues/new,2746.3319791667,2,17,0 +ruby-puppetlabs-spec-helper,-1.7074456885,0.8017468129,-2.3846811973,https://salsa.debian.org/ruby-team/ruby-puppetlabs-spec-helper, https://github.com/puppetlabs/puppetlabs_spec_helper/issues/new,2746.3319791667,2,17,0 +ruby-rabl,-0.3953508068,1.9298153967,-1.1237384663,https://salsa.debian.org/ruby-team/ruby-rabl, https://github.com/nesquena/rabl,4283.3594907407,15,107,3 +ruby-rabl-rails,-0.911642608,0.5957511596,-1.2777176183,https://salsa.debian.org/ruby-team/ruby-rabl-rails, https://github.com/ccocchi/rabl-rails/issues/new,2746.3319791667,2,17,0 +ruby-rack,0.5237066371,1.7902869998,0.0263794792,https://salsa.debian.org/ruby-team/ruby-rack, https://github.com/rack/rack,5772.4169444445,210,362,9 +ruby-rack-cors,-0.412726661,2.4616028734,-1.1580055428,https://salsa.debian.org/ruby-team/ruby-rack-cors, https://github.com/cyu/rack-cors,4892.2220601852,37,39,0 +ruby-rack-google-analytics,-2.1861215386,0.6392727132,-2.9350136773,https://salsa.debian.org/ruby-team/ruby-rack-google-analytics, https://github.com/kangguru/rack-google-analytics,1720.5543634259,2,20,0 +ruby-rack-oauth2,-0.4998111729,2.3524970457,-1.2089369245,https://salsa.debian.org/ruby-team/ruby-rack-oauth2, https://github.com/nov/rack-oauth2/issues/new,2746.3319791667,2,17,0 +ruby-rack-test,0.1859803919,2.3863075108,-0.2515547357,https://salsa.debian.org/ruby-team/ruby-rack-test, https://github.com/rack/rack-test/issues/new,2746.3319791667,2,17,0 +ruby-rails-assets-emojione,0.1303382524,4.0196284221,-1.0691985416,https://salsa.debian.org/ruby-team/ruby-rails-assets-emojione, https://github.com/Ranks/emojione,1788.2746759259,10,68,0 +ruby-rails-assets-highlightjs,-1.776057653,0.676887867,-2.5692038823,https://salsa.debian.org/ruby-team/ruby-rails-assets-highlightjs, https://github.com/components/highlightjs,2389.9739467593,1,13,0 +ruby-rails-assets-jquery,-1.1776466674,1.6689057961,-1.9547502524,https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery, https://github.com/jquery/jquery.git,5765.4037384259,280,64,0 +ruby-rails-assets-jquery-fullscreen-plugin,-0.3069663717,3.425973806,-1.5023904978,https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery-fullscreen-plugin, https://github.com/private-face/jquery.fullscreen,928.6241898148,0,10,3 +ruby-rails-assets-markdown-it,-1.3049827868,1.4248311289,-2.063141882,https://salsa.debian.org/ruby-team/ruby-rails-assets-markdown-it, https://github.com/markdown-it/markdown-it,3.7407291667,40,47,0 +ruby-rails-assets-perfect-scrollbar,-0.374351451,3.3651153691,-1.6715488622,https://salsa.debian.org/ruby-team/ruby-rails-assets-perfect-scrollbar, https://github.com/mdbootstrap/perfect-scrollbar,4.9333564815,1,3,0 +ruby-rails-assets-punycode,0.5843909394,4.0464162194,-0.4662308176,https://salsa.debian.org/ruby-team/ruby-rails-assets-punycode, https://github.com/bestiejs/punycode.js,4371.2037384259,18,3,0 +ruby-rails-deprecated-sanitizer,0.511323457,3.2709347629,-0.2232233125,https://salsa.debian.org/ruby-team/ruby-rails-deprecated-sanitizer, https://github.com/rails/rails-deprecated_sanitizer/issues/new,2746.3319791667,2,17,0 +ruby-rails-dom-testing,1.1395257959,2.3186509997,0.452605243,https://salsa.debian.org/ruby-team/ruby-rails-dom-testing, https://github.com/rails/rails-dom-testing,3596.7865625,8,32,0 +ruby-rails-html-sanitizer,0.0035830645,1.4381559694,-0.2871912749,https://salsa.debian.org/ruby-team/ruby-rails-html-sanitizer, https://github.com/rails/rails-html-sanitizer,3530.5188078704,6,25,0 +ruby-rails-i18n,-0.8873907002,1.4792293029,-1.4400451677,https://salsa.debian.org/ruby-team/ruby-rails-i18n, https://github.com/svenfuchs/rails-i18n/issues/new,2746.3319791667,2,17,0 +ruby-rainbow,-0.0554541407,2.1809136318,-0.4874876801,https://salsa.debian.org/ruby-team/ruby-rainbow, https://github.com/sickill/rainbow/issues/new,2746.3319791667,2,17,0 +ruby-rbnacl,-0.5101798059,1.8184409822,-1.1442616342,https://salsa.debian.org/ruby-team/ruby-rbnacl, https://github.com/RubyCrypto/rbnacl,3765.2138425926,11,37,2 +ruby-rbpdf,0.3170747692,3.3087733487,-0.4838111804,https://salsa.debian.org/ruby-team/ruby-rbpdf, https://github.com/naitoh/rbpdf/issues/new,2746.3319791667,2,17,0 +ruby-rchardet,0.8898007893,4.3708723994,-0.1239109738,https://salsa.debian.org/ruby-team/ruby-rchardet, https://github.com/jmhodges/rchardet,5157.8658101852,2,16,0 +ruby-rdiscount,0.5400773203,2.7137511021,-0.1397503416,https://salsa.debian.org/ruby-team/ruby-rdiscount, https://github.com/rtomayko/rdiscount,5495.3965277778,14,23,3 +ruby-re2,-0.3975240745,2.0675577643,-1.080838045,https://salsa.debian.org/ruby-team/ruby-re2, https://github.com/mudge/re2.git,4891.9840277778,5,6,0 +ruby-recaptcha,-0.7227524813,1.5115844498,-1.1563133628,https://salsa.debian.org/ruby-team/ruby-recaptcha, https://github.com/ambethia/recaptcha,5167.5063425926,32,133,0 +ruby-recursive-open-struct,-0.9586694143,1.8658984093,-1.696474562,https://salsa.debian.org/ruby-team/ruby-recursive-open-struct, https://github.com/aetherknight/recursive-open-struct/issues/new,2746.3319791667,2,17,0 +ruby-redcarpet,0.0453332853,0.8616945524,-0.2027621969,https://salsa.debian.org/ruby-team/ruby-redcarpet, https://github.com/vmg/redcarpet/issues/new,2746.3319791667,2,17,0 +ruby-redcloth,0.3958422452,2.2802681181,-0.2616585591,https://salsa.debian.org/ruby-team/ruby-redcloth, https://github.com/jgarber/redcloth.git,5745.4538541667,8,27,0 +ruby-redis,-0.1845294704,1.6465311996,-0.5725594934,https://salsa.debian.org/ruby-team/ruby-redis, https://github.com/redis/redis-rb/issues/new,2746.3319791667,2,17,0 +ruby-redis-actionpack,-0.8365151572,1.4579951576,-1.2916857062,https://salsa.debian.org/ruby-team/ruby-redis-actionpack, https://github.com/redis-store/redis-actionpack,3755.356412037,8,18,0 +ruby-redis-namespace,-0.5136949026,1.5651978248,-1.007887329,https://salsa.debian.org/ruby-team/ruby-redis-namespace, https://github.com/resque/redis-namespace,5080.3240046296,46,64,0 +ruby-redis-store,-0.6950288644,1.4703272952,-1.2528855542,https://salsa.debian.org/ruby-team/ruby-redis-store, https://github.com/redis-store/redis-store,5265.7961921296,10,85,1 +ruby-responders,-0.153308356,2.5028943454,-0.9504553819,https://salsa.debian.org/ruby-team/ruby-responders, https://github.com/heartcombo/responders/issues/new,2746.3319791667,2,17,0 +ruby-rest-client,0.862100138,3.0603104836,0.0712120984,https://salsa.debian.org/ruby-team/ruby-rest-client, https://github.com/rest-client/rest-client/issues/new,2746.3319791667,2,17,0 +ruby-retryable,-0.6091419167,3.2470945934,-1.7468533882,https://salsa.debian.org/ruby-team/ruby-retryable, https://github.com/nfedyashev/retryable/issues/new,2746.3319791667,2,17,0 +ruby-riddle,-0.2213568731,2.8190792528,-1.302253646,https://salsa.debian.org/ruby-team/ruby-riddle, https://github.com/pat/riddle/issues/new,2746.3319791667,2,17,0 +ruby-riot,-2.0988502373,0.6683400663,-2.9186141778,https://salsa.debian.org/ruby-team/ruby-riot, https://github.com/thumblemonks/riot.git,3321.7834953704,13,21,0 +ruby-rmagick,1.1027033423,3.178542172,0.1881853373,https://salsa.debian.org/ruby-team/ruby-rmagick, https://github.com/rmagick/rmagick/issues/new,2746.3319791667,2,17,0 +ruby-roadie,-0.1961366614,1.239631746,-0.5682337388,https://salsa.debian.org/ruby-team/ruby-roadie, https://github.com/Mange/roadie/issues/new,2746.3319791667,2,17,0 +ruby-roadie-rails,0.2474719144,3.1899002451,-0.5277315026,https://salsa.debian.org/ruby-team/ruby-roadie-rails, https://github.com/Mange/roadie-rails/issues/new,2746.3319791667,2,17,0 +ruby-ronn,0.0051973803,1.3529280372,-0.5133229589,https://salsa.debian.org/ruby-team/ruby-ronn, https://github.com/apjanke/ronn-ng,5091.8833101852,3,20,4 +ruby-roxml,-2.5839472744,-1.4732125607,-2.7933760266,https://salsa.debian.org/ruby-team/ruby-roxml, https://github.com/Empact/roxml/issues/new,2746.3319791667,2,17,0 +ruby-rr,-1.121241691,1.6540401602,-1.8988612605,https://salsa.debian.org/ruby-team/ruby-rr, https://github.com/rr/rr/issues/new,2746.3319791667,2,17,0 +ruby-rspec-its,0.3171416756,3.0292623369,-0.3872674482,https://salsa.debian.org/ruby-team/ruby-rspec-its, https://github.com/rspec/rspec-its/issues/new,2746.3319791667,2,17,0 +ruby-rspec-puppet,-1.5750551856,-0.1277944687,-2.1032613755,https://salsa.debian.org/ruby-team/ruby-rspec-puppet, https://github.com/rodjek/rspec-puppet/issues/new,2746.3319791667,2,17,0 +ruby-rspec-rails,-1.5844038432,-0.1606831019,-1.9538760382,https://salsa.debian.org/ruby-team/ruby-rspec-rails, https://github.com/rspec/rspec-rails/issues/new,2746.3319791667,2,17,0 +ruby-rspec-retry,-2.3142070783,-0.3616680713,-2.7725056817,https://salsa.debian.org/ruby-team/ruby-rspec-retry, https://github.com/NoRedInk/rspec-retry/issues/new,2746.3319791667,2,17,0 +ruby-ruby2ruby,-1.2632583004,0.5122103892,-1.7609454819,https://salsa.debian.org/ruby-team/ruby-ruby2ruby, https://github.com/seattlerb/ruby2ruby.git,5438.8588773148,0,3,0 +ruby-rubymail,0.7637470574,3.3946799515,-0.0798110938,https://salsa.debian.org/ruby-team/ruby-rubymail, https://github.com/terceiro/rmail/issues/new,2746.3319791667,2,17,0 +ruby-rufus-scheduler,-0.6929292609,1.2502062176,-1.0955436307,https://salsa.debian.org/ruby-team/ruby-rufus-scheduler, https://github.com/jmettraux/rufus-scheduler/issues/new,2746.3319791667,2,17,0 +ruby-rugged,0.1738858881,1.9747468959,-0.302862283,https://salsa.debian.org/ruby-team/ruby-rugged, https://github.com/libgit2/rugged/issues/new,2746.3319791667,2,17,0 +ruby-safe-yaml,0.4923372454,2.4380212188,-0.0762986291,https://salsa.debian.org/ruby-team/ruby-safe-yaml, https://github.com/dtao/safe_yaml/issues/new,2746.3319791667,2,17,0 +ruby-saml,-0.6292373352,1.4888690533,-1.2152677939,https://salsa.debian.org/ruby-team/ruby-saml, https://github.com/onelogin/ruby-saml/issues/new,2746.3319791667,2,17,0 +ruby-sanitize,0.1142111133,2.7598362726,-0.6767036115,https://salsa.debian.org/ruby-team/ruby-sanitize, https://github.com/rgrove/sanitize/issues/new,2746.3319791667,2,17,0 +ruby-sass-rails,0.1295459675,2.3430805193,-0.2869628621,https://salsa.debian.org/ruby-team/ruby-sass-rails, https://github.com/rails/sass-rails,3032.8716550926,10,70,2 +ruby-sassc-rails,-1.8895893476,0.6543031358,-2.5458693661,https://salsa.debian.org/ruby-team/ruby-sassc-rails, https://github.com/sass/sassc-rails/issues/new,2746.3319791667,2,17,0 +ruby-sdoc,0.2066194576,2.5352625368,-0.2819990512,https://salsa.debian.org/ruby-team/ruby-sdoc, https://github.com/zzak/sdoc.git,5126.572337963,22,57,0 +ruby-seamless-database-pool,-2.1643107675,0.2260298985,-2.6118947494,https://salsa.debian.org/ruby-team/ruby-seamless-database-pool, https://github.com/bdurand/seamless_database_pool/issues/new,2746.3319791667,2,17,0 +ruby-seed-fu,-0.3406843156,2.6986297961,-1.1723771613,https://salsa.debian.org/ruby-team/ruby-seed-fu, https://github.com/mbleigh/seed-fu,3639.382974537,1,34,0 +ruby-select2-rails,0.0255233967,4.0170630036,-1.0829307262,https://salsa.debian.org/ruby-team/ruby-select2-rails, https://github.com/argerim/select2-rails,3178.7430787037,3,45,0 +ruby-selenium-webdriver,-0.2089568629,1.5489405973,-0.5373754091,https://salsa.debian.org/ruby-team/ruby-selenium-webdriver, https://github.com/SeleniumHQ/selenium/issues/new,2746.3319791667,2,17,0 +ruby-semantic-puppet,-0.6229814617,0.8563700058,-0.9765203623,https://salsa.debian.org/puppet-team/ruby-semantic-puppet, https://github.com/puppetlabs/semantic_puppet/issues/new,2746.3319791667,2,17,0 +ruby-sequel,0.0215932711,1.5395623984,-0.3658850495,https://salsa.debian.org/ruby-team/ruby-sequel, https://github.com/jeremyevans/sequel,5789.4804861111,84,308,0 +ruby-sequel-pg,0.6191087607,3.8061270046,-0.2981530837,https://salsa.debian.org/ruby-team/ruby-sequel-pg, https://github.com/jeremyevans/sequel_pg.git,4773.6626388889,4,7,0 +ruby-serverengine,-4.3407026366,-0.6928708993,-5.3343615567,https://salsa.debian.org/ruby-team/ruby-serverengine, https://github.com/treasure-data/serverengine.git,3572.2404166667,4,25,0 +ruby-sexp-processor,0.2542094629,3.0388178614,-0.4829633288,https://salsa.debian.org/ruby-team/ruby-sexp-processor, https://github.com/seattlerb/sexp_processor,5341.4177430556,0,2,0 +ruby-shadow,0.216126739,1.4890131453,-0.1154816196,https://salsa.debian.org/ruby-team/ruby-shadow, https://github.com/apalmblad/ruby-shadow/issues/new,2746.3319791667,2,17,0 +ruby-sham-rack,-2.1608189217,0.0182643744,-2.8608854622,https://salsa.debian.org/ruby-team/ruby-sham-rack, https://github.com/mdub/sham_rack,3267.7854166667,2,5,0 +ruby-shoulda-context,-1.269316587,0.6484541417,-1.677602334,https://salsa.debian.org/ruby-team/ruby-shoulda-context, https://github.com/thoughtbot/shoulda-context,5722.016412037,23,54,0 +ruby-shoulda-matchers,-0.7062372137,2.3356030819,-1.5623614359,https://salsa.debian.org/ruby-team/ruby-shoulda-matchers, https://github.com/thoughtbot/shoulda-matchers,5766.0040972222,222,122,3 +ruby-sidekiq-cron,-0.460965443,1.8955765867,-1.1417604918,https://salsa.debian.org/ruby-team/ruby-sidekiq-cron, https://github.com/sidekiq-cron/sidekiq-cron,3762.2361805556,37,72,0 +ruby-signet,-0.6999934393,1.7242691265,-1.2316883956,https://salsa.debian.org/ruby-team/ruby-signet, https://github.com/googleapis/signet,4807.4255671296,28,44,4 +ruby-simplecov,-0.3160772042,2.2007214999,-1.0026344512,https://salsa.debian.org/ruby-team/ruby-simplecov, https://github.com/simplecov-ruby/simplecov/issues/new,2746.3319791667,2,17,0 +ruby-sinatra,0.3867492716,1.8300987882,-0.1759543833,https://salsa.debian.org/ruby-team/ruby-sinatra, https://github.com/sinatra/sinatra.git,5774.2084027778,157,401,0 +ruby-slack-notifier,-0.2300777475,2.6813920387,-0.9614495819,https://salsa.debian.org/ruby-team/ruby-slack-notifier, https://github.com/slack-notifier/slack-notifier.git,2800.9713773148,7,25,0 +ruby-slim,-0.3918087088,1.09130624,-0.8384953408,https://salsa.debian.org/ruby-team/ruby-slim, http://github.com/slim-template/slim//issues/new,2746.3319791667,2,17,0 +ruby-soap4r,0.4756744398,2.1003291699,-0.0796726268,https://salsa.debian.org/ruby-team/ruby-soap4r, https://github.com/noeticpenguin/soap4r-noeticpenguin/issues/new,2746.3319791667,2,17,0 +ruby-solve,-1.8731536972,0.3722546164,-2.3421355548,https://salsa.debian.org/ruby-team/ruby-solve, https://github.com/berkshelf/solve,3205.9559722222,4,24,0 +ruby-spring,0.1889684319,2.2582459747,-0.2755388783,https://salsa.debian.org/ruby-team/ruby-spring, https://github.com/rails/spring/issues/new,2746.3319791667,2,17,0 +ruby-sprockets,0.2127696789,2.1502629674,-0.2372190965,https://salsa.debian.org/ruby-team/ruby-sprockets, https://github.com/rails/sprockets.git,3278.0454050926,50,229,0 +ruby-sprockets-rails,0.6272839018,2.9396554619,-0.1070486043,https://salsa.debian.org/ruby-team/ruby-sprockets-rails, https://github.com/rails/sprockets-rails/issues/new,2746.3319791667,2,17,0 +ruby-sshkit,-0.0935961701,2.620446562,-0.9133999597,https://salsa.debian.org/ruby-team/ruby-sshkit, https://github.com/capistrano/sshkit.git,3961.9651041667,23,112,0 +ruby-state-machines,-0.8627275067,0.7380791575,-1.1716968854,https://salsa.debian.org/ruby-team/ruby-state-machines, https://github.com/state-machines/state_machines,3342.3490509259,10,20,0 +ruby-state-machines-activemodel,-0.0845626363,3.7594610118,-1.0848862736,https://salsa.debian.org/ruby-team/ruby-state-machines-activemodel, https://github.com/state-machines/state_machines-activemodel,3348.8396643519,5,12,0 +ruby-state-machines-activerecord,-0.4280046002,2.3113262709,-1.1498416677,https://salsa.debian.org/ruby-team/ruby-state-machines-activerecord, https://github.com/state-machines/state_machines-activerecord,3097.0762962963,11,17,0 +ruby-stomp,-0.0622865151,2.2785748082,-0.5399267706,https://salsa.debian.org/ruby-team/ruby-stomp, https://github.com/stompgem/stomp.git,4485.6743055556,3,49,0 +ruby-svg-graph,-0.3606208872,1.999901842,-1.0364827172,https://salsa.debian.org/ruby-team/ruby-svg-graph, https://github.com/lumean/svg-graph2,5000.5990393519,3,24,0 +ruby-task-list,-0.7972452731,1.5304821718,-1.2730429771,https://salsa.debian.org/ruby-team/ruby-task-list, https://github.com/deckar01/task_list.git,3500.9144675926,4,16,0 +ruby-test-declarative,-3.1861402959,-0.6802948039,-3.7322816142,https://salsa.debian.org/ruby-team/ruby-test-declarative, https://github.com/svenfuchs/test_declarative/issues/new,2746.3319791667,2,17,0 +ruby-test-unit,0.5083159182,3.1187784557,-0.0204072698,https://salsa.debian.org/ruby-team/ruby-test-unit, https://github.com/test-unit/test-unit/issues/new,2746.3319791667,2,17,0 +ruby-text,0.3951935457,2.8287836535,-0.1391551665,https://salsa.debian.org/ruby-team/ruby-text, https://github.com/threedaymonk/text,2533.6334375,0,20,0 +ruby-thor,0.4898388928,3.0323114244,-0.1082643553,https://salsa.debian.org/ruby-team/ruby-thor, https://github.com/erikhuda/thor/issues/new,2746.3319791667,2,17,0 +ruby-thread-safe,0.7899153314,3.4062016312,-0.0364056562,https://salsa.debian.org/ruby-team/ruby-thread-safe, https://github.com/ruby-concurrency/thread_safe,1914.5871759259,2,18,1 +ruby-timecop,-1.6249475535,-0.136572147,-1.9770285904,https://salsa.debian.org/ruby-team/ruby-timecop, https://github.com/travisjeffery/timecop/issues/new,2746.3319791667,2,17,0 +ruby-tins,-0.0184774495,2.3442756527,-0.4994282993,https://salsa.debian.org/ruby-team/ruby-tins, https://github.com/flori/tins.git,5186.4477893519,2,5,0 +ruby-toml,0.5450450103,3.0277601672,-0.1659943286,https://salsa.debian.org/ruby-team/ruby-toml, https://github.com/jm/toml,3202.4776736111,3,24,1 +ruby-toml-rb,-1.0965997307,1.7054562066,-1.7254826934,https://salsa.debian.org/ruby-team/ruby-toml-rb, https://github.com/emancu/toml-rb.git,3791.6442361111,5,30,0 +ruby-treetop,0.2325856151,1.7246039787,-0.1675338127,https://salsa.debian.org/ruby-team/ruby-treetop, https://github.com/cjheath/treetop/issues/new,2746.3319791667,2,17,0 +ruby-truncato,-0.892450421,1.0747849229,-1.3078720915,https://salsa.debian.org/ruby-team/ruby-truncato, https://github.com/jorgemanrubia/truncato,3523.9293634259,2,13,0 +ruby-twitter,-0.6682623901,1.3259076585,-1.147074381,https://salsa.debian.org/ruby-team/ruby-twitter, https://github.com/sferik/twitter,5668.765474537,66,150,0 +ruby-twitter-stream,-0.4992291188,2.3271486963,-1.2824567535,https://salsa.debian.org/ruby-team/ruby-twitter-stream, http://github.com/voloko/twitter-stream/issues/new,2746.3319791667,2,17,0 +ruby-typed-array,-0.7061785139,1.6402446003,-1.1445021258,https://salsa.debian.org/ruby-team/ruby-typed-array, https://github.com/yaauie/typed-array,63.5884953704,0,2,0 +ruby-typhoeus,-0.1128851981,2.3506320669,-0.7362615291,https://salsa.debian.org/ruby-team/ruby-typhoeus, https://github.com/typhoeus/typhoeus/issues/new,2746.3319791667,2,17,0 +ruby-tzinfo,-0.1835463152,-0.1043691104,-0.2043071695,https://salsa.debian.org/ruby-team/ruby-tzinfo, https://tzinfo.github.io/issues/new,2746.3319791667,2,17,0 +ruby-unf-ext,0.5249786091,2.442343707,-0.0572331883,https://salsa.debian.org/ruby-team/ruby-unf-ext, https://github.com/knu/ruby-unf_ext,4837.9721180556,5,11,0 +ruby-url-safe-base64,-1.0899769047,2.7888654476,-2.2202803102,https://salsa.debian.org/ruby-team/ruby-url-safe-base64, https://github.com/joenoon/url_safe_base64,1866.2862384259,0,2,0 +ruby-uuid,-0.141865508,3.1821978286,-1.059582524,https://salsa.debian.org/ruby-team/ruby-uuid, https://github.com/assaf/uuid,4250.514537037,5,18,0 +ruby-uuidtools,0.0082132863,1.7860368385,-0.3798291083,https://salsa.debian.org/ruby-team/ruby-uuidtools, https://github.com/sporkmonger/uuidtools,4302.5516087963,4,20,0 +ruby-validate-email,-1.5781922437,0.7480299974,-2.1834264358,https://salsa.debian.org/ruby-team/ruby-validate-email, https://github.com/perfectline/validates_email.git,4596.2118865741,2,8,0 +ruby-validate-url,-1.5783095032,0.6947261226,-2.1729142188,https://salsa.debian.org/ruby-team/ruby-validate-url, https://github.com/perfectline/validates_url.git,4598.7266782407,25,34,0 +ruby-validates-hostname,-1.2415295122,1.2211165969,-1.7510919236,https://salsa.debian.org/ruby-team/ruby-validates-hostname, https://github.com/KimNorgaard/validates_hostname,4293.8459722222,0,12,0 +ruby-varia-model,-1.8678804974,-0.0930481582,-2.2356906543,https://salsa.debian.org/ruby-team/ruby-varia-model, https://github.com/berkshelf/varia_model/issues/new,2746.3319791667,2,17,0 +ruby-vcr,-1.8354081732,0.3458876474,-2.4299770711,https://salsa.debian.org/ruby-team/ruby-vcr, https://github.com/vcr/vcr,5026.1477083333,86,97,0 +ruby-version-sorter,-0.8955692286,1.3134248845,-1.3333811894,https://salsa.debian.org/ruby-team/ruby-version-sorter, https://github.com/github/version_sorter,5346.8123032407,4,15,0 +ruby-versionomy,-1.9875633378,1.0365445382,-2.7207117207,https://salsa.debian.org/ruby-team/ruby-versionomy, https://github.com/dazuma/versionomy/issues/new,2746.3319791667,2,17,0 +ruby-vips,-1.9788636547,0.722079682,-2.7089131021,https://salsa.debian.org/ruby-team/ruby-vips, https://github.com/libvips/ruby-vips.git,4866.200162037,7,24,0 +ruby-virtus,-0.4114183441,2.2006134225,-1.0661313159,https://salsa.debian.org/ruby-team/ruby-virtus, https://github.com/solnic/virtus.git,3718.9197800926,2,63,0 +ruby-voight-kampff,-3.6122138418,-1.1841868732,-4.2747449932,https://salsa.debian.org/ruby-team/ruby-voight-kampff, https://github.com/biola/Voight-Kampff/issues/new,2746.3319791667,2,17,0 +ruby-warden,-0.4834536563,2.1885033452,-1.145927434,https://salsa.debian.org/ruby-team/ruby-warden, https://github.com/hassox/warden,4887.5323842593,10,50,1 +ruby-web-console,0.1404315345,2.5211217633,-0.3233556237,https://salsa.debian.org/ruby-team/ruby-web-console, https://github.com/rails/web-console/issues/new,2746.3319791667,2,17,0 +ruby-webmock,-0.8722996031,1.4227793478,-1.5805653267,https://salsa.debian.org/ruby-team/ruby-webmock, https://github.com/bblimke/webmock/issues/new,2746.3319791667,2,17,0 +ruby-websocket,-2.0302234955,1.0763961168,-2.8933706474,https://salsa.debian.org/ruby-team/ruby-websocket, https://github.com/imanel/websocket-ruby.git,4172.1994328704,3,14,0 +ruby-websocket-driver,0.0321691446,2.3260276354,-0.4401656105,https://salsa.debian.org/ruby-team/ruby-websocket-driver, https://github.com/faye/websocket-driver-ruby,4307.7232523148,5,15,0 +ruby-xml-simple,0.2810527115,2.941255221,-0.5650827802,https://salsa.debian.org/ruby-team/ruby-xml-simple, https://github.com/maik/xml-simple,3655.0192476852,4,12,0 +ruby-xpath,0.2253924511,2.6354082514,-0.4532834945,https://salsa.debian.org/ruby-team/ruby-xpath, https://github.com/teamcapybara/xpath.git,4699.0999421296,4,29,0 +ruby-yajl,0.1342868737,1.2952090225,-0.1984486272,https://salsa.debian.org/ruby-team/ruby-yajl, https://github.com/brianmario/yajl-ruby,4761.9604282407,20,41,0 +ruby-yaml-db,-1.6914754372,0.8448802104,-2.2259427821,https://salsa.debian.org/ruby-team/ruby-yaml-db, https://github.com/yamldb/yaml_db,4943.5546759259,10,17,0 +ruby-yell,-2.2945770851,0.1365084458,-2.7815318187,https://salsa.debian.org/ruby-team/ruby-yell, https://github.com/rudionrails/yell,3852.7088541667,5,10,0 +rumur,-3.5360734663,-0.8290791088,-4.2689394833,https://github.com/Smattr/rumur.git,https://github.com/Smattr/rumur.git,3378.9262037037,0,5,0 +runc,0.3386419849,1.1345674605,-0.0094278908,https://salsa.debian.org/go-team/packages/runc, https://github.com/opencontainers/runc,3584.075162037,58,458,4 +runescape,-0.4462683901,0.8123857937,-0.8651342143,https://salsa.debian.org/games-team/runescape, https://gitlab.com/coringao/runescape,910.2960648148,0,2,0 +rush,-0.0393184522,2.0539704256,-0.7902268624,https://salsa.debian.org/debian/rush, https://git.gnu.org.ua/rush.git,5571.48,1,2,0 +rygel,0.5947644605,1.3735405871,0.2154465518,https://salsa.debian.org/gnome-team/rygel, https://gitlab.gnome.org/GNOME/rygel.git,5651.7938425926,198,137,0 +s-nail,0.618878312,1.6019106539,0.1384062242,https://salsa.debian.org/debian/s-nail, https://git.sdaoden.eu/cgit/s-nail.git,5647.3652199074,2,2,0 +s3cmd,0.3969391587,1.3504276741,-0.0687453711,https://salsa.debian.org/debian/s3cmd, https://github.com/s3tools/s3cmd,5763.7318981482,34,199,4 +s3fs-fuse,-0.0915466169,1.8466339846,-0.5382120856,https://salsa.debian.org/debian/s3fs-fuse, https://github.com/s3fs-fuse/s3fs-fuse,5771.4053009259,55,80,0 +safe-rm,1.8433164832,4.307412751,0.7078668754,https://salsa.debian.org/debian/safe-rm, https://git.launchpad.net/safe-rm,5109.717962963,0,5,0 +safeclib,-1.4654192413,0.9863187261,-1.9189259518,https://github.com/kilobyte/safeclib/tree/debian,https://github.com/kilobyte/safeclib,3855.424849537,10,8,0 +safeeyes,0.1490158169,2.7053025273,-0.6300614573,https://salsa.debian.org/debian/safeeyes, https://github.com/slgobinath/SafeEyes.git,2228.7321180556,169,36,0 +sagetex,-0.1549904573,0.5108732423,-0.363447528,https://salsa.debian.org/tex-team/sagetex, https://github.com/dandrake/sagetex/issues/new,2746.3319791667,2,17,0 +salmon,-0.3649631387,1.5121758625,-0.9283685843,https://salsa.debian.org/med-team/salmon, https://github.com/COMBINE-lab/salmon/issues/new,2746.3319791667,2,17,0 +samizdat,-2.1436226321,0.0590823844,-2.8619607448,https://salsa.debian.org/ruby-team/samizdat, https://github.com/angdraug/samizdat,3433.2320138889,0,3,0 +samplv1,0.1318819979,2.3880742784,-0.4301804768,https://salsa.debian.org/multimedia-team/samplv1, https://github.com/rncbc/samplv1.git,4120.8180671296,1,15,0 +sandsifter,-0.8702992262,1.6152724713,-1.5907539971,https://salsa.debian.org/pkg-security-team/sandsifter, https://github.com/rigred/sandsifter,736.7519907407,4,12,0 +sasmodels,-0.5153470014,2.3276608099,-1.2961882845,https://salsa.debian.org/science-team/sasmodels, https://github.com/SasView/sasmodels.git,3421.8391666667,7,67,0 +sasview,-1.0627164618,0.2502972617,-1.4248935984,https://salsa.debian.org/science-team/sasview, https://github.com/SasView/sasview.git,5783.1973842593,20,119,0 +satpy,-3.4977996656,-2.5413467128,-3.7446152236,https://salsa.debian.org/debian-gis-team/satpy, https://github.com/pytroll/satpy,4929.6848958333,47,140,4 +sbt-launcher-interface,-0.3483656942,2.864042977,-1.185464619,https://salsa.debian.org/java-team/sbt-launcher-interface, https://github.com/sbt/launcher.git,4995.3282638889,11,32,0 +scala-mode-el,0.715851547,3.8262107246,-0.3984401218,https://salsa.debian.org/emacsen-team/scala-mode-el, https://github.com/hvesalai/emacs-scala-mode,3670.9045486111,14,21,1 +scalpel,1.9235574134,5.7889102705,0.6091390984,https://salsa.debian.org/pkg-security-team/scalpel, https://github.com/sleuthkit/scalpel.git,2828.8538888889,1,11,0 +scanlogd,1.0265172022,3.3179170915,-0.0529925024,https://salsa.debian.org/debian/scanlogd/, https://github.com/openwall/scanlogd.git,3573.3593287037,0,2,0 +scanmem,0.6709253947,3.403881947,-0.241299981,https://salsa.debian.org/debian/scanmem, https://github.com/scanmem/scanmem.git,5016.3078703704,17,24,0 +scap-security-guide,-0.4586239823,2.8085651591,-1.347001494,https://salsa.debian.org/pkg-security-team/scap-security-guide, https://github.com/ComplianceAsCode/content,4572.6881365741,65,276,3 +scap-workbench,-0.3629110649,2.6509329851,-1.2724650562,https://salsa.debian.org/debian/scap-workbench, https://github.com/OpenSCAP/scap-workbench.git,4660.2892824074,13,37,0 +scapy,0.8574558824,1.870596003,0.3040325575,https://salsa.debian.org/pkg-security-team/scapy, https://github.com/secdev/scapy/issues/new,2746.3319791667,2,17,0 +schism,0.2030503767,1.1666319026,-0.2400483232,https://salsa.debian.org/multimedia-team/schism, https://github.com/schismtracker/schismtracker,4666.6107291667,15,42,0 +schleuder,-2.0037849863,-1.6188547868,-2.2159017254,https://salsa.debian.org/ruby-team/schleuder, https://0xacab.org/schleuder/schleuder.git,3437.0275462963,3,26,0 +schroedinger-coordgenlibs,-0.6657659236,1.5707387755,-1.125402023,https://salsa.debian.org/science-team/schroedinger-coordgenlibs, https://github.com/schrodinger/coordgenlibs.git,2268.1054282408,12,9,0 +schroedinger-maeparser,-0.1240254936,2.1383222642,-0.7555796895,https://salsa.debian.org/debichem-team/schroedinger-maeparser, https://github.com/schrodinger/maeparser.git,2087.1343287037,12,14,0 +science.js,-1.5791662472,1.653426766,-2.4733135985,https://salsa.debian.org/js-team/science.js/, https://github.com/jasondavies/science.js.git,2725.1817592593,1,8,0 +scikit-learn,0.3177817234,0.8260492216,0.0289068471,https://salsa.debian.org/science-team/scikit-learn, https://github.com/scikit-learn/scikit-learn.git,5091.0399074074,2507,600,0 +scilab,0.9652025436,1.3450696202,0.6717442164,https://salsa.debian.org/science-team/scilab, https://gitlab.com/scilab/scilab.git,5757.2188541667,108,111,0 +scim,1.8800598007,2.6066941269,1.3618783859,https://github.com/leggewie-DM/scim,https://github.com/leggewie-DM/scim,3009.7372800926,4,5,0 +scim-anthy,0.002293794,1.4287101867,-0.6578723431,https://github.com/leggewie-DM/scim-anthy,https://github.com/leggewie-DM/scim-anthy,1414.2472685185,5,3,0 +scim-chewing,1.4542811691,3.3715479543,0.5061771978,https://salsa.debian.org/debian/scim-chewing, https://github.com/chewing/scim-chewing.git,2973.6130092593,0,11,0 +scim-pinyin,1.3124715757,3.3775777533,0.2280732409,https://salsa.debian.org/input-method-team/scim-pinyin, https://github.com/scim-im/scim-pinyin/issues/new,2746.3319791667,2,17,0 +scim-tables,0.9359530215,2.2487851526,0.2559891027,https://github.com/leggewie-DM/scim-tables,https://github.com/leggewie-DM/scim-tables,793.6947685185,3,3,0 +scipy,0.7454415825,2.1009901916,0.1400222558,https://salsa.debian.org/python-team/packages/scipy, https://github.com/scipy/scipy.git,5788.2724884259,799,787,0 +scons,0.2028074095,0.5617277674,-0.0081122297,https://salsa.debian.org/debian/scons, https://github.com/SCons/scons,5736.1515740741,26,162,5 +scour,0.2624032261,1.2894480488,-0.0279418889,https://salsa.debian.org/debian/scour, https://github.com/codedread/scour.git,2869.1347569445,6,14,0 +scram,0.0112378447,2.4451248274,-0.690432285,https://salsa.debian.org/science-team/scram, https://github.com/rakhimov/scram.git,1943.5289930556,2,6,0 +scrcpy,-0.0596273247,2.3700526091,-0.5833876176,https://salsa.debian.org/yangfl-guest/scrcpy, https://github.com/Genymobile/scrcpy,2194.2825462963,140,11,2 +screenfetch,0.8393718554,3.4206935722,0.0064658687,https://salsa.debian.org/debian/screenfetch, https://github.com/KittyKatt/screenFetch.git,4948.5768518519,38,182,0 +screengrab,0.1432641642,1.1078243645,-0.1380237462,https://salsa.debian.org/lxqt-team/screengrab, https://github.com/lxqt/screengrab.git,4829.5888194445,59,21,0 +screenkey,0.4953345403,2.2396084404,-0.2139454365,https://salsa.debian.org/georgesk/screenkey, https://gitlab.com/screenkey/screenkey/-/issues/new,2746.3319791667,2,17,0 +scrot,0.5207763404,1.4883547353,0.0924816727,https://salsa.debian.org/debian/scrot, https://github.com/resurrecting-open-source-projects/scrot,1711.9000347222,19,22,0 +scrypt,-0.3160075827,1.9170411595,-0.7532305313,https://salsa.debian.org/debian/scrypt, https://github.com/Tarsnap/scrypt.git,4121.4724652778,3,11,0 +sdate,-0.1644092081,1.9663758042,-0.7580677936,https://github.com/df7cb/sdate,https://github.com/df7cb/sdate,5170.3786689815,3,6,0 +sddm,2.4489335951,3.5734142611,1.7508412655,https://salsa.debian.org/qt-kde-team/3rdparty/sddm, https://github.com/sddm/sddm.git,3975.3783333333,142,78,0 +sddm-kcm,0.5688450757,3.057823567,-0.0269922831,https://salsa.debian.org/qt-kde-team/kde/sddm-kcm, https://invent.kde.org/plasma/sddm-kcm.git,3961.6219212963,8,53,0 +sdl-kitchensink,0.0968116831,3.4435113864,-0.6861718252,https://salsa.debian.org/debian/sdl-kitchensink, https://github.com/katajakasa/SDL_kitchensink,2883.83625,1,5,1 +seaborn,0.4015700703,1.4776368276,-0.0856172139,https://salsa.debian.org/science-team/seaborn, https://github.com/mwaskom/seaborn/issues/new,2746.3319791667,2,17,0 +seafile,0.3533376702,1.6105275429,-0.1577089343,https://salsa.debian.org/debian/seafile, https://github.com/haiwen/seafile.git,4133.8612847222,18,91,0 +seafile-client,0.1338523438,1.9632930734,-0.3569053548,https://salsa.debian.org/debian/seafile-client, https://github.com/haiwen/seafile-client.git,3776.8782638889,21,46,0 +seascope,0.1418549141,3.3764775459,-0.9515590832,https://salsa.debian.org/debian/seascope, https://github.com/anilFree/seascope.git,2921.7499305556,1,15,0 +secure-delete,1.9359167993,4.4474577245,0.8251568889,https://salsa.debian.org/debian/secure-delete, https://github.com/hackerschoice/THC-Archive,1834.166099537,2,3,0 +sed,0.4689703809,0.7255020705,0.2969889889,https://salsa.debian.org/debian/sed, https://git.savannah.gnu.org/git/sed.git,5553.6680324074,31,6,0 +selinux-python,0.7649754209,3.3984155889,-0.1297129167,https://salsa.debian.org/selinux-team/selinux-python, https://github.com/SELinuxProject/selinux.git,5593.8026157407,179,30,0 +semi,-0.0012315826,0.7304306594,-0.3636303627,https://salsa.debian.org/debian/semi, https://github.com/wanderlust/semi,5270.9675347222,3,13,0 +sendemail,0.5149987593,2.580274247,-0.1001009863,https://github.com/mogaal/sendemail,https://github.com/mogaal/sendemail,1084.8616782407,0,2,0 +sendxmpp,1.6949802972,3.915419876,0.6723168015,https://salsa.debian.org/xmpp-team/sendxmpp, https://github.com/lhost/sendxmpp.git,3008.6224768519,2,6,0 +ser2net,0.6438108629,1.9333620158,-0.0355562238,https://salsa.debian.org/debian/ser2net, https://github.com/cminyard/ser2net,5671.7052083333,14,9,0 +serd,0.7042703147,2.9113947553,0.0669085772,https://salsa.debian.org/multimedia-team/serd, https://github.com/drobilla/serd.git ,4700.7071990741,5,1,0 +serverspec-runner,-1.6557747415,0.9321001072,-2.3818100795,https://salsa.debian.org/ruby-team/serverspec-runner, https://github.com/hiracy/serverspec-runner,3100.2933101852,2,5,0 +setbfree,0.0170022664,2.0259314608,-0.4587247273,https://salsa.debian.org/multimedia-team/setbfree, https://github.com/pantherb/setBfree.git,3675.3818055556,8,6,0 +setcolortemperature,0.114819976,2.8309553504,-0.5908234474,https://github.com/Tookmund/sct-deb,https://github.com/Tookmund/sct-deb,125.8640393519,0,1,0 +setools,0.2183472301,0.579446892,0.0023286136,https://salsa.debian.org/selinux-team/setools, https://github.com/SELinuxProject/setools.git,3445.0147569445,3,26,0 +setuptools-scm,0.0218119153,1.0762900197,-0.3060730181,https://salsa.debian.org/python-team/packages/setuptools-scm, https://github.com/pypa/setuptools_scm/issues/new,2746.3319791667,2,17,0 +setuptools-scm-git-archive,-1.1288748526,1.4309706158,-1.7245251246,https://salsa.debian.org/python-team/packages/setuptools-scm-git-archive, https://github.com/Changaco/setuptools_scm_git_archive,2852.8371759259,5,5,0 +sexplib310,-1.5719893405,-0.308694773,-1.9907588838,https://salsa.debian.org/ocaml-team/sexplib310, https://github.com/janestreet/sexplib.git,3950.7644444445,1,18,0 +sfcgal,0.0501510799,0.8351234463,-0.1888640188,https://salsa.debian.org/debian-gis-team/sfcgal, https://gitlab.com/sfcgal/SFCGAL,4204.1506481482,3,40,0 +sfepy,-0.0221021791,1.6187597059,-0.6803302867,https://salsa.debian.org/science-team/sfepy, https://github.com/sfepy/sfepy,4839.1527546296,18,25,0 +sgabios,0.6248433625,3.3447922772,-0.1006393146,https://github.com/ymc/sgabios-debian,https://github.com/ymc/sgabios-debian,1409.8465509259,1,3,0 +shadow,0.8375479368,0.9721205468,0.7188309126,https://salsa.debian.org/debian/shadow, https://github.com/shadow-maint/shadow,5786.8523958333,108,113,0 +shadowsocks-libev,0.1461556198,1.3775967683,-0.342459203,https://salsa.debian.org/bridges-team/shadowsocks-libev, https://github.com/shadowsocks/shadowsocks-libev,3913.8428009259,124,129,0 +shapelib,0.2832338511,1.1530187147,-0.0270271594,https://salsa.debian.org/debian-gis-team/shapelib, https://github.com/OSGeo/shapelib.git,5762.8618865741,4,13,0 +shared-mime-info,1.2602732083,1.8659218754,0.8527700803,https://salsa.debian.org/freedesktop-team/shared-mime-info, https://gitlab.freedesktop.org/xdg/shared-mime-info.git,5782.9944444445,173,51,0 +shellinabox,1.4229551917,3.5460511425,0.4536040301,https://github.com/shellinabox/shellinabox/,https://github.com/shellinabox/shellinabox,3681.1884027778,7,26,0 +shine,0.5449317214,2.5585883378,0.0206552894,https://salsa.debian.org/multimedia-team/shine, https://github.com/savonet/shine/issues/new,2746.3319791667,2,17,0 +shortuuid,-0.4574144902,1.8821725228,-1.1753645345,https://salsa.debian.org/python-team/packages/shortuuid, https://github.com/skorokithakis/shortuuid.git,4431.3497800926,19,17,0 +shotcut,-0.0371835128,1.3895028111,-0.3956647911,https://salsa.debian.org/multimedia-team/shotcut, https://github.com/mltframework/shotcut,4437.0470486111,40,29,1 +should.js,-1.54067697,-0.4927936502,-1.7632687804,https://salsa.debian.org/js-team/should.js, https://github.com/shouldjs/should.js.git,3267.8598842593,8,77,0 +showq,0.4980241305,2.6384494868,-0.2994881583,https://salsa.debian.org/multimedia-team/showq, https://github.com/evandelisle/showq.git,4589.6974189815,2,9,0 +shutdown-qapps,0.083229246,2.5754574312,-0.646790907,https://github.com/hakaishi/shutdown-qapps,https://github.com/hakaishi/shutdown-qapps,4242.5183217593,1,5,0 +sidedoor,-1.2070083599,0.905385237,-1.6442775708,https://github.com/daradib/sidedoor,https://github.com/daradib/sidedoor,1283.144525463,0,2,0 +siege,0.97547978,2.0335300671,0.3603230005,https://salsa.debian.org/debian/siege, https://github.com/JoeDog/siege/issues/new,2746.3319791667,2,17,0 +sight,-2.4142300337,-1.1923515267,-2.6246960575,https://salsa.debian.org/med-team/sight, https://github.com/IRCAD/sight,5195.7820833333,18,189,0 +sigil,-0.3233083486,-0.1161840049,-0.3694768756,https://salsa.debian.org/debian/sigil, https://github.com/Sigil-Ebook/Sigil.git,5247.6955787037,9,52,0 +signify-openbsd,-0.42914773,1.9932487279,-0.9002655171,https://salsa.debian.org/debian/signify-openbsd, https://github.com/aperezdc/signify.git,3467.3640972222,11,5,0 +signon-plugin-oauth2,1.0510282553,4.5637229216,0.0769973784,https://salsa.debian.org/qt-kde-team/3rdparty/signon-plugin-oauth2, https://gitlab.com/accounts-sso/signon-plugin-oauth2.git,3669.9502199074,2,19,0 +signond,1.7739522243,5.1700982937,0.5872128645,https://salsa.debian.org/qt-kde-team/extras/signond, https://gitlab.com/accounts-sso/signond.git,4503.0937037037,6,36,0 +sigscheme,0.0095840913,0.5411815775,-0.1766561408,https://salsa.debian.org/debian/sigscheme, https://github.com/uim/sigscheme.git,4570.4844212963,0,12,0 +sigviewer,0.7117615716,3.9894952436,-0.3064944475,https://salsa.debian.org/med-team/sigviewer, https://github.com/cbrnr/sigviewer.git,5107.7777777778,5,12,0 +silver-platter,-2.1237439075,-0.8804783102,-2.3543625093,https://salsa.debian.org/jelmer/silver-platter, https://github.com/jelmer/silver-platter/issues/new,2746.3319791667,2,17,0 +silverjuke,0.1035956227,3.1159574678,-0.8118899402,https://salsa.debian.org/debian/silverjuke, https://github.com/silverjuke/silverjuke.git,1877.2067592593,5,8,0 +silx,-0.0327845404,2.0377980442,-0.6512149255,https://salsa.debian.org/science-team/silx, https://github.com/silx-kit/silx.git,3000.212337963,22,79,0 +simde,-3.0501921098,0.0441838935,-3.7304410572,https://salsa.debian.org/med-team/simde, https://github.com/simd-everywhere/simde,2452.9409375,68,14,1 +simgrid,-1.8737592294,-1.4932100394,-2.0310441381,https://salsa.debian.org/debian/simgrid, https://framagit.org/simgrid/simgrid.git,5764.6994097222,7,82,0 +simile-timeline,0.4007687558,3.0154567789,-0.4849247131,https://salsa.debian.org/js-team/simile-timeline, https://github.com/simile-widgets/timeline/issues/new,2746.3319791667,2,17,0 +simple-ccsm,-0.5548997721,1.739515504,-1.0005442258,https://salsa.debian.org/compiz-team/simple-ccsm, https://gitlab.com/compiz/simple-ccsm.git,5483.6726851852,11,15,0 +simple-image-reducer,0.1736790136,2.6063762202,-0.6423729726,https://salsa.debian.org/python-team/packages/simple-image-reducer, https://github.com/henrythasler/simple-image-reducer,3392.7195833333,3,5,0 +simple-obfs,-0.4921488347,2.3362837337,-1.2782165107,https://salsa.debian.org/bridges-team/simple-obfs, https://github.com/shadowsocks/simple-obfs.git,958.8196412037,21,12,0 +simple-scan,0.7478757603,1.3548714639,0.3826825932,https://git.jff.email/cgit/simple-scan.git, https://gitlab.gnome.org/GNOME/simple-scan.git,5143.3744791667,148,96,0 +simple-tpm-pk11,-0.6002403517,1.7339981128,-1.3361738434,https://salsa.debian.org/debian/simple-tpm-pk11, https://github.com/ThomasHabets/simple-tpm-pk11,3536.4266898148,8,13,0 +simpleburn,1.1321508597,4.0273397461,0.0153846721,https://github.com/mati75/simpleburn.git,https://github.com/mati75/simpleburn.git,1916.8323611111,0,3,0 +simpleeval,-1.0513943081,0.6565241205,-1.3725768937,https://salsa.debian.org/tryton-team/simpleeval, https://github.com/danthedeckie/simpleeval.git,3363.307037037,10,23,0 +simplejson,0.7781612347,2.530704791,0.1122369737,https://salsa.debian.org/python-team/packages/simplejson, https://github.com/simplejson/simplejson,5762.0850115741,6,42,0 +simplescreenrecorder,0.5074767944,2.5172653323,-0.0714681759,https://salsa.debian.org/multimedia-team/simplescreenrecorder, https://github.com/MaartenBaert/ssr,3464.0590972222,13,48,0 +simplesnap,-0.3478600805,2.4893157768,-1.2512484875,https://github.com/jgoerzen/simplesnap,https://github.com/jgoerzen/simplesnap,3116.7912384259,1,6,0 +sinntp,-0.7486132539,2.2241911903,-1.864431269,https://salsa.debian.org/python-team/packages/sinntp, https://github.com/jwilk/sinntp.git,5461.030625,0,2,0 +sip-tester,0.4310939005,1.7028091677,-0.1724012381,https://salsa.debian.org/pkg-voip-team/sip-tester, https://github.com/SIPp/sipp.git,5712.8757986111,33,39,0 +siridb-server,-3.6320764311,-1.5041563358,-4.2614695785,https://salsa.debian.org/siridb-team/siridb-server, https://github.com/transceptor-technology/siridb-server.git,2764.489212963,4,15,0 +sirikali,0.1960839271,2.7170603431,-0.5405119223,https://github.com/davesteele/sirikali,https://github.com/davesteele/sirikali,2544.706099537,10,19,0 +six,0.2364322669,1.3996579195,-0.0008290347,https://salsa.debian.org/python-team/packages/six, https://github.com/benjaminp/six,4717.2738310185,33,35,0 +sizzle,-0.9156236111,3.1774223179,-2.2147147933,https://salsa.debian.org/js-team/sizzle, https://github.com/jquery/sizzle.git,5491.7580787037,47,19,0 +skiboot,-1.2267708754,0.8083409101,-1.8023566904,https://salsa.debian.org/debian/skiboot, https://github.com/open-power/skiboot.git,3435.5121180556,156,19,0 +skkdic,-0.1341965123,0.4940218282,-0.3529875318,https://salsa.debian.org/debian/skkdic, https://github.com/skk-dev/dict,2069.106724537,1,13,0 +skktools,-0.7739115557,-0.492281698,-0.8304382583,https://salsa.debian.org/debian/skktools, https://github.com/skk-dev/skktools,4603.9943402778,1,14,0 +sklearn-pandas,-0.1846814273,2.4060352331,-0.9752323305,https://salsa.debian.org/debian/sklearn-pandas, https://github.com/scikit-learn-contrib/sklearn-pandas/issues/new,2746.3319791667,2,17,0 +skypat,-3.6622190091,-1.2552465603,-4.2901929758,https://salsa.debian.org/debian/skypat, https://github.com/skymizer/SkyPat,1330.0854513889,4,12,0 +sl,0.323098945,1.3268829075,-0.065447292,https://salsa.debian.org/debian/sl, https://github.com/mtoyoda/sl,1446.5538657407,0,15,0 +sleef,-2.2104947128,0.3306322864,-2.7673859805,https://salsa.debian.org/science-team/sleef, https://github.com/shibatch/sleef.git,2789.4703935185,24,7,0 +sleuthkit,0.248789794,0.7322070572,0.0073823657,https://salsa.debian.org/pkg-security-team/sleuthkit, https://github.com/sleuthkit/sleuthkit,5541.6815740741,21,144,0 +slick-greeter,0.230041088,2.4883516609,-0.403804259,https://github.com/UbuntuBudgie/slick-greeter/tree/debian,https://github.com/UbuntuBudgie/slick-greeter,2438.3149768519,27,9,0 +slime,0.5612027808,1.1815085318,0.1522832111,https://salsa.debian.org/common-lisp-team/slime, https://github.com/slime/slime,3579.6025925926,96,60,1 +slimit,0.043087783,2.4011946189,-0.7318964079,https://salsa.debian.org/python-team/packages/slimit, https://github.com/rspivak/slimit.git,2655.1229050926,2,13,0 +slirp4netns,-0.3783738295,1.429450255,-0.8367494784,https://salsa.debian.org/debian/slirp4netns, https://github.com/rootless-containers/slirp4netns.git,1916.5166203704,4,19,0 +slop,0.0256215961,2.4531135451,-0.4212618283,https://salsa.debian.org/debian/slop, https://github.com/naelstrof/slop,3674.1057638889,8,37,0 +slowhttptest,-0.5285418268,1.6541713882,-0.9836957935,https://salsa.debian.org/debian/slowhttptest, https://github.com/shekyan/slowhttptest,4436.458900463,5,15,0 +smarty-gettext,-0.1172764021,0.9213265959,-0.4308872423,https://salsa.debian.org/debian/smarty-gettext/, https://github.com/smarty-gettext/smarty-gettext.git,3367.1055439815,3,7,0 +smarty-lexer,-2.1771173058,0.8224220515,-2.9339605005,https://salsa.debian.org/debian/smarty-lexer/, https://github.com/smarty-php/smarty-lexer.git,2967.1062731482,1,5,0 +smarty3,0.3504374167,1.5540551587,-0.1505110391,https://salsa.debian.org/debian/smarty3, https://github.com/smarty-php/smarty.git,3318.9346180556,45,52,0 +smash,-1.6021448383,1.016931715,-2.2070553084,https://salsa.debian.org/js-team/smash, https://github.com/mbostock/smash.git,1268.6711921296,0,6,0 +smb4k,0.2654597782,0.7841112971,-0.0223425413,https://salsa.debian.org/qt-kde-team/extras/smb4k, https://invent.kde.org/network/smb4k.git,5158.7368055556,5,28,0 +smbldap-tools,4.0992169923,6.2973766162,2.977896731,https://salsa.debian.org/debian/smbldap-tools, https://github.com/fumiyas/smbldap-tools,3527.4513194445,0,4,0 +smbmap,-0.0942111377,1.2729571655,-0.3894550484,https://salsa.debian.org/pkg-security-team/smbmap, https://github.com/ShawnDEvans/smbmap.git,3137.7212731482,5,16,0 +smcroute,-0.5495305171,0.137923259,-0.8122481411,https://salsa.debian.org/debian/smcroute, https://github.com/troglobit/smcroute.git,5055.7766087963,11,24,0 +smokeping,0.1909583252,0.4951169655,-0.0114998503,https://salsa.debian.org/debian/smokeping, https://github.com/oetiker/SmokePing.git,5773.8930902778,41,36,0 +snake4,0.095148698,1.3696917472,-0.4120560031,https://github.com/alexdantas/snake4.debian,https://github.com/alexdantas/snake4.debian,10.4776388889,5,4,0 +snap-aligner,-0.2880010482,1.7199246286,-0.9244808984,https://salsa.debian.org/med-team/snap-aligner, https://github.com/amplab/snap.git,3911.3341898148,1,64,0 +snapd-glib,0.4458389978,2.3111180422,-0.1998120798,https://salsa.debian.org/debian-ayatana-team/snapd-glib, https://github.com/snapcore/snapd-glib,2535.747037037,8,7,0 +snapper,0.1292961986,1.0901704949,-0.2601521333,https://salsa.debian.org/debian/snapper, https://github.com/openSUSE/snapper.git,4746.8166435185,93,64,0 +sndfile-tools,0.7443837151,2.9271900432,0.0039892841,https://salsa.debian.org/multimedia-team/sndfile-tools, https://github.com/libsndfile/sndfile-tools.git,5283.239212963,10,6,0 +snetz,-0.1935171339,3.2904821975,-1.2264363982,https://github.com/paniagua-gustavo/debian-snetz,https://github.com/paniagua-gustavo/debian-snetz,0.188125,0,2,0 +sngrep,0.1619966998,2.1234156527,-0.2545322244,https://salsa.debian.org/pkg-voip-team/sngrep/, https://github.com/irontec/sngrep.git,2955.1065856482,38,17,0 +sniffit,0.265285153,1.4300142664,-0.2849808233,https://salsa.debian.org/debian/sniffit, https://github.com/resurrecting-open-source-projects/sniffit,1171.9152430556,0,4,0 +snimpy,-1.1710720581,-0.3633696382,-1.3515477674,https://salsa.debian.org/debian/snimpy, https://github.com/vincentbernat/snimpy/issues/new,2746.3319791667,2,17,0 +snoopy,1.1669824916,2.8753833581,0.3279585504,https://salsa.debian.org/pkg-security-team/snoopy, https://github.com/a2o/snoopy,3060.3719097222,6,34,4 +soapyhackrf,0.1605098081,2.6673565763,-0.324555585,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyhackrf, https://github.com/pothosware/SoapyHackRF.git,2556.4767361111,1,9,0 +soapyosmo,0.1156871694,2.5406057768,-0.3339209238,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyosmo, https://github.com/pothosware/SoapyOsmo.git,2779.5272569445,0,2,0 +soapysdr,0.5757029294,3.2715487378,-0.2009342982,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapysdr, https://github.com/pothosware/SoapySDR.git,3219.8508912037,4,27,0 +social-auth-app-django,-2.4944451205,0.4724137014,-3.2535085646,https://salsa.debian.org/python-team/packages/social-auth-app-django, https://github.com/python-social-auth/social-app-django.git,4020.1488541667,30,314,0 +socket-wrapper,-1.063696314,0.4177017712,-1.3872717115,https://salsa.debian.org/sssd-team/socket-wrapper, https://git.samba.org/socket_wrapper.git,3793.8187615741,19,5,0 +socnetv,-0.3013384518,1.8670953184,-1.0696826208,https://github.com/socnetv/app/tree/master/,https://github.com/socnetv/app,5571.6546759259,1,6,1 +sogo,0.1020916667,0.7474132819,-0.2355582728,https://salsa.debian.org/debian/sogo, https://github.com/inverse-inc/sogo.git,5788.1129976852,39,76,0 +solaar,1.4299220419,3.8632949906,0.4240519771,https://salsa.debian.org/debian/solaar, https://github.com/pwr/Solaar.git,4403.7316666667,124,59,0 +solarized-emacs,-0.4248542387,1.520397801,-0.8283628455,https://salsa.debian.org/emacsen-team/solarized-emacs, https://github.com/bbatsov/solarized-emacs.git,4384.0037615741,42,71,0 +solarpowerlog,-1.7795970498,0.0950109385,-2.3705182782,https://github.com/coldtobi/solarpowerlog/tree/debian,https://github.com/coldtobi/solarpowerlog,5143.7188310185,1,8,0 +solvespace,0.3400078311,2.4750974835,-0.3014099682,https://salsa.debian.org/science-team/solvespace, https://github.com/solvespace/solvespace/issues/new,2746.3319791667,2,17,0 +sombok,0.3006788873,1.8374945588,-0.0607142369,https://salsa.debian.org/kolter/sombok, https://github.com/hatukanezumi/sombok,1612.4445949074,0,1,0 +sonata,0.2905505595,0.9576245442,-0.0885666061,https://salsa.debian.org/mpd-team/sonata, https://github.com/multani/sonata,4950.7015162037,15,21,0 +sonic,0.3436339172,1.4474196373,0.0197565432,https://salsa.debian.org/a11y-team/sonic, https://github.com/waywardgeek/sonic,4727.1402199074,3,21,0 +sope,-0.250285844,0.9987661956,-0.7280518867,https://salsa.debian.org/debian/sope, https://github.com/inverse-inc/sope.git,4884.8710648148,9,32,0 +sopel,-1.5608077643,0.6644577975,-2.3059361441,https://salsa.debian.org/debian/sopel/, https://github.com/sopel-irc/sopel.git,5115.8216666667,38,170,0 +sord,0.6196290047,2.4503028479,0.0661140316,https://salsa.debian.org/multimedia-team/sord, https://github.com/drobilla/sord.git ,4651.0402893519,0,1,0 +sortedcollections,0.0282138035,2.5630571401,-0.4563520078,https://salsa.debian.org/python-team/packages/sortedcollections, https://github.com/grantjenks/python-sortedcollections,2101.4924884259,2,4,0 +sosi2osm,-0.0665032677,2.7414888103,-0.7399578074,https://salsa.debian.org/debian-gis-team/sosi2osm, https://github.com/Gnonthgol/sosi2osm.git,3689.8328125,3,10,0 +sound-theme-freedesktop,1.1889292998,3.9469735694,0.2591864877,https://salsa.debian.org/gnome-team/sound-theme-freedesktop, https://gitlab.freedesktop.org/xdg/xdg-sound-theme,1452.9854050926,0,3,0 +soundconverter,0.4540740816,1.0143004971,0.117664665,https://salsa.debian.org/multimedia-team/soundconverter, https://github.com/kassoulet/soundconverter/issues/new,2746.3319791667,2,17,0 +soundkonverter,1.0908472726,2.4748241992,0.3743578972,https://salsa.debian.org/qt-kde-team/extras/soundkonverter, https://github.com/dfaust/soundkonverter.git,4518.0852893519,5,14,0 +soundscaperenderer,-0.8213736096,-0.1780037641,-0.9818495887,https://salsa.debian.org/multimedia-team/soundscaperenderer, https://github.com/SoundScapeRenderer/ssr,3464.0590972222,13,48,0 +soundtouch,0.2236862105,0.6106430949,0.0434870232,https://salsa.debian.org/multimedia-team/soundtouch, https://gitlab.com/soundtouch/soundtouch.git,5384.9987384259,1,20,0 +spacefm,0.0215364285,0.7019135888,-0.2802976133,https://github.com/mati75/spacefm.git,https://github.com/mati75/spacefm.git,3876.4630671296,0,4,0 +sparkleshare,0.9167518699,2.534959747,0.0535700536,https://salsa.debian.org/debian/sparkleshare, https://github.com/hbons/SparkleShare,4856.867974537,90,134,3 +sparql-wrapper-python,0.3296219997,1.7050780355,-0.1457210534,https://salsa.debian.org/python-team/packages/sparql-wrapper-python, https://github.com/RDFLib/sparqlwrapper.git,3062.5503703704,8,32,0 +spatialindex,0.3783468175,1.9219557152,-0.146304499,https://salsa.debian.org/debian-gis-team/libspatialindex, https://github.com/libspatialindex/libspatialindex.git,5433.0521180556,20,25,0 +spdlog,-0.4340076753,0.6652467273,-0.751466476,https://salsa.debian.org/med-team/spdlog, https://github.com/gabime/spdlog,3288.9864467593,120,297,0 +spectre-meltdown-checker,-0.0949527296,0.512522919,-0.2317398736,https://salsa.debian.org/debian/spectre-meltdown-checker, https://github.com/speed47/spectre-meltdown-checker,2139.8867708333,54,16,0 +spectrwm,0.8740320474,3.3995660037,-0.1106287738,https://salsa.debian.org/debian/spectrwm, https://github.com/conformal/spectrwm,5428.7537962963,35,24,0 +specutils,-0.3509162878,1.180376769,-0.622702587,https://salsa.debian.org/debian-astro-team/specutils, https://github.com/astropy/specutils.git,2922.7152893519,32,95,0 +speech-dispatcher,1.144877382,1.6979655186,0.7745337774,https://salsa.debian.org/tts-team/speech-dispatcher, https://github.com/brailcom/speechd,5766.3462847222,67,19,0 +speech-dispatcher-contrib,-1.1065892371,-0.7230774126,-1.1653008677,https://salsa.debian.org/tts-team/speech-dispatcher, https://github.com/brailcom/speechd,5766.3462847222,67,19,0 +speechd-up,-1.2789607706,1.2929705527,-2.0775310838,https://salsa.debian.org/a11y-team/speechd-up, https://github.com/williamh/speechd-up.git,1059.3273726852,1,4,0 +speedpad,-0.3911902301,0.972185266,-0.6939336088,https://github.com/ltworf/speedpad-debian,https://github.com/ltworf/speedpad-debian,829.1033101852,0,2,0 +speex,0.2805450386,0.6391597628,0.0931353776,https://salsa.debian.org/debian/speex, https://gitlab.xiph.org/xiph/speex.git,5580.3190625,17,18,0 +sphinx,0.2160838295,0.4009776556,0.1007070726,https://salsa.debian.org/python-team/packages/sphinx, https://github.com/sphinx-doc/sphinx.git,5782.9790972222,209,614,0 +sphinx-argparse,-0.7549373494,1.0088944933,-1.2169968655,https://salsa.debian.org/python-team/packages/sphinx-argparse, https://github.com/ribozz/sphinx-argparse,2938.5171412037,2,31,0 +sphinx-astropy,-1.4271235012,-0.7867770371,-1.5421845699,https://salsa.debian.org/debian-astro-team/sphinx-astropy, https://github.com/astropy/sphinx-astropy,4334.9151736111,3,25,1 +sphinx-autorun,-1.0917758526,1.7268550032,-1.8045400627,https://salsa.debian.org/python-team/packages/sphinx-autorun, https://github.com/hobarrera/sphinx-autorun,4960.1845949074,3,8,0 +sphinx-bootstrap-theme,0.6759605334,3.4453260638,-0.2238313695,https://salsa.debian.org/python-team/packages/sphinx-bootstrap-theme, https://github.com/ryan-roemer/sphinx-bootstrap-theme.git,3711.2313078704,16,30,0 +sphinx-celery,-1.2937827686,0.4938075079,-1.9951471611,https://salsa.debian.org/python-team/packages/sphinx-celery, https://github.com/celery/sphinx_celery,2803.725,12,7,1 +sphinx-paramlinks,-1.1682253235,0.3868734443,-1.5684932781,https://salsa.debian.org/python-team/packages/sphinx-paramlinks, https://github.com/sqlalchemyorg/sphinx-paramlinks,3511.5527777778,5,5,0 +sphinxcontrib-autoprogram,-1.4560452615,-0.2596772946,-1.6612142206,https://salsa.debian.org/python-team/packages/sphinxcontrib-autoprogram, https://github.com/sphinx-contrib/autoprogram.git,3291.9937962963,8,16,0 +sphinxcontrib-bibtex,0.111160598,2.1131827213,-0.4197298069,https://salsa.debian.org/science-team/sphinxcontrib-bibtex, https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git,4544.6493055556,11,9,0 +sphinxcontrib-restbuilder,-1.1764165162,1.2846690356,-1.6755940115,https://salsa.debian.org/python-team/packages/sphinxcontrib-restbuilder, https://github.com/sphinx-contrib/restbuilder.git,2987.8306828704,1,10,0 +sphinxcontrib-spelling,-0.7874116783,1.0287481645,-1.4199296239,https://salsa.debian.org/python-team/packages/sphinxcontrib-spelling, https://github.com/sphinx-contrib/spelling,5270.8333333333,12,76,0 +sphinxcontrib-websupport,-1.489015386,0.092912366,-1.8959476069,https://salsa.debian.org/python-team/packages/sphinxcontrib-websupport, https://github.com/sphinx-doc/sphinxcontrib-websupport,4818.6938425926,8,17,0 +sphinxtesters,-1.0316070726,1.4478444724,-1.604600739,https://salsa.debian.org/python-team/packages/sphinxtesters, https://github.com/matthew-brett/sphinxtesters.git,2155.7952314815,0,3,0 +spice-gtk,0.5820802877,1.1158590219,0.2726674105,https://salsa.debian.org/gnome-team/spice-gtk, https://gitlab.freedesktop.org/spice/spice-gtk.git,4729.9758564815,67,33,0 +spin,-0.5307239904,2.5263569152,-1.4016281412,https://github.com/thomaslee/spin-debian,https://github.com/thomaslee/spin-debian,1934.3454282407,2,4,0 +spip,-0.9892319772,-0.5531328536,-1.2424474193,https://salsa.debian.org/debian/spip, https://git.spip.net/SPIP/spip,5789.4374421296,39,165,0 +spirv-llvm-translator,-0.4422464146,2.0251240388,-1.0285189879,https://salsa.debian.org/opencl-team/spirv-llvm-translator, https://github.com/KhronosGroup/SPIRV-LLVM-Translator,3136.491087963,135,37,1 +spyder,0.4115118808,0.9941301616,0.0861703012,https://salsa.debian.org/science-team/spyder, https://github.com/spyder-ide/spyder,5241.7036458333,64,273,11 +spyder-kernels,0.5558491641,3.5561939063,-0.1913819563,https://salsa.debian.org/science-team/spyder-kernels, https://github.com/spyder-ide/spyder-kernels,1977.064375,17,27,1 +spyder-reports,-0.3859591252,2.1427751751,-1.1094779604,https://salsa.debian.org/science-team/spyder-reports, https://github.com/spyder-ide/spyder-reports/issues/new,2746.3319791667,2,17,0 +spyder-unittest,-0.3614837552,2.6406271887,-1.1532012668,https://salsa.debian.org/science-team/spyder-unittest, https://github.com/spyder-ide/spyder-unittest.git,3668.9764467593,5,13,0 +sqitch,-1.0987496818,-0.3717057014,-1.2899258645,https://salsa.debian.org/perl-team/modules/packages/sqitch, https://github.com/sqitchers/sqitch/issues/new,2746.3319791667,2,17,0 +sqldeveloper-package,0.3178462622,2.5512521122,-0.5498064554,https://github.com/lazarusllong/sqldeveloper-package.git,https://github.com/lazarusllong/sqldeveloper-package.git,2130.3049189815,0,3,0 +sqlgrey,-0.447394697,1.287594037,-1.0928861268,https://github.com/bobek/sqlgrey-debian,https://github.com/bobek/sqlgrey-debian,4172.3835300926,1,3,0 +sqlitebrowser,0.6110204953,1.4988271748,0.1610983963,https://salsa.debian.org/sqlitebrowser-team/sqlitebrowser, https://github.com/sqlitebrowser/sqlitebrowser,5467.0491203704,104,102,1 +sqlmap,-0.0436656036,1.2298763794,-0.4076774194,https://salsa.debian.org/pkg-security-team/sqlmap, https://github.com/sqlmapproject/sqlmap.git,5537.8440625,75,67,0 +sqlparse,0.376152152,1.8743020056,-0.0843362549,https://salsa.debian.org/python-team/packages/sqlparse, https://github.com/andialbrecht/sqlparse.git,5305.0009375,44,69,0 +sqlsmith,-2.0550070259,1.4988796608,-2.9263419388,https://github.com/anse1/sqlsmith,https://github.com/anse1/sqlsmith,3058.1757291667,4,17,1 +squashfuse,0.3104319191,3.2539784342,-0.4404612068,https://salsa.debian.org/sgmoore/squashfuse, https://github.com/vasi/squashfuse.git,4403.0807407407,10,20,0 +sratom,0.5401649761,2.8512138953,0.0136305168,https://salsa.debian.org/multimedia-team/sratom, https://github.com/lv2/sratom.git ,4263.558912037,3,1,0 +srt,0.8314229362,3.5154384758,0.0299116917,https://salsa.debian.org/debian/libsrt, https://github.com/Haivision/srt.git,2427.4407523148,125,23,0 +ssh-audit,0.2128051096,2.7100037355,-0.3787946632,https://salsa.debian.org/debian/ssh-audit, https://github.com/jtesta/ssh-audit.git,2897.0719328704,19,7,0 +ssh-cron,-0.930317576,0.5951139334,-1.2195486692,https://salsa.debian.org/debian/ssh-cron, https://gitlab.com/fbb-git/ssh-cron.git,2757.0456365741,0,1,0 +sshguard,0.5121554742,1.5825292291,0.0022007143,https://salsa.debian.org/debian/sshguard, https://bitbucket.org/sshguard/sshguard.git,5304.903900463,15,17,0 +sshpubkeys,-1.9121140748,-0.1894818509,-2.3312629201,https://salsa.debian.org/python-team/packages/sshpubkeys, https://github.com/ojarva/python-sshpubkeys.git,3267.3521759259,3,17,0 +sshuttle,0.4686212873,1.5902040128,-0.0562158764,https://salsa.debian.org/debian/sshuttle, https://github.com/sshuttle/sshuttle.git,4975.0844675926,104,46,0 +sslsniff,0.7229167902,2.7591250777,-0.184867548,https://salsa.debian.org/pkg-security-team/sslsniff, https://github.com/moxie0/sslsniff.git,177.084849537,0,2,0 +sslsplit,0.0482855639,2.1228996274,-0.6371278291,https://salsa.debian.org/debian/sslsplit, https://github.com/droe/sslsplit,4093.9351851852,9,20,2 +ssreflect,-0.6659536237,1.9012926621,-1.5051671655,https://salsa.debian.org/ocaml-team/ssreflect, https://github.com/math-comp/math-comp,3203.2040162037,24,40,2 +st-console,-1.7905650767,0.6769505545,-2.3325670973,https://salsa.debian.org/debian/st-console, https://github.com/nferraz/st,3551.6255439815,0,6,0 +starfighter,1.1315056363,2.4483606179,0.4071420536,https://salsa.debian.org/fmneto-guest/starfighter, https://github.com/pr-starfighter/starfighter,4492.0575231482,7,18,0 +starjava-topcat,-0.5484854258,1.0238215507,-0.8398906165,https://salsa.debian.org/debian-astro-team/starjava-topcat, https://github.com/Starlink/starjava/issues/new,2746.3319791667,2,17,0 +starjava-ttools,-0.6975561907,0.0612089874,-0.8309402362,https://salsa.debian.org/debian-astro-team/starjava-ttools, https://github.com/Starlink/starjava/issues/new,2746.3319791667,2,17,0 +starjava-util,-0.5724217622,0.5167921554,-0.7890780686,https://salsa.debian.org/debian-astro-team/starjava-util, https://github.com/Starlink/starjava,5785.0740046296,2,26,0 +starman,-0.4167370479,0.4887372311,-0.5755472783,https://salsa.debian.org/perl-team/modules/packages/starman, https://github.com/miyagawa/Starman/issues/new,2746.3319791667,2,17,0 +staticsite,-0.4550445168,2.6259534139,-1.4004015176,https://salsa.debian.org/enrico/staticsite, https://github.com/spanezz/staticsite,2745.0971527778,0,7,1 +stdeb,3.1478110142,6.157684951,1.7761098071,https://salsa.debian.org/python-team/packages/stdeb, https://github.com/astraw/stdeb.git,4840.6058796296,28,21,0 +stealth,-1.6796937834,-1.523637299,-1.7255235793,https://salsa.debian.org/debian/stealth, https://gitlab.com/fbb-git/stealth,5511.1531134259,1,1,0 +stenographer,-4.1343536225,-3.2347072157,-4.3427206603,https://salsa.debian.org/go-team/packages/stenographer, https://github.com/google/stenographer,2239.756412037,19,20,0 +stex,-4.0668315454,-2.4954928101,-4.3496245401,https://salsa.debian.org/debian/stex, https://github.com/dybvig/stex,1828.8861226852,1,7,0 +stk,0.161350987,0.6351518943,-0.0757101643,https://salsa.debian.org/multimedia-team/stk, https://github.com/thestk/stk,5255.6332986111,6,33,2 +stlink,0.2330578642,3.0498837848,-0.4676802192,https://github.com/bluca/stlink,https://github.com/bluca/stlink,4380.0284722222,78,192,0 +stopmotion,1.7364098877,3.463337957,0.8260635854,https://salsa.debian.org/debian/stopmotion, https://invent.kde.org/multimedia/stopmotion.git,4309.4254050926,11,19,0 +stress,0.7791794941,3.5368026661,-0.027963401,https://salsa.debian.org/debian/stress, https://github.com/resurrecting-open-source-projects/stress,489.8052893519,0,3,0 +strip-nondeterminism,0.0265407071,0.140289765,-0.0315549037,https://salsa.debian.org/reproducible-builds/strip-nondeterminism, https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/issues/new,2746.3319791667,2,17,0 +stumpwm,0.2447443661,1.1689236934,-0.2664973124,https://salsa.debian.org/common-lisp-team/stumpwm, https://github.com/stumpwm/stumpwm.git,5783.5813078704,82,149,0 +subdownloader,0.2576738138,1.416208065,-0.2677955961,https://salsa.debian.org/python-team/packages/subdownloader, https://github.com/subdownloader/subdownloader,4731.6769560185,4,22,3 +subliminal,0.7190070506,3.1421902787,-0.2079240806,https://salsa.debian.org/python-team/packages/subliminal, https://github.com/Diaoul/subliminal.git,3790.6726273148,11,36,0 +subtitleeditor,0.4715189003,1.2173077891,0.045958129,https://salsa.debian.org/debian/subtitleeditor, https://github.com/kitone/subtitleeditor,5679.7465856482,2,6,0 +subtle,-0.1057456347,2.6291844345,-1.1261393388,http://github.com/formorer/pkg-subtle,http://github.com/formorer/pkg-subtle,305.3167708333,0,1,0 +subvertpy,-0.0856463379,0.9174986859,-0.5281506467,https://salsa.debian.org/python-team/packages/subvertpy, https://github.com/jelmer/subvertpy,3827.0174421296,14,36,0 +suds,-0.2061376952,0.1335002243,-0.2803381261,https://salsa.debian.org/python-team/packages/suds, https://github.com/suds-community/suds.git,3431.6421990741,14,23,0 +suil,0.6666244731,2.9498824035,0.0198598554,https://salsa.debian.org/multimedia-team/suil, https://github.com/lv2/suil.git ,4625.665625,6,1,0 +sundials,0.1304834937,1.329515137,-0.4214324267,https://salsa.debian.org/science-team/sundials, https://github.com/LLNL/sundials.git,5750.416412037,17,59,0 +sup-mail,0.7289408703,1.645644064,0.2014294659,https://salsa.debian.org/ruby-team/sup-mail, https://github.com/sup-heliotrope/sup/issues/new,2746.3319791667,2,17,0 +supercollider,0.5288500696,1.1642808748,0.1391105744,https://salsa.debian.org/multimedia-team/supercollider, https://github.com/supercollider/supercollider.git,5761.273125,106,286,0 +supercollider-sc3-plugins,0.491909609,3.0841622711,-0.2581725493,https://salsa.debian.org/multimedia-team/supercollider-sc3-plugins, https://github.com/supercollider/sc3-plugins,5663.6033680556,11,73,0 +superlu,0.2694335777,1.8180205372,-0.0626900614,https://salsa.debian.org/science-team/superlu, https://github.com/xiaoyeli/superlu.git,3055.1216435185,5,29,0 +surfraw,0.1670207748,0.6409154596,-0.1279559945,https://salsa.debian.org/debian/surfraw, https://gitlab.com/surfraw/Surfraw.git,5453.2058101852,6,24,0 +suricata,-0.4687427621,-0.2612060836,-0.5897250989,https://salsa.debian.org/pkg-suricata-team/pkg-suricata, https://github.com/OISF/suricata,5277.2691435185,244,62,5 +suricata-update,-0.8755668622,1.4335153956,-1.3157344853,https://salsa.debian.org/pkg-suricata-team/pkg-suricata-update, https://github.com/OISF/suricata-update,2073.1884490741,16,11,0 +svgpp,-1.8854559409,-0.5385173138,-2.2188275477,https://salsa.debian.org/debian/svgpp, https://github.com/svgpp/svgpp.git,3480.6248726852,6,8,0 +svgtune,0.1366019906,2.760378779,-0.708785107,http://github.com/yarikoptic/svgtune,http://github.com/yarikoptic/svgtune,4268.4841550926,0,2,0 +svgwrite,0.1630015143,2.8978314663,-0.6431657526,https://salsa.debian.org/python-team/packages/svgwrite, https://github.com/mozman/svgwrite.git,2562.4058912037,4,22,0 +svn-all-fast-export,0.0735704043,2.214779927,-0.6989156967,https://salsa.debian.org/debian/svn-all-fast-export, https://github.com/svn-all-fast-export/svn2git.git,5311.2481365741,28,29,0 +svtplay-dl,-0.259583484,1.4909319758,-0.7330050577,https://salsa.debian.org/olof/svtplay-dl, https://github.com/spaam/svtplay-dl,4669.1490162037,48,26,3 +svxlink,-0.3635018341,1.3160115906,-0.862809513,https://salsa.debian.org/debian-hamradio-team/svxlink, https://github.com/sm0svx/svxlink/issues/new,2746.3319791667,2,17,0 +swaks,-0.0249524642,0.3218579009,-0.1486439733,https://salsa.debian.org/debian/swaks, https://github.com/jetmore/swaks,5448.0600694445,0,9,5 +swami,0.1476526288,1.5183148814,-0.4624982263,https://salsa.debian.org/multimedia-team/swami, https://github.com/swami/swami,4547.4787962963,6,10,0 +swauth,-2.4254901848,-0.8570793139,-2.7795442667,https://salsa.debian.org/openstack-team/services/swauth, https://github.com/openstack/swauth.git,3045.1673958333,5,41,0 +sway,-0.0003144281,1.8211497146,-0.4602739815,https://salsa.debian.org/swaywm-team/sway, https://github.com/swaywm/sway/issues/new,2746.3319791667,2,17,0 +swayidle,-0.101420118,2.2036420089,-0.6198513899,https://salsa.debian.org/swaywm-team/swayidle, https://github.com/swaywm/swayidle,1867.500775463,24,22,0 +swh-lv2,0.0271485834,2.3196893623,-0.405826923,https://salsa.debian.org/multimedia-team/swh-lv2, https://github.com/swh/lv2,4769.9272800926,1,14,0 +swh-plugins,0.7083949622,1.4520571608,0.2842081476,https://salsa.debian.org/multimedia-team/swh-plugins, https://github.com/swh/ladspa.git,5572.5839930556,1,25,0 +swift,-0.7448605494,-0.5081147887,-0.8497485173,https://salsa.debian.org/openstack-team/services/swift, https://github.com/openstack/swift.git,4902.7891898148,50,447,0 +swift-bench,-3.6971618893,-0.9738891515,-4.3114902928,https://salsa.debian.org/openstack-team/services/swift-bench, https://github.com/openstack/swift-bench.git,4746.0268287037,8,47,0 +sword-comm-scofield,-0.1828795155,2.7347759733,-0.9679886002,https://salsa.debian.org/pkg-crosswire-team/sword-comm-scofield, https://gitlab.com/crosswire-bible-society/scofield,306.4266666667,0,2,0 +sword-comm-tdavid,-0.299819515,2.5472043289,-1.0823887971,https://salsa.debian.org/pkg-crosswire-team/sword-comm-tdavid, https://gitlab.com/crosswire-bible-society/tdavid.git,206.141875,0,2,0 +sword-dict-naves,0.164634162,2.8752157204,-0.7278608532,https://salsa.debian.org/pkg-crosswire-team/sword-dict-naves, https://gitlab.com/crosswire-bible-society/nave,86.1112152778,0,2,0 +sword-dict-strongs-greek,-0.0885680514,2.822423155,-0.8508754748,https://salsa.debian.org/pkg-crosswire-team/sword-dict-strongs-greek, https://gitlab.com/crosswire-bible-society/strongsgreek,1035.2977314815,0,3,0 +swupdate,-4.1380420208,-0.3765046535,-5.2410349606,https://salsa.debian.org/debian/swupdate, https://github.com/sbabic/swupdate,3657.1083217593,179,6,0 +sxid,0.3383169662,2.494076504,-0.6427792124,https://salsa.debian.org/debian/sxid, https://github.com/taem/sxid,1429.0293865741,0,1,0 +symmetrica,0.002382594,1.4991255114,-0.3203104378,https://salsa.debian.org/math-team/symmetrica, https://gitlab.com/sagemath/symmetrica,1219.7343055556,1,5,0 +synaptic,4.0786320856,4.6212205168,3.6414737103,https://github.com/mvo5/synaptic,https://github.com/mvo5/synaptic,5665.1249768519,20,60,0 +syncthing,0.1165513998,0.6852206999,-0.1099255095,https://salsa.debian.org/go-team/packages/syncthing, https://github.com/syncthing/syncthing.git,3650.0363310185,277,155,0 +syncthing-gtk,0.1249811964,1.7701829162,-0.3506085614,https://salsa.debian.org/jelmer/syncthing-gtk, https://github.com/syncthing/syncthing-gtk,2902.7344097222,7,42,1 +synthv1,0.0241434868,1.3740935149,-0.399365925,https://salsa.debian.org/multimedia-team/synthv1, https://github.com/rncbc/synthv1.git,4117.1360763889,0,14,0 +syrep,-0.3840410127,1.5663799383,-1.1500496799,https://github.com/JonathonReinhart/syrep,https://github.com/JonathonReinhart/syrep,0.0023611111,1,1,0 +sysbench,1.3680950405,3.1916117767,0.5183688067,https://salsa.debian.org/jcfp/sysbench, https://github.com/akopytov/sysbench.git,5395.9011574074,9,45,0 +sysfsutils,1.4604939319,2.5043938068,0.8202891312,https://git.hadrons.org/cgit/debian/pkgs/sysfsutils.git, https://github.com/linux-ras/sysfsutils/issues/new,2746.3319791667,2,17,0 +syslog-ng,0.3360880552,0.5117634173,0.1859714072,https://github.com/gcsideal/syslog-ng-debian,https://github.com/gcsideal/syslog-ng-debian,4178.4473842593,0,12,0 +syslog-ocaml,-0.9966573409,1.2541731317,-1.7322570063,https://salsa.debian.org/ocaml-team/syslog-ocaml, https://github.com/geneanet/ocaml-syslog.git,690.8139351852,1,3,0 +sysprof,0.6995376967,2.1190333946,0.0687387897,https://salsa.debian.org/gnome-team/sysprof, https://gitlab.gnome.org/GNOME/sysprof.git,5697.5302777778,77,78,0 +system-config-printer,2.3553472865,3.3297611296,1.7170434503,https://salsa.debian.org/gnome-team/system-config-printer, https://github.com/OpenPrinting/system-config-printer/commits/master,5185.326875,55,11,0 +systemd,0.2069812633,0.2335353177,0.1823476596,https://salsa.debian.org/systemd-team/systemd, https://github.com/systemd/systemd,5140.484525463,2040,582,2 +systemd-bootchart,0.0589352376,2.4948219717,-0.5217369948,https://salsa.debian.org/systemd-team/systemd-bootchart, https://github.com/systemd/systemd-bootchart,2813.8079282408,13,11,0 +systemd-cron,0.2435713073,1.0673184216,-0.1917909328,https://salsa.debian.org/systemd-team/systemd-cron, https://github.com/systemd-cron/systemd-cron.git,3852.6322916667,2,17,0 +systemfixtures,-2.6293231508,-0.9364247044,-3.0058243691,https://salsa.debian.org/python-team/modules/systemfixtures, https://github.com/testing-cabal/systemfixtures.git,2181.1332638889,4,4,0 +systemsettings,2.4865253927,3.7331829844,1.6878923842,https://salsa.debian.org/qt-kde-team/kde/systemsettings, https://invent.kde.org/plasma/systemsettings.git,5784.3886458333,14,140,0 +systray-mdstat,-0.4934338937,2.3728697502,-1.2391690443,https://github.com/xtaran/systray-mdstat,https://github.com/xtaran/systray-mdstat,1731.2023611111,1,1,0 +systune,-0.2655422679,0.9388013102,-0.7018488457,https://github.com/sudipm-mukherjee/systune.git,https://github.com/sudipm-mukherjee/systune.git,176.0601736111,1,4,0 +sysvinit,1.5203549982,1.687243769,1.3661977311,https://salsa.debian.org/debian/sysvinit, https://github.com/slicer69/sysvinit,5198.3006944445,2,8,0 +taglib,0.6369112815,1.1766409724,0.3196976202,https://salsa.debian.org/multimedia-team/taglib, https://github.com/taglib/taglib.git,5783.547962963,42,108,0 +tali,1.9752718226,6.0941978787,0.6146993961,https://salsa.debian.org/gnome-team/tali, https://gitlab.gnome.org/GNOME/tali/-/issues/new,2746.3319791667,2,17,0 +tao-pegtl,-2.2004802085,0.2251806172,-2.7633878882,https://salsa.debian.org/birger/tao-pegtl, https://github.com/taocpp/PEGTL/issues/new,2746.3319791667,2,17,0 +tap-plugins,0.09238064,1.3104592411,-0.1802167379,https://salsa.debian.org/multimedia-team/tap-plugins, https://github.com/tomszilagyi/tap-plugins.git,5078.9168287037,3,8,0 +tap.py,-0.7057840569,2.2385171659,-1.5015511284,https://salsa.debian.org/python-team/packages/tap.py, https://github.com/python-tap/tappy,3537.627025463,10,7,0 +tarantool,-1.1435934368,-0.6415676343,-1.3690954452,https://github.com/tarantool/tarantool,https://github.com/tarantool/tarantool,4846.2850231482,146,142,2 +tbb,0.6341816569,1.2227678652,0.2888506311,https://salsa.debian.org/science-team/tbb, https://github.com/oneapi-src/oneTBB.git,2645.1234143519,84,33,0 +tcl-signal,0.119740533,2.2371868408,-0.3075114676,https://salsa.debian.org/tcltk-team/tcl-signal, https://github.com/wjoye/tclsignal,2449.858275463,1,4,0 +tcpdf,1.4362050307,4.0365078374,0.4456928931,https://salsa.debian.org/phpmyadmin-team/tcpdf, https://github.com/tecnickcom/TCPDF,5278.8556481482,85,42,0 +tcpdump,0.4347652621,0.7418314703,0.2271719017,https://salsa.debian.org/rfrancoise/tcpdump, https://github.com/the-tcpdump-group/tcpdump,5536.8806712963,104,116,2 +tcpflow,0.1993321539,0.7688453693,-0.0915379508,https://salsa.debian.org/debian/tcpflow, https://github.com/simsong/tcpflow.git,4133.2346875,26,36,0 +tcpslice,0.3358455905,2.6360959654,-0.570915695,https://salsa.debian.org/debian/tcpslice, https://github.com/the-tcpdump-group/tcpslice,1218.7178356482,4,7,0 +tdc,-0.5860347644,1.7220497679,-1.1918576951,https://github.com/MTecknology/tdc,https://github.com/MTecknology/tdc,2078.2080208333,1,4,0 +tdiary,-0.5204166507,0.978252886,-1.2382173661,https://salsa.debian.org/ruby-team/tdiary, https://github.com/tdiary/tdiary-core,5778.2061689815,6,55,0 +tdiary-contrib,-1.4993548568,-0.3330069572,-2.0474169755,https://salsa.debian.org/ruby-team/tdiary-contrib, https://github.com/tdiary/tdiary-contrib,5617.5064699074,4,81,0 +tdiary-style-gfm,-3.85195761,-1.6209873018,-4.3352117054,https://salsa.debian.org/ruby-team/tdiary-style-gfm, https://github.com/tdiary/tdiary-style-gfm,3042.2103356482,2,13,0 +tea,-0.2810310835,0.1682947168,-0.470037759,https://salsa.debian.org/debian/tea, https://github.com/psemiletov/tea-qt.git,2860.1480092593,4,9,0 +teckit,2.1261637138,6.076788803,0.7450555927,https://github.com/debian-tex/teckit,https://github.com/debian-tex/teckit,2563.6115277778,1,6,0 +tegaki-zinnia-japanese,1.3618120507,5.4067459557,0.1410792866,https://salsa.debian.org/debian/tegaki-zinnia-japanese, https://github.com/tegaki/tegaki.git,5118.3927777778,1,17,0 +telegram-desktop,0.6823845923,1.5291754309,0.2171335322,https://salsa.debian.org/debian/telegram-desktop, https://github.com/telegramdesktop/tdesktop.git,3514.705775463,164,48,0 +telepathy-accounts-signon,0.7026418024,4.4187552272,-0.2580186565,https://salsa.debian.org/qt-kde-team/3rdparty/telepathy-accounts-signon, https://gitlab.com/accounts-sso/telepathy-accounts-signon.git,2553.5604166667,0,15,0 +template-glib,0.1689786023,2.3779032564,-0.3141628211,https://salsa.debian.org/gnome-team/template-glib, https://gitlab.gnome.org/GNOME/template-glib.git,2658.0133680556,30,22,0 +tenace,0.5978874098,2.5774827151,-0.2274598245,https://github.com/df7cb/tenace,https://github.com/df7cb/tenace,4952.6237847222,1,5,0 +tenshi,0.0367580557,2.6682075663,-1.10944291,https://salsa.debian.org/debian/tenshi, https://github.com/f-secure-foundry/tenshi,3173.5105787037,3,9,0 +termbox,-0.3320717253,1.7759689854,-0.759186002,https://salsa.debian.org/debian/termbox, https://github.com/nsf/termbox.git,4364.2203935185,12,41,0 +terminado,0.1170410576,1.292034871,-0.1639482973,https://salsa.debian.org/python-team/packages/terminado, https://github.com/jupyter/terminado,3771.3957407407,25,31,0 +terminaltables,0.4124929606,3.3980129071,-0.3182990743,https://git.progress-linux.org/users/daniel.baumann/debian/packages/terminaltables, https://github.com/matthewdeanmartin/terminaltables,2707.668125,1,11,0 +terminator,1.6458555797,2.6378494014,1.0254040674,https://salsa.debian.org/python-team/packages/terminator, https://github.com/gnome-terminator/terminator,5766.056412037,22,121,2 +terminus,-0.2662118555,2.9898195226,-1.0714864703,https://salsa.debian.org/debian/terminus, https://gitlab.com/rastersoft/terminus,2614.014849537,0,5,0 +termrec,-0.546232522,1.7238998812,-0.9959233042,https://github.com/kilobyte/termrec/tree/debian,https://github.com/kilobyte/termrec,5312.9533564815,0,2,0 +termshark,-0.7902341917,1.4608630566,-1.2282898458,https://salsa.debian.org/go-team/packages/termshark, https://github.com/gcla/termshark.git,1476.2094328704,6,14,0 +tesseract-lang,0.323928139,1.2279995331,-0.0238272916,https://github.com/AlexanderP/tesseract-lang-debian,https://github.com/AlexanderP/tesseract-lang-debian,1566.6614814815,0,5,0 +test-kitchen,-0.9210414384,1.3276246051,-1.6015563224,https://salsa.debian.org/ruby-team/test-kitchen, https://github.com/test-kitchen/test-kitchen/issues/new,2746.3319791667,2,17,0 +testpath,0.178377175,1.4251577183,-0.1467982799,https://salsa.debian.org/python-team/packages/testpath, https://github.com/jupyter/testpath.git,2578.9209490741,1,9,0 +testssl.sh,0.10510104,2.2088329426,-0.3427800743,https://salsa.debian.org/pkg-security-team/testssl.sh, https://github.com/drwetter/testssl.sh.git,3448.2208101852,24,122,0 +tetex-brev,-0.9042148426,0.8986607838,-1.4914577347,https://salsa.debian.org/debian/tetex-brev, https://github.com/asgeirn/brev-cls.git,3127.5767708333,2,4,0 +tex-common,0.1512318896,0.2576765609,0.0745875585,https://github.com/debian-tex/tex-common,https://github.com/debian-tex/tex-common,5410.6258333333,2,8,0 +tex-gyre,1.3108709384,3.2134416841,0.4567270817,https://github.com/debian-tex/tex-gyre,https://github.com/debian-tex/tex-gyre,5218.6495833333,2,7,0 +texext,-0.4966012771,2.4692944946,-1.3814646844,https://salsa.debian.org/python-team/packages/texext, https://github.com/matthew-brett/texext.git,2951.8081134259,0,5,0 +texinfo,1.2380835186,1.5944121073,0.9657638025,https://github.com/debian-tex/texinfo,https://github.com/debian-tex/texinfo,5779.8813425926,3,9,0 +texlive-base,1.1567962942,1.3629616108,0.9821522688,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-base,https://github.com/debian-tex/texlive-nonbin,4319.3633101852,4,9,0 +texlive-bin,0.977654239,1.2601203851,0.7506196709,https://github.com/debian-tex/texlive-bin,https://github.com/debian-tex/texlive-bin,4308.437662037,3,11,0 +texlive-extra,0.8703298986,1.0658084365,0.7081177712,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-extra,https://github.com/debian-tex/texlive-nonbin,4319.3633101852,4,9,0 +texlive-lang,0.7296144256,1.0788261732,0.4593754059,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-lang,https://github.com/debian-tex/texlive-nonbin,4319.3633101852,4,9,0 +texttable,0.3110676971,2.3550392201,-0.1289584976,https://salsa.debian.org/python-team/packages/texttable, https://github.com/foutaise/texttable,2877.9837384259,3,10,0 +texworks,0.3457955776,1.3076412249,-0.0653044306,https://github.com/debian-tex/texworks,https://github.com/debian-tex/texworks,4991.6789583333,1,9,0 +texworks-manual,0.1987398847,2.5940035152,-0.3212280071,https://github.com/debian-tex/texworks-manual,https://github.com/debian-tex/texworks-manual,1933.1899652778,2,5,0 +thaixfonts,0.1281624612,0.8719218593,-0.2256916476,https://salsa.debian.org/debian/thaixfonts, https://github.com/tlwg/thaixfonts/issues/new,2746.3319791667,2,17,0 +thefuck,0.5853956479,2.8773080916,-0.2294513995,https://salsa.debian.org/debian/thefuck, https://github.com/nvbn/thefuck.git,3035.1713888889,98,108,0 +three.js,0.1158900848,1.6807050834,-0.3114096336,https://salsa.debian.org/js-team/three.js, https://github.com/mrdoob/three.js/issues/new,2746.3319791667,2,17,0 +thunar-dropbox-plugin,0.1154555368,2.1832206667,-0.4180527247,https://salsa.debian.org/xfce-extras-team/thunar-dropbox-plugin, https://github.com/jeinzi/thunar-dropbox.git,3052.1741319445,2,6,0 +tidy-html5,2.5850621423,3.6627155983,1.8586757156,https://salsa.debian.org/debian/tidy-html5, https://github.com/htacg/tidy-html5,3722.5229050926,18,85,3 +tifffile,-0.4950191398,1.0954022518,-0.9432954038,https://salsa.debian.org/python-team/packages/tifffile, https://github.com/cgohlke/tifffile.git,1876.5951851852,0,2,0 +tigervnc,0.3860499518,0.9771386342,0.0684855341,https://salsa.debian.org/debian-remote-team/tigervnc, https://github.com/TigerVNC/tigervnc.git,5713.2161226852,57,92,0 +tikzit,-0.3160832668,1.7178404043,-0.77589652,https://salsa.debian.org/debian/tikzit, https://github.com/tikzit/tikzit.git,4273.8409027778,1,14,0 +tiledarray,-1.7374267908,0.1767686338,-2.351826242,https://salsa.debian.org/debichem-team/tiledarray, https://github.com/ValeevGroup/tiledarray.git,5618.1119675926,7,39,0 +timbl,-0.4012992985,1.3917222421,-0.9206654469,https://salsa.debian.org/science-team/timbl, https://github.com/LanguageMachines/timbl.git,2913.2087384259,0,8,0 +timeshift,0.0156315641,1.0681186493,-0.3011322044,https://salsa.debian.org/debian/timeshift, https://github.com/linuxmint/timeshift.git,3711.4258449074,52,39,0 +tint2,-0.1417276023,0.2119804366,-0.260976798,https://salsa.debian.org/debian/tint2, https://gitlab.com/o9000/tint2,5016.1640162037,2,38,0 +tinymux,-0.3581045566,1.2111694334,-0.9741268821,https://github.com/brazilofmux/tinymux,https://github.com/brazilofmux/tinymux,5573.2325925926,10,7,0 +tinyows,-1.9851115184,-0.21233169,-2.3478736194,https://salsa.debian.org/debian-gis-team/tinyows, https://github.com/mapserver/tinyows.git,4838.9733680556,4,22,0 +tinyssh,-1.473292065,0.8649169728,-1.916526544,https://salsa.debian.org/debian/tinyssh, https://github.com/janmojzis/tinyssh.git,3264.9232175926,1,18,0 +tinyxml,1.9451181417,5.6299149417,0.6525753295,https://salsa.debian.org/debian/tinyxml, https://git.code.sf.net/p/tinyxml/git,4942.509212963,5,40,0 +tinyxml2,1.0913167285,3.2160289026,0.2459658357,https://salsa.debian.org/debian/tinyxml2, https://github.com/leethomason/tinyxml2.git,4345.9184953704,18,127,0 +tk-table,0.3811226337,2.9724908262,-0.2247277525,https://salsa.debian.org/tcltk-team/tk-table, https://github.com/wjoye/tktable,2301.1677546296,2,6,0 +tldp,-2.9387752686,-1.0847198188,-3.3226946918,https://github.com/tLDP/python-tldp,https://github.com/tLDP/python-tldp,2447.0141319445,0,4,0 +tldr-py,-0.8494191178,1.5859020327,-1.3735854961,https://salsa.debian.org/python-team/packages/tldr-py, https://github.com/lord63/tldr.py,1740.1593055556,4,6,0 +tlf,-0.8747316419,-0.5145883819,-0.9886468624,https://salsa.debian.org/debian-hamradio-team/tlf, https://github.com/Tlf/tlf.git,5111.2798263889,15,21,0 +tmate,-0.0071778769,1.8783068231,-0.4502021812,https://salsa.debian.org/debian/tmate, https://github.com/tmate-io/tmate,5291.2387152778,13,35,0 +tmuxinator,-0.3500330489,0.3691621396,-0.5216614365,https://salsa.debian.org/ruby-team/tmuxinator, https://github.com/tmuxinator/tmuxinator,4304.3138657407,50,102,2 +todoman,-0.633941656,1.0146656015,-1.1556413476,https://salsa.debian.org/python-team/packages/todoman, https://github.com/pimutils/todoman.git,3181.1360069445,24,26,0 +todotxt-cli,0.0577600852,2.7668523017,-0.5546228302,https://salsa.debian.org/debian/todotxt-cli/, https://github.com/todotxt/todo.txt-cli.git,5276.7438425926,43,48,0 +tomb,-0.5194401596,0.6147002054,-0.8535115957,https://salsa.debian.org/pkg-security-team/tomb, https://github.com/dyne/Tomb,4854.5203472222,29,55,3 +toolz,-0.0387707332,1.2507938948,-0.3209301061,https://salsa.debian.org/python-team/packages/toolz, https://github.com/pytoolz/toolz.git,3458.6704861111,19,61,0 +tootle,1.2711208148,4.7692261317,-0.0231156554,https://salsa.debian.org/debian/tootle, https://github.com/bleakgrey/tootle.git,1706.1450925926,21,13,0 +toposort,-0.3077207516,1.633751547,-0.6613190144,https://salsa.debian.org/python-team/packages/toposort, https://gitlab.com/ericvsmith/toposort,3306.3456134259,3,2,0 +torbrowser-launcher,0.2254493944,0.4690081374,0.0615930109,https://salsa.debian.org/pkg-privacy-team/torbrowser-launcher, https://github.com/micahflee/torbrowser-launcher,3941.4624421296,20,66,6 +toro,-2.2006489719,0.2918073361,-2.7668191631,https://salsa.debian.org/debian/toro, https://github.com/ajdavis/toro/issues/new,2746.3319791667,2,17,0 +totalopenstation,-0.3889221766,1.015672648,-0.7332210243,https://salsa.debian.org/debian-gis-team/totalopenstation, https://github.com/totalopenstation/totalopenstation.git,3856.5791319445,6,8,0 +tox,-0.0583857096,0.596675637,-0.3289870568,https://salsa.debian.org/python-team/packages/tox, https://github.com/tox-dev/tox.git,4934.8446412037,209,140,0 +tp-smapi,0.8443233686,2.0576796454,0.2538706265,https://salsa.debian.org/debian/tp-smapi, https://github.com/linux-thinkpad/tp_smapi,4476.6966550926,6,7,0 +tpm2-abrmd,0.340870618,1.6439786295,-0.0279105882,https://salsa.debian.org/debian/tpm2-abrmd, https://github.com/tpm2-software/tpm2-abrmd.git,2473.8150231482,35,11,0 +tpm2-initramfs-tool,-1.4035912508,1.8041112115,-2.1934256167,https://github.com/timchen119/tpm2-initramfs-tool,https://github.com/timchen119/tpm2-initramfs-tool,486.0112962963,0,2,0 +tpm2-pkcs11,-4.8952729312,-2.3012582463,-5.4586329035,https://salsa.debian.org/debian/tpm2-pkcs11, https://github.com/tpm2-software/tpm2-pkcs11.git,1624.0547222222,39,5,0 +tpm2-tools,0.4974390568,2.4167223841,-0.0181300572,https://salsa.debian.org/debian/tpm2-tools, https://github.com/tpm2-software/tpm2-tools,3038.5204976852,147,25,10 +tqdm,0.0667368265,1.2461539797,-0.2209880087,https://salsa.debian.org/python-team/packages/tqdm, https://github.com/tqdm/tqdm.git,3584.2928472222,91,37,0 +trace-cmd,0.0998974637,1.3978799562,-0.3546480844,https://github.com/sudipm-mukherjee/trace-cmd.git,https://github.com/sudipm-mukherjee/trace-cmd.git,1314.92875,139,17,0 +trackballs,0.2450481241,1.0347559155,-0.1842061844,https://salsa.debian.org/games-team/trackballs, https://github.com/trackballs/trackballs.git,2063.1770717593,6,7,0 +tracker-miners,2.9689080801,5.2101570044,1.8525571516,https://salsa.debian.org/gnome-team/tracker-miners, https://gitlab.gnome.org/GNOME/tracker-miners,5786.805474537,272,269,0 +trafficserver,-1.1637092501,-0.6406398781,-1.4692398801,https://salsa.debian.org/debian/trafficserver, https://github.com/apache/trafficserver,5180.0140046296,430,166,14 +traitlets,0.2529500243,1.8629238208,-0.0962338622,https://salsa.debian.org/python-team/packages/traitlets, https://github.com/ipython/traitlets.git,5659.0350347222,36,89,0 +tran,-0.5507488829,1.9378847892,-1.0913812007,https://github.com/kilobyte/tran/tree/debian,https://github.com/kilobyte/tran,4999.4501736111,0,1,0 +translate-toolkit,0.5666153799,1.1596678166,0.2087756345,https://salsa.debian.org/l10n-team/translate-toolkit, https://github.com/translate/translate,5785.7860300926,95,49,2 +trash-cli,1.0668413853,2.3976401165,0.3579793564,https://salsa.debian.org/debian/trash-cli, https://github.com/andreafrancia/trash-cli.git,5751.4616319445,18,35,0 +trayer,0.7960935453,2.2360852153,0.1224095274,https://salsa.debian.org/skangas/trayer, https://github.com/sargon/trayer-srg/issues/new,2746.3319791667,2,17,0 +trend,-0.2479870837,1.2371792623,-0.5627153849,https://salsa.debian.org/debian/trend, https://gitlab.com/wavexx/trend,3870.7506481482,0,1,0 +triangle,-0.1711886516,3.1308185907,-1.215472085,https://salsa.debian.org/science-team/triangle, https://github.com/libigl/triangle.git,2528.1501736111,2,7,0 +triggerhappy,1.5982884158,4.4832077788,0.3890624079,https://github.com/wertarbyte/triggerhappy,https://github.com/wertarbyte/triggerhappy,2171.0642708333,5,5,0 +trimage,1.2553852758,3.9585208411,0.1886888721,https://salsa.debian.org/debian-phototools-team/trimage, https://github.com/Kilian/Trimage,4077.9117708333,2,17,0 +trinityrnaseq,-0.3652446175,1.4159966432,-0.9745313296,https://salsa.debian.org/med-team/trinityrnaseq, https://github.com/trinityrnaseq/trinityrnaseq/issues/new,2746.3319791667,2,17,0 +trivial-features,0.2637949915,3.2767480587,-0.566814757,https://salsa.debian.org/common-lisp-team/trivial-features, https://github.com/trivial-features/trivial-features,5548.6738657407,11,9,0 +trivial-gray-streams,-0.0499196075,1.9477808571,-0.5052595662,https://salsa.debian.org/common-lisp-team/trivial-gray-streams, https://github.com/trivial-gray-streams/trivial-gray-streams/issues/new,2746.3319791667,2,17,0 +trocla,-1.1282943752,1.854915092,-2.1296966635,https://salsa.debian.org/ruby-team/trocla, https://github.com/duritong/trocla,4222.9344444445,2,25,0 +trollsift,-2.0282713827,0.319975344,-2.4783042686,https://salsa.debian.org/debian-gis-team/trollsift, https://github.com/pytroll/trollsift,3470.9592824074,4,15,0 +tslib,0.1336789289,0.9994750001,-0.093473923,https://github.com/merge/tslib-debian,https://github.com/merge/tslib-debian,1295.9506018519,2,3,0 +tty-clock,-0.284505417,0.4575702587,-0.4967187932,https://github.com/anarcat/tty-clock/tree/debian,https://github.com/anarcat/tty-clock,3142.1821759259,0,24,0 +ttygif,-0.7784747081,1.4851223551,-1.2922907456,https://salsa.debian.org/debian/ttygif, https://github.com/icholy/ttygif.git,3670.9607175926,6,36,0 +tvdb-api,-0.5333752976,2.0967354524,-1.0810942565,https://salsa.debian.org/python-team/packages/tvdb-api, https://github.com/dbr/tvdb_api.git,5264.8978240741,6,18,0 +tweepy,0.3014929332,2.3332026362,-0.5274701476,https://salsa.debian.org/python-team/packages/tweepy, https://github.com/tweepy/tweepy.git,5164.9313194445,72,189,0 +twiggy,0.3100508018,4.0880000737,-0.8527826044,https://salsa.debian.org/perl-team/modules/packages/twiggy, https://github.com/miyagawa/Twiggy/issues/new,2746.3319791667,2,17,0 +twisted,0.9806949187,1.4363037661,0.6532449534,https://salsa.debian.org/python-team/packages/twisted, https://github.com/twisted/twisted.git,5788.1823726852,71,239,0 +twms,-0.5922081551,1.2383570594,-1.1972199961,https://salsa.debian.org/debian/twms, https://github.com/Komzpa/twms.git,2177.2821875,3,11,0 +twolame,0.8417112782,2.6067569755,0.181912311,https://salsa.debian.org/multimedia-team/twolame, https://github.com/njh/twolame,5003.7664467593,10,10,2 +txt2html,0.7774259234,2.1221283602,0.106308761,https://salsa.debian.org/debian/txt2html, https://github.com/resurrecting-open-source-projects/txt2html,5316.6490856482,1,4,0 +txt2man,0.4090645621,1.519569464,-0.1442456476,https://salsa.debian.org/debian/txt2man, https://github.com/mvertes/txt2man,2424.6791435185,2,9,0 +txt2tags,0.0507302842,1.0615675266,-0.3853719858,https://salsa.debian.org/python-team/packages/txt2tags, https://github.com/txt2tags/txt2tags.git,5549.6046296296,9,22,0 +txws,-1.4288081047,1.2079142338,-2.0336181053,https://salsa.debian.org/python-team/packages/txws, https://github.com/MostAwesomeDude/txWS,4288.2085763889,2,10,0 +txzmq,-0.6021876626,0.9002822086,-1.0188293115,https://salsa.debian.org/python-team/packages/txzmq, https://github.com/smira/txZMQ,3989.2474074074,3,25,0 +typogrify,-0.5841407904,1.9099456866,-1.1786502144,https://salsa.debian.org/python-team/packages/typogrify, https://github.com/mintchaos/typogrify,4964.5992708333,2,13,0 +u-msgpack-python,0.71036009,3.6137824666,-0.1082167429,https://salsa.debian.org/python-team/packages/u-msgpack-python, https://github.com/vsergeev/u-msgpack-python,3518.0095949074,11,3,1 +uap-core,-1.4950577768,0.2195779264,-1.9007872982,https://salsa.debian.org/debian/uap-core, https://github.com/ua-parser/uap-core.git,3378.7186458333,35,224,0 +ucblogo,0.5516565275,2.1494433758,-0.2197132227,https://salsa.debian.org/debian/ucblogo, https://github.com/jrincayc/ucblogo-code.git,5543.044212963,8,20,0 +ucimf-sunpinyin,-2.7521881221,-0.0969608973,-3.5733343655,https://salsa.debian.org/input-method-team/ucimf-sunpinyin, https://github.com/matlinuxer2/ucimf,2036.6533564815,0,12,0 +udevil,0.6939504789,2.6929024116,-0.0993242318,https://github.com/mati75/udevil.git,https://github.com/mati75/udevil.git,2023.2994675926,0,4,0 +udiskie,-0.3031200679,0.3580496129,-0.4434157504,https://salsa.debian.org/debian/udiskie, https://github.com/coldfix/udiskie.git,4957.8082175926,8,28,0 +udisks2,1.637930268,2.6755087394,1.0040393895,https://salsa.debian.org/utopia-team/udisks2, https://github.com/storaged-project/udisks,5742.1701388889,64,76,1 +ufo2otf,-1.1799643582,1.8587549116,-1.9214944844,https://github.com/Rudloff/ufo2otf-debian,https://github.com/Rudloff/ufo2otf-debian,893.8441666667,1,3,0 +uftrace,-0.1316572658,1.5551451785,-0.7543792795,https://salsa.debian.org/debian/uftrace, https://github.com/namhyung/uftrace,3614.2657175926,76,47,1 +uglifyjs,1.1390181603,3.3421341091,0.221625202,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333,82,71,0 +uhd,0.6895069977,1.8179096863,0.1404815926,https://salsa.debian.org/bottoms/pkg-uhd, https://github.com/EttusResearch/uhd,5060.909212963,150,90,0 +uhub,-0.2796838226,3.5742395891,-1.580799445,https://github.com/tehnick/uhub-debian,https://github.com/tehnick/uhub-debian,4037.2023148148,0,1,0 +uid-wrapper,0.0254574325,3.2219943533,-0.8289276064,https://salsa.debian.org/sssd-team/uid-wrapper, https://git.samba.org/uid_wrapper.git,3714.8803240741,9,3,0 +uim-chewing,-2.5213043929,-0.416096965,-2.9868668,https://salsa.debian.org/debian/uim-chewing, https://github.com/uim/uim-chewing,1095.7200231482,0,1,0 +ujson,-0.1082361427,1.8516108973,-0.6195279864,https://salsa.debian.org/python-team/packages/ujson, https://github.com/ultrajson/ultrajson,4669.0428587963,23,77,1 +ukui-biometric-auth,-1.2310843043,0.7537049181,-1.6740612047,https://github.com/ukui/ukui-biometric-auth,https://github.com/ukui/ukui-biometric-auth,1260.5815625,5,11,0 +ukui-control-center,-2.2036628317,0.0511944606,-2.8931977038,https://github.com/ukui/ukui-control-center,https://github.com/ukui/ukui-control-center,1921.8410069445,76,81,0 +ukui-indicators,-1.377804594,1.2157849638,-2.1158896015,https://github.com/ukui/ukui-indicators,https://github.com/ukui/ukui-indicators,1239.8214814815,3,9,0 +ukui-menu,-2.2657596741,0.3860077489,-2.9406958817,https://github.com/ukui/ukui-menu,https://github.com/ukui/ukui-menu,2046.8180787037,5,22,0 +ukui-power-manager,-0.3190978856,2.9128539736,-1.1219811752,https://github.com/ukui/ukui-power-manager,https://github.com/ukui/ukui-power-manager,1544.224537037,3,19,0 +ukui-screensaver,-1.1800118464,1.6746247608,-1.9029677544,https://github.com/ukui/ukui-screensaver,https://github.com/ukui/ukui-screensaver,1998.946712963,5,27,0 +ukui-settings-daemon,0.1219875774,3.2976507371,-0.6818364877,https://github.com/ukui/ukui-settings-daemon,https://github.com/ukui/ukui-settings-daemon,1595.2230439815,10,31,0 +ukui-sidebar,-3.8890227903,-1.5419346693,-4.3399549698,https://github.com/ukui/ukui-sidebar,https://github.com/ukui/ukui-sidebar,770.8421412037,16,52,0 +ukui-themes,-0.5826962952,2.2384569095,-1.2986461297,https://github.com/ukui/ukui-themes,https://github.com/ukui/ukui-themes,1509.1822916667,6,9,0 +ukui-window-switch,-0.0682235529,2.62493726,-0.710251639,https://github.com/ukui/ukui-window-switch,https://github.com/ukui/ukui-window-switch,1514.8197685185,3,12,0 +ukwm,0.0241460016,2.4871143834,-0.636125077,https://github.com/ukui/ukwm,https://github.com/ukui/ukwm,1267.0099189815,3,5,0 +ulfius,-0.4587423218,2.0897283971,-1.0153636707,https://salsa.debian.org/debian-iot-team/oauth2/ulfius.git, https://github.com/babelouest/ulfius,2934.0478356482,8,24,0 +umoci,-1.5049797774,0.5808986769,-2.0306653344,https://salsa.debian.org/go-team/packages/umoci, https://github.com/opencontainers/umoci/issues/new,2746.3319791667,2,17,0 +umockdev,0.1318024607,1.5353538297,-0.4760663816,https://salsa.debian.org/debian/umockdev, https://github.com/martinpitt/umockdev,4165.2300925926,25,7,1 +unburden-home-dir,-0.501169023,0.195057165,-0.7613384703,https://github.com/xtaran/unburden-home-dir,https://github.com/xtaran/unburden-home-dir,4201.5461342593,1,10,2 +uncertainties,0.7196416404,3.2960566704,-0.2187627854,https://salsa.debian.org/debian/python-uncertainties, https://github.com/lebigot/uncertainties.git,4894.0458912037,5,16,0 +underscore,0.5577202877,2.1670034109,0.0619794849,https://salsa.debian.org/js-team/underscore, https://github.com/jashkenas/underscore.git,5084.8093171296,25,336,0 +underscore.string,0.0539301169,2.7677988666,-0.5705994219,https://salsa.debian.org/js-team/underscore.string, https://github.com/epeli/underscore.string,4650.3899652778,15,105,1 +unhide,1.7061388819,3.8742874975,0.7376306506,https://salsa.debian.org/pkg-security-team/unhide, https://github.com/YJesus/Unhide.git,991.7221296296,2,5,0 +unknown-horizons,0.102674823,1.1193927662,-0.3139585944,https://salsa.debian.org/games-team/unknown-horizons, https://github.com/unknown-horizons/unknown-horizons.git,5675.9453240741,263,167,0 +unorm.js,-1.3130104406,0.8981282809,-1.8444156842,https://salsa.debian.org/js-team/unorm.js, https://github.com/walling/unorm/issues/new,2746.3319791667,2,17,0 +unrar-nonfree,1.8473265605,3.1989063054,1.0595588445,https://github.com/debian-calibre/unrar-nonfree,https://github.com/debian-calibre/unrar-nonfree,1876.6905902778,7,5,0 +unrardll,-0.7960021888,0.5888362105,-1.105938125,https://github.com/debian-calibre/unrardll,https://github.com/debian-calibre/unrardll,1864.0022916667,0,4,0 +unshield,1.079201816,2.9040511207,0.2466958012,https://salsa.debian.org/games-team/unshield, https://github.com/twogood/unshield.git,5774.0918055556,2,32,0 +unworkable,-0.495607915,1.1078529483,-1.0387863531,https://salsa.debian.org/debian/unworkable, https://github.com/niallo/Unworkable.git,3168.162650463,2,5,0 +upower,2.7655453839,3.9227454558,2.0150082745,https://salsa.debian.org/utopia-team/upower/, https://gitlab.freedesktop.org/upower/upower,5673.280150463,95,32,0 +uprightdiff,-0.4558231527,2.4760391995,-1.3299274891,https://salsa.debian.org/mediawiki-team/uprightdiff, https://gerrit.wikimedia.org/r/integration/uprightdiff.git,1498.113587963,0,5,0 +urdfdom-headers,0.2254955808,2.8004984756,-0.5105970847,https://salsa.debian.org/science-team/urdfdom-headers, https://github.com/ros/urdfdom_headers,4147.720625,11,23,0 +uriparser,0.7893734142,2.1927118174,0.2015926451,https://jff.email/cgit/uriparser.git, https://github.com/uriparser/uriparser.git,5735.8655324074,19,13,0 +urlscan,1.3847799551,3.3894109199,0.3826087347,https://salsa.debian.org/debian/urlscan, https://github.com/firecat53/urlscan,5177.9480092593,10,13,0 +urweb,-1.8958662132,-0.5705233698,-2.3651769616,https://github.com/urweb/debian-urweb,https://github.com/urweb/debian-urweb,4447.2215393519,3,56,0 +urwid,0.555397852,1.3910532298,0.1153765589,https://salsa.debian.org/python-team/packages/urwid, https://github.com/urwid/urwid.git,5781.6522222222,48,112,0 +usbauth,-0.84864584,2.3248338051,-1.5774396132,https://salsa.debian.org/debian/usbauth, https://github.com/kochstefan/usbauth-all.git,2917.2837384259,3,5,0 +usbauth-notifier,-1.3618380248,0.1189121883,-1.684268531,https://salsa.debian.org/debian/usbauth-notifier, https://github.com/kochstefan/usbauth-all.git,2917.2837384259,3,5,0 +usbguard,-0.21450453,0.5691395227,-0.5636553493,https://salsa.debian.org/birger/usbguard, https://github.com/dkopecek/usbguard,3141.3933796296,33,38,1 +usbmuxd,1.7018106669,3.399620343,0.8385492974,https://salsa.debian.org/imobiledevice-team/usbmuxd, https://github.com/libimobiledevice/usbmuxd,5280.2443287037,27,16,0 +usbredir,1.1519655817,3.7803348602,0.2589810681,https://salsa.debian.org/debian/usbredir, https://gitlab.freedesktop.org/spice/usbredir.git,4662.795787037,9,16,0 +usbview,0.2830288966,1.2165170826,-0.0945146744,https://salsa.debian.org/debian/usbview, https://github.com/gregkh/usbview.git,5596.9732407408,7,11,0 +use-package,-0.2649345579,2.0726072776,-0.6943525536,https://salsa.debian.org/emacsen-team/use-package, https://github.com/jwiegley/use-package.git,3965.7776851852,21,110,0 +usepackage,-0.9795822441,1.5280554743,-1.7597726944,https://salsa.debian.org/debian/usepackage, https://github.com/jonathanhogg/usepackage.git,3462.962337963,0,2,0 +ust,-0.0649462938,0.21875617,-0.1717297563,https://salsa.debian.org/debian/ust, git://git.lttng.org/lttng-ust.git,5424.0034375,74,8,0 +utf8proc,0.0898643884,0.8034648569,-0.0749520007,https://salsa.debian.org/julia-team/utf8proc, https://github.com/JuliaStrings/utf8proc,3420.2714930556,31,18,0 +utidylib,0.4317748588,1.4934094955,0.0288837511,https://salsa.debian.org/python-team/packages/utidylib, https://github.com/nijel/utidylib.git,5086.384525463,8,4,0 +utox,0.3813212191,3.9189412434,-0.5611645236,https://salsa.debian.org/yangfl-guest/uTox, https://github.com/uTox/uTox.git,2920.6360069445,25,159,0 +uvloop,-0.4097803455,1.6193553491,-1.0751849943,https://salsa.debian.org/python-team/packages/uvloop, https://github.com/MagicStack/uvloop,2912.1617939815,58,10,0 +v4l2loopback,-0.1197314674,0.4069152495,-0.2587985427,https://salsa.debian.org/debian/v4l2loopback, https://github.com/umlaeute/v4l2loopback.git,5406.2159953704,26,63,0 +vagalume,-1.4511274237,-0.9732880608,-1.5424132302,https://salsa.debian.org/berto/vagalume, https://github.com/bertogg/vagalume,2090.3450578704,26,3,0 +vagrant,0.2299619618,0.6284669987,0.0013114431,https://salsa.debian.org/ruby-team/vagrant, https://github.com/hashicorp/vagrant/issues/new,2746.3319791667,2,17,0 +vagrant-libvirt,-0.1221442454,0.3185253091,-0.2416538921,https://salsa.debian.org/ruby-team/vagrant-libvirt, https://github.com/vagrant-libvirt/vagrant-libvirt,3827.3451388889,87,210,0 +vagrant-lxc,0.8034556285,4.6021026989,-0.412211374,https://salsa.debian.org/ruby-team/vagrant-lxc, https://github.com/fgrehm/vagrant-lxc,3559.775474537,9,55,2 +vagrant-mutate,-0.4801401485,1.7149444538,-0.9074989115,https://salsa.debian.org/ruby-team/vagrant-mutate, https://github.com/sciurus/vagrant-mutate,1407.9479166667,3,15,4 +vagrant-sshfs,-0.3177714786,2.0839099019,-0.8418425788,https://salsa.debian.org/ruby-team/vagrant-sshfs, https://github.com/dustymabe/vagrant-sshfs,2305.1928472222,2,14,0 +vala,0.1830414286,0.6380880644,-0.0618459044,https://salsa.debian.org/gnome-team/vala, https://gitlab.gnome.org/GNOME/vala.git,5785.9802199074,299,93,0 +valabind,-1.2435397352,-0.3428907439,-1.6087950787,https://salsa.debian.org/debian/valabind, https://github.com/radare/valabind,4839.9819560185,6,19,0 +valinor,-2.9368505692,-1.1020102649,-3.3193721608,https://salsa.debian.org/python-team/packages/valinor, https://github.com/ARMmbed/valinor.git,1839.1786805556,3,12,0 +variantslib,-2.0986968646,0.447590858,-2.6103147834,https://salsa.debian.org/ocaml-team/variantslib, https://github.com/janestreet/variantslib.git,3865.5561921296,0,7,0 +variety,-0.051954706,0.9056776405,-0.3408370935,https://salsa.debian.org/jlu-guest/variety, https://github.com/varietywalls/variety.git,4151.289224537,39,13,0 +varnish-modules,-0.173487857,1.5956719914,-0.8110052228,https://salsa.debian.org/varnish-team/varnish-modules, https://github.com/varnish/varnish-modules.git,2832.355162037,28,18,0 +vc,-0.839229195,1.2650436037,-1.283422007,https://salsa.debian.org/science-team/vc, https://github.com/VcDevel/Vc,5255.2008333333,28,24,2 +vcr.py,-0.5720018357,0.8360445569,-0.929665686,https://salsa.debian.org/python-team/packages/vcr.py, https://github.com/kevin1024/vcrpy,4215.4541898148,65,92,2 +vcsh,1.141131609,4.2673996711,0.0261319499,https://github.com/RichiH/vcsh,https://github.com/RichiH/vcsh,4529.0101851852,11,57,0 +vcversioner,0.242716431,2.8314661474,-0.3332608567,https://salsa.debian.org/python-team/packages/vcversioner, https://github.com/habnabit/vcversioner,1010.4509143519,0,4,0 +vdirsyncer,0.3843546247,2.3734935386,-0.296882335,https://salsa.debian.org/python-team/packages/vdirsyncer, https://github.com/pimutils/vdirsyncer,3574.7769560185,36,34,3 +vfu,0.7502192139,2.4194817119,-0.0549697238,https://github.com/bbonev/vfu-deb,https://github.com/bbonev/vfu-deb,1063.877025463,0,1,0 +vifm,0.5907880821,1.8416799419,-0.007914651,https://salsa.debian.org/debian/vifm, https://github.com/vifm/vifm.git,5419.5621875,29,42,0 +vim-addon-mw-utils,-0.0766853355,2.430445626,-0.5749142116,https://salsa.debian.org/debian/vim-addon-mw-utils, https://salsa.debian.org/debian/vim-addon-mw-utils.git,3078.4594328704,0,5,0 +vim-airline,-0.0816003186,1.8952783759,-0.5295769441,https://salsa.debian.org/vim-team/vim-airline, https://github.com/vim-airline/vim-airline.git,3754.6958796296,73,309,0 +vim-autopep8,0.2098655728,3.1531229671,-0.5592658877,https://salsa.debian.org/python-team/packages/vim-autopep8, https://github.com/tell-k/vim-autopep8.git,1821.7416782407,1,10,0 +vim-command-t,-0.281217187,1.711936341,-0.8034960415,https://github.com/yrro/command-t,https://github.com/yrro/command-t,4589.5430092593,66,14,0 +vim-pathogen,0.6414088616,3.5168371844,-0.1777623358,https://salsa.debian.org/debian/vim-pathogen, https://github.com/tpope/vim-pathogen.git,5052.6545717593,18,3,0 +vim-snipmate,-0.1165727171,2.32055621,-0.6680192967,https://salsa.debian.org/debian/vim-snipmate, https://github.com/garbas/vim-snipmate.git,5137.2848263889,35,58,0 +vim-snippets,0.2843981532,3.6384709047,-0.4582712409,https://salsa.debian.org/debian/vim-snippets, https://github.com/honza/vim-snippets.git,4556.7717708333,295,399,0 +vim-syntastic,0.6140558117,2.930487173,-0.1392822778,https://salsa.debian.org/debian/vim-syntastic, https://github.com/vim-syntastic/syntastic,3869.6290393519,38,349,0 +vim-voom,-0.4785805602,0.6126802722,-0.659254773,https://salsa.debian.org/yyabuki/vim-voom, https://github.com/vim-voom/VOoM.git,1193.9262731482,0,1,0 +vim-youcompleteme,0.1362462863,1.1000367189,-0.249423106,https://salsa.debian.org/debian/vim-youcompleteme, https://github.com/ycm-core/YouCompleteMe,4190.5715509259,32,182,0 +vine,0.0090321357,2.3907886191,-0.4511311147,https://salsa.debian.org/python-team/packages/vine, https://github.com/celery/vine,2839.8583101852,19,6,1 +virglrenderer,0.4893273403,1.6655065985,0.0424190081,https://salsa.debian.org/debian/virglrenderer, https://gitlab.freedesktop.org/virgl/virglrenderer.git,3547.2842592593,48,79,0 +virt-manager,1.4854214543,1.9318799818,1.1323344324,https://salsa.debian.org/libvirt-team/virt-manager, https://github.com/virt-manager/virt-manager,5726.7286574074,246,65,0 +virt-viewer,1.2890370872,2.7245747296,0.5531129827,https://salsa.debian.org/libvirt-team/virt-viewer, https://gitlab.com/virt-viewer/virt-viewer.git,5755.5009837963,60,75,0 +virtualenv-clone,0.5786024683,2.7708212087,-0.1157511212,https://salsa.debian.org/debian/virtualenv-clone, https://github.com/edwardgeorge/virtualenv-clone,3835.1669675926,11,10,0 +virtualjaguar,-0.3323824959,1.6186130413,-0.7674058951,https://github.com/glaubitz/virtualjaguar-debian,https://github.com/glaubitz/virtualjaguar-debian,1293.0757291667,2,1,0 +virtuoso-opensource,1.6983974707,3.0030248972,0.9540250414,https://salsa.debian.org/science-team/virtuoso-opensource, https://github.com/openlink/virtuoso-opensource,5789.1263310185,14,14,0 +vis,-0.1146119623,2.3253007994,-0.8281501477,https://salsa.debian.org/debian/vis, https://github.com/martanne/vis,3439.6246875,66,84,0 +vit,0.0632096362,2.1941888983,-0.5753562214,https://salsa.debian.org/tasktools-team/vit, https://github.com/scottkosty/vit.git,3775.4418171296,6,22,0 +vitetris,-0.3240468697,1.2522757865,-0.6105075287,https://salsa.debian.org/debian/vitetris, https://github.com/vicgeralds/vitetris,918.6513310185,0,4,0 +vlc-plugin-vlsub,0.381592361,2.145391475,-0.1877050527,https://github.com/simongareste/vlsub-deb,https://github.com/simongareste/vlsub-deb,2.1037731481,1,2,0 +vmdb2,0.3519796377,2.3379745253,-0.4233202277,https://salsa.debian.org/debian/vmdb2/, https://gitlab.com/larswirzenius/vmdb2.git,2442.9266666667,9,24,0 +vmdk-stream-converter,-0.6161713478,2.0371581396,-1.4003837548,https://salsa.debian.org/python-team/packages/vmdk-stream-converter, https://github.com/imcleod/VMDK-stream-converter.git,2430.6944328704,1,3,0 +vmtouch,0.0085288392,3.0675234726,-0.8067347383,https://salsa.debian.org/debian/vmtouch, https://github.com/hoytech/vmtouch,4266.5434837963,8,25,0 +voctomix,-0.3727468412,1.1810950571,-0.6494603735,https://salsa.debian.org/debian/voctomix, https://github.com/voc/voctomix.git,3329.1224189815,7,54,0 +voctomix-outcasts,-1.6893130475,-1.2420509413,-1.7699634447,https://salsa.debian.org/debian/voctomix-outcasts, https://github.com/CarlFK/voctomix-outcasts.git,2648.5362847222,0,9,0 +vokoscreen-ng,0.2104121096,1.2955691942,-0.1531712498,https://salsa.debian.org/debian/vokoscreen-ng, https://github.com/vkohaupt/vokoscreenNG/issues/new,2746.3319791667,2,17,0 +volk,0.3490308455,1.9477412745,-0.157883478,https://salsa.debian.org/bottoms/pkg-volk, https://github.com/gnuradio/volk,4752.915,39,93,0 +voltron,-1.8139477845,1.3185040904,-2.8023383764,https://salsa.debian.org/python-team/packages/voltron, https://github.com/snare/voltron.git,2775.5086458333,5,31,0 +volumeicon,0.5582239179,2.4117054016,-0.1176545428,https://github.com/mati75/volumeicon-debian.git,https://github.com/mati75/volumeicon-debian.git,4377.0106597222,0,5,0 +voluptuous,-0.403966828,1.2358837228,-0.7514608215,https://salsa.debian.org/python-team/packages/voluptuous, https://github.com/alecthomas/voluptuous,4900.0540740741,38,69,0 +voms,-0.756674276,-0.2090198319,-0.9203293452,https://salsa.debian.org/ellert/voms, https://github.com/italiangrid/voms,3745.5262731482,4,20,0 +vorbis-tools,1.3440829273,1.7860630127,1.0160939171,https://salsa.debian.org/multimedia-team/vorbis-tools, https://gitlab.xiph.org/xiph/vorbis-tools.git,5697.020474537,8,19,0 +votca-csg,-1.3015984703,-0.1291946736,-1.7236921975,https://salsa.debian.org/debichem-team/votca-csg, https://github.com/votca/csg/issues/new,2746.3319791667,2,17,0 +votca-tools,-1.8853292795,-0.4197586029,-2.3094251728,https://salsa.debian.org/debichem-team/votca-tools, https://github.com/votca/tools/tools/new,2746.3319791667,2,17,0 +vowpal-wabbit,1.6051587851,4.7879705553,0.3258945817,http://github.com/yarikoptic/vowpal_wabbit,http://github.com/yarikoptic/vowpal_wabbit,3692.4062037037,66,280,0 +vows,-1.3939497745,0.3324247114,-1.7950844541,https://salsa.debian.org/js-team/vows, https://github.com/cloudhead/vows/issues/new,2746.3319791667,2,17,0 +vpcs,0.5719602774,3.99052142,-0.2987031963,https://github.com/dlintott/vpcs,https://github.com/dlintott/vpcs,302.5271875,0,2,0 +vpnc,0.7552132496,1.2426452707,0.4176316467,https://salsa.debian.org/debian/vpnc, https://github.com/streambinder/vpnc,5629.8413888889,11,17,0 +vpnc-scripts,0.9054764724,2.6528583458,0.192517338,https://salsa.debian.org/debian/vpnc-scripts, https://gitlab.com/openconnect/vpnc-scripts.git,5096.9612037037,29,26,0 +vte2.91,1.4078707902,2.8830125399,0.6648921755,https://salsa.debian.org/gnome-team/vte2.91, https://gitlab.gnome.org/GNOME/vte.git,5788.0698032407,175,182,0 +vue-router.js,-2.7239892069,-0.137337361,-3.3068761493,https://salsa.debian.org/js-team/vue-router.js, https://github.com/vuejs/vue-router/issues/new,2746.3319791667,2,17,0 +vue.js,-1.0931356092,1.0186682685,-1.5343339016,https://salsa.debian.org/js-team/vue.js, https://github.com/vuejs/vue/issues/new,2746.3319791667,2,17,0 +vulkan-tools,0.5439285401,2.7620245691,-0.0866599469,https://salsa.debian.org/xorg-team/vulkan/vulkan-tools, https://github.com/KhronosGroup/Vulkan-Tools,3430.9236458333,186,91,0 +vulture,0.1257048571,2.7295517234,-0.6740637733,https://salsa.debian.org/python-team/packages/vulture, https://github.com/jendrikseipp/vulture.git,4281.7359490741,37,5,0 +w1retap,-1.0774356222,1.0966276027,-1.7416580306,https://salsa.debian.org/thomasdstewart/w1retap, https://salsa.debian.org/thomasdstewart-guest/w1retap,704.9797106481,0,1,0 +w3c-linkchecker,1.0779084142,3.0562972028,0.1151150994,https://salsa.debian.org/perl-team/modules/packages/w3c-linkchecker, https://github.com/w3c/link-checker/issues/new,2746.3319791667,2,17,0 +w3m-el,0.0908536376,0.5915105263,-0.1794456109,https://salsa.debian.org/debian/w3m-el, https://github.com/emacs-w3m/emacs-w3m,5732.8756134259,8,17,0 +w3m-el-snapshot,-0.0316215167,0.794577588,-0.429835318,https://salsa.debian.org/debian/w3m-el-snapshot, https://github.com/emacs-w3m/emacs-w3m,5732.8756134259,8,17,0 +wabt,-0.2150215091,1.5341313371,-0.5800801741,https://salsa.debian.org/debian/wabt, https://github.com/WebAssembly/wabt,3027.9831828704,131,19,0 +wacomtablet,-0.002384654,1.4588204917,-0.3947720789,https://salsa.debian.org/qt-kde-team/extras/wacomtablet, https://invent.kde.org/system/wacomtablet,4647.5475925926,16,36,0 +wadc,-1.3114197782,1.1488153676,-1.8942921561,https://github.com/jmtd/wadc,https://github.com/jmtd/wadc,2669.3253125,2,7,0 +waffle,-0.1241330981,1.5859672019,-0.6839702739,https://salsa.debian.org/xorg-team/lib/waffle, https://gitlab.freedesktop.org/mesa/waffle.git,4225.9243171296,37,30,0 +waitress,-0.001435195,0.7796936159,-0.2577457307,https://salsa.debian.org/python-team/packages/waitress, https://github.com/Pylons/waitress.git,4372.6596990741,10,50,0 +wajig,-0.2563640933,-0.2041280932,-0.289877151,https://github.com/gjwgit/wajig/wajig,https://github.com/gjwgit/wajig,4746.4752546296,1,8,0 +wakeonlan,0.5347762299,2.3981769483,-0.0392961396,https://salsa.debian.org/debian/wakeonlan, https://github.com/jpoliv/wakeonlan/issues/new,2746.3319791667,2,17,0 +wal2json,-1.8275745539,0.5424600488,-2.3404171148,https://salsa.debian.org/postgresql/wal2json, https://github.com/eulerto/wal2json.git,3393.2528703704,6,15,0 +wand,-0.67759885,-0.1056309981,-0.8962104321,https://salsa.debian.org/debian/wand, https://github.com/emcconville/wand,4461.4997222222,24,94,1 +wavbreaker,-0.3043692646,1.3080197333,-0.6434518402,https://salsa.debian.org/multimedia-team/wavbreaker, https://github.com/thp/wavbreaker.git,5680.2477546296,3,6,0 +wavpack,0.5006437508,1.2816911597,0.1442013441,https://salsa.debian.org/multimedia-team/wavpack, https://github.com/dbry/WavPack,5719.9072569445,11,19,0 +wbar,0.7206963622,2.6363178504,-0.1640676109,https://salsa.debian.org/debian/wbar, https://github.com/rodolf0/wbar,1881.7045949074,0,2,0 +wbxml2,0.5716576747,2.0439677491,-0.0953236447,https://salsa.debian.org/debian/wbxml2, https://github.com/libwbxml/libwbxml.git,5170.821412037,0,19,0 +wcc,-2.4281741601,-0.9182887345,-2.9205469788,https://salsa.debian.org/pkg-security-team/wcc, https://github.com/endrazine/wcc.git,2370.6538888889,7,12,0 +wcwidth,0.3330909557,1.8989641963,-0.0738762364,https://salsa.debian.org/python-team/packages/wcwidth, https://github.com/jquast/wcwidth,3540.9241550926,5,18,0 +webcamoid,0.1713941748,1.5379217519,-0.2167752489,https://salsa.debian.org/debian/webcamoid, https://github.com/webcamoid/webcamoid.git,4311.3546990741,87,19,0 +webdis,-1.6918396605,-0.0353134835,-2.35268445,https://salsa.debian.org/debian/webdis, https://github.com/nicolasff/webdis,4702.4491550926,12,22,0 +webpy,0.1403351533,1.1235761549,-0.2490147051,https://salsa.debian.org/python-team/packages/webpy, https://github.com/webpy/webpy.git,5751.592037037,35,67,0 +websocket-client,0.5286261479,1.9177965003,0.0141068119,https://salsa.debian.org/python-team/packages/websocket-client, https://github.com/websocket-client/websocket-client,4734.9677083333,73,159,1 +websocketpp,-0.3732259601,1.2705562016,-0.7134226458,https://salsa.debian.org/debian/websocketpp, https://github.com/zaphoyd/websocketpp.git,3911.9273263889,7,63,0 +websploit,-0.4221028192,2.1023366852,-1.0726176237,https://salsa.debian.org/pkg-security-team/websploit, https://github.com/websploit/websploit,0.0014814815,1,1,0 +weevely,-0.2507372174,2.1708290167,-0.8636427805,https://salsa.debian.org/pkg-security-team/weevely, https://github.com/epinna/weevely3.git,3185.5150578704,7,21,0 +welle.io,-1.1503735792,0.8698707092,-1.5560375998,https://salsa.debian.org/debian-hamradio-team/welle.io, https://github.com/AlbrechtL/welle.io,2902.9566203704,11,44,0 +weresync,0.8686224385,5.3149179418,-0.6110888212,https://salsa.debian.org/python-team/packages/weresync, https://github.com/DonyorM/weresync.git,2224.0163194445,5,4,0 +weupnp,-1.9200689609,0.314231077,-2.3479232511,https://salsa.debian.org/debian/weupnp, https://github.com/bitletorg/weupnp.git,896.40375,1,9,0 +wfmath,-0.3893875883,0.837955788,-0.9792345009,https://salsa.debian.org/games-team/wfmath, https://github.com/worldforge/wfmath,5506.8696990741,0,8,0 +wfrench,0.4709809544,1.3278647416,0.0952385393,https://salsa.debian.org/gpernot/wfrench, https://gitlab.com/gpernot/wfrench.git,809.9374189815,0,4,0 +wfuzz,0.3494531903,3.0367255196,-0.346839296,https://salsa.debian.org/pkg-security-team/wfuzz, https://github.com/xmendez/wfuzz.git,3000.7348148148,13,27,0 +whatthepatch,-1.2344880678,1.15651314,-1.8143537794,https://salsa.debian.org/python-team/packages/whatthepatch, https://github.com/cscorley/whatthepatch,3792.0029513889,6,11,0 +when,-0.2471365546,1.4766184372,-0.8165939727,https://salsa.debian.org/carnil/when, https://github.com/bcrowell/when/issues/new,2746.3319791667,2,17,0 +whichcraft,-0.303651311,1.9645474175,-0.7638381926,https://salsa.debian.org/python-team/packages/whichcraft, https://github.com/cookiecutter/whichcraft,2896.9858101852,2,14,0 +whipper,-1.0039847202,-0.6836191174,-1.0514739221,https://salsa.debian.org/python-team/packages/whipper, https://github.com/whipper-team/whipper.git,4941.070474537,23,44,0 +whois,0.0221996534,0.0551054977,0.0006342143,https://github.com/rfc1036/whois,https://github.com/rfc1036/whois,3907.4041550926,44,4,0 +whysynth,1.6273877466,4.7945023636,0.3840495858,https://salsa.debian.org/multimedia-team/whysynth, https://github.com/smbolton/whysynth.git,2132.1219444445,2,3,0 +wifite,0.0691397747,1.3596647886,-0.2821965899,https://salsa.debian.org/pkg-security-team/wifite, https://github.com/kimocoder/wifite2.git,3100.7875578704,19,31,0 +wiki2beamer,0.1072484039,2.9680033901,-0.7874436627,https://salsa.debian.org/debian/wiki2beamer, https://github.com/wiki2beamer/wiki2beamer/issues/new,2746.3319791667,2,17,0 +wildmidi,1.1220449003,2.8689328624,0.3931106893,https://salsa.debian.org/games-team/WildMIDI, https://github.com/psi29a/wildmidi.git,5284.7473726852,7,25,0 +willow,-0.3050026421,2.6837460292,-1.2006814281,https://salsa.debian.org/python-team/packages/willow, https://github.com/torchbox/Willow/issues/new,2746.3319791667,2,17,0 +win-iconv,-0.1253180043,3.3611034506,-1.2784857777,https://salsa.debian.org/debian/win-iconv, https://github.com/win-iconv/win-iconv,2428.4399189815,1,14,0 +winetricks,0.034183311,0.2321089736,-0.0668336085,https://salsa.debian.org/wine-team/winetricks, https://github.com/Winetricks/winetricks,3196.4553472222,172,41,0 +winff,-0.023589125,0.3238955177,-0.1704860792,https://salsa.debian.org/pascal-team/winff, https://github.com/WinFF/winff.git,5661.5147106482,3,18,0 +winregfs,0.1505432946,2.5663630742,-0.3792554253,https://salsa.debian.org/pkg-security-team/winregfs, https://github.com/jbruchon/winregfs,3358.8025694445,0,4,0 +wipe,0.0654274281,0.5099289571,-0.121010634,https://salsa.debian.org/pkg-security-team/wipe, https://github.com/berke/wipe,5088.8252430556,3,5,0 +wit,-0.0137410528,2.2594017696,-0.6295812818,https://salsa.debian.org/debian/wit, https://github.com/Wiimm/wiimms-iso-tools,764.4320717593,0,4,0 +with-simulated-input-el,-1.6136419534,0.6542791635,-2.0643984034,https://salsa.debian.org/emacsen-team/with-simulated-input-el, https://github.com/DarwinAwardWinner/with-simulated-input.git,1593.3461921296,0,2,0 +wl,-0.3325500668,0.46879212,-0.6623736703,https://salsa.debian.org/debian/wl, https://github.com/wanderlust/wanderlust,5747.0710416667,6,25,0 +wlroots,0.0364206205,1.8187975275,-0.4572879972,https://salsa.debian.org/swaywm-team/wlroots, https://github.com/swaywm/wlroots,1651.0250925926,108,95,3 +wmaker,3.0318169815,3.5049705647,2.6333575748,https://salsa.debian.org/wmaker-team/wmaker, https://github.com/window-maker/wmaker/issues/new,2746.3319791667,2,17,0 +wmbubble,0.3313340448,2.0551511806,-0.5004056988,https://salsa.debian.org/wmaker-team/wmbubble, https://github.com/rnjacobs/wmbubble.git,3203.1598148148,0,5,0 +wmcalc,0.6241287329,3.1662846618,-0.3857002159,https://salsa.debian.org/wmaker-team/wmcalc, http://repo.or.cz/dockapps.git,4582.9791898148,44,1,0 +wmcalclock,-0.049968761,1.2587423085,-0.4916658536,https://salsa.debian.org/wmaker-team/wmcalclock, http://repo.or.cz/dockapps.git,4582.9791898148,44,1,0 +wmcoincoin,-1.1120470309,0.9428298773,-1.8126592182,https://salsa.debian.org/wmaker-team/wmcoincoin, https://github.com/seeschloss/wmcoincoin/issues/new,2746.3319791667,2,17,0 +wmfrog,-0.6195008592,0.7362802602,-1.1251650057,https://salsa.debian.org/wmaker-team/wmfrog, https://github.com/tcolar/wmfrog,4191.3952777778,0,7,0 +wmhdplop,0.2210226862,1.7529658495,-0.3718627509,https://salsa.debian.org/wmaker-team/wmhdplop, https://github.com/window-maker/dockapps/issues/new,2746.3319791667,2,17,0 +wmifs,-0.006506487,1.2278926139,-0.5567653895,https://salsa.debian.org/wmaker-team/wmifs, http://repo.or.cz/dockapps.git,4582.9791898148,44,1,0 +wmmisc,-1.5174995241,0.0747864044,-1.9496529564,https://salsa.debian.org/wmaker-team/wmmisc, http://repo.or.cz/dockapps.git,4582.9791898148,44,1,0 +wmpinboard,0.329930821,2.2481564254,-0.5833982398,https://salsa.debian.org/wmaker-team/wmpinboard, https://github.com/bbidulock/wmpinboard.git,274.6021412037,0,3,0 +wmshutdown,-0.6092938441,0.686899614,-1.0229004669,https://salsa.debian.org/wmaker-team/wmshutdown, http://repo.or.cz/dockapps.git,4582.9791898148,44,1,0 +wmsysmon,3.6819786619,6.9497194781,2.2222684502,https://salsa.debian.org/wmaker-team/wmsysmon, https://github.com/voyageur/wmsysmon.git,1940.3190625,0,3,0 +wokkel,-0.7494414246,1.5960211892,-1.3587677327,https://salsa.debian.org/python-team/packages/wokkel, https://github.com/ralphm/wokkel.git,4842.8803125,0,5,0 +wondershaper,2.1493592104,4.1791752632,1.0723154812,https://github.com/leggewie-DM/wondershaper,https://github.com/leggewie-DM/wondershaper,3187.6698263889,2,1,0 +wpebackend-fdo,0.5730095986,3.296980661,-0.0681747088,https://salsa.debian.org/webkit-team/wpebackend-fdo, https://github.com/Igalia/WPEBackend-fdo,2058.3566319445,11,16,1 +wreport,-0.1794776423,1.6143054556,-0.8172719944,https://github.com/ARPA-SIMC/wreport,https://github.com/ARPA-SIMC/wreport,4700.94625,2,14,0 +writeboost,-0.6095829934,2.6504931426,-1.6124154622,https://salsa.debian.org/debian/writeboost, https://gitlab.com/onlyjob/writeboost.git,765.2965393519,0,2,0 +wslay,-0.3233505839,2.0096579304,-1.031639712,https://salsa.debian.org/debian/wslay, https://github.com/tatsuhiro-t/wslay,2229.7935185185,3,18,1 +wtf-peewee,-1.1933920451,1.3018762525,-1.741694338,https://salsa.debian.org/python-team/packages/wtf-peewee, https://github.com/coleifer/wtf-peewee,4437.0799652778,3,18,0 +wtforms,0.4736908295,2.2147509048,-0.1048676332,https://salsa.debian.org/python-team/packages/wtforms, https://github.com/wtforms/wtforms.git,5763.1893518519,40,134,0 +wxastrocapture,0.3727354069,3.1734912044,-0.4080125191,https://salsa.debian.org/science-team/wxastrocapture, https://github.com/wxAstro/wxAstroCapture,45.0595833333,0,3,0 +wxglade,-0.2335267372,0.1233893747,-0.4233597056,https://salsa.debian.org/georgesk/wxglade, https://github.com/wxGlade/wxGlade/issues/new,2746.3319791667,2,17,0 +wxmaxima,0.6562117545,1.3767226532,0.217238485,https://github.com/wxMaxima-developers/wxmaxima,https://github.com/wxMaxima-developers/wxmaxima,5772.8908912037,33,70,0 +x11-touchscreen-calibrator,-0.1154983302,2.6722200137,-0.7875374212,https://github.com/fourdollars/x11-touchscreen-calibrator,https://github.com/fourdollars/x11-touchscreen-calibrator,2225.1995717593,0,4,0 +x42-plugins,-0.1526190502,0.5990375172,-0.384890654,https://salsa.debian.org/multimedia-team/x42-plugins, https://github.com/x42/x42-plugins,3642.2395023148,0,1,0 +xandikos,-1.700889354,-1.3947312282,-1.7687283402,https://salsa.debian.org/jelmer/xandikos, https://github.com/jelmer/xandikos/issues/new,2746.3319791667,2,17,0 +xaos,0.6691143398,1.5240287743,0.1746586346,https://salsa.debian.org/games-team/xaos, https://github.com/xaos-project/XaoS.git,5702.3385185185,3,31,0 +xapp,0.524021746,2.9925736713,-0.064774972,https://salsa.debian.org/cinnamon-team/xapp, https://github.com/linuxmint/xapp.git,2659.1398032407,18,5,0 +xastir,0.1089482482,0.8635088142,-0.3202862478,https://salsa.debian.org/debian-hamradio-team/xastir, https://github.com/Xastir/Xastir.git,5658.7705902778,2,27,0 +xawtv,0.5775765024,0.823259074,0.3868307622,https://salsa.debian.org/multimedia-team/xawtv, https://git.linuxtv.org/xawtv3.git,4836.9155092593,11,10,0 +xbomb,2.5167931875,5.6510697336,1.1667397783,https://github.com/alexdantas/xbomb.debian,https://github.com/alexdantas/xbomb.debian,472.1825347222,1,2,0 +xcape,0.1031866498,2.6635244357,-0.4881717246,https://salsa.debian.org/debian/xcape, https://github.com/alols/xcape,2160.4542361111,3,26,0 +xcffib,0.3422766078,1.6439736239,-0.2089170835,https://salsa.debian.org/python-team/packages/xcffib, https://github.com/tych0/xcffib.git,3466.6135069445,10,9,0 +xchm,0.2106957608,0.7959718479,-0.0859691061,https://salsa.debian.org/debian/xchm, https://github.com/rzvncj/xCHM.git,5664.2862037037,3,5,0 +xcscope-el,0.2222567121,2.7358133073,-0.5096652742,https://salsa.debian.org/debian/xcscope-el, https://github.com/dkogan/xcscope.el,3521.9445949074,2,6,0 +xdffileio,-0.3370360933,3.1399742139,-1.5172901103,https://salsa.debian.org/med-team/xdffileio, https://github.com/mmlabs-mindmaze/xdffileio.git,3980.6902777778,1,9,0 +xdg-desktop-portal-kde,-0.0229887035,1.911230239,-0.5292000206,https://salsa.debian.org/qt-kde-team/kde/xdg-desktop-portal-kde, https://invent.kde.org/plasma/xdg-desktop-portal-kde.git,2709.3837731482,7,55,0 +xdg-user-dirs,3.5320299371,7.6836338571,1.9724124534,https://salsa.debian.org/gnome-team/xdg-user-dirs, https://gitlab.freedesktop.org/xdg/xdg-user-dirs.git,5480.0523958333,13,6,0 +xdg-user-dirs-gtk,1.9241792277,5.5651428189,0.6495762755,https://salsa.debian.org/gnome-team/xdg-user-dirs-gtk, https://gitlab.gnome.org/GNOME/xdg-user-dirs-gtk,5711.9951273148,35,74,0 +xdg-utils,2.2255142234,3.0442456932,1.6414252321,https://salsa.debian.org/freedesktop-team/xdg-utils, https://gitlab.freedesktop.org/xdg/xdg-utils,5592.548287037,48,22,0 +xdms,-0.3245085497,1.1111188277,-0.7327199722,https://github.com/glaubitz/xdms-debian,https://github.com/glaubitz/xdms-debian,2621.1444212963,2,1,0 +xdotool,1.2968912917,2.6433354619,0.5854640504,https://salsa.debian.org/debian/xdotool, https://github.com/jordansissel/xdotool.git,5532.0414351852,34,28,0 +xdrawchem,0.7346003959,1.6328759508,0.1846326607,https://salsa.debian.org/georgesk/xdrawchem, https://gitlab.com/yamanq/xdrawchem,1560.5482638889,1,5,0 +xen-tools,0.1849226805,0.4044499915,0.02937965,https://github.com/xen-tools/xen-tools,https://github.com/xen-tools/xen-tools,5773.4961921296,25,18,2 +xfce4-battery-plugin,0.7630757856,1.788079309,0.2522676362,https://salsa.debian.org/xfce-team/goodies/xfce4-battery-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-battery-plugin,5729.708587963,170,27,0 +xfce4-genmon-plugin,1.2552944137,3.7318650827,0.332952527,https://salsa.debian.org/xfce-team/goodies/xfce4-genmon-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-genmon-plugin,5731.5513888889,157,28,0 +xfce4-indicator-plugin,1.0226030678,3.9650728067,0.038953874,https://salsa.debian.org/xfce-team/goodies/xfce4-indicator-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-indicator-plugin,5088.8702777778,169,14,0 +xfce4-notes-plugin,1.8672347558,3.8878087473,0.9045946921,https://salsa.debian.org/xfce-team/goodies/xfce4-notes-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin,5107.4272106482,145,30,0 +xfce4-panel,1.2810074317,1.8232971557,0.9014967184,https://salsa.debian.org/xfce-team/desktop/xfce4-panel, https://gitlab.xfce.org/xfce/xfce4-panel,5779.0596990741,457,55,0 +xfce4-pulseaudio-plugin,2.8718769433,7.3629582013,1.3442337305,https://salsa.debian.org/xfce-team/goodies/xfce4-pulseaudio-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-pulseaudio-plugin,3496.0556712963,109,12,0 +xfce4-timer-plugin,0.4237778217,1.8970220609,-0.0082457904,https://salsa.debian.org/xfce-team/goodies/xfce4-timer-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-timer-plugin.git,5681.6295833333,179,28,0 +xfce4-weather-plugin,1.9060191444,3.3343461272,1.1056127962,https://salsa.debian.org/xfce-team/goodies/xfce4-weather-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-weather-plugin.git,5283.4699421296,238,35,0 +xfce4-whiskermenu-plugin,1.0405948323,3.629749871,0.1726825498,https://salsa.debian.org/xfce-team/goodies/xfce4-whiskermenu-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-whiskermenu-plugin/-/issues/new,2746.3319791667,2,17,0 +xfce4-xkb-plugin,1.9779478759,4.1849667756,0.9555804636,https://salsa.debian.org/xfce-team/goodies/xfce4-xkb-plugin, https://gitlab.xfce.org/panel-plugins/xfce4-xkb-plugin,5629.9386805556,177,32,0 +xhtml2pdf,0.3197932712,2.7680764221,-0.6330797021,https://salsa.debian.org/python-team/packages/xhtml2pdf, https://github.com/xhtml2pdf/xhtml2pdf,4912.1998263889,44,134,0 +xindy,0.1823763954,0.8822842515,-0.1274514217,https://github.com/debian-tex/xindy,https://github.com/debian-tex/xindy,2719.8550694445,2,6,0 +xl2tpd,1.7521184576,3.5551708828,0.8152898274,https://github.com/xelerance/xl2tpd,https://github.com/xelerance/xl2tpd,5585.4230671296,26,42,0 +xlsx2csv,0.199802941,2.3048255107,-0.3946294711,https://salsa.debian.org/science-team/xlsx2csv, https://github.com/dilshod/xlsx2csv/issues/new,2746.3319791667,2,17,0 +xlsxwriter,1.0016122505,4.2566690068,-0.0631588499,https://salsa.debian.org/python-team/packages/xlsxwriter, https://github.com/jmcnamara/XlsxWriter,3960.6774074074,25,30,0 +xml-light,-0.3592724135,1.1896469114,-0.7772314943,https://salsa.debian.org/ocaml-team/xml-light, https://github.com/ncannasse/xml-light.git,3963.0315046296,3,8,0 +xml2,2.6164998828,5.6819334927,1.2745547269,https://salsa.debian.org/debian/xml2, https://gitlab.gnome.org/GNOME/libxml2.git,5790.1762037037,255,40,0 +xml2rfc,-0.1985811059,1.2354063269,-0.7799176885,https://salsa.debian.org/debian/pkg-xml2rfc, https://github.com/ietf-tools/xml2rfc.git,5078.4323148148,13,21,0 +xmldiff,0.559598996,1.5801414897,0.007932953,https://salsa.debian.org/debian/xmldiff, https://github.com/Shoobx/xmldiff.git,5659.7240162037,11,15,0 +xmltv,-0.0141973655,0.1968271173,-0.1465991903,https://salsa.debian.org/nickm/xmltv, https://github.com/XMLTV/xmltv.git,5729.3252314815,14,54,0 +xmoto,-0.0128577775,0.350476721,-0.2212793709,https://salsa.debian.org/games-team/xmoto, https://github.com/xmoto/xmoto,5752.6098148148,7,30,1 +xmountains,-0.6473598122,-0.4080618043,-0.6985149403,https://salsa.debian.org/debian/xmountains, https://github.com/spbooth/xmountains/issues/new,2746.3319791667,2,17,0 +xnec2c,-0.2433745776,0.7919844064,-0.4889064627,https://salsa.debian.org/debian-hamradio-team/xnec2c, https://github.com/KJ7LNW/xnec2c.git,5761.7881944445,5,7,0 +xonsh,-0.0359038601,1.9620416226,-0.6794859853,https://salsa.debian.org/python-team/packages/xonsh, https://github.com/xonsh/xonsh.git,3248.5329976852,105,226,0 +xplc,0.065119078,1.5804093595,-0.5441876363,https://salsa.debian.org/debian/xplc, https://github.com/xplc/xplc/issues/new,2746.3319791667,2,17,0 +xppaut,0.480332333,2.5873961644,-0.4615269769,https://github.com/neurodebian/pkg-xppaut,https://github.com/neurodebian/pkg-xppaut,171.362349537,6,2,0 +xpra,0.2290078172,0.5725099596,0.0141195262,https://salsa.debian.org/debian/xpra, https://github.com/xpra-org/xpra.git,4580.0296296296,18,44,0 +xprintidle,-0.1422188392,0.6249787453,-0.3518989739,https://salsa.debian.org/debian/xprintidle, https://github.com/g0hl1n/xprintidle,3448.9179861111,2,6,2 +xqf,0.4085635569,1.7222340841,-0.2909566217,https://salsa.debian.org/debian/xqf, https://github.com/XQF/xqf,4749.0990509259,9,17,1 +xsecurelock,-0.4681598236,2.8900823642,-1.3517451123,https://github.com/google/xsecurelock/tree/debian,https://github.com/google/xsecurelock,3375.8872453704,17,12,2 +xtermcontrol,-0.0117403008,1.5858545623,-0.4569548478,https://salsa.debian.org/debian/xtermcontrol, https://github.com/JessThrysoee/xtermcontrol.git,3429.399525463,0,2,0 +xtl,-4.7040789559,-1.5856206073,-5.4305613286,https://github.com/quantstack-debian/xtl,https://github.com/quantstack-debian/xtl,1473.7952662037,0,3,0 +xttitle,0.8939077507,4.2706568139,-0.3819440692,https://salsa.debian.org/debian/xttitle, https://github.com/mojotx/xttitle,2181.5912731482,2,3,0 +xwax,-0.5636629334,0.7271414205,-0.9498118303,https://salsa.debian.org/multimedia-team/xwax, https://github.com/xwax/xwax.git,5550.8656712963,5,3,0 +xwiimote,0.3562588672,2.6555026126,-0.4563008074,https://salsa.debian.org/debian/xwiimote, https://github.com/dvdhrm/xwiimote,195.977337963,4,2,1 +xxdiff,0.9061004175,1.6510647261,0.4413690153,https://salsa.debian.org/debian/xxdiff, https://github.com/blais/xxdiff.git,5451.0281134259,4,11,0 +xxhash,0.3682261157,2.5468115404,-0.0707021272,https://salsa.debian.org/debian/xxhash, https://github.com/Cyan4973/xxHash,4259.841875,29,85,2 +xylib,0.6962815791,3.868426766,-0.2796991398,https://salsa.debian.org/science-team/xylib, https://github.com/wojdyr/xylib,5291.0453703704,4,4,0 +yadm,0.155795293,2.4789916734,-0.5346609613,https://salsa.debian.org/debian/yadm, https://github.com/TheLocehiliosan/yadm,1719.5473611111,26,32,0 +yafc,-0.0272314962,0.4916391321,-0.3253666512,https://salsa.debian.org/debian/yafc, https://github.com/sebastinas/yafc.git,4536.1716550926,4,14,0 +yagf,1.2564818045,3.6319506109,0.2577483716,https://github.com/tehnick/yagf-debian,https://github.com/tehnick/yagf-debian,2966.796875,2,1,0 +yagv,-0.2493109691,1.6805451528,-0.758268769,https://salsa.debian.org/3dprinting-team/yagv, https://github.com/jonathanwin/yagv.git,1848.8749421296,0,6,0 +yajl,0.1436910943,0.8155419647,-0.0099540163,https://github.com/jstamp/yajl,https://github.com/jstamp/yajl,5069.733125,7,28,0 +yaml-cpp,0.5572836848,1.2844289572,0.1762351107,https://salsa.debian.org/debian/yaml-cpp, https://github.com/jbeder/yaml-cpp,5649.6871064815,135,20,0 +yanc,-1.5009992611,1.4616219544,-2.2668515294,https://salsa.debian.org/python-team/packages/yanc, https://github.com/0compute/yanc,1361.9793865741,0,3,0 +yank,-0.4869817974,0.3215363886,-0.8729656071,https://salsa.debian.org/debian/yank, https://github.com/mptre/yank,2596.2438310185,12,9,0 +yapf,-0.0722503181,0.9971430042,-0.5095328287,https://salsa.debian.org/python-team/packages/yapf, https://github.com/google/yapf.git,3193.809224537,72,102,0 +yara,-0.1055830373,0.1023840229,-0.1659403295,https://salsa.debian.org/pkg-security-team/yara, https://github.com/VirusTotal/yara.git,5553.0082523148,173,61,0 +yarl,0.5124183754,2.8001615902,-0.1560964526,https://salsa.debian.org/python-team/packages/yarl, https://github.com/aio-libs/yarl.git,2690.946412037,70,28,0 +yasnippet,0.2661842383,1.6451544378,-0.2859305108,https://salsa.debian.org/emacsen-team/yasnippet, https://github.com/joaotavora/yasnippet,5674.0685300926,34,42,0 +yatm,-0.9969942564,0.469884003,-1.3959449427,https://salsa.debian.org/debian/yatm, https://github.com/mlang/yatm.git,2272.488912037,0,3,0 +ycmd,0.4069912194,1.5116579049,-0.1009202545,https://salsa.debian.org/debian/ycmd, https://github.com/ycm-core/ycmd,3497.9243055556,30,153,0 +yder,-0.5735586705,1.4948558419,-1.0176765614,https://salsa.debian.org/debian-iot-team/oauth2/yder.git, https://github.com/babelouest/yder,1282.873275463,2,11,0 +ydpdict,-1.6620122332,-0.9650225761,-1.8878460738,https://github.com/porridge/ydpdict,https://github.com/porridge/ydpdict,5724.9537731482,0,4,0 +yelp,0.9924632632,1.4317013749,0.661293749,https://salsa.debian.org/gnome-team/yelp, https://gitlab.gnome.org/GNOME/yelp/commits/master,5185.326875,55,11,0 +yodl,-0.7740853802,-0.4690711676,-0.8964371236,https://salsa.debian.org/debian/yodl, https://gitlab.com/fbb-git/yodl.git,5470.8404282407,1,1,0 +yokadi,-0.6243938927,1.7028982877,-1.2855006363,https://salsa.debian.org/debian/yokadi, https://github.com/agateau/yokadi/issues/new,2746.3319791667,2,17,0 +yoshimi,-0.3444755533,-0.1509608441,-0.3951521255,https://salsa.debian.org/multimedia-team/yoshimi, https://github.com/Yoshimi/yoshimi.git,4804.103599537,11,39,0 +yotta,-3.0135985731,-1.2644558179,-3.3287242063,https://salsa.debian.org/python-team/packages/yotta, https://github.com/ARMmbed/yotta.git,2536.0050925926,9,55,0 +youtube-dl,0.2563339844,0.4320778049,0.1276976328,https://salsa.debian.org/debian/youtube-dl, https://github.com/ytdl-org/youtube-dl.git,5615.2313657407,601,455,0 +yquake2,0.0785847681,1.9597097165,-0.4562734364,https://salsa.debian.org/games-team/yquake2, https://github.com/yquake2/yquake2,5404.0359837963,28,60,0 +yubikey-manager,-0.0363760554,1.7725937358,-0.4280487752,https://salsa.debian.org/auth-team/yubikey-manager, https://github.com/Yubico/yubikey-manager.git,2952.1503240741,21,28,0 +yubikey-personalization-gui,1.0660214443,4.6214252569,-0.0477907414,https://github.com/Yubico/yubikey-personalization-gui-dpkg,https://github.com/Yubico/yubikey-personalization-gui-dpkg,1527.8557986111,0,2,0 +yubikey-val,-1.5796758821,0.5230579445,-2.2238855851,https://github.com/Yubico/yubikey-val-dpkg,https://github.com/Yubico/yubikey-val-dpkg,2518.4995601852,1,7,0 +yydebug,-2.4807565791,0.0572661247,-3.0016851771,https://salsa.debian.org/java-team/yydebug, https://github.com/jruby/jay-yydebug,0.0429513889,0,1,0 +z3,0.5691444701,1.4033712285,0.1456628583,https://salsa.debian.org/pkg-llvm-team/z3, https://github.com/Z3Prover/z3.git,4091.8851851852,200,176,0 +zabbix-cli,-0.1162444302,2.8225093567,-1.0388825078,https://github.com/usit-gd/zabbix-cli,https://github.com/usit-gd/zabbix-cli,3337.0107407408,9,35,2 +zam-plugins,0.3028001293,2.9204504438,-0.310176638,https://salsa.debian.org/multimedia-team/zam-plugins, https://github.com/zamaudio/zam-plugins.git,3495.4258564815,5,5,0 +zanshin,-0.343838731,1.505615869,-0.8811904056,https://salsa.debian.org/qt-kde-team/kde/zanshin, https://invent.kde.org/pim/zanshin.git,5469.8113657407,7,57,0 +zbar,1.1274299862,2.1804090572,0.5304669245,https://salsa.debian.org/debian/zbar, https://github.com/mchehab/zbar,5577.4200578704,30,27,0 +zc.lockfile,-0.0210256384,1.5379599647,-0.4550360225,https://salsa.debian.org/python-team/packages/zc-lockfile, https://github.com/zopefoundation/zc.lockfile,5245.5974305556,1,13,0 +zeal,-0.1325631972,0.6674857962,-0.3600688551,https://salsa.debian.org/debian/zeal, https://github.com/zealdocs/zeal,3980.9958680556,38,43,5 +zed,-0.7636785221,-0.0586954945,-1.0152692364,https://salsa.debian.org/ocaml-team/zed, https://github.com/ocaml-community/zed.git,4544.7564699074,9,14,0 +zeroc-ice,-0.2246270386,-0.0796274635,-0.3178149444,https://github.com/zeroc-ice/ice-debian-packaging.git,https://github.com/zeroc-ice/ice-debian-packaging.git,2730.2990046296,3,11,0 +zeroinstall-injector,-0.1790173309,0.2373414985,-0.3531189648,https://github.com/0install/0install-debian,https://github.com/0install/0install-debian,5324.6795949074,19,12,0 +zfsnap,0.4772336214,3.1494825406,-0.4433726935,https://github.com/jgoerzen/zfSnap,https://github.com/jgoerzen/zfSnap,4429.3288888889,1,13,0 +zim,-0.0018337616,0.183635307,-0.1184745289,https://salsa.debian.org/debian/zim, https://github.com/jaap-karssenberg/zim-desktop-wiki.git,5538.0760532407,145,89,0 +zimlib,-0.7980347609,0.4296211921,-1.2237312385,https://salsa.debian.org/debian/zimlib, https://github.com/openzim/libzim.git,5403.4984606482,15,26,0 +zip4j,-3.6791130679,-1.201349473,-4.303682177,https://salsa.debian.org/java-team/zip4j, https://github.com/srikanth-lingala/zip4j.git,1425.3305787037,27,8,0 +zktop,-1.6834481359,1.4483848388,-2.5079762953,https://salsa.debian.org/python-team/packages/zktop, https://github.com/phunt/zktop.git,4096.6100115741,1,12,0 +zope.component,0.3314112735,1.4395044338,-0.0456155948,https://salsa.debian.org/python-team/packages/zope.component, https://github.com/zopefoundation/zope.component,5549.4635648148,5,38,0 +zope.deprecation,-0.4002923161,1.2950694538,-0.80228492,https://salsa.debian.org/python-team/packages/zope.deprecation, https://github.com/zopefoundation/zope.deprecation.git,5564.8963541667,6,19,0 +zope.event,0.48012603,2.4451618465,-0.0440353103,https://salsa.debian.org/debian/zope.event, https://github.com/zopefoundation/zope.event,5503.5143634259,6,21,0 +zope.i18nmessageid,-0.5047792742,1.175715823,-1.0038159767,https://salsa.debian.org/detiste-guest/zope.i18nmessageid, https://github.com/zopefoundation/zope.i18nmessageid,5530.7271759259,3,23,0 +zope.interface,0.8947569726,2.4357226298,0.237909121,https://salsa.debian.org/python-team/packages/zope.interface, https://github.com/zopefoundation/zope.interface.git,5664.7027546296,13,51,0 +zope.proxy,-0.3028278558,1.2412462995,-0.7950963255,https://salsa.debian.org/python-team/packages/zope.proxy, https://github.com/zopefoundation/zope.proxy,5686.5842013889,6,24,0 +zope.schema,-0.6711277163,0.5898602563,-1.0326400015,https://salsa.debian.org/python-team/packages/zope.schema, https://github.com/zopefoundation/zope.schema,5503.5836458333,8,46,0 +zope.testing,-0.8046398038,0.1932317872,-1.1600868609,https://salsa.debian.org/python-team/packages/zope.testing, https://github.com/zopefoundation/zope.testing,5685.8682638889,3,42,0 +zope.testrunner,-1.5178214231,-0.9479425765,-1.6556150569,https://salsa.debian.org/python-team/packages/zope.testrunner, https://github.com/zopefoundation/zope.testrunner,4988.3216666667,11,30,0 +zpb-ttf,-0.5400082597,2.49952862,-1.5901447095,https://salsa.debian.org/debian/zpb-ttf, https://github.com/xach/zpb-ttf,4273.1460416667,0,6,0 +zram-tools,0.3453476345,2.0142537335,-0.2566975743,https://salsa.debian.org/debian/zram-tools, https://salsa.debian.org/jcc/zram-tools.git,2430.0253703704,0,10,0 +zsh-antigen,0.1498008551,2.190889354,-0.3975947047,https://salsa.debian.org/fladi/zsh-antigen, https://github.com/zsh-users/antigen,2767.2354513889,11,42,1 +zsh-autosuggestions,-0.208285089,1.3296881612,-0.4796693531,https://salsa.debian.org/debian/zsh-autosuggestions, https://github.com/zsh-users/zsh-autosuggestions.git,3602.9922106482,24,36,0 +zytrax,-1.2906674933,2.0620933886,-2.0888798742,https://salsa.debian.org/multimedia-team/zytrax, https://github.com/reduz/zytrax,931.1719907407,0,4,0 +zzz-to-char,-1.0075122417,0.8497079016,-1.4231838869,https://salsa.debian.org/emacsen-team/zzz-to-char, https://github.com/mrkkrp/zzz-to-char.git,3016.8861805556,1,3,0 diff --git a/final_data/deb_readme_did.csv b/final_data/deb_readme_did.csv index cebe591..b082def 100644 --- a/final_data/deb_readme_did.csv +++ b/final_data/deb_readme_did.csv @@ -1,2280 +1,2280 @@ -https://gitlab.com/crosswire-bible-society/tdavid.git,2021-11-08 10:05:25+00:00,a436cebdefeae52535805caedd25f486396ca802,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/enova/pg_fact_loader.git,2018-11-09 12:27:54-06:00,e165e58d8bbe2f65f85a501c904d03cffd223fe4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 9, 2, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 3, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/spyder-ide/spyder-unittest.git,2013-10-28 16:09:55-07:00,df9358f7beb6c5a9fc6cd112b2d9a229311ebbf5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/frescobaldi/python-poppler-qt5,2015-02-21 23:48:21+01:00,52fdb5040a056b68417253a691e9de1679a8e9de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/pylast/pylast,2009-08-31 04:18:37+00:00,d61fbb3a04620f1e96882a7ba492e6794f1705a7,"[0, 3, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 3, 0, 0, 2, 0, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 0, 1, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/Leaflet/Leaflet.markercluster,2012-07-10 18:54:39-07:00,b500f4c6cc94dd4dd73c194e1fba8090c52d9eaa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 70, 32, 16, 18, 9, 10, 13, 29, 12, 12, 4, 0, 13, 10, 0, 4, 5, 0, 2, 3, 6, 0, 2, 1, 6, 1]","[1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,7,0 -https://gitlab.com/sfcgal/SFCGAL,2012-06-11 14:00:23+02:00,f6a4db94d3d968fa695ab1f570eaff452aadbd71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 5, 5, 7, 23, 11, 5, 0, 1, 9, 6, 14, 5, 11, 0, 0, 3, 31, 0, 0, 0, 0, 0, 3, 0, 5, 0]","[7, 1, 0, 1, 3, 0, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,3,2,0 -https://github.com/irssi/irssi.git,1999-09-03 14:27:29+00:00,770ae4596d3e826c63e8c9fa441d65bd0889f03c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 6, 3, 2, 8, 9, 15, 2, 7, 4, 1, 9, 10, 1, 0, 5, 1, 0, 2, 7, 3, 2, 0, 1, 10, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/zamaudio/zam-plugins.git,2014-04-11 02:26:30+10:00,d037de78e5454474037e2d12a298cff19b177a90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[66, 43, 38, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 20, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 13, 17, 1]","[7, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,2,0,0 -https://gitlab.gnome.org/GNOME/mutter.git,2001-06-02 04:14:18+00:00,e47c4d16a27aae7c3b8831b9855f25a9dfb8473f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 17, 11, 12, 7, 6, 0, 7, 6, 8, 1, 15, 8, 3, 10, 12, 0, 1, 10, 9, 7, 6, 0, 0, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 -https://github.com/debian-tex/dvisvgm,2019-07-25 15:23:39+02:00,f8d8b2638dd514f744331dff148c0cb9df1d92e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/splattael/minitest-around,2012-09-28 14:43:51+02:00,7447a8ad03c4a7a3ee7b08e714b9fdd60576066b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",0,1,2,0 -https://github.com/BYVoid/OpenCC,2010-06-07 14:46:34+00:00,919010fbb637c2bcc36a7e22cf291a8777b64518,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://gitlab.dune-project.org/staging/dune-functions,2013-08-20 10:24:16+02:00,c2282bb2862c98e51fbeddc553b92acf54d6d425,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,5,0 -https://gitlab.com/o9000/tint2,2008-10-02 18:47:02+00:00,420dd5d1e21d255cf20df36ecc911c976e628d1c,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 4, 0, 3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 3, 4, 3, 1, 3, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/isaacs/isexe,2016-01-16 21:24:07-08:00,96b54f38c4a8f8008e017f7e85f1d78867916065,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/HOST-Oman/libraqm.git,2015-12-01 19:21:29+04:00,c62ed8f02b0a93a9dd03f0d26b1eabf5d18d103e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 31, 43, 2, 14, 12, 66, 6, 4, 5, 4, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,11,0 -https://github.com/eonpatapon/mpDris2.git,2011-06-10 09:01:00+02:00,c8a764a006d5c9462879e7cff86ecd90cd8d5c19,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 0, 0, 1, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0]",1,1,2,0 -https://github.com/Kyorai/cuttlefish.git,2013-07-11 09:27:15-07:00,b43aa2d590727f6e7a0e2a330758161b296760f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 18, 5, 11, 16, 21, 7, 17, 2, 3, 2, 14, 9, 3, 1, 3, 31, 33, 19, 4, 24, 7, 4, 1, 11, 1]","[1, 0, 0, 0, 0, 1, 3, 0, 3, 1, 1, 1, 6, 2, 1, 1, 1, 8, 8, 2, 1, 4, 2, 2, 0, 5, 0]",1,6,8,0 -https://github.com/pazz/alot,2011-05-18 10:17:07+01:00,97e147ccf964e992a3074964f2d344f0e8ac798a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 49, 19, 11, 20, 12, 21, 33, 35, 13, 32, 42, 57, 49, 27, 7, 17, 14, 32, 37, 29, 53, 61, 15, 38, 33, 1]","[7, 1, 3, 0, 1, 0, 2, 2, 0, 2, 2, 0, 8, 12, 3, 0, 2, 0, 9, 8, 6, 3, 3, 2, 3, 2, 0]",2,4,7,0 -https://gitlab.freedesktop.org/gstreamer/orc,2009-03-17 15:30:47-07:00,8fc611c325b8d67bf88bebb5fa848bc38c19c959,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 16, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 20, 18, 1, 2, 13, 2, 5, 4, 15, 11, 2, 0, 0, 33, 7, 14, 4, 5, 4, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/dharple/detox,2017-02-22 23:42:18-05:00,12cc144e42f9428783cc9d3d44be30d9c8b1ea6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/intel/media-driver.git,2017-11-30 15:44:57+08:00,a19f26ff91f3f1dbc74f9045d55dc006f1034352,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 3, 7, 24, 48, 49, 45, 24, 35, 21, 0, 7, 37, 21, 26, 14, 36, 39, 26, 32, 17, 14, 26, 20, 24, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,102,0 -https://github.com/gnome-terminator/terminator,2006-11-16 20:16:58-08:00,7bfd5ae9f7f9303060c3376cd90728add594679d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/grilo-plugins,2009-12-14 11:52:18+01:00,2cd04f49f4a9c56daaf9127fd737116115fbf513,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 197, 45, 11, 16, 20, 0, 0, 0, 0, 3, 31, 1, 0, 0, 0, 0, 5, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://gitlab.com/pdftk-java/pdftk.git,2017-12-30 07:16:41+00:00,bf02d471515659846f34852032e7ce1d78eb7824,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 2, 16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 3, 0, 1, 0, 0, 1, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,3,0 -https://github.com/varietywalls/variety.git,2018-03-10 10:57:09-08:00,585cd4efe2fd7b7727db59dcd22d01ddba46d29b,"[2, 7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 2, 0, 11, 4, 0, 9, 5, 3, 3, 0, 0, 1, 0, 0, 0, 2, 13, 21, 0, 23, 44, 3, 2, 4, 1]","[0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 5, 0, 1, 0, 0]",1,2,5,0 -https://github.com/thlorenz/combine-source-map.git,2013-03-15 17:58:19-07:00,f31a1a120ca602a046a1e3ed90a457da7fb4f6f5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/sumoheavy/jira-ruby,2011-12-07 23:23:21+13:00,892980757ab222d3b1304b17c2ecf97ff6f8c640,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 22, 0, 0, 46, 20, 1, 2, 0, 0, 4, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 -https://github.com/lmanul/gimp-texturize.git,2011-04-20 14:18:40+02:00,5f6eee550f75f4db3cf2b19662d8765d75ab1e65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/rubys/nokogumbo,2013-08-17 18:08:40-04:00,bfab73aaf6d8e591c36c1ffde900a0600788fc7d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 17, 8, 4, 2, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://gitlab.gnome.org/GNOME/gnome-calendar.git,2012-04-25 23:56:34-04:00,07b6ee8887c40adce3757119df75cb850b697b8e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 7, 8, 3, 16, 1, 0, 0, 0, 21, 17, 5, 4, 0, 0, 0, 14, 42, 4, 2, 1, 3, 5, 11, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 -https://github.com/smarty-php/smarty.git,2014-10-31 00:42:46+01:00,f433b70cf14c3bc1bedf1f1c04f93aa4fc70c104,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 15, 0, 1, 0, 5, 3, 0, 23, 27, 1, 6, 0, 0, 9, 3, 0, 1, 2, 10, 3, 3, 1, 0, 2, 2, 1]","[24, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0 -https://github.com/ukui/peony-extensions,2017-10-17 17:45:54+08:00,dd4795e2e5a54c5be4beed8a2b0dd372d002ced3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/JDimproved/JDim.git,2006-05-31 15:28:39+00:00,ad1b13b5645cabbc344737c7393678af6eb1e25b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 9, 10, 9, 19, 17, 17, 15, 3, 0, 25, 13, 12, 25, 27, 9, 4, 31, 22, 8, 21, 25, 7, 29, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/deckar01/task_list.git,2013-03-18 14:39:54-07:00,8d783f8189caffd4083bf635478a1f9ff1317bfb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 4, 0, 0, 10, 29, 7, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/jamesturk/jellyfish,2010-07-13 16:15:08-04:00,d15631cebbd601f509d108fb9f2ac3a56fcb93d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/astro/node-expat,2010-05-22 15:26:33+02:00,18227be4c7947c2687d0e5a4260a460476aba6b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 9, 8, 0, 0, 0, 6, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/manisandro/qtspell.git,2014-09-03 23:44:33+02:00,9dc558c6377c80a7d070935a9774f4ba0d53f14f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 3, 0, 0, 0, 0, 0, 0, 5, 8, 2, 8, 4, 0, 7, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Teemu/pytest-sugar.git,2013-04-07 22:23:02+03:00,7dc26ebf51b41d66e149aa7f7d00fb8559658677,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/raszi/node-tmp.git,2011-09-02 14:26:18+02:00,5de36ea986ee8fe47f3f47d372f01b586eb8381a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/the-tcpdump-group/tcpslice,2000-06-11 17:21:46+00:00,ffac277bf41946a1d985afae7fe2535d7a28546f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/FedoraQt/adwaita-qt.git,2014-07-04 17:08:44+02:00,9163607dbf73c49bbe93d81b413374a72d63708a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 0, 0, 0, 0, 1, 4, 0, 4, 2, 3, 1, 1, 3, 8, 2, 14, 9, 1, 5, 17, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/astanin/python-tabulate.git,2013-03-08 16:15:04+01:00,e6346abc3b7529c8077b2b331ad20b6effb765ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 3, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/nodejs/node-gyp.git,2012-02-03 13:17:28-08:00,7ea13975871dc3aa32f6a1872affea37ec0d82d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[115, 35, 4, 35, 29, 19, 15, 12, 24, 14, 3, 0, 0, 3, 7, 0, 4, 29, 14, 7, 11, 3, 19, 7, 5, 5, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,13,0 -https://github.com/pytroll/pyorbital.git,2011-09-12 07:20:28+02:00,8d94656fa146c32fa1431a5d4c82aae5f5578431,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 5, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/attr-encrypted/attr_encrypted.git,2009-01-07 21:01:59-08:00,9055be700f2579f74bc8d360dc75f414748b080d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/theZiz/aha.git,2012-05-08 04:48:07-07:00,79e3f97f07524a501de1743e75fc91eae680631e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/ceres-solver/ceres-solver.git,2012-04-30 23:09:08-07:00,8ebb0730388045570f22b89fe8672c860cd2ad1b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 24, 2, 2, 6, 12, 12, 11, 0, 0, 5, 10, 2, 3, 18, 36, 15, 12, 12, 6, 7, 7, 8, 7, 2, 0, 1]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,6,0 -https://codeberg.org/toddy/medicalterms,2005-05-07 21:52:07+00:00,f830b3dbcd6b8079796eff03961aef06c0f1f5ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 3, 5, 10, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 2, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jnwatson/py-lmdb,2013-02-04 21:09:14+02:00,5a309dc17ca4aff0c660dce37ab43581bf3b2a0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 6, 85, 24, 24, 39, 2, 0, 0, 0, 2, 0, 0, 2, 0, 2, 27, 24, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,0,0 -https://github.com/prometheus/pushgateway,2014-01-27 14:18:03+01:00,60e09a4a90a48e0e4804385431c8505ed730a017,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 10, 10, 0, 0, 0, 9, 2, 5, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0]",1,3,6,0 -https://github.com/atig/atig,2010-02-26 08:12:58+09:00,b34b307cd217b630d62ac27336da0c4f8f8f3387,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[110, 22, 39, 82, 13, 18, 48, 61, 3, 0, 0, 0, 0, 1, 9, 2, 9, 9, 8, 5, 8, 3, 0, 0, 0, 1, 1]","[2, 0, 2, 1, 2, 0, 6, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/udo-stenzel/anfo,2009-01-16 16:14:21+00:00,f837b71bf9fad86fa3447658dd517cd87377b251,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 5, 0, 1, 3, 9, 0, 4, 2, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 8, 4, 5, 1, 0, 4, 7, 15, 1, 6, 2, 9, 17, 4, 2, 5, 1, 0, 4, 7, 1, 2, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/manisandro/gImageReader,2013-04-21 02:17:14+02:00,f8f781f142da676b9756eeb4ba11135d989cfdba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 26, 30, 9, 12, 6, 6, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/google/python-gflags.git,2010-01-05 02:49:37+00:00,aa789bce7ca3b1ac68e9d27bc526c180206d22b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ncoders/redmine_local_avatars,2012-10-28 23:28:32+01:00,7492f1805cfc2f3ad7034f55ef647dd8cf1725a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Genymobile/scrcpy,2017-12-12 16:00:49+01:00,9d141a7f50a0e81e1df751694f240b9ceac4f9f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 2, 0, 9, 14, 37, 48, 31, 0, 19, 44, 15, 27, 7, 5, 3, 0, 0, 0, 1, 0, 21, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,10,0 -https://github.com/jendrikseipp/vulture.git,2012-03-17 00:46:18+01:00,4b085860cfabe968ecb809866094bf293b5eed44,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/baruch/diskscan.git,2013-09-19 23:54:55+03:00,72981ec531e46ede670485676d0c315dadccbb8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 14, 22, 25, 9, 1, 1, 4, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://gitlab.gnome.org/GNOME/gupnp.git,2006-05-26 10:48:21+00:00,19845518d23c03c0313f5637d6926f8501b5bf01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 7, 12, 0, 7, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gabime/spdlog,2014-11-01 03:32:23+02:00,214b938858d58ccf7506530097e659690d430113,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[58, 11, 25, 48, 48, 83, 20, 60, 3, 6, 20, 2, 16, 0, 6, 5, 2, 0, 5, 1, 8, 0, 24, 14, 0, 5, 1]","[5, 4, 2, 5, 3, 7, 2, 7, 1, 1, 3, 1, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 2, 0, 1, 1]",1,5,16,0 -https://github.com/mwild1/luadbi,2009-02-17 00:23:00+00:00,23cdfd9cc8fb07fea8a8da0e8a4d51ff53de2d88,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/lwe/entypo-rails,2012-11-24 10:57:00+01:00,e14966a57edcda2669928c084a186fa445c54d15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/httplib2/httplib2.git,2006-02-07 05:34:14+00:00,2d66d4f74f67dc9a49d6cf80bac4a289718422f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 3, 2, 1, 2, 5, 0, 0, 4, 2, 1, 0, 2, 0, 0, 1, 1, 0, 9, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/boundary/bear.git,2012-03-30 15:22:30-07:00,eb22734b85f857900bffd3a856626629c0f15019,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/garbas/vim-snipmate.git,2009-02-16 10:30:11-05:00,2a9c9acd97399a0c161d7577c32ddf41d1358ddf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 20, 8, 5, 15, 24, 9, 10, 4, 2, 5, 5, 6, 1, 0, 3, 3, 0, 3, 0, 9, 1, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/urllib3/urllib3,2009-12-10 21:33:08-08:00,c73bf7c7ba0051cd3e52f2d4760322f62800a736,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/KDAB/hotspot.git,2016-12-20 18:50:04+01:00,38f53f620b773d137961e00480ea79dab50a0e9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 5, 2, 9, 33, 6, 8, 10, 25, 6, 10, 10, 8, 28, 12, 6, 4, 2, 12, 4, 0, 0, 17, 0, 1, 1]","[0, 0, 0, 1, 1, 2, 0, 1, 1, 0, 2, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,5,0 -https://github.com/osmcode/osmium-tool.git,2013-11-27 14:48:29+01:00,159a1000267a88befa34cec8b72d7f64438282ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gazebosim/gz-transport,2014-04-08 00:51:03-07:00,22c42b1dfd834366ac20f74e0159c1461416186d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 32, 21, 27, 11, 18, 7, 53, 50, 30, 41, 25, 3, 2, 0, 4, 2, 29, 3, 0, 2, 21, 12, 30, 27, 1]","[0, 0, 1, 0, 2, 1, 0, 0, 0, 3, 5, 1, 5, 0, 0, 0, 0, 1, 3, 1, 0, 2, 7, 1, 4, 1, 0]",1,4,5,0 -https://gitlab.freedesktop.org/pipewire/pipewire,2015-04-16 16:58:33+02:00,3fba92fb74ed9229cde1d069ce116bb2cfeaa322,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 3, 2, 9, 2, 3, 1, 1, 0, 2, 6, 18, 8, 1, 5, 6, 1, 12, 5, 3, 2, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/kamailio/kamcli,2015-05-04 14:33:30+02:00,b1d10f429787ef9a5838776c024f2372e71a93cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 0, 2, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/openstack/swauth.git,2011-05-26 09:48:56+00:00,ea9f0d4053f88176a93198e7cf47bb30a8588abd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 7, 0, 0, 3, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/mattcg/starttls,2013-03-04 18:55:52-06:00,a8e8ae47cb27bf0c8c1679261b1473a116bd69aa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 12, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/etingof/pysnmp,2000-11-28 07:49:09+00:00,b876b2cefb76102d74ecbea3085c9b2fa60234bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bovigo/vfsStream,2015-04-13 19:47:24+02:00,3a0e11a1df90d32b553bf12c012f836729a5abff,"[0, 1, 0, 0, 0, 2, 13, 0, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 1, 18, 1, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]",5,1,2,1 -https://github.com/predis/predis.git,2009-11-07 13:20:11+01:00,34a616cd95cdfc48dfbec2d23025bcf2e271a75a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 5, 6, 8, 0, 20, 9, 36, 13, 0, 3, 5, 0, 0, 0, 28, 17, 25, 8, 0, 22, 10, 14, 55, 3, 0, 1]","[0, 1, 0, 2, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0]",1,1,0,0 -https://gitlab.xfce.org/panel-plugins/xfce4-battery-plugin,2003-07-17 18:30:08+00:00,8332c674c76d3c294f48bf72183a19ab3fb5e087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/geggo/gpyfft,2012-05-24 13:37:38+02:00,cc9480d2d14218160f5be9e309f976e1f51027be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 33, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,2,0 -https://github.com/components/highlightjs,2013-04-20 12:47:04-07:00,afa572158b9cc656a1c4f2eefb856ce1930055a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/resurrecting-open-source-projects/packit,2016-05-09 10:19:51-03:00,f5446328c7f1bef71569b687397ba26924d33b84,"[0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Toblerity/rtree.git,2006-12-12 17:01:25+00:00,65c80e5a096f8f83541bea44c79b33e4f1ad757f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/y-256/libdivsufsort.git,2008-06-17 20:25:18+00:00,18d7a90ad01a043f61d8af8b997fdeac10772cef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 6, 1, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/cucumber/aruba.git,2010-02-12 15:05:07-04:00,ed6a175d23aaff62dbf355706996f276f304ae8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 32, 11, 0, 0, 4, 0, 3, 0, 0, 1, 1, 2, 0, 0, 0, 3, 1, 0, 1, 5, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,6,0 -https://github.com/oneapi-src/oneTBB.git,2016-09-15 14:52:33+03:00,d238c1f393c2ecd46c6d13a2fdacc98ee275f3d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libevent/libevent,2006-10-28 03:28:27+00:00,c9ad03bc0369132f436efd0af4b398d5f5e64c65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 11, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/pediapress/pyfribidi.git,2011-07-12 22:01:31+02:00,512b90684ba5a5f7929fa85ff5653bd8e2045004,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/apache/logging-log4cxx.git,2003-06-09 09:02:28+00:00,44e4c4173bd84ca1868fbd3f88e04508661e45dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 21, 29, 0, 41, 25, 8, 30, 21, 0, 0, 0, 8, 0, 19, 0, 25, 0, 0, 10, 0, 0, 3, 0, 11, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/intel/compute-runtime,2017-12-21 00:45:38+01:00,7e9ad412908a4a16ce10f6512f13147e80dd8040,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 7, 26, 35, 22, 20, 25, 29, 47, 41, 46, 38, 37, 53, 40, 38, 42, 25, 17, 9, 32, 21, 24, 19, 24, 20, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0 -https://github.com/php-fig/http-message,2014-06-11 00:03:12+01:00,f3961cdbe31a0108281c4a23d8123532db3fd9c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 0, 4, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 2, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/OpenTTD/OpenSFX.git,2023-07-02 21:06:45+02:00,ef827c31d4351d837184a568ae90cc9fd021cf32,"[1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/webpack-contrib/worker-loader.git,2012-08-06 18:26:51+02:00,bc4acc97422522d6e6bf0de95d667a93b1694824,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libfann/fann,2012-01-23 14:02:51+08:00,df467c918fe2ee99ce43c7fedc64d5fd259260b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mate-desktop/pluma.git,2011-11-07 16:46:58-03:00,528c1e5ff51e213936e800fc5a9a25da99c0bdf2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 4, 2, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 1, 0, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/phillord/assess.git,2015-10-25 16:47:41+00:00,41a297b0668c18af9731ba95abb6f809e3d8201b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 0, 1, 0, 0, 0, 0, 1, 0, 3, 3, 2, 9, 0, 0, 0, 4, 0, 0, 0, 0, 2, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/sebastianbergmann/php-file-iterator,2009-11-05 06:09:47+01:00,e20f5946e0ffaf4067d330d76f6ed7b76e2cd17c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 0, 0, 6, 0, 1, 1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/gerddie/ginkgocadx.git,2016-02-16 21:00:51+01:00,5de603543d218c1fd1774760ffd1ba441d28d336,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 16, 4, 91, 20, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/walling/unorm/issues/new,2011-11-15 13:55:54+01:00,63d85f3d8db32cc55cc79d265d5b4ac4e64b9fc8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/ctjacobs/pyqso,2013-03-31 02:03:17+01:00,52867a396b505cca12c2398fe9bd26f743ee2f2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 56, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 7, 13, 6, 3, 3, 7, 1, 5, 1, 1, 3, 20, 5, 3, 1, 5, 0, 4, 1, 0, 12, 13, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://invent.kde.org/multimedia/stopmotion.git,2012-02-21 16:23:17+01:00,aaf2f5a720d8cdd95425197391327882aea665c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/bbatsov/persp-projectile.git,2015-12-20 14:30:11+02:00,83e03b1284ea36f37a24571abd6442a267408360,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/zzak/sdoc.git,2009-03-21 11:58:49+03:00,3420b3a9520ee433a190f52e6491fb5ac219ace9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 41, 33, 13, 13, 1, 0, 2, 2, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 -https://github.com/libusb/hidapi.git,2010-04-11 16:37:10-04:00,3f9611fe5a0a815112457294bcdf947fd31d2918,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 11, 11, 0, 14, 37, 2, 5, 16, 3, 0, 2, 5, 1, 2, 11, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 3, 3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0]",1,2,2,0 -https://github.com/cedadev/ndg_httpsclient,2012-01-06 16:16:03+00:00,8ad766f537e5156ad4fd0882959373e79f2d95f0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 9, 1, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/shimmerproject/Greybird,2011-03-07 16:21:55+02:00,abb9ee35d8c77662638b085ab429f2de66e4acc9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 6, 15, 1, 2, 0, 5, 1, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://gitlab.gnome.org/GNOME/gnome-desktop-testing,2013-04-25 18:34:25-04:00,5a153ea2cbb46678f26884465af73e81bd3716e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 2, 4, 13, 2, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 3, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/JakeWharton/pidcat.git,2013-06-11 22:59:50-07:00,b5326a1cd5bbc0d2ed3d3f74b4905b1185f4ff9b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 5, 5, 2, 0, 0, 0, 0, 3, 0, 0, 1, 1, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0]","[6, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,13,0 -https://github.com/rootless-containers/slirp4netns.git,2018-07-10 19:57:38+09:00,d5c44a94a271701ddc48c9b20aa6e9539a92ad0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 26, 9, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 7, 9, 0, 2, 0, 0, 0, 0, 2, 0, 7, 0]","[0, 1, 9, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0]",1,1,6,0 -https://github.com/otsaloma/nfoview,2007-08-14 16:39:31+00:00,587d5b02ca084498642964de64b4dd27f12275b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/mptre/yank,2015-08-24 09:24:04+02:00,91509b4b37900218ac3bb1c0079491e18ca55695,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 3, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ravinet/mahimahi,2013-08-27 17:46:39-04:00,95e1087cba1cebb94360a4fa6df209d9f226de45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 11, 51, 10, 37, 45, 0, 0, 9, 34, 30, 0, 0, 0, 0, 0, 38, 0, 4, 43, 0, 0, 0, 0, 6, 17, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/python-lz4/python-lz4.git,2012-01-31 12:07:56+01:00,c661eb244ccd45586b9646fab9c79cc8af63bc1a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 1, 11, 0, 10, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/toofishes/python-pgpdump,2011-10-26 04:16:20-05:00,e5f487995f4e88000ac32e131237a8a343417982,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 23, 0, 16, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/lunarmodules/penlight,2010-03-09 09:17:15+02:00,57e4c5deaee8b6b12be0792e4f1fdf40e555683a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 1, 6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/lilydjwg/pssh.git,2009-01-08 14:34:49-07:00,b24af9c96d353160b466f0f6217048ea17a0d014,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 0, 0, 0, 0, 4, 4, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/biocore/pyqi,2013-06-06 11:18:30-07:00,e0260e4822f0c3a1ffb33c8c26032a448ea690c2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 33, 17, 0, 0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[4, 4, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,2,0 -https://github.com/savonet/ocaml-vorbis.git,2008-10-15 17:30:33+00:00,78ba7c16f0370b1b1038a5f6f542bae05a084644,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/tmm1/http_parser.rb.git,2009-12-18 22:21:29-05:00,dce971b34331d4d4094afa55675900eae2013ea9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Perl-Critic/Test-Perl-Critic.git,2005-11-03 05:46:39+00:00,687d7f83bf610d2f84e731e7b5b9b223c86979c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 0, 0, 2, 0, 4, 0, 3, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/coldsource/evqueue-core,2015-03-20 17:49:27+01:00,449ef4a174c958116542f96de19bc93329f25ace,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 16, 0, 15, 0, 0, 1, 0, 19, 18, 8, 7, 19, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,7,0 -https://github.com/seccomp/libseccomp,2012-01-30 12:35:27-05:00,02201a5693430c8c1c1b8855633431eec9f54d31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 3, 21, 29, 23, 17, 8, 19, 12, 33, 18, 6, 2, 0, 0, 1, 4, 0, 10, 0, 0, 0, 0, 0, 2, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 -https://github.com/linuxdeepin/deepin-screen-recorder,2017-04-01 17:24:04+08:00,28f1295cd2e16d9c69ff80a3a99598702739d386,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 168]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 2, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 1, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",4,3,7,0 -https://github.com/mvgrimes/catalyst-dispatch-regex.git,2013-03-27 12:31:46-04:00,f26d5a1c22edf12b06f77f90fb982a6024047692,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/whipper-team/whipper.git,2009-05-23 07:59:16+00:00,eb74b1a9b2fca6b407fac50af6eccf89adb7f98c,"[0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 2, 43, 13, 31, 57, 14, 45, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 12, 18, 7, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 2, 3, 7, 0, 1, 2, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ruby-prof/ruby-prof,2008-11-12 00:49:40+00:00,7ec8a86b248b53f9af14e957909c2f15f8a01fc7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 5, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Pulse-Eight/platform.git,2015-03-12 13:55:06+01:00,dd73120ea4be3950f518816408589b04814ff7a4,"[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 3, 1, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[3, 0, 0, 6, 0, 0, 1, 12, 10, 0, 0, 0, 0, 0, 0, 2, 0, 1, 3, 2, 1, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0]",6,1,8,2 -https://github.com/shumatech/BOSSA.git,2011-10-19 22:12:19-05:00,acea00237e48acd5f91549b3d4092267a3bccacd,"[0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 1, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/acetcom/nextepc.git,2017-02-02 20:34:37+09:00,fdf97f47bbfcce08492da12ac346b222cd4f0efa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 55, 29, 49, 83, 59, 27, 43, 60, 90, 45, 18, 20, 0, 23, 19, 20, 14, 11, 23, 44, 43, 25, 16, 42, 53, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0]",2,3,2,0 -https://github.com/jakearchibald/es6-promise.git,2012-10-16 14:11:05-04:00,d1520571252e4508ed44c2a72964f2d19b18ae5c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 5, 0, 1, 0, 1, 1, 1, 5, 0, 5, 4, 11, 1, 1, 0, 1, 4, 0, 5, 6, 8, 0, 5, 0, 0, 1]","[8, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 3, 0, 1, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 0, 0]",1,4,17,0 -https://github.com/amireh/lua_cliargs,2012-06-28 15:02:58+03:00,39450b89ebe66f32f1f6a1f00d704043ac34c038,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 5, 0, 4, 35, 12, 6, 1, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,3,4,0 -https://github.com/steveicarus/iverilog,1998-11-18 04:25:22+00:00,ac71df5257c1474a11710a5588d7a47dcc6dd119,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 1, 3, 0, 3, 0, 0, 3, 4, 2, 3, 2, 1, 0, 4, 0, 0, 0, 0, 1, 7, 9, 14, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Debian/dh-make-golang.git,2015-07-27 08:49:20+02:00,3f59ff12f284fea0c66b81062a02f34cb0992061,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[3, 8, 4, 1, 0, 9, 7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,5,1 -https://github.com/tantale/deprecated.git,2017-11-20 14:13:26+01:00,1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/openzim/libzim.git,2009-02-28 22:53:38+00:00,6453e09894342fe50c3b17b06cf7765d940a25eb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 6, 3, 0, 1, 2, 1, 7, 1, 0, 1, 1, 0, 2, 0, 0, 0, 3, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/goodvibes/goodvibes.git,2016-11-29 19:27:46+07:00,a33183bb37cb6663033affdd3ba4e82a0ebbbca8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 22, 14, 20, 14, 20, 35, 30, 37, 24, 49, 23, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 1, 1, 1, 1, 3, 3, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,0 -https://github.com/OWASP/O-Saft,2012-12-20 14:13:19-08:00,d00db6f45f2635cc707bfcd84640ef06eac66491,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 11, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/iovisor/bpftrace,2017-01-02 20:03:41+00:00,e8461e74826224b6f506e000bb6dc4bb43c28165,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 7, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 5, 5, 0, 0, 0, 0, 7, 2, 0, 1, 0, 1, 3, 1, 5, 3, 10, 1, 9, 9, 1, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/FRRouting/frr,2002-12-13 20:15:29+00:00,718e3744195351130f4ce7dbe0613f4b3e23df93,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 18, 4, 4, 3, 4, 0, 6, 1, 12, 9, 3, 19, 3, 10, 2, 5, 7, 21, 34, 15, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/carlodefalco/octave-mpi,2018-05-31 10:26:07+02:00,7ff94ca6e1930f4d063436e1b542086cc182d301,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rudionrails/yell,2011-10-29 16:38:44+02:00,32f0c16d0d05abd8266c3f044beebe79ac1161bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/jnunemaker/crack,2009-03-28 23:43:14-04:00,5c6b0b031ffc69692febeffc632f1bafb27351fd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://gitlab.gnome.org/GNOME/librsvg.git,2001-03-28 18:44:42+00:00,9d95967905377141e0e83aafe782c702d1ae656a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 1, 0, 5, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/mltframework/shotcut,2013-10-02 20:02:44+02:00,a5639cc8ed9e94bd5cf8ec574de6e03df3cfe34c,"[6, 13, 2, 2, 1, 0, 0, 4, 4, 4, 4, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 2, 22, 19, 31, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[14, 18, 17, 13, 6, 11, 11, 7, 3, 3, 0, 1, 76, 24, 22, 13, 17, 17, 18, 26, 0, 48, 14, 10, 16, 10, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jelmer/subvertpy,2013-05-30 23:19:03+00:00,716f12811c04d2012ccde097ad3a63c85f44012e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 46, 2, 3, 0, 2, 0, 0, 0, 6, 0, 49, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/epoptes/epoptes,2011-09-28 00:02:59+03:00,b9af4fbd85bba1f7c544f42a8852a33f6ea41c52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 19, 9, 11, 29, 7, 6, 1, 1, 1, 1, 1, 0, 2, 31, 3, 11, 10, 3, 4, 22, 28, 11, 22, 20, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 -https://github.com/umlaeute/Gem,2002-10-21 07:45:55+00:00,d2573d593f3725e7988c1eaa9bd94487302b984e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 6, 0, 12, 25, 5, 8, 4, 0, 0, 4, 1, 5, 2, 38, 5, 6, 27, 31, 4, 0, 3, 24, 63, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/skeeto/elfeed.git,2013-08-23 22:03:44-04:00,b660b211cf2f9c41621ed20c62ef24c42023152a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[127, 47, 42, 4, 0, 14, 3, 1, 0, 0, 0, 1, 1, 12, 1, 0, 5, 0, 1, 0, 2, 3, 3, 1, 7, 1, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/telegramdesktop/tdesktop.git,2014-05-02 05:36:31-07:00,6d9ac2c4758fef40b865c4df1ee3211dab985392,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 1, 1, 14, 7, 1, 12, 22, 4, 8, 3, 15, 11, 1, 4, 3, 0, 7, 11, 4, 2, 21, 4, 1]","[0, 0, 0, 0, 0, 0, 2, 2, 0, 3, 7, 1, 1, 0, 4, 0, 0, 0, 1, 0, 1, 3, 0, 0, 4, 0, 0]",1,1,2,0 -https://github.com/thbishop/fission,2011-05-12 14:51:11-07:00,117e510b61a749d0df5af459505ea9e0bfb7e4df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 5, 15, 0, 0, 3, 0, 0, 0, 6, 20, 0, 19, 17, 20, 12, 26, 25, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 -https://github.com/jorol/Catmandu-MAB2.git,2013-10-01 14:02:31+02:00,d1b542c92b80d498b416c862d50113df56d537fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 6, 0, 5, 1, 0, 0, 5, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/r-lib/vctrs.git,2016-09-06 16:52:49-05:00,8a52bc3cdb997350b2e74f1fcc2dbf47ab7cd699,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/savonet/ocaml-duppy.git,2008-10-15 17:30:33+00:00,2ac6f3e4c163e2f5fd1d8c498b7d93a21a7cb57e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/enova/pglogical_ticker.git,2018-11-09 11:43:20-06:00,283b75352585a6667bbfc4b38a7ada309e740046,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 2, 0, 0, 2, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/pothosware/SoapyOsmo.git,2015-04-06 17:35:50-07:00,6fa13e7ce07cd2b91676777a6894799da80d287b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 1, 0, 3, 5, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 10, 6, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 -https://github.com/globocom/derpconf,2012-08-01 07:28:37-07:00,b3223c0024f222e7829a4c5542688c3aef877e18,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,6,0 -https://github.com/OpenTTD/nml.git,2018-10-25 18:06:50+02:00,c15f4ee3d737542f7c676bcd8f1c3e4fd844a823,"[0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 0, 0, 0, 6, 0, 2, 2, 1, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,8,0 -https://github.com/ocsigen/lwt.git,2008-05-25 12:52:03+02:00,ed71a00f0d5780234c870e9f62d36f62d899f553,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/alanxz/rabbitmq-c.git,2009-04-25 14:02:20+01:00,d92b0f3c777bff3f7da7efb48059a8aee4e5287f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 9, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 2, 1, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/rbenv/ruby-build.git,2011-08-11 15:40:36-05:00,fa263f2bdbdc8ba5f4af5acc753c5db270269958,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[11, 5, 0, 14, 14, 9, 13, 0, 2, 16, 13, 9, 2, 1, 2, 0, 8, 0, 2, 2, 10, 0, 0, 0, 0, 2, 1]","[4, 2, 0, 3, 3, 3, 2, 0, 2, 1, 6, 2, 1, 0, 0, 0, 5, 0, 1, 1, 3, 0, 0, 0, 0, 1, 0]",3,2,28,2 -https://github.com/sqlitebrowser/sqlitebrowser,2010-10-05 11:04:14+01:00,054ca360536b33c05eb54a143a5cf9c0cd70eb19,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-boxes,2011-10-04 16:04:10+03:00,f17dac41f91c6f5ec546469bdb35e90ef6915c4f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 7, 42, 33, 53, 12, 35, 27, 14, 22, 11, 1, 2, 16, 22, 11, 11, 11, 10, 20, 13, 30, 24, 14, 39, 22, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,64,0 -https://github.com/codehaus-plexus/plexus-interactivity.git,2018-05-12 14:58:49+02:00,94cf7526c866b19c08f1c4533521097674e66522,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/Cyan4973/xxHash,2014-07-10 22:44:08+02:00,f0f007f0424c12997a33d604c01664b30bb248f4,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 3, 5, 2, 0, 0, 0, 0, 2, 3, 1, 0, 6, 6, 0, 0, 0, 2, 0, 3, 2, 0, 1, 2, 0]","[1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,2,4,0 -https://github.com/erlang-lager/lager.git,2011-06-24 13:31:20-04:00,7bcf044f1a43dbbf0a06ce795b80c7bcbdbaec15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 31, 16, 9, 6, 1, 10, 16, 6, 11, 9, 1, 10, 3, 2, 2, 0, 9, 6, 3, 1, 0, 2, 2, 1, 2, 0]","[0, 1, 1, 0, 1, 0, 0, 3, 1, 3, 3, 0, 2, 1, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 0]",1,2,7,0 -https://gitlab.com/crosswire-bible-society/scofield,2022-03-08 08:02:08+00:00,2a8fe91d2f87d26f7d2e84943d079ef39b77e7f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/martinblech/xmltodict.git,2012-04-17 09:39:52-05:00,8da8cb30021e9d220b2c5adc74768d98bfe3c195,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/daqana/tikzDevice.git,2009-05-19 01:37:40-07:00,e0722f681db1d410a714e56f5aa74bbc98ffe404,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 5, 0, 0, 0, 0, 15, 55, 32, 3, 1, 0, 0, 2, 4, 1, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 5, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,9,0 -https://github.com/marekjm/diaspy,2013-05-01 00:30:56+02:00,f2eaa3c7bbb495584b5e3ee93da82073c4d3dc4e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 0, 19, 0, 1, 0, 3, 0, 6, 7, 20, 3, 7, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 4, 1, 1, 0, 0, 0]","[33, 3, 5, 8, 0, 9, 6, 0, 14, 35, 4, 0, 0, 1, 15, 5, 18, 4, 10, 7, 3, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 0, 0, 2, 0, 4, 7, 1, 0, 0, 0, 1, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,4,2 -https://github.com/WebAssembly/binaryen,2015-10-29 12:43:59-07:00,b3b8d931068ff09e245233451b4f1d47648f1e2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[234, 160, 76, 67, 41, 89, 87, 135, 47, 70, 112, 111, 52, 90, 38, 32, 40, 11, 77, 76, 52, 60, 63, 40, 47, 101, 1]","[0, 0, 1, 0, 0, 0, 0, 28, 3, 14, 18, 15, 7, 14, 12, 6, 10, 5, 16, 10, 15, 15, 10, 4, 6, 12, 1]",1,6,24,0 -https://github.com/fog/fog-local,2015-02-14 16:04:42+02:00,4b45d54ca61be4c3428a273ba011675cade639c4,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://gitlab.com/drobilla/mda-lv2.git,2008-08-08 22:45:58+00:00,e360047054117d63fb579ec9231e9dc77c99f12a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/slime/slime,2003-09-04 11:07:27+00:00,2fb4c4e53b59ed7b6e5f55780574a1016c0e5074,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 18, 24, 25, 0, 19, 76, 23, 47, 23, 26, 50, 58, 41, 66, 10, 0, 26, 57, 97, 13, 24, 26, 19, 32, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,8,0 -https://github.com/jupyter/jupyter-sphinx.git,2016-12-05 16:46:35+01:00,13950176e8633f78fdfb9a5a4dcce41da1975008,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/dottedmag/archmage,2007-09-30 09:51:25+00:00,526aec890a1712c5e607597c361370ff4fb43d66,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/s-yata/marisa-trie.git,2016-01-28 23:55:47+09:00,3b5f964636a4d557d45760e446a1f4e6b2f24567,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/wesm/feather,2016-01-27 14:44:10-08:00,6e91cc5e5cfeb0a5771997bee402f8fe1e72ebc2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 0, 3, 7, 2, 0, 4, 17, 18, 5, 1, 1, 6, 3, 4, 1, 2, 3, 3, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,19,0 -https://github.com/puppetlabs/puppetlabs-concat,2010-05-06 22:55:02+01:00,ee1fe7a0236e5fd100bbc229ea034bf7d2b530aa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/ponty/easyprocess.git,2011-02-08 10:47:52+01:00,d2dffa6268bc432cb36dd5a039bca6b60efbc059,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 2, 7, 0, 0, 0, 12, 0, 10, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/elasticsearch/curator.git,2013-08-19 22:51:20-07:00,7eac0259a3fdcf8684194af76d3acac7244a38dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 7, 7, 3, 25, 3, 3, 27, 2, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 9, 1, 1, 10, 0, 0]",1,3,10,0 -https://github.com/kimocoder/wifite2.git,2017-05-26 23:54:56-07:00,baf3ae8711b34fb2862ea9c0f1f99a16ff3b7cf4,"[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://gitlab.gnome.org/GNOME/gnome-builder.git,2014-09-06 18:31:11-07:00,18ddcf98ecc5569d39d538b329ca90775dc9b520,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[134, 69, 53, 175, 95, 97, 32, 1, 4, 17, 38, 18, 53, 157, 164, 41, 37, 34, 50, 88, 20, 11, 179, 35, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,47,0 -https://github.com/busyloop/lolcat.git,2011-08-10 16:10:30+02:00,207bc996a7084af57c4d9d4a5f5c42d8445a2dc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/mahmoud/boltons,2013-02-19 18:04:47-08:00,2c4595e3278c4b4b4175c1dbf6d00a5b02fc65f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 3, 1, 41, 29, 0, 0, 2, 4, 3, 0, 0, 0, 5, 5, 6, 0, 0, 2, 1, 1, 2, 2, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/Bioconductor/XVector.git,2019-04-19 12:45:47-07:00,7eae4812690e779e10c94b0515134cedff754d0b,"[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 -https://github.com/fenrus75/powertop,2010-12-20 15:45:35-08:00,64d88a1a9fd21a497087a40e7dff8b3310874420,"[0, 0, 0, 0, 0, 20, 27, 39, 42, 25, 21, 18, 8, 21, 10, 5, 13, 16, 19, 4, 1, 0, 26, 3, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 2, 1, 0, 0, 0]","[24, 17, 25, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 0, 23, 1, 2, 1, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]",3,0,10,1 -https://gitlab.gnome.org/GNOME/ghex,1998-04-03 15:21:02+00:00,1d9ef2a24b62cb31bc75e221bb17ce6f151e1964,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 1, 2, 1, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 6, 3, 7, 2, 1, 4, 7, 2, 4, 3, 4, 2, 4, 2, 2, 6, 2, 10, 3, 3, 5, 2, 4, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,18,0 -https://github.com/capistrano/capistrano.git,2005-08-03 12:59:03+00:00,f9da6dbb4ca3c52bb826653b3313e64541f7f693,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 1, 6, 4, 3, 3, 0, 6, 3, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 9, 6, 1, 6, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jeffkaufman/icdiff.git,2010-08-02 09:56:45-04:00,15947e01fae9a2eb3e38ad3e29b0bd44439a5362,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/linuxmint/cinnamon-control-center.git,2013-01-09 10:32:58+00:00,64f6e5baeefb705f367ed6fb92c3aaf27197861c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 66, 42, 4, 2, 4, 7, 0, 0, 1, 2, 0, 1, 9, 6, 7, 0, 5, 2, 1, 17, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/cl-plus-ssl/cl-plus-ssl,2014-02-10 05:36:34+03:00,7cc34767a580b06f5148fb7fdecd316462a4f5c2,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,0,3,0 -https://github.com/rolinh/dfc,2012-03-18 11:30:13+01:00,865cfaf4169180e64540573cc53ef3a3976edc4e,"[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[70, 98, 70, 20, 68, 46, 18, 24, 25, 47, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/openwall/scanlogd.git,2021-03-10 17:51:01+01:00,57791e89013df9a442013c30fdbae0310b5e0753,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mapbox/variant.git,2014-02-11 12:37:24-08:00,9b82890ea11742eafd686f44b8cc7075029dbd7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 40, 13, 6, 2, 12, 3, 23, 1, 0, 0, 0, 0, 2, 1]","[4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",2,3,4,0 -https://github.com/teopost/qmenu,2013-10-29 16:03:02+01:00,2611e6ffd97fe17e6307700c770fb432a4a7a585,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,5,0 -https://github.com/qiime2/q2-types.git,2016-05-09 13:56:02-07:00,200d63f3df39bfbfe9c11f181f2722e65de6180e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 2, 0, 2, 3, 5, 1, 6, 10, 0, 5, 3, 2, 2, 2, 4, 6, 3, 6, 5, 1, 0, 1, 3, 1]","[3, 0, 0, 1, 0, 0, 2, 2, 1, 3, 5, 0, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0 -https://gitlab.com/accounts-sso/signond.git,2010-04-01 14:58:48+03:00,985d0e30702101e84c82369fdfac8ba82a0696bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 26, 19, 14, 29, 13, 8, 13, 0, 16, 15, 4, 20, 9, 16, 4, 1, 9, 0, 18, 17, 4, 3, 16, 10, 7, 1]","[7, 9, 3, 2, 9, 5, 3, 2, 0, 3, 4, 1, 2, 1, 3, 1, 0, 3, 0, 3, 3, 0, 0, 6, 2, 2, 0]",1,4,4,0 -https://github.com/trailofbits/onesixtyone,2014-02-07 09:02:49-08:00,1f0d6d5600872422b4215693a1a9f774fdf8776d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://git.samba.org/uid_wrapper.git,2013-06-05 17:19:59+02:00,47fff10dd391a6b60508206ae96735b1d76daf51,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 10, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mgerhardy/caveexpress,2014-03-14 10:31:05+01:00,a1f23b533b9b301136f8f904f91f74ac3ce801ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 10, 0, 23, 28, 44, 31, 7, 2, 30, 1, 0, 0, 33, 57, 0, 20, 38, 107, 108, 125, 57, 18, 0, 8, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jquast/wcwidth,2014-04-07 20:55:21-07:00,348321b3e57f02f52abd335d8a7591660050c050,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 12, 0, 12, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/basho/innertube.git,2012-06-01 16:01:38+02:00,d6b922b31cb6c308d72cbe79d4da9ff34c1c24bd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/citusdata/postgresql-hll.git,2013-02-04 11:07:47-08:00,f3fc391b7402fa925cb6afb1f0b741834acca875,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0, 1, 0, 0, 0, 4, 2, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0 -https://github.com/tax/python-requests-aws,2012-01-13 14:26:52+01:00,e854b8a3e75e134d77c659c90bbca23ecca1cc3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/EnterpriseDB/mysql_fdw.git,2011-04-12 17:39:08+01:00,688c0fdb7ed4eb9ff9ceb76f65b7608432a8b196,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/julian-klode/dir2ogg,2007-06-22 17:58:38+02:00,5b1a252cdab0f9b2f37f553c8ad7aa85cf256b6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/df7cb/tenace,2008-02-02 15:04:02+01:00,c3809f4545c645f6ded33ea37251d7b6e2b410b3,"[0, 8, 1, 0, 1, 0, 0, 0, 0, 6, 4, 0, 0, 1, 1, 3, 4, 0, 11, 8, 0, 0, 9, 0, 1, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 0, 0, 0, 0, 13, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/turnstep/Math-GMP.git,2014-01-27 11:02:16-05:00,3502d80334a75cf5893f861c159f3ca1c27b5f58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/BioPP/bpp-phyl.git,2022-12-05 10:00:18+01:00,c4b682887da5fd820f1a4d77e087675f7b9bfcf6,"[1, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 3, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 1, 0, 3, 2, 0, 0, 5, 0, 5, 4, 0, 1, 0, 5, 1, 1, 6, 4, 3, 1, 0, 4, 1, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 4, 2, 0, 1, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/SoundScapeRenderer/ssr,2013-11-27 17:08:24+01:00,282398501961d280e7845ca1c2f4841b62d40b65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 8, 2, 0, 2, 24, 11, 2, 3, 0, 3, 7, 8, 4, 6, 1, 0, 0, 3, 0, 0, 1, 0, 2, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/snapcore/snapd-glib,2017-04-05 09:50:10+12:00,af7aaee56ac30ffdf306628c38d0c9f32f942990,"[0, 10, 14, 14, 20, 6, 1, 0, 1, 0, 0, 0, 0, 0, 3, 12, 16, 9, 3, 22, 13, 0, 4, 27, 10, 3, 2]","[0, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 6, 3, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/swipely/docker-api,2013-06-12 15:00:04-04:00,75d70a0a7fd592770119aafe17a74a1d439d4848,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 54, 24, 3, 2, 7, 4, 7, 18, 3, 3, 12, 0, 7, 1, 3, 6, 8, 0, 2, 28, 11, 4, 2, 6, 11, 1]","[2, 10, 3, 2, 1, 2, 2, 1, 3, 0, 2, 2, 0, 2, 0, 1, 0, 2, 0, 1, 1, 2, 1, 0, 1, 3, 1]",1,3,14,0 -https://github.com/radcli/radcli,2003-12-02 10:39:09+00:00,8476e14e7ec992fd8a73700a968d6b579496539e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/bit-team/backintime,2008-10-28 11:48:58+01:00,520fc216cc8964825297c9243a42f1d08a3ff510,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 15, 16, 37, 22, 14, 9, 15, 14, 10, 44, 31, 37, 24, 14, 8, 7, 24, 43, 57, 26, 10, 13, 18, 10, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/garrigue/lablgtk.git,1998-11-22 03:02:29+00:00,861bdac520343073a08aa3ac7893b70a5d99060e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/aircrack-ng/mdk4,2018-02-06 16:23:27+08:00,218029afb9c0e9ef3a9ddfcf4a91a4c727d32ce1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 1, 7, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/c4urself/bump2version,2013-03-10 19:08:42+01:00,db5aa7b7588b6f9685534a0c565820f93be0dd30,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 6, 2, 2, 5, 2, 1, 0, 0, 0, 0, 0, 16, 11, 0, 0, 0, 12, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/df7cb/pg_snakeoil,2018-08-10 14:24:23+02:00,a66b75eb13f30b4243629f9b2c5ad24bd180c568,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 13, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/TurboGit/hubicfuse,2009-02-03 04:21:41-06:00,d382289bbd50b2f54343c2c1316fce2829938233,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/imanel/websocket-ruby.git,2012-07-13 12:35:03+02:00,353bd7a768f79e7b34f530c33292ceecd4129a7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 4, 0, 0, 0, 10, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/hassox/warden,2009-04-07 01:09:39+10:00,7b7814b468f02249dce1c5c06902bbcd996c66ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 12, 5, 3, 0, 0, 0, 2, 0, 0, 0, 0, 1, 10, 0, 2, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/IRkernel/repr.git,2015-04-18 20:42:59+02:00,6e9f5aed5765a657034f4fb8d1e8ead43de9e5e8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 7, 2, 1, 0, 0, 1, 0, 0, 0, 5, 1, 0, 2, 4, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,2,0 -https://github.com/enzinia/hangouts-chat,2018-03-20 20:31:43+09:00,a2975b27abad92e39f15e4d4bfa3d577bd44bf48,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 8, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/ajaiantilal/i7z,2012-12-06 13:08:36-07:00,da1d2a9ae85335f395cc634f05d5ee94f56f000b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/wfeldt/libx86emu,2008-12-12 13:34:09+00:00,175c8d15c6c60359052ca182bfb0b9f459cf5d0e,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 4, 1, 4, 10, 1, 14, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/jirka-h/haveged,2018-07-18 13:56:31+02:00,2b60a12e3d4a3fa43af356e09ab32b82b63b60dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,3,0 -https://github.com/php-fig/cache.git,2015-08-20 20:19:05-05:00,8e90a3f28d395d940520d2834f9a5854877848c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/PierreRaybaut/guiqwt.git,2010-09-01 16:54:41+02:00,97df8c54b7db29d420fa7bcb02105b086ae67e59,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 8, 12, 0, 0, 0, 0, 8, 3, 14, 5, 17, 5, 28, 5, 0, 0, 2, 10, 12, 21, 32, 11, 15, 13, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/fgrehm/vagrant-lxc,2013-02-25 02:04:31-03:00,55c9be772db32d4f49bf61af1801d2d6f14a880e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[91, 80, 19, 12, 61, 30, 27, 58, 13, 33, 33, 5, 2, 10, 30, 0, 0, 7, 3, 21, 20, 10, 16, 3, 0, 0, 1]","[2, 2, 1, 0, 3, 0, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 0, 1, 0, 0, 0]",1,2,9,0 -https://github.com/andrewrk/node-findit.git,2011-02-02 03:56:48-08:00,0e0cd9c95ac796349530273a712fd1d5f3fde062,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/CsoundQt/CsoundQt,2016-02-23 16:43:10+01:00,14c2a149b50cafc1fba6adfed99744c036725ad2,"[2, 0, 0, 0, 0, 0, 2, 1, 0, 0, 4, 2, 0, 0, 0, 1, 0, 7, 0, 7, 2, 3, 3, 6, 11, 24, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 1, 3, 5, 0]","[11, 16, 3, 10, 9, 11, 14, 2, 3, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0, 2, 0, 0, 1, 0, 5, 6, 0]","[2, 5, 1, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",6,2,6,2 -https://github.com/lxqt/lxqt-notificationd.git,2015-10-31 02:17:52+02:00,2d7f7dd9ae006cdc473fefb17b231a38e3e532b4,"[0, 0, 1, 5, 1, 0, 3, 2, 3, 0, 5, 1, 1, 2, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,3,1 -https://github.com/Debian/pk4,2017-10-21 10:29:34+02:00,88c774ffb8cef2760fcd58ec4c324089c87774e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ukui/biometric-authentication,2018-09-06 15:51:50+08:00,88302f896234ab89c2e242f68dfdba10b6815a13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 6, 10, 5, 0, 3, 0, 0, 3, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/anholt/libepoxy.git,2013-10-16 11:43:11-07:00,a909eb4a229ebbea2d60717e748df3f0a2f69cc4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/davesteele/cryfs,2015-02-17 01:03:37+01:00,30832284705c060547fbef8ffcae0e3fb0570d4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 25, 1, 1, 5, 6, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 5, 14, 3, 0, 0, 14, 3, 14, 2, 1, 0, 0, 0, 0, 1, 9, 2, 2, 0, 1, 7, 2, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1 -https://github.com/puppetlabs/facter.git,2005-08-29 21:30:45+00:00,7cec936bf10ea2f0c2f56c00839043ad9369d99b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1, 10, 4, 0, 2, 0, 2, 4, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/sbabic/swupdate,2013-11-17 14:18:04+01:00,e4228034b49ad9717e3948b681bead89df8012ee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/tidymodels/recipes,2016-12-15 21:40:24-05:00,b57afd2a6c74337516964f4d547d89faac1c3168,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 4, 7, 22, 28, 25, 18, 17, 2, 25, 0, 33, 33, 2, 0, 2, 8, 0, 5, 16, 8, 0, 3, 1, 1, 1]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/pdfminer/pdfminer.six.git,2007-12-30 09:13:51+00:00,b278b5339042aebfbcea58905b80303c1e003116,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0, 0, 0, 0, 0, 2, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/varvet/pundit,2012-11-04 10:20:45+01:00,1cad0b598a4ade135789e7371583ab72fbc7a151,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 18, 1, 2, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 3, 0, 4, 1, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0]",1,1,6,0 -https://github.com/naihe2010/apvlv,2008-10-17 06:37:32+00:00,e7a0e913c9072f87fdb78a5f5599013e4676f3de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/jupyter/jupyter_client,2015-04-09 00:12:21-07:00,e7d7c01a9afd0ddcc8c183223a340ffa44468621,"[4, 11, 2, 1, 2, 2, 1, 4, 29, 11, 4, 1, 5, 0, 5, 4, 3, 1, 3, 0, 4, 3, 0, 5, 26, 27, 2]","[1, 6, 0, 1, 1, 1, 0, 2, 3, 3, 2, 0, 3, 0, 2, 1, 1, 0, 1, 0, 2, 1, 0, 3, 5, 7, 0]","[10, 2, 4, 8, 8, 2, 12, 10, 2, 6, 3, 2, 11, 13, 2, 1, 2, 4, 4, 7, 0, 5, 6, 4, 0, 9, 1]","[3, 1, 1, 4, 4, 1, 2, 4, 1, 2, 1, 1, 4, 5, 1, 0, 1, 0, 2, 4, 0, 2, 2, 2, 0, 2, 0]",7,1,6,0 -https://github.com/uTox/uTox.git,2014-03-15 05:52:31-07:00,f405ebec61508934a0cff949a8c9bf62ec69e01c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 10, 0, 0, 0, 0, 2, 0, 0, 4, 3, 14, 42, 38, 50, 74, 51, 18, 14, 29, 33, 67, 57, 42, 26, 5, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 3, 1, 10, 4, 5, 4, 0, 3, 8, 13, 18, 12, 13, 2, 1]",1,8,36,0 -https://github.com/PacificBiosciences/pbcommand,2015-07-09 09:29:26-07:00,3d36af9cc36082a4793ae19b27e237cc31f5f6e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 19, 32, 12, 24, 5, 6, 3, 6, 0, 2, 4, 1, 0, 0, 0, 2, 7, 8, 8, 6, 9, 3, 0, 0, 0, 0]","[1, 2, 5, 1, 2, 0, 0, 1, 3, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0]",1,3,7,0 -https://github.com/netdiscover-scanner/netdiscover,2005-08-09 01:43:14+00:00,51b6f0d69cd87edaa7c118416f2a41d5552d0e1f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 7, 5, 1, 2, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 11, 0, 9, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/cdidier/irssi-xmpp,2007-08-13 13:33:57+00:00,0b7922122729da5d564caf2f9482b446e1c8236f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 29, 5, 0, 0, 0, 2, 9, 17, 24, 10, 0, 0, 1, 7, 1, 5, 1, 4, 10, 3, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/wch/webshot,2014-12-16 11:05:08-06:00,8c53e486450cc98c390e1cd55a1d73b7e6d7626b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 4, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 -https://gitlab.com/gitlab-org/gitlab-gollum-rugged_adapter,2014-10-30 02:17:28+01:00,15a6aff230fcf10bcdeab2953a72c9e9ac9f5dc5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 11, 0, 4, 0, 9, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/bbonev/dhcpdump,2023-03-06 22:15:35+00:00,f6a67e29718cd57afee817b669418805f0599cd7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 1, 0, 1, 0, 0, 0, 4, 0, 0, 15, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/brianmario/mysql2,2010-04-04 13:14:58-07:00,2e11b94e5f5cf24ff37499e883823b671d6abfa9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 50, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 8, 11, 6, 14, 24, 3, 0, 9, 2, 5, 0, 11, 27, 5, 9, 10, 33, 20, 26, 6, 4, 3, 10, 3, 5, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 3, 0, 0, 0, 0, 1, 0, 1]",1,2,8,0 -https://github.com/FreeOpcUa/python-opcua,2015-02-20 21:06:05+01:00,6c39ac5f56f68f7608861ef031c893ccae22e134,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 24, 8, 19, 9, 17, 2, 15, 22, 9, 7, 9, 2, 2, 0, 0, 6, 2, 0, 6, 7, 2, 1, 2, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0]",1,2,6,0 -https://github.com/checkpoint-restore/criu.git,2011-09-23 12:00:45+04:00,523de236244946a0de127dfc9954369963819ef7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 19, 43, 6, 51, 15, 26, 31, 45, 30, 32, 11, 27, 38, 19, 51, 95, 57, 105, 55, 88, 26, 49, 32, 5, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 2, 0, 3, 1, 2, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/aquasync/ruby-ole/issues/new,2007-10-19 13:25:04+00:00,6f5628b665660c41ea52d8b439a7c2bc66231f11,"[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 3, 0, 0, 6, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sionescu/bordeaux-threads,2011-08-03 00:35:27+02:00,383d8d6241b2d17072e7581f7b7d4930dfce1516,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mywave82/opencubicplayer,2011-09-18 21:35:24+02:00,38b5d672019e2315018a3d5c8bccb79ae83d3bb1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 2, 1, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/matlab2tikz/matlab2tikz,2008-11-07 10:18:57+00:00,fa03c34c00e1c57701fb7ffe4af8352ad6fb30ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 8, 0, 3, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 1, 3, 3, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rigred/sandsifter,2017-07-27 15:17:30-04:00,dff63246fed84d90118441b8ba5b5d3bdd094427,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 3, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0 -https://github.com/kpdyer/libfte,2014-04-09 14:12:10-07:00,6a91eaeab94e7931886cb9dc0b8cea4b4a2b274a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 5, 2, 0, 0, 2, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 9, 13, 2, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 6, 1, 0, 0]",0,2,1,0 -https://github.com/jeffreyhorner/rapache.git,2005-09-30 16:22:29+00:00,4a2bafbbb6e53a51443403f3c34d49e482a91f40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/pcman-bbs/pcmanx,2005-06-30 21:03:55+00:00,91258ebc328904df0f61ea8e2891967be86558df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 22, 33, 31, 0, 13, 4, 29, 4, 0, 0, 2, 7, 1, 2, 1, 0, 1, 3, 2, 0, 0, 7, 3, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/chjj/term.js,2013-08-08 09:03:31-05:00,51946a73c84369c1e35bc78fb599d8d27a237a2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 16, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 2, 1, 4, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/ParaFly/ParaFly,2017-09-03 09:17:34-04:00,e081b76649370f07f73ffce532165e5e53f67a03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/wookayin/gpustat,2016-04-24 19:57:23+09:00,da312430ad0a5764cd99ac4c07fd260fa7ebce81,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 6, 0, 0, 0, 2, 1, 0, 1, 0, 0, 1, 0, 0, 2, 0, 5, 6, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/bokmann/font-awesome-rails,2012-03-07 21:05:38-05:00,fd941c0c8b44c695e80030ee5b341a504285bc8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,3,0 -https://github.com/EsotericSoftware/kryo.git,2013-11-06 16:31:58+01:00,2c3194a8e64b655ea3de992d4a8a38f8cc315a09,"[0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 4, 7, 5, 9, 2, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -git://git.alsa-project.org/alsa-utils.git,1998-08-13 15:43:39+00:00,fbb20e85ecb0419c4cb8143e3a3fcd0a6f31d9c4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 8, 0, 0, 2, 1, 4, 0, 0, 0, 14, 6, 4, 3, 8, 4, 2, 0, 0, 0, 0, 5, 3, 9, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/cloudflare/python-cloudflare,2014-12-13 18:05:38-08:00,948eed8afa9dd49213d8ac6f913d7a70e265d77a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/hanshuebner/cl-github-v3,2013-03-03 08:20:19+01:00,8e4259a324a31c9bec23ce49c6980efc17c6f351,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://gitlab.freedesktop.org/xdg/shared-mime-info.git,2002-07-24 15:57:07+00:00,e76dc2189be3d100f9efcd8a9fa60e5bd2e6d145,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 3, 1, 4, 7, 0, 0, 0, 0, 0, 1, 5, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/processone/fast_tls.git,2015-04-06 11:03:40+02:00,e231cbde546c2e2200f6dae01d13cf743d253c6d,"[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/libsdl-org/SDL_net.git,2001-01-15 02:06:06+00:00,36b541b369dbe0958bc677cf351a6db5cc4f7cb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 6, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/viraptor/phply.git,2010-07-22 11:50:40-07:00,06e943d6fc045ba027c756fd087a0a05012859ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 32, 14, 26, 10, 4, 10, 0, 0, 0, 0, 20, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/PerlGameDev/Alien-SDL.git,2009-08-06 21:18:06-04:00,06b07bff559bdf86876c132de29c6dcd15a3663a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 2, 6, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/chad3814/CSSStyleDeclaration.git,2012-07-10 21:54:08-07:00,3492492f88739caf975ed83d06a5c48a27c2ae25,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/myriadrf/LimeSuite.git,2015-07-07 13:15:19+01:00,6088e057eecbcb99dda2d280e461ec8abf37ddf1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 12, 5, 9, 1, 0, 1, 0, 0, 4, 3, 4, 3, 4, 5, 0, 0, 6, 8, 2, 6, 0, 4, 4, 0, 1, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/namhyung/uftrace,2014-08-12 09:10:05+09:00,8650b55b775ab8418380a0ce14f8cc96d737d9b4,"[8, 16, 9, 4, 23, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 10, 7, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mrirecon/bart,2014-08-30 14:44:54-07:00,713a858a01dd17d23c5375fbe1e357430cc96842,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 12, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/okbob/pspg,2017-07-11 20:54:14+02:00,aa677db8280f950d63b35f8999d626d9ce2a9ca3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 8, 6, 14, 22, 15, 10, 6, 5, 9, 8, 10, 1, 0, 0, 0, 1, 2, 20, 19, 6, 4, 2, 6, 13, 1, 1]","[0, 0, 1, 0, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 1, 0, 0, 0]",1,3,11,0 -https://github.com/mheily/debian-packages,2014-02-23 12:43:26-08:00,3874d07edbe0c77825605eb648044b07e40fb96c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/outatime/applause.git,2014-03-21 17:19:59-03:00,70b35fab6674315125a988c9d7cdd75808b23104,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/pothosware/SoapyHackRF.git,2015-09-26 19:16:21+08:00,7afd29c7b22d55b3597da28f059a1fba916dded9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 2, 1, 2, 5, 5, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/github/version_sorter,2009-04-24 17:05:20-07:00,5556dba6528a573178f5aec7e5a29e7b3a7b7143,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 22, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/zloirock/core-js.git,2014-01-05 23:42:36+07:00,bf793c5fd5e8bbe95d1aeced8f7977c15edf5ea2,"[0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 1, 2, 6, 2, 9, 6, 1, 2, 2, 3, 2, 1, 3, 6, 3, 2, 5, 3, 2, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/ebook-utils/css-parser,2018-12-20 11:21:29-05:00,111dda6b412e3cfec2f55b2f8838ac356bbc5f13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 22, 4, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,4,0 -https://github.com/pekdon/pekwm,2006-08-30 15:26:19+00:00,c7b124bf1c6096ae04e1f483f6c63bc7d2a7041c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/doxygen/doxygen.git,1999-12-15 19:25:10+00:00,719f0a35063be88eddcc4ed8fe7a940de47ef20c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 3, 0, 0, 5, 3, 2, 2, 2, 3, 5, 2, 3, 2, 2, 2, 3, 2, 2, 2, 2, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/schrodinger/coordgenlibs.git,2017-06-12 11:43:57+02:00,a779781fa783ad82f41eddaaaf504c4597087cb4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 3, 0, 0, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",1,1,4,0 -https://github.com/RazrFalcon/resvg.git,2017-12-18 20:01:18+02:00,81645877a26eae9dce26978b2a862793c026db9e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 3, 2, 1, 5, 2, 18, 5, 3, 21, 13, 6, 1, 7, 2, 0, 9, 21, 16, 9, 25, 19, 13, 5, 2, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,3,5,0 -https://github.com/IdentityPython/djangosaml2,2014-11-05 17:17:08-08:00,4a44680c2969744c8dc1bb431f9fb0a5cbc5451e,"[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 2]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,2 -https://github.com/openkim/kim-api,2011-04-25 08:14:25-05:00,31ff71cc67a2c2f5b48fa97e4e99908e07238a3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 23, 35, 31, 4, 13, 17, 36, 24, 0, 128, 14, 34, 25, 9, 2, 12, 3, 8, 1, 9, 3, 1]","[0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 1, 2, 3, 0, 11, 3, 3, 0, 1, 0, 0, 1, 2, 0, 2, 0, 1]",1,4,7,0 -https://github.com/petere/plsh.git,2005-05-25 19:13:38+00:00,fa01cd0a81a8c8bd7717c0de37c20b9401348b89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mate-desktop/atril.git,2011-11-09 18:17:43-03:00,f6ce926719943751cf65cacde7fae050593eb2d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 3, 0, 1, 2, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/resurrecting-open-source-projects/openrdate,2019-09-22 11:41:50-03:00,72726609622bc094a56023a03991634c048ddf5a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/thlorenz/inline-source-map.git,2013-03-06 19:30:36-08:00,f689a0d3fbff63392330ccc48c8a36fef527c0ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/knu/ruby-unf_ext,2010-08-18 12:56:44+00:00,fb233dd3bf580293d2d1555eb7431fac61c37f00,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/accounts-sso/libsignon-glib.git,2010-04-01 15:32:37+03:00,f868f33bbc36d0a013f7f5367f813833f0a79c69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 24, 14, 6, 9, 4, 10, 0, 0, 9, 0, 16, 2, 0, 0, 0, 3, 0, 8, 5, 6, 0, 3, 8, 0, 1]","[0, 1, 6, 1, 1, 0, 1, 2, 0, 0, 1, 0, 3, 1, 0, 0, 0, 1, 0, 2, 1, 1, 0, 1, 2, 0, 0]",1,6,6,0 -https://github.com/brunonova/drmips,2013-09-13 20:15:09+01:00,b6b2b066062bcdd92dbaab542a14d6b6d96dcf7c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 6, 10, 7, 0, 0, 4, 2, 9, 12, 0, 5, 6, 4, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/ygrek/extunix.git,2010-09-06 18:19:41+03:00,ac39e0dff1852237be9c7d86729ab883a4b27c68,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 6, 0, 7, 3, 9, 0, 2, 2, 3, 3, 2, 0, 4, 6, 0, 0, 1, 1, 0, 0, 2, 1, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/libjpeg-turbo/libjpeg-turbo,2015-07-29 15:18:11-05:00,2cbeb8abd92d5ad8a1bd415b51b3816213b15f31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 11, 0, 5, 2, 0, 8, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 1, 6, 6, 0, 1]","[6, 0, 3, 0, 2, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",1,0,5,0 -https://github.com/savonet/ocaml-shine.git,2012-07-24 17:43:42-05:00,2986d44d1db304d99fde51b4790ce256b5c3faeb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ubuntu-mate/mate-window-applets.git,2018-01-18 23:06:09+00:00,f7300c3f63ee3901b9186fce1d148bdc6c5c0701,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/prometheus/haproxy_exporter,2013-01-31 07:33:03-08:00,553d344dddd00a54dfae06e744c726e3c73fca29,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 -https://github.com/kilobyte/kbtin,2006-06-15 10:51:13+00:00,dd7e723be5c825616140ddc4b9af38669484d3d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/czerwonk/bird_exporter,2016-11-26 21:07:27+01:00,c01a89080a0d3ea0049ec6bcee14a74ff26662aa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 10, 1, 0, 0, 0, 0, 3, 1, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 9, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,1,0 -https://github.com/mmlabs-mindmaze/xdffileio.git,2010-04-22 17:33:38+02:00,c52d7dcb72c7045fd44752b87ffd786e40c6ed61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 6, 3, 0, 2, 1, 0, 0, 0, 2, 0, 1, 4, 4, 6, 2, 3, 0, 0, 0, 0, 0, 1, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jseidl/GoldenEye,2012-10-21 23:18:59-07:00,904e6842e02a0a1a35b5e1b5348d1edf9f7e664b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gambit/gambit,2007-08-25 14:39:50-04:00,1b67821c3d1d424b2eeb13bb5cc5cca84bd5df69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 8, 0, 3, 1, 0, 0, 0, 1, 1, 12, 8, 0, 0, 8, 9, 0, 1, 6, 2, 4, 1, 16, 12, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sionescu/libfixposix.git,2010-07-03 04:02:12+08:00,e42fd953dd05301f9a1f72a7a56ffaa4e48e5e03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 46, 31, 11, 0, 0, 0, 4, 10, 4, 0, 0, 7, 9, 36, 13, 0, 0, 0, 1, 1, 2, 10, 50, 1]","[0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/apjanke/ronn-ng,2009-11-05 11:48:25-08:00,a774cc7ff4bd0f31945e6209614bc5f593a5d983,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 16, 5, 20, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 5, 0, 8, 32, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 -https://github.com/friendly/vcdExtra.git,2017-09-29 09:49:38-04:00,9de1be819d21a8960ee94710219f32a57931bd05,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/free-wheeling/freewheeling,2007-01-03 22:39:41+00:00,5bf4c275a3dec39410ee130a0d90384be3ef6388,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 10, 0, 11, 2, 2, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sebastianbergmann/global-state,2014-08-22 07:34:43+02:00,6eb098b277d17d216e87783bd7d0037ad7bdcc72,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 6, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://gitlab.freedesktop.org/libfprint/libfprint,2007-10-08 17:16:13+01:00,7d3612d9f6ebc5ecbdc400acbb97333c7bb402c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 8, 16, 14, 0, 22, 7, 4, 3, 0, 0, 2, 0, 0, 0, 0, 2, 0, 10, 3, 4, 6, 1, 8, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 -https://gitlab.com/ericvsmith/toposort,2014-02-10 10:14:53-05:00,ca86084b919df654c030905cb45438bdddf963e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kohler/lcdf-typetools.git,1999-06-29 17:05:42+00:00,3c52d200c00ab0411fc066918e7a2fb5d5f8fc7e,"[4, 0, 5, 16, 1, 2, 0, 2, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 5, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/janlelis/paint.git,2011-06-29 15:39:35+02:00,6951dff8b9a3a92adcdccbe71096019130a181ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/RichiH/vcsh,2011-05-23 00:36:53+02:00,3ad6e99bcaf043ad9d6df0c1bd0376dc78ec31d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 10, 0, 14, 30, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 0]",1,2,3,0 -https://github.com/iovisor/bcc.git,2015-05-03 08:33:53-07:00,c3c4fc196a22950ee019e3144dc7b992718bc7c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 0, 16, 12, 57, 23, 9, 9, 13, 9, 7, 25, 34, 29, 25, 31, 30, 46, 24, 42, 7, 8, 14, 8, 0, 1]","[3, 2, 0, 8, 5, 26, 9, 4, 3, 4, 3, 2, 11, 12, 12, 9, 12, 11, 17, 11, 14, 3, 3, 6, 4, 0, 0]",2,9,19,0 -https://github.com/jeinzi/thunar-dropbox.git,2015-03-07 15:39:19+01:00,97bd634e141fd23f8b667e5c1db45314d08a7a60,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://0xacab.org/schleuder/schleuder.git,2014-07-11 21:14:56+02:00,43cd6a45f45a76afd6fda2855b3f1d080668b736,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 10, 0, 0, 0, 6, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/kstateome/django-cas,2012-05-02 06:55:50-07:00,771b540bb081f82d27a436a4f56e077247339c7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 4, 11, 5, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 5, 2, 0, 0, 0, 0]",1,2,1,0 -https://github.com/skk-dev/skktools,2000-03-12 12:17:40+00:00,47d70ef264083de2ca8e786b5f52ca7d175d0bb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 24, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jabberd2/jabberd2,2006-04-16 20:42:32+00:00,4e058ee0b010abd2eab53f5ddd13ba5dca2c354a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 17, 33, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/worldforge/eris,2001-08-04 18:15:03+00:00,e8138a0933056814a1ed385b842eb7c841bb1bc0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 2, 3, 0, 0, 1, 1, 2, 0, 4, 4, 0, 1, 1, 5, 5, 1, 3, 3, 3, 0, 8, 5, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/LeaVerou/prism.git,2012-08-30 16:35:09+02:00,56b64c049e31bf7c1ab543b222c7d3915f69e2f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 28, 6, 56, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0]","[1, 0, 5, 0, 0, 0, 1, 0, 0, 0, 12, 1, 2, 2, 0, 0, 0, 2, 0, 0, 0, 5, 3, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",4,0,6,1 -https://github.com/pothosware/SoapySDR.git,2014-10-04 12:52:17-07:00,864d008314dfb5c06412ef7507cb36a0d765a4b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[56, 6, 4, 1, 19, 1, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 16, 26, 3, 2, 2, 1, 8, 1]","[3, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 1, 0, 0, 0, 1, 0]",1,1,0,0 -https://github.com/Unidata/netcdf4-python,2006-09-11 02:58:40+00:00,c28845017f61655a03f0d6b736c57814b705ee2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 40, 55, 23, 17, 13, 1, 0, 0, 0, 8, 0, 0, 5, 0, 0, 2, 0, 0, 3, 28, 2, 17, 40, 11, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://git.eyrie.org/git/perl/net-duo.git,2014-06-11 16:19:07-07:00,1629668e58c1abf4cdcd8f21c81532114607a408,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/guessit-io/guessit.git,2015-10-03 11:35:21+02:00,dab80bd200fd90ab83bc156789ca80c516e7fa0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 10, 48, 22, 49, 21, 19, 14, 19, 3, 0, 0, 1, 0, 0, 25, 18, 16, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mathiasbynens/regenerate-unicode-properties,2016-05-29 13:55:46+02:00,353d8d3491851e9059119e71328574ba1aa43834,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jeromerobert/hmat-oss.git,2014-11-21 18:27:34+01:00,bfbb095b97f9bb27283094e23bb859ab6f9cc33a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 19, 5, 0, 5, 4, 10, 5, 5, 0, 7, 8, 5, 25, 5, 0, 17, 8, 10, 1, 5, 6, 1, 0, 11, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,10,0 -https://github.com/SecureAuthCorp/impacket.git,2003-10-27 17:46:03+00:00,f9882d7bc39547c63ee12714ebe93bfbf72818a1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 3, 0, 3, 2, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/savonet/ocaml-ladspa.git,2008-10-15 17:30:33+00:00,1d119b1cf472972d65671ad44fb325a0a6bccad3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/joliss/jquery-ui-rails,2012-02-18 15:26:23+01:00,e82836a35366c63c58fb97b1e3ca02572df29636,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 18]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 3, 1, 0, 0, 0, 1, 0, 5, 2, 4, 0, 2, 0, 6, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/airspy/airspyone_host.git,2014-02-08 22:43:05+01:00,0a40841fb2baba3fb33c2f0e1b45e55f5ef34a98,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 1, 2, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,2,0 -https://github.com/jasondavies/science.js.git,2011-07-09 12:51:46+01:00,96af5328a672fa670a3852cb68a23de3758551d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/coturn/coturn,2014-04-20 21:10:18+00:00,702b29bc22da6b6e441ed86ea059cbced5b123ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 12, 4, 2, 2, 15, 8, 2, 4, 9, 2, 20, 14, 13, 5, 1, 6, 7, 7, 10, 4, 28, 23, 18, 16, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/abishekvashok/cmatrix.git,2017-06-23 14:34:49+05:30,476808fe193cecc0d8086923c2c57c21793810f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 1, 2, 1, 1, 0, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 3, 0, 0, 0]",1,1,6,0 -https://invent.kde.org/pim/akonadi-contacts,2016-08-05 02:53:03+02:00,f577501874f64133a5d69ef2a150bde3e007bd2e,"[84, 78, 3, 28, 2, 10, 10, 3, 3, 4, 1, 1, 5, 3, 12, 11, 0, 0, 2, 2, 10, 2, 0, 1, 2, 2, 1]","[1, 3, 0, 1, 0, 0, 3, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 16, 4, 5, 3, 4, 2, 1, 1, 2, 0, 1, 2, 1, 2, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0]","[1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/vasi/pixz.git,2010-01-13 01:04:56-05:00,519963676415d412ca271d1967b7e200552f2297,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 19, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/yamldb/yaml_db,2008-06-11 02:22:07-07:00,aa4dec4f2da53e749ee29b89e063e7668b790313,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 1, 0, 3, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/df7cb/sdate,2004-10-16 15:28:11+00:00,175a4c17cbf9a01dd5df3f3a8cf91f6caca9ff26,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/cpina/qdacco.git,2007-05-01 12:27:20+00:00,ef5ec370662f1a21d6ee781af5d82df357b0b208,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lostisland/faraday_middleware,2010-06-28 15:12:17-05:00,7d083d0d810dd50ad93dee46ab4e4f67110756e8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 11, 17, 1, 17, 12, 2, 6, 5, 0, 0, 3, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://git.launchpad.net/safe-rm,2008-06-20 10:52:21+00:00,c815649e93b76114f6f933bd87d4f015d9802ceb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/Mimino666/langdetect,2014-05-12 08:44:46-07:00,d04908e56ac9a53532bf337653b6027426ccdd70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/linuxmint/xapp.git,2016-08-22 13:58:31+02:00,c48674027c110544f3ea78594e2d71a5c807d0b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 12, 0, 2, 1, 0, 4, 3, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,4,0 -https://github.com/Parchive/par2cmdline.git,2003-05-08 08:05:26+00:00,856eed8a736e78ffbaba7a8f56c3f37c2fd74de1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 49, 1, 3, 1, 1, 0, 0, 8, 0, 3, 1, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lxqt/lxqt-sudo.git,2016-09-06 22:29:46+02:00,1f7faa65b46e9596f6925f5188b9d542152e6461,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/PyFilesystem/pyfilesystem2,2016-10-14 21:18:24+02:00,b32e0ec1fbebe933af54ebe209d7fb67ef057b13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 36, 5, 11, 8, 14, 25, 29, 4, 0, 0, 0, 2, 10, 1, 9, 4, 1, 4, 12, 2, 7, 6, 9, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 1, 0, 2, 1, 0, 0, 0]",1,3,5,0 -https://github.com/zapier/django-rest-hooks,2013-09-04 22:12:12-05:00,7c91a1babfec38266d9850741590a7354adcdb73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/kevin1024/pytest-httpbin,2014-05-17 10:43:32-10:00,61dc9550227ba22365bd9211dae778121a633f2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 36, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/backuppc/backuppc-xs.git,2016-05-16 13:00:35+02:00,15d88112eaf531ec25fc89287074ea0cb1826f38,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/websocket-client/websocket-client,2010-12-28 15:42:43+09:00,eadcbf7e891b88e7e7e24ca5bbf0a7df3988dbb3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 8, 0, 0, 0, 0, 0, 0, 2, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/jonschlinkert/snapdragon.git,2015-05-10 20:16:00-04:00,912e5a945d3b0f5cb03ac9380eb42ef2915ee263,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 18, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/justinmc/react-audio-player.git,2016-03-12 22:39:34-08:00,c6ccc406057aa7fb207cfc7af9558cc2e02bf580,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 4, 2, 2, 0, 5, 2, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/composer/semver,2015-07-15 20:54:52+02:00,0ce26349ac7e579342d88e6a79ad12fe10bf8083,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 17, 0, 0, 1, 4, 0, 1, 3, 0, 0, 1, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,1,4,1 -https://github.com/jordansissel/xdotool.git,2007-06-23 07:35:14+00:00,3eec05af0c6d2adc05ed2d2f3f0c6df38779b3db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 6, 3, 5, 1, 0, 11, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/AppImageCommunity/libappimage.git,2018-08-23 12:13:41+02:00,ae0258ab484c1259facc8fd85aaa8c7857c3e155,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 19, 2, 0, 0, 2, 5, 8, 4, 16, 4, 1, 9, 18, 30, 25, 18, 1, 41, 38, 13, 23, 66, 43, 19, 1]","[0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 5, 0, 0, 0, 1, 0, 2, 1, 4, 0, 0, 1, 6, 0]",1,3,4,0 -https://github.com/libkml/libkml.git,2008-03-21 19:05:14+00:00,dc6b3f40ba93cfa45a1a2f4d3dcb3d14f0e46ac7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 3, 0, 0, 0, 25, 5, 5, 0, 17, 0, 1, 16, 15, 8, 0, 7, 28, 40, 1, 2, 9, 3, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/google/googletest.git,2008-07-03 22:38:12+00:00,d201456903f3ecae1f7794edfab0d5678e642265,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 2, 5, 4, 0, 1, 1, 0, 2, 7, 1, 1, 2, 2, 1, 0, 1, 1, 4, 12, 3, 12, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/pydata/patsy,2011-02-09 16:53:10-08:00,cc233f8ed080a33ff2488c7a2104a40377e55f11,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jbenden/mod_clamav.git,2013-10-14 09:40:21-07:00,2c2921bb0b4c7be102e2eecaed8d9bbf235e7585,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 7, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 -https://github.com/ros/rospack.git,2017-09-26 07:08:40-07:00,7c60b5fa956320671ee80be4bc00a148a393049e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 1, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/rsnapshot/rsnapshot.git,2003-08-28 20:27:21+00:00,dff5bf2cb6fe84bbc800aa9ac05e8192ff7e5c90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 30, 3, 0, 0, 0, 0, 3, 10, 39, 31, 19, 6, 0, 0, 34, 60, 35, 29, 5, 34, 14, 6, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.freedesktop.org/xdg/xdg-utils,2006-03-21 20:27:09+00:00,76e2c9cf157606f73b297f9a3dbd53125fc82510,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 14, 3, 2, 3, 3, 0, 1, 0, 1, 12, 18, 24, 3, 3, 10, 18, 32, 47, 24, 18, 1, 7, 5, 25, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/cleishm/libneo4j-client,2016-01-05 11:43:50-08:00,414937b0d6b44e5260dd07f2a8cec94d5f14766b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 29, 7, 5, 13, 2, 8, 0, 0, 6, 1, 0, 0, 3, 1, 3, 0, 4, 1, 4, 0, 3, 19, 12, 26, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 -https://github.com/Haivision/srt.git,2017-04-21 18:42:56-04:00,bdeb5d24336f001a0e3d38894eb89af192c0d2d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 2, 7, 3, 4, 2, 19, 28, 9, 5, 1, 7, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 7, 1]","[5, 1, 0, 4, 1, 0, 1, 3, 6, 4, 1, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",2,4,18,0 -https://github.com/zeromq/czmq.git,2011-03-22 11:46:41+01:00,e282512d60e3a3d3101ea7b5ca479640ad09e1d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 25, 27, 11, 2, 5, 0, 0, 1, 6, 17, 20, 15, 2, 2, 0, 5, 5, 0, 1, 5, 0, 0, 8, 1, 0, 1]","[1, 1, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://gitlab.gnome.org/GNOME/libxml2.git,1998-07-24 19:24:09+00:00,01791d57d650e546a915522e57c079157a5bb395,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 4, 2, 0, 0, 2, 0, 7, 3, 4, 2, 4, 8, 3, 3, 2, 1, 0, 3, 0, 1, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 -https://github.com/dejan/espeak-ruby/issues/new,2009-01-04 02:50:15+01:00,e2c0de1cc8f4fed11acaca34b26e6bf67b4cf135,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/phpmyadmin/motranslator,2016-02-22 16:18:06+01:00,a5c55e4dc5e790acdd1600b97245b2acd051494d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[117, 7, 2, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/CristianHenzel/ClipIt.git,2010-11-05 23:37:05+02:00,866aa76e3d3f6b13c8a80610221141e15f85146b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nodejs/string_decoder.git,2014-01-17 11:49:56-08:00,713f66cf29a8ccaffb9ec9650dd5b15949418e7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/include-what-you-use/include-what-you-use,2011-02-04 22:28:15+00:00,dee92b5e0acf7188d4e5bb3db6dec833a6d1ff2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 6, 5, 24, 3, 26, 0, 10, 10, 23, 1, 58, 27, 6, 2, 19, 2, 3, 3, 0, 1, 4, 1, 16, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/daradib/sidedoor,2015-12-31 23:54:20-05:00,d563809bb9733b226a64255db3350114b8597da2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/systemd/casync,2017-01-13 16:08:52+01:00,6c2bc6503fea90ca819b2fa134954f401361eaae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 5, 70, 2, 10, 17, 5, 2, 0, 0, 0, 14, 0, 10, 4, 4, 22, 3, 56, 23, 1, 18, 39, 5, 14, 0, 1]","[1, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0]",2,1,11,0 -https://github.com/jquery/qunit.git,2010-11-27 16:45:17+01:00,f7dab0d9dbc06e1c417b668c229fdb4c31168fce,"[0, 0, 0, 0, 0, 0, 12, 9, 16, 0, 0, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 14, 0, 3, 6, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[5, 7, 0, 2, 2, 4, 5, 0, 0, 0, 0, 4, 0, 7, 2, 3, 2, 0, 0, 2, 1, 0, 2, 2, 3, 1, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",6,0,5,1 -https://github.com/ukui/ukui-menu,2017-01-20 14:25:15+08:00,d7332072a067a7dc65cc7922a7073e7f8ddc0ca4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 5, 4, 2, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/OpenSCAP/scap-workbench.git,2010-03-18 10:36:26+01:00,ab4ad172be70d5e7e4d52505a73984eeab472174,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 8, 3, 0, 6, 11, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",3,1,4,0 -https://github.com/luke-jr/libbase58,2014-08-17 11:52:36+00:00,d761ab64017b7f93c6ad8ec1edc5225eda9b3433,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 4, 2, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/i18next/i18next,2011-12-16 13:52:21+01:00,38f88dc7a55c925ec90e0bdfb918eb574f92d8ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 7, 11, 4, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 8, 1, 0, 3, 2, 3, 1]","[1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,7,0 -https://github.com/mathiasbynens/unicode-tr51,2014-09-28 13:16:34+03:00,c9e905a0f13301f9ae8550d22defb2f87f3a5aec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Oblomov/clinfo,2013-06-06 13:18:34+02:00,aebb58cb9330d64f7f5a814089cba9b952d1a070,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bfirsh/django-ordered-model.git,2010-01-24 14:36:33+00:00,1814f6fee0deb7dd3c9908714612914559b3e5d8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/datalad/datalad,2013-07-30 00:33:49-04:00,dadf69727c889d2b637b9c641ec7441e0181b446,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 1, 13, 4, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 5, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/freelan-developers/freelan,2011-09-21 15:11:48+02:00,ca4bb1fb8abbdb52bd9f35e61a605055914d7650,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 1, 0, 0, 0, 0, 3, 33, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 21, 26, 0, 4, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/libwww-perl/HTTP-Message.git,1995-06-11 23:29:42+00:00,fda3177554bec566170bbe94fc5c48bbdc1a7c80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 14, 74, 32, 35, 2, 60, 21, 32, 15, 60, 71, 10, 2, 1, 0, 6, 0, 3, 4, 0, 1, 2, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gcab,2017-12-14 13:11:42+00:00,1da391c3f762ff2413c688e1cc02515269fd155f,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 1, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jobovy/galpy.git,2011-09-18 12:16:49-04:00,bae798f2d46a63aa0fe34ce19419f121aa77ee19,"[15, 27, 7, 34, 18, 1, 0, 0, 0, 0, 0, 0, 6, 2, 3, 2, 0, 1, 6, 0, 0, 7, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 17, 161, 106, 77, 19, 25, 1, 11, 1, 0, 7, 0, 6, 3, 4, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/twilio/twilio-python,2009-09-14 22:59:23-07:00,2ce43ff021ef2f462dcd243b0a9312bf3befdc07,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/Castaglia/proftpd-mod_tar.git,2011-10-20 09:55:53-07:00,f9ff5f1670f2d06b524a726861ad21744c7ffd7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript,2017-04-15 14:17:04+02:00,248cbf0f63b899d0422667e56ad0db603df9b5a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/airspy/airspyhf.git,2017-07-08 11:55:34+02:00,5254669c546f0acbc4b0288946188c37dc532527,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/igraph/python-igraph,2015-07-24 23:14:30+02:00,2b1d18a02adba76b930fa6b72c3b5e2bf292b282,"[6, 2, 8, 0, 0, 17, 1, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 4, 12, 2, 2, 2, 0, 0, 3, 4, 1]","[3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 6, 11, 0, 0, 2, 0, 1, 1]","[1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",2,0,6,0 -https://github.com/smarty-php/smarty-lexer.git,2014-12-15 19:07:19+01:00,4862b3af01d6db6794f9207e72e077709b1c605c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/accounts-sso/libaccounts-qt.git,2010-03-08 14:41:43+02:00,1e7eee8e1e13daedcd62d16c1adcdf67fd1dc280,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 3, 1, 9, 7, 2, 0, 4, 0, 5, 0, 5, 6, 0, 6, 0, 4, 0, 0, 0, 3, 3, 0, 0]","[1, 0, 0, 0, 1, 0, 3, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0]",1,5,8,0 -https://gitlab.gnome.org/GNOME/gnome-contacts.git,2011-05-05 17:02:17+02:00,1a6482b8a3d9a3176b21ab875ab255633103a18d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 22, 14, 8, 16, 16, 45, 38, 27, 7, 5, 3, 6, 7, 22, 57, 76, 69, 47, 81, 27, 3, 3, 8, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,80,0 -https://github.com/apache/trafficserver,2009-10-10 00:06:30+00:00,e5628fa25197a0e438c2edfffb17a626e0983c8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 4, 7, 6, 3, 68, 5, 16, 6, 6, 0, 2, 2, 4, 4, 26, 29, 27, 17, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/lxqt/qterminal.git,2010-09-11 10:50:10+02:00,e5102869800e48fd94c81a51f318031b5d1b064b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 5, 0, 1, 4, 2, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/doctrine/sql-formatter.git,2012-04-29 23:33:11-07:00,b676c13ae9bb3eef5620cde54556a96fe61bfbf5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 1, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/clojure/core.cache,2011-11-22 21:00:48-05:00,2715844f5e0ec10d4ea83047a084d540058a25eb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/npat-efault/picocom,2010-05-28 00:17:52+00:00,464e25056f19ce1c486e35ad969d8b5928915d4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/andrewrk/libgroove,2013-09-08 21:53:53-04:00,4a41ac68da7b09bd2d834eb2b97c0d8be5669d1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 37, 3, 5, 5, 5, 31, 43, 10, 10, 40, 4, 0, 0, 0, 0, 0, 0, 1, 1, 4, 6, 3, 6, 0, 1, 1]","[0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/kelektiv/node-uuid,2010-12-28 11:06:46-08:00,fba452bc2417d85848682ecf6281ae9290a66af1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 -https://github.com/royhills/arp-scan,2006-06-07 10:24:11+00:00,a747b34a50d86a2340fa8753ecafd72c2509a9e0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 11, 18, 9, 7, 2, 10, 2, 0, 0, 0, 1, 4, 0, 0, 1, 1, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/direnv/direnv-deb,2014-04-05 18:34:54+01:00,1c31b5dd4a4a95ac5b8461a123b3905d7d169fec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 6, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/otsaloma/gaupol,2005-07-24 01:06:50+00:00,0fce5e809e71e91bc1e122193077c624803f40e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 24, 23, 17, 26, 9, 14, 5, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 6, 11, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,0,0 -https://github.com/prometheus-community/postgres_exporter,2015-08-25 03:28:41+10:00,2a08787a90840a27d10ec519005ff92148055cd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 -https://github.com/df7cb/pg_filedump.git,2011-01-18 01:33:27+00:00,8446d97d7240687cdbf18d5ca65916bf18bac30e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://invent.kde.org/plasma/khotkeys.git,2000-07-19 16:50:09+00:00,8effb2095b2004ec3238513a1b55ac3d6ac0e969,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/pagekite/PyPagekite,2010-11-06 10:43:28+00:00,a096b25b945ab9587878d6da336eba643aef2b83,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 44, 10, 7, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 0, 9, 14, 27, 24, 47, 82, 2, 18, 10, 2, 6, 13, 3, 13, 22, 8, 0, 5, 11, 6, 14, 0, 21, 1]","[0, 0, 0, 1, 0, 7, 3, 9, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 -https://github.com/gap-packages/toric.git,2016-12-28 15:18:16+00:00,569b9f9cda82232db43170de55d27b9d61e3cb1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 12, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0 -https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git,2014-06-11 12:19:34-04:00,7dfc9bbce77b22bed5a3fe39350236835bc2c98a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/lipnitsk/libcue,2004-06-24 23:32:16+00:00,38b43d9b56a6b70c82ec94bb30ceba356c3e2e35,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 1, 0, 1, 1, 42, 11, 27, 5, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/savonet/ocaml-gstreamer.git,2009-06-04 18:54:09+00:00,c05510914886cc0b2d9e429b99ed8053b7736f2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/mathiasbynens/node-unicode-data.git,2013-08-25 16:20:29+02:00,7fe712d5de658f8d846324cf77e779d24aa40f51,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 6, 0, 2, 0, 0, 0, 0, 1, 0, 0, 8, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/prometheus-community/bind_exporter,2015-08-21 05:09:14+07:00,fe439e3daedc3d50ccb48ba2e82c099a3951f927,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,1,2,0 -https://github.com/moneta-rb/moneta,2009-02-11 22:56:10-08:00,3cbb15dbe3ea92e53366339b521dbdc7cb08f074,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 7, 0, 0, 0, 0, 0, 9, 8, 1, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,9,0 -https://github.com/brandon-rhodes/logging_tree.git,2013-10-29 15:18:42-04:00,1f1959dad5c3497e2e3b94e80ea7a06dc683da16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/zeroc-ice/ice-debian-packaging.git,2016-05-16 17:14:17+02:00,b6b4ce77bd2cc831c5ac4ca7927aa0f8c3645396,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 11, 0, 86, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 0, 1, 7, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,4,0 -https://github.com/jd-boyd/python-lzo,2011-09-15 11:11:10-04:00,2901b79af6df54d19050a65835e4af54e759ed8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/troglobit/inadyn,2010-10-16 13:58:39+02:00,1f53ed875c207061781a481e07b8866a780792f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 2, 18, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/colmap/colmap,2016-04-07 19:25:53+02:00,fe8f82aee9829c6c828158da2695e2d87a977f74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 12, 18, 5, 16, 12, 11, 0, 8, 3, 11, 5, 0, 3, 8, 6, 19, 52, 18, 31, 4, 46, 12, 16, 3, 9, 1]","[1, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,9,0 -https://gitlab.com/ixion/ixion.git,2010-03-13 20:20:44-05:00,43747fea3ca218d60d69d03dec75ead225e70bea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 1, 11, 0, 49, 8, 8, 7, 11, 8, 9, 15, 0, 70, 16, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/grazzolini/chkboot,2013-11-25 22:27:16-10:00,e41d82c11edadade492861be233e681345d76ed6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://gitlab.com/accounts-sso/signon-plugin-oauth2.git,2015-09-11 14:37:22+00:00,547aa29eae8310fea499060cad3169e3cee4272b,"[0, 0, 0, 0, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 -https://github.com/rpkilby/django-rest-framework-guardian.git,2018-06-22 18:24:37-04:00,ff1979c3f90addcc9653ec4ba0fa19ef3b8fe7b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/nadoka/nadoka,2004-05-01 09:42:10+00:00,56de781877070d3afaa8f6cdafeb48cb503eb6fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 0, 0, 1, 0, 0, 0, 4, 25, 11, 20, 4, 2, 4, 7, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/thestk/rtmidi.git,2016-10-13 08:35:50-04:00,4487feb46001524debbd7f3de7e9ce87b13dd7b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,1,1 -https://github.com/amnong/easywebdav,2012-03-12 13:32:41+02:00,6d2a01a16c9ba8edd0702edc983f67036e8cfab2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/man-pages-zh/manpages-zh,2008-02-14 14:27:15+08:00,f7dfef511be2f6fbf3889306a45d67346a07c027,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 23, 20, 0, 5, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://gitlab.gnome.org/GNOME/accerciser,2007-03-12 20:41:02+00:00,b72aa74a514f71fcfe400c0bdb746fa00575174c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 6, 12, 15, 33, 15, 5, 15, 22, 11, 12, 8, 4, 10, 5, 7, 9, 2, 11, 15, 8, 11, 10, 9, 21, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,41,0 -https://github.com/nelhage/reptyr,2011-01-21 20:13:02-05:00,e30d4ad0a9d5a522e7b20d319f49f2276502ad8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 2, 0, 3, 4, 2, 2, 0, 0, 0, 0, 8, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/jvinet/knock.git,2011-07-05 10:58:55-07:00,2c5648d9df79c48b7b7e2faa22199517bbe86a84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/przemoc/metastore,2007-05-18 22:06:20+02:00,ebf55d9ad7681ecf39bea5c5919119c0ad4fb423,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/tpope/vim-pathogen.git,2011-07-24 17:35:26-04:00,72586074e5d3b4c32cfc9638bae61b1130670f59,"[0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 8, 5, 4, 0, 0, 2, 1, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 -https://github.com/bestiejs/punycode.js,2011-11-11 14:36:59+01:00,23367ea579970867b55a4957b49dc0295b188bfb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 6, 0, 0, 0, 8, 1, 0, 3, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/luakit/luakit,2010-05-04 17:48:24+08:00,d35cd37ea2ca77adfc691a699ea5dd1e36280d14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/rsyslog/rsyslog-doc,2007-03-13 08:26:18+00:00,f0d08887b857fce1fe95a68d29eb7a07cd527d7c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jmschrei/pomegranate.git,2014-11-24 00:03:43-08:00,e9d7596ce3264e340272acebb223e37cdeea1c23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 1, 0, 10, 0, 2, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 1, 2, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/statgen/libStatGen,2010-10-20 12:52:09-04:00,78c2accf9c3b0b662e5ce2417d8cf35557fb3f80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 3, 9, 5, 6, 3, 4, 0, 0, 1, 0, 1, 7, 1, 4, 2, 2, 5, 2, 6, 7, 6, 13, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 3, 5, 1, 0, 0]",2,2,5,0 -https://github.com/bitletorg/weupnp.git,2013-04-26 03:39:58+03:00,a7a8863abcaf7dbadef5344b691ec65095152d3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/osmcode/osmcoastline.git,2012-03-07 15:39:48+01:00,eebf1f569df1aaa97e5591fb976efa47ad9a6911,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 12, 34, 0, 18, 13, 17, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nahi/httpclient,2003-01-11 01:27:50+00:00,e302e0021d5bb5b2e612ed055909203b2d540e55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 9, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/fog/fog-rackspace,2016-02-16 14:55:42-05:00,dda9454750d616a6fd65b4d1b3e9f99120eff82d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 4, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ocaml/dune.git,2016-12-02 13:54:32+00:00,cdcd7e907f949fae66a0e57e569c7e0d46f40c3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 12, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 1, 1, 2, 1, 1, 3, 1, 0, 4, 50, 117, 54, 39, 24, 24, 11, 10, 12, 27, 18, 24, 52, 20, 70, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]",2,2,20,0 -https://github.com/jarun/bcal.git,2016-09-21 23:19:39+05:30,816bdefd80d8577521593e1e5746bb961366f562,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 0, 17, 3, 0, 0, 0, 1, 0, 0, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/pagekite/PySocksipyChain.git,2011-06-12 19:52:37+00:00,0b88c236f75b1d1a417573de16a42b3050777eff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 8, 0, 8, 1, 7, 27, 1, 3, 3, 1, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/csound/manual.git,2014-03-24 09:43:52-04:00,4f094f3576820afe02a4ef29c7efe8edc6ef10e6,"[4, 2, 8, 14, 0, 7, 5, 0, 0, 0, 0, 0, 1, 2, 8, 10, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[1, 0, 2, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 6, 7, 7, 4, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,3 -https://github.com/kamorin/DHCPig,2012-03-12 23:01:01-04:00,6a422b6dff431986068bd1d4bf83967c16ca40e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 9, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/puppetlabs/gettext-setup-gem,2016-02-29 16:33:21-08:00,806156e06df96092ac93632597f7632b0131a38f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 5, 0, 0, 1, 1, 0, 0, 0, 0, 2, 1, 0, 5, 0, 0, 1, 0, 2, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 -https://github.com/ropensci/webmockr.git,2014-11-15 08:30:52-08:00,7fe42252da25357dd4a16f58e3cb21ac1eebce84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/balsa,1998-03-05 18:10:18+00:00,6daf6408273c095f1cb7be80c9910f32a9767bba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 8, 24, 15, 6, 16, 17, 30, 64, 10, 0, 27, 16, 8, 5, 1, 0, 16, 42, 32, 23, 54, 51, 29, 104, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,19,0 -https://github.com/mapnik/python-mapnik.git,2005-02-18 18:14:43+00:00,9f6324dd6e8799f4e721171f84a7c468b82ced2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 2, 0, 6, 5, 8, 4, 1, 2, 1, 0, 0, 0, 0, 0, 12, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/phaag/nfdump,2015-08-09 14:12:03+02:00,3cd8a326873dde82d3f0315ddd1f48c7e1f70f51,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 2, 1, 0, 2, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]",1,1,4,0 -https://github.com/kbandla/dpkt,2012-06-06 14:42:25-04:00,8ac2695ecf2add43fdb545bd98522f13302fc163,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/henrythasler/simple-image-reducer,2010-12-11 11:58:13+00:00,cb8c23b232220e94d67bfa3aa2717a9c9efdc729,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/igraph/igraph.git,2005-09-06 21:26:56+00:00,e93f04e1f4a660b605d1626154182681c0ea5c3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 1, 2, 3, 6, 1, 0, 0, 1, 5, 6, 1, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 11, 2, 4, 3, 4, 2, 6, 5, 2, 1, 1, 5, 2, 1, 0, 4, 8, 10, 6, 9, 6, 5, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",0,1,1,0 -https://github.com/qix-/node-error-ex.git,2015-08-25 15:13:29-06:00,8b6ab032809e480b2a2eda5107e29866af3c4f78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/google/gopacket.git,2012-11-20 16:26:12-08:00,2ceda0fba98db30a02a733b9bfe942dfa7e6cffc,"[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[9, 36, 28, 55, 27, 9, 20, 22, 6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 9, 1]","[1, 2, 3, 3, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1 -https://github.com/jquery/sizzle.git,2008-08-24 17:30:09-04:00,4257b603e8b0dc3010111dda0807ec41a07d8f56,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 2, 0, 13, 10, 0, 0, 0, 0, 4, 15, 12, 2, 13, 20, 16, 20, 0, 3, 20, 16, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,1 -https://github.com/rolandshoemaker/CommonMark-py,2014-09-13 23:32:37-07:00,abf50406ad2a182a490fced7bb717a0a613aa79a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[102, 91, 17, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/explosion/murmurhash,2016-03-13 23:02:05+01:00,4681f35259643a6278e2ee02d3b5e676d9d32b81,"[0, 0, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 6, 6, 2, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0]","[1, 4, 0, 1, 5, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2 -https://github.com/kilobyte/3270font,2012-09-23 08:36:01-07:00,fb0ed0c2cddcabc323d83f87acef12e0b55bb9fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 4, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/expressjs/vhost.git,2014-03-04 22:31:08-08:00,d6102e0b5baf2dcb9fc7e34161c770a6e0533c0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/linuxdeepin/deepin-picker,2017-10-10 23:18:24+08:00,74b6369a2c9506b4d062bb89029fc97a2c5982dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 1, 0, 27, 0, 2, 2, 0, 1, 1, 1, 0, 2, 0, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[3, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,10,0 -https://github.com/phase1geo/Minder.git,2017-12-23 12:54:43-06:00,aec617998c1467f5951fde2e0fe21a85293d8680,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 2, 7, 9, 3, 2, 12, 12, 8, 12, 22, 13, 16, 15, 15, 11, 20, 10, 31, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,1,0 -git://git.lttng.org/userspace-rcu.git,2009-05-08 11:26:27-04:00,6991f61a6a02d95a4275bcc90aa9bb7037a9e69e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 39, 1, 9, 2, 0, 3, 0, 4, 3, 2, 3, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 13, 7, 10, 28, 43, 12, 8, 2, 0, 1, 0, 0, 0, 0, 0, 2, 2, 28, 38, 48, 33, 7, 9, 2, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,5,0 -https://github.com/typester/Test-RedisServer.git,2012-07-30 17:37:26+09:00,85bbf4cb8aa30bfe93f1d98b9a5f64b5f42bee14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 6, 0, 7, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/yaml/pyyaml.git,2006-02-25 16:08:26+00:00,466963525e6e65ee94b37f54da0d4448ac04f7ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 1, 6, 2, 3, 3, 11, 5, 1, 7, 5, 6, 0, 0, 1, 3, 2, 3, 1, 1, 0, 2, 0, 3, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/fudge-py/fudge,2009-02-01 17:17:41-06:00,e07229ed33f04d9a99dd966f191caf3c1d56c413,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 11, 0, 0, 0, 0, 0, 1, 1, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 2, 0, 0, 3, 50, 74, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/hakaishi/nobleNote,2012-08-13 16:44:46+02:00,84fee555633b60d02c2cffa4e6c698b36a5301a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 48, 43, 31, 25, 33, 6, 0, 3, 0, 1, 0, 5, 10, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 30, 25, 8, 14, 27, 16, 14, 12, 13, 20, 10, 9, 8, 11, 9, 9, 4, 2, 1, 0, 0, 2, 0, 0, 2, 0]","[0, 2, 2, 0, 2, 1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,2 -https://github.com/eavgerinos/pkg-pick,2015-03-15 02:31:54+02:00,e5b58d299c7163bee8a7b4014782e2829d11fcea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/folks,2010-04-02 14:43:08-07:00,4d71ef433b3427036bab270203988cf6463313be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 12, 14, 0, 0, 7, 5, 4, 8, 2, 5, 36, 42, 28, 59, 9, 9, 25, 26, 22, 28, 18, 24, 13, 12, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://github.com/johanmattssonm/xmlbird.git,2015-05-26 20:51:07+02:00,1b857ff10c5c00714e553671c074870aa9b2e1a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 6, 8, 0, 11, 12, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,3,0 -https://github.com/linuxdeepin/deepin-movie-reborn.git,2017-07-28 16:29:14+08:00,71c75afb5006682eb1a35e5dfd94e91e09edc049,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 2, 9, 6, 8, 14, 10, 14, 13, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 32, 68, 60, 0, 66, 78, 76, 72, 2, 36, 58, 20, 14, 10, 26, 18, 9, 29, 33, 17, 7, 6, 3, 4, 1, 0]","[2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 0, 1, 1, 0, 1, 0, 0]",3,2,8,0 -https://github.com/DarwinAwardWinner/with-simulated-input.git,2017-07-20 12:29:22-07:00,6f338aeaedc9a4f5cd3d2dbee9742ceb01a66728,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 11, 0, 3, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gruntjs/grunt-cli.git,2012-11-01 13:40:39-05:00,95e3b9f85daa3ca4799be9cf0b503429c83a5a4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 0, 5, 8, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/jackaudio/jack1.git,2002-05-16 01:34:51+00:00,e1ad1100f7ace35e9e9eb5a6e1333f766726f672,"[0, 8, 7, 5, 10, 4, 0, 0, 0, 0, 4, 4, 3, 15, 9, 18, 8, 2, 4, 0, 5, 4, 3, 3, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 11, 0, 5, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 8, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0 -https://github.com/usit-gd/zabbix-cli,2014-10-09 10:47:12+02:00,d3878d14400b9208cee290f88c1a2baefe5ebbc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 34, 14, 7, 6, 7, 4, 1, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 12, 0, 2, 0]","[0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,3,5,0 -https://github.com/r0x0r/pywebview,2014-11-20 13:38:04+02:00,3c54672ea368bdda26c623767dcffb4176a1a72b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/tudo-r/BatchJobs.git,2013-11-08 12:27:16+01:00,7dc68bb4be52941f3c9c7c31ce6101bb66abe29b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/suntong/dbab.git,2013-12-01 19:17:17-08:00,51ff5b84b9797ac1973b1f2c8125a9a37fa81f57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/thp/wavbreaker.git,2003-02-05 01:40:48+00:00,89afdc553880dabd890a6d44ad42db371145969b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 1, 3, 6, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 8, 1, 0, 1, 4, 4, 2, 0, 2, 4, 0, 0, 0, 0, 7, 0, 1, 10, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/davesteele/cloudprint-service,2013-04-23 19:49:49-07:00,6e4e751ff62fb19d34455a71b9e1022931515bd2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 8, 11, 2, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0]",2,1,0,0 -https://gitlab.com/cryptsetup/cryptsetup,2008-03-22 08:23:35+00:00,7dc7b90a9b37626d933771a932b26bcd6a5d0ba6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Pulse-Eight/libcec.git,2011-09-29 00:53:52+02:00,abbca718e0f6b5a20170561beeacafa0b5852500,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 39, 23, 10, 83, 47, 64, 14, 45, 54, 19, 11, 23, 27, 11, 23, 26, 22, 38, 101, 41, 41, 11, 21, 18, 22, 1]","[5, 4, 1, 0, 3, 2, 3, 1, 0, 1, 2, 0, 0, 2, 1, 2, 0, 3, 1, 0, 2, 1, 2, 0, 0, 1, 0]",1,2,12,0 -https://github.com/js-cli/fined,2016-05-27 16:42:36-07:00,cb99d51b73ec4d588594320bab41b6019ad78c6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://invent.kde.org/plasma/kde-gtk-config.git,2011-01-11 14:03:34+00:00,d83eb539fe0b004a3a1ced8935006497b0b7898a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 0, 4, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 0, 0, 6, 0, 1, 2, 3, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/spesmilo/electrum.git,2011-11-04 18:00:37+01:00,6db1a31e58ee15c448448139e7d3a9e72b14268f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 34, 21, 26, 50, 45, 29, 7, 0, 23, 22, 1, 21, 49, 71, 31, 1, 0, 34, 72, 28, 43, 24, 7, 0, 24, 1]","[3, 5, 2, 4, 7, 8, 2, 0, 0, 3, 2, 0, 1, 6, 1, 8, 0, 0, 7, 17, 0, 1, 0, 2, 0, 2, 0]",1,4,8,0 -https://github.com/ncbi/ncbi-vdb,2014-09-24 16:06:14-04:00,68e800e420b7dcb6bab154ea9296f087091a9a03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 51, 47, 44, 25, 47, 13, 20, 23, 14, 24, 21, 17, 6, 0, 5, 14, 25, 28, 7, 9, 5, 0, 0, 0, 0, 1]","[0, 8, 11, 9, 6, 6, 2, 4, 5, 0, 5, 2, 1, 1, 0, 1, 4, 4, 3, 1, 0, 1, 0, 0, 0, 0, 0]",1,12,18,0 -https://github.com/SciRuby/rb-gsl/issues/new,2011-12-30 20:20:32-05:00,1539ae2818c50eacb01cda80b06de12035b7a394,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 2, 6, 6, 9, 7, 0, 3, 15, 14, 0, 5, 7, 3, 9, 2, 2, 4, 2, 6, 2, 4, 2, 19, 21, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0]",2,3,5,0 -https://github.com/costales/gufw.git,2019-10-30 19:57:39+01:00,9869db431cc942b2cef7e959655073c16d74e072,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/RDFLib/rdflib-jsonld,2012-02-03 19:44:38+00:00,ff496514a606ae9f3caba4c63d69a7ebe8d14bbe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/swanandp/acts_as_list,2007-09-10 04:23:59+00:00,e1ed2aac46ad6edff5b16329c38a351a62bc2a81,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/rfjakob/earlyoom,2014-01-29 00:16:37+01:00,98d19981639a3685d631214b2c2c5e97f609f12a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/marioroy/mce-perl.git,2015-08-22 00:46:52-04:00,b8b5ac01611dd437fe3912f95378c7621440b995,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 6, 1, 0, 0, 9, 19, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dell/libsmbios,2007-05-15 15:00:18-05:00,547a4d4c6f2ebf5132ab6dd978a30716869b8598,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 32, 1, 0, 0, 3, 9, 0, 0, 0, 0, 0, 5, 1, 9, 2, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0]",1,2,1,0 -https://github.com/FreeRDP/FreeRDP,2011-06-30 15:12:51-04:00,f6723028dc8d8722743d8d7dfa233ce298d55b1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[80, 119, 25, 53, 41, 87, 86, 135, 71, 90, 34, 44, 82, 30, 19, 67, 54, 25, 14, 26, 47, 52, 26, 44, 47, 16, 1]","[10, 25, 4, 11, 6, 14, 16, 24, 11, 20, 5, 13, 10, 5, 2, 25, 18, 8, 3, 5, 12, 14, 8, 10, 16, 7, 0]",1,16,44,0 -https://gitlab.gnome.org/GNOME/pango,2000-01-13 04:12:07+00:00,282fb5fc9f9d01c4d933a6eb6bee6ae9f0d512c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 4, 5, 9, 2, 2, 2, 3, 1, 0, 8, 1, 1, 7, 5, 8, 0, 3, 9, 6, 3, 4, 0, 9, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,9,0 -https://github.com/acoustid/chromaprint,2010-07-24 22:27:20+02:00,bbc0f6354a5f9e9b9637c91290ed1f4fa895849c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 4, 0, 3, 3, 0, 1, 0, 0, 7, 7, 3, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 6, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/bobrik/node-mess,2013-05-05 19:03:28+04:00,642188052bc2ddbd0300531d37dacfc6fc470071,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/KhronosGroup/OpenCL-CLHPP,2013-01-25 16:25:29+00:00,5199d186f50f82333bfdb40a2e25e656a4068854,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/hackerschoice/THC-Archive,2018-06-04 06:10:53+02:00,1bf41562f218d9a607f88640fb33bf0775424756,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/schrodinger/maeparser.git,2017-05-16 12:09:30-04:00,4138b084534136761d6b105f8ad624f1a43708a8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://gitlab.gnome.org/GNOME/gnome-clocks.git,2012-08-14 21:02:22+01:00,fb4e2ba1d301d81772ea271bc3dfba127069163b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 5, 0, 0, 6, 11, 5, 1, 17, 0, 1, 5, 4, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[111, 73, 83, 24, 18, 57, 8, 6, 2, 1, 2, 1, 7, 21, 15, 25, 10, 11, 10, 7, 11, 5, 5, 3, 11, 12, 1]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,1,85,0 -https://github.com/mtrojnar/osslsigncode.git,2013-02-17 10:16:25+01:00,6aa4280d843a7181acd208e37232734fda9d29c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 15, 13, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/8bitbubsy/pt2-clone,2019-12-02 12:00:24+01:00,0538878aa43d53593ed4432cc9b06a4b15d4e0d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 1, 0, 0, 1, 0, 1, 4, 2, 5, 0, 0, 0, 0, 1, 0, 1, 1, 1, 3, 1, 3, 3, 1, 1, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://gitlab.gnome.org/GNOME/gnome-mines.git,1997-11-24 22:32:29+00:00,34d45b180e2eeb2890d7f41b4a7af0ddc194befb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 1, 5, 1, 5, 5, 13, 5, 6, 5, 13, 3, 0, 0, 0, 0, 0, 2, 1, 0, 1, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,24,0 -https://github.com/intel/ledmon,2011-01-12 22:48:36+01:00,af8f20626e4e36cdf4bb9955fc65f22fec155580,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/powa-team/powa-archivist,2014-06-13 10:16:37+02:00,b83225398d23d79c4eaf3f3ef15d9a416f8eb9f0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 4, 0, 0, 0, 0, 0, 6, 10, 5, 23, 18, 7, 1, 14, 9, 6, 4, 2, 13, 1, 1, 1, 0, 0, 0, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0 -https://github.com/Codra-Ingenierie-Informatique/guidata,2010-09-01 18:02:03+02:00,713504808eb23fa027e82678afa4700e589063fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 2, 1, 0, 0, 1, 1, 4, 3, 7, 1, 3, 1, 18, 1, 0, 0, 3, 0, 0, 0, 3, 5, 3, 3, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/ovalhub/pyicu.git,2015-04-15 18:00:41-07:00,fa65937c59ddbf3b16e5ccb3823a34874703c9f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/aws/aws-xray-sdk-python,2017-09-18 10:17:30-07:00,1a5fab22378612cc424093c35352a55a5b374b64,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 2, 3, 0, 0, 2, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 6, 3, 2, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 -https://github.com/Bioconductor/GenomicAlignments.git,2019-04-19 13:38:17-07:00,eed5642b7a1ef41667f49adbebd72a40db946b2a,"[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 4, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/donnemartin/gitsome,2016-05-07 05:18:42-04:00,438d0b36614d67167a55fc033058071acd00a0f8,"[133, 55, 6, 1, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 19, 49, 98, 40, 111, 74, 128, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[82, 31, 65, 15, 7, 1, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 2, 1, 3, 1]","[7, 9, 9, 7, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,2,16,0 -https://github.com/juliangruber/brace-expansion.git,2013-10-13 14:56:58+02:00,9a5bef783fad507aed02242ce726f89640bf42d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Exa-Networks/exabgp,2009-09-03 22:12:05+00:00,5490f7baf5981279e2360d88c735570bc9f72532,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 0, 0, 0, 0, 0, 0, 1, 25, 22, 18, 6, 16, 8, 4, 0, 0, 2, 2, 24, 5, 35, 20, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/sidekiq-cron/sidekiq-cron,2013-08-25 12:59:23+02:00,9264b851d5369fc51dbc468e06a2b3413c9dc600,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 4, 0, 6, 0, 0, 0, 7, 0, 0, 3, 0, 5, 5, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0]","[0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,8,0 -https://github.com/python-babel/flask-babel,2010-05-29 16:13:19+02:00,7061764f327c945ed4f2c725cd7b39de5d3083e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/openSUSE/hwinfo,1999-12-10 14:36:22+00:00,641c91e978cb831adaf7a033685eda6e02494960,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 2, 0, 3, 1, 13, 13, 8, 6, 10, 13, 9, 7, 0, 2, 2, 1, 1, 1, 0, 0, 0, 3, 1, 3, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/googleapis/signet,2010-09-16 00:16:25+00:00,b610c1d2b70d11ec7154cdb5fa54439a0fd2626e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 5, 1, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 7, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/unixabg/remaster-iso,2019-12-15 17:09:40-06:00,3fe7e7498f11adc01efbeaccacea8d14ec967990,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 21, 2, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/yrro/command-t,2010-07-14 15:52:37+02:00,371322ec48d27973e560340c96f068e60363681c,"[0, 0, 0, 0, 0, 0, 79, 59, 0, 15, 30, 6, 3, 3, 0, 6, 5, 9, 0, 0, 1, 1, 0, 0, 0, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 1, 4, 0, 7, 4, 0, 1, 4, 0, 0, 0, 23, 0, 0, 0, 8, 0, 0, 8, 1, 1, 0, 1, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,3,0 -https://github.com/boynux/squid-exporter,2017-07-08 20:02:29+02:00,51c3383cf5393879a7986065263f2f0502d37a40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/knockout/knockout.git,2010-07-05 09:07:12+01:00,14e4df51ed5753a6e00687e7a22ce88827413cd5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 5, 3, 4, 0, 13, 5, 2, 1, 4, 2, 3, 2, 0, 13, 4, 10, 4, 0, 2, 0, 6, 3, 3, 0, 9, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]",1,1,3,0 -https://github.com/skvadrik/re2c,2003-12-13 04:58:19+00:00,bcf633273c9b17c1985df17b526dab97c1bd9395,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 3, 0, 1, 7, 0, 0, 0, 0, 3, 10, 0, 3, 0, 1, 11, 2, 0, 9, 2, 6, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/schweikert/postgrey.git,2004-05-20 20:02:00+00:00,d9a95964e474d9e6c3eef97fc56b657967faaf1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 7, 3, 13, 10, 10, 12, 1, 0, 0, 0, 3, 0, 0, 3, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/PapirusDevelopmentTeam/adapta-kde.git,2017-09-13 11:13:56+04:00,d1fb57cce445ce30eeeb3d7d2136c8f6f95d4837,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[72, 25, 3, 0, 0, 3, 0, 2, 1, 0, 3, 2, 1, 3, 0, 0, 4, 1, 4, 0, 0, 1, 0, 1, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/Toilal/rebulk,2015-09-08 07:06:45+02:00,4b1141dd2dd04f1bc2172e3d87c96d4dd3509adf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 11, 11, 9, 14, 22, 21, 15, 17, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 9, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/jclehner/nmrpflash,2016-01-25 15:09:00+01:00,cce5d7553a5e390ec554135075315d7d39dde31a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 61, 58, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/mininet/mininet,2009-12-10 00:21:26-08:00,95d9a374b205b2a4be7a244710533e291fa4cb6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 24, 2, 21, 5, 0, 2, 8, 15, 4, 6, 17, 43, 51, 36, 13, 3, 43, 0, 14, 3, 3, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/8bitbubsy/ft2-clone,2019-12-02 11:59:23+01:00,eb17e10e6684c9486165badf5e739557ed01a5b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 2, 1, 0, 0, 1, 0, 5, 2, 3, 0, 0, 2, 4, 5, 0, 4, 3, 1, 5, 6, 0, 1, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,2,1,0 -https://gitlab.freedesktop.org/beignet/beignet.git,2012-08-10 16:14:34-07:00,5173febb3d88b6c38709d390c3b30c79442afd7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[343, 0, 0, 0, 0, 13, 0, 5, 21, 0, 2, 1, 38, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,10,0 -https://github.com/rstudio/crosstalk.git,2016-06-15 15:21:25-07:00,c24cd67217a90f69cb41cabe0be79d855da188fc,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 4, 0, 0, 0, 5, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 18, 4, 8, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",0,1,0,0 -https://github.com/tidyverse/tidyr.git,2014-06-10 09:24:05-05:00,c5b5a2e922c4d8105635fc8b08ead6d38b6085d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 0, 0, 0, 0, 7, 6, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 11, 0]","[4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 -https://github.com/varnish/varnish-modules.git,2016-03-04 13:02:17+01:00,d592a0882d9db2903fdd6f7f665e37ad13e3e415,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 9, 0, 2, 3, 3, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 21, 12, 0, 0, 0, 9, 3, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,2,4,0 -https://github.com/gnuradio/volk,2010-12-07 18:50:28-05:00,fe945d586a74849d30a05b05f151b581836293fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 14, 1, 0, 3, 14, 13, 8, 3, 0, 1, 0, 1, 4, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 1, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0 -https://github.com/epam/nfstrace,2014-02-19 18:49:52+03:00,849c13795e79676aa3bc7a43722b08571b15da27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/LibreCat/Catmandu-RDF.git,2013-09-05 11:39:00+02:00,daf72cc4c52270f2c0cb31c5d4f3fc1b41559ae3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 3, 1, 0, 7, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/guzzle/psr7,2015-02-24 20:17:44-08:00,604ca0bee7c13b5b61f5230666d29b6f65049321,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 11, 0, 11, 5, 0, 5, 2, 3, 0, 0, 9, 0, 8, 0, 5, 0, 7, 2, 0, 0, 0, 0, 4, 5, 1, 0]","[0, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 2, 0, 0]",1,3,13,0 -https://github.com/fail2ban/fail2ban,2005-07-06 23:10:19+00:00,a996ce2c1bd5b73be39fd3518876fb9d421ada8a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[80, 24, 19, 29, 33, 9, 7, 0, 8, 26, 3, 1, 9, 12, 9, 23, 5, 1, 0, 6, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/artemsen/pipewalker,2018-03-15 11:42:56+03:00,c5c9635c542b6a5e73f05623c4d1f74f8b4ca36a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kumina/postfix_exporter,2017-02-17 16:04:32+01:00,307deac3ed291fce9a0003f4cd1b88e3b763d81e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/shadowsocks/simple-obfs.git,2016-12-31 20:20:41+08:00,057aa8717d2263e0e188b6df572b946d9784eb4b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 12, 3, 7, 1, 2, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0]","[0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,13,0 -https://github.com/mbleigh/seed-fu,2008-04-19 18:05:49-04:00,e5be60e28a046a3fdb56c6c9f6db30391cea8df2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 3, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/Castaglia/proftpd-mod_case.git,2011-10-20 10:02:05-07:00,88260ff5e55447ab4c3a74c68ab0c705ab05fd61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://bitbucket.org/sshguard/sshguard.git,2009-04-23 21:23:12+00:00,e000f7732c23106a8581a20d777b6de2c16856f5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 8, 2, 10, 0, 0, 3, 2, 2, 2, 0, 5, 3, 6, 6, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jfelchner/ruby-progressbar/issues/new,2009-02-16 13:40:59-08:00,f24e17a803b41c0e012254415b846157a0a5e157,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/rofirrim/eiciel,2011-11-26 20:26:39+01:00,5c2ad3f1dc8a376c8d00aa6f0775d39be88675dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/systemd-cron/systemd-cron.git,2013-05-27 15:58:51-04:00,77adcc7a746becdebdaf4ce6ea2cd6a9d140b020,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 4, 2, 2, 6, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/X0rg/CPU-X.git,2014-09-21 16:20:11+02:00,8a32ecf022b7b3e989076d2cf37e002eb4d3f2cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/matthiasbock/dymo-cups-drivers,2011-11-08 18:34:48-05:00,aac3cb64a5503fe84a705f22612eb471804e80e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dmgerman/ninka,2011-01-22 00:27:35+09:00,da0fd994d2c96876ffe86cb177e5b8ee8a037078,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0 -https://gitlab.gnome.org/GNOME/gnome-calculator.git,2002-06-05 16:59:19+00:00,5c8747dc9ad8ecd1ee59bc69eaa736ad140124a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Bioconductor/DelayedArray.git,2019-03-28 08:43:01-07:00,a86b94533eed73c41790883d1178dfbd824ac4f8,"[5, 1, 0, 3, 5, 8, 0, 0, 0, 8, 12, 1, 2, 1, 1, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 -https://github.com/minimistjs/minimist.git,2022-10-16 13:40:18-07:00,5368ca4147e974138a54cc0dc4cea8f756546b70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 5, 2, 4, 0, 0, 0, 0, 0, 4, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,1 -https://github.com/jashkenas/coffeescript,2009-12-16 23:10:03-05:00,733a76fdba669da434fd524616f058c62ed78222,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[112, 280, 160, 56, 30, 33, 27, 40, 120, 66, 62, 135, 50, 33, 55, 21, 16, 12, 22, 19, 13, 10, 6, 20, 1, 30, 1]","[0, 12, 0, 0, 0, 1, 3, 4, 1, 3, 2, 14, 6, 2, 2, 3, 1, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0]",1,7,22,0 -https://github.com/perl5-dbi/DBD-ODBC.git,2004-02-19 15:22:36+00:00,02429bdeef171d991fb4f75a924863edb8f7937e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://gitlab.gnome.org/GNOME/mm-common.git,2009-08-04 23:40:45+02:00,c50cd3befea539761a8960d4dfca8bef684694ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 21, 16, 12, 23, 10, 15, 2, 1, 5, 1, 0, 0, 2, 0, 1, 0, 3, 3, 0, 10, 2, 5, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://gitlab.gnome.org/GNOME/gjs.git,2008-10-10 21:37:39+00:00,c94cbf18983fa5cb47fcfd118b8ff94d71b52361,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 33, 8, 7, 29, 16, 1, 9, 2, 3, 0, 0, 4, 0, 6, 8, 2, 1, 10, 13, 2, 0, 3, 9, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,16,0 -https://github.com/rytilahti/python-miio.git,2017-03-05 18:49:25+01:00,a30f9d978bcb5a3726b5d349c9331d7b7c6c8323,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 4, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 14, 4, 5, 2, 6, 0, 5, 5, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/webcomics/dosage,2012-06-20 21:58:13+02:00,f91fb80a39edb4d484e85106da2f6f607dd64e84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 1, 44, 0, 0, 0, 7, 3, 8, 4, 14, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/attr-encrypted/encryptor,2009-01-06 18:55:29-08:00,164e870a19264005f4e8e8606f9c95c329818287,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dascandy/hippomocks,2014-10-07 01:41:26+03:00,cccba75eb4668a6a0ca177e731e26968e26c0c69,"[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0]",2,0,3,0 -https://github.com/martinpitt/python-dbusmock,2012-09-28 13:50:52+02:00,16f22ab98ff0291bbcef619166003d1837afd9ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 6, 0, 0, 0, 11, 22, 1, 4, 0, 0, 5, 0, 0, 2, 4, 7, 0, 2, 0, 0, 0, 0, 2, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,2,4,0 -https://github.com/symfony/polyfill,2015-10-22 15:35:50+02:00,0475f40830470f42e1cd93d0fbdb89ae4362e94b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 2, 0, 1, 0, 5, 0, 2, 3, 3, 3, 2, 0, 3, 2, 5, 5, 1, 1, 5, 0, 0, 2, 0]","[5, 2, 0, 0, 1, 0, 0, 0, 3, 0, 1, 1, 1, 2, 1, 0, 1, 1, 3, 2, 1, 0, 1, 0, 0, 1, 0]",1,2,18,0 -https://github.com/jupyter/jupyter_core,2015-03-25 15:45:05-07:00,b5e1ec6abbade8e33bad403a496fa493b9e37815,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 11, 6, 1, 4, 4, 0, 5, 6, 6, 0, 25, 8, 7, 6, 8, 0, 0, 0, 12, 1, 3, 0, 9, 6, 0]","[0, 0, 1, 3, 0, 1, 2, 0, 2, 1, 2, 0, 5, 3, 1, 3, 3, 0, 0, 0, 4, 0, 2, 0, 4, 1, 0]",1,4,8,0 -https://github.com/hashcat/princeprocessor.git,2015-01-07 14:35:53+01:00,9b7e8e6fb4262d340e522e08411b7a8302161bc9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 38, 23, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 13, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://github.com/gosa-project/gosa-plugins-mailaddress,2015-10-30 11:56:42+01:00,31501f583b11522368613e5c2df7761840df36f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 25, 2, 0, 1, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/luvit/luv,2013-08-24 10:30:19-06:00,79646fe06bdf5140bce7cd9d5c5fa2503db6622d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]","[16, 13, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,0,1,0 -https://github.com/pagekit/vue-resource,2015-05-25 13:44:13+02:00,16496eec5894e41ad8ea0df1df2b9765a1a3119d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 4, 1, 0, 3, 7, 11, 1, 5, 0, 12, 2, 6, 0, 3, 1, 0, 4, 20, 2, 2, 5, 5, 0, 4, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0]",1,2,9,0 -https://github.com/clbr/radeontop.git,2012-07-07 23:23:19+03:00,dec3ce7f72953b30900b1e54b8809fb7db87fff7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/k0lter/pmailq,2007-11-26 23:12:41+01:00,db00de6d5f124c1ae597b00e122e31e1e50e7688,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/jeroen/openssl.git,2014-11-28 14:05:58-08:00,0338d2769914d62a3de09ef7e8d7ca158cf61e65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 11, 6, 4, 1, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 6, 0, 0, 1, 5, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/rails/rails-dom-testing,2013-09-27 21:57:01+02:00,22d0020cfb43a7d66428cb3c195bbadac45cf416,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 -https://github.com/cromerc/opensysusers.git,2017-06-15 21:55:07-04:00,abf31fb801182306170f377125cb49b20dd76f69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/festvox/flite.git,2017-10-21 09:55:35-04:00,e7e4868ad7a65eb6ed2966dd5048c4bfeb14f23f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 4, 2, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 1, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://invent.kde.org/kdevelop/kdevelop.git,1999-01-09 13:16:08+00:00,f12757c0f4c72b06e9dd77b096250c6f04d7cae1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 13, 20, 10, 20, 20, 20, 20, 7, 80, 73, 22, 30, 15, 19, 11, 14, 13, 32, 52, 49, 99, 29, 14, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,14,0 -https://github.com/opencollab/arpack-ng.git,2011-10-23 22:13:59+02:00,b5c045f358d6a231b44776797044c9ba0c67a4d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 3, 3, 3, 0, 7, 0, 3, 3, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/mariocasciaro/object-path,2013-09-20 01:58:52+01:00,4aa70b081a17a8061b47138a1376808900598adb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 3, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/digininja/CeWL.git,2016-04-22 13:09:53+01:00,949ad99420054396b5e69d9335fef6749ec2c1f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/jarun/pdd.git,2017-07-15 21:42:47+05:30,67c7c0fb28c41fa2e419ddc29bd282b49a916634,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 2, 0, 2, 0, 1, 2, 0, 4, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bdrung/ionit,2018-08-16 17:27:50+02:00,39ab86d1d6773b53f7cb4fb61053c1cb527c254a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/private-face/jquery.fullscreen,2012-01-15 16:57:04+04:00,7b8496cf046d4d33a0a9b42ebd7d0953cbc78ad8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/markdown-it/markdown-it,2014-09-02 16:11:34+04:00,c8be724b3f7ca21ccfd51e9f2359f52a2dc9289e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/savonet/ocaml-ogg.git,2008-10-15 17:30:33+00:00,e9875ea3feb04c82821f2b4b4ea7da8dc04ac0e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/br101/horst.git,2007-10-05 12:30:31+09:00,a4fce333b3d93a7d89625cd95c7856daa952a35f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 2, 17, 24, 34, 31, 5, 0, 4, 2, 39, 18, 0, 5, 0, 2, 11, 0, 0, 0, 14, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/kangguru/rack-google-analytics,2009-12-26 20:31:29+01:00,2a940c2c7004b40af6c4406a19345ab1a0745b52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/Linaro/pkg-lavapdu,2014-01-13 10:02:28+00:00,6ab1ca0485662e7eebf047e409fda37a9b5984c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/timothycrosley/hug.git,2015-07-16 21:01:57-07:00,823750de93f9505eb534063ffdb14548003bb42f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 34, 61, 112, 42, 3, 2, 77, 27, 0, 44, 12, 18, 1, 8, 78, 39, 40, 24, 18, 0, 12, 0, 0, 0, 5, 1]","[0, 14, 14, 26, 14, 1, 0, 14, 6, 0, 11, 0, 5, 0, 3, 25, 11, 12, 8, 7, 0, 4, 0, 0, 0, 1, 0]",2,3,11,0 -https://github.com/rails/coffee-rails,2011-06-29 16:24:30-03:00,d9b1790e6de393bc4120c2f1537238e265936bc9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 1, 0, 12, 2, 4, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]","[2, 0, 0, 0, 0, 0, 3, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,2,2,0 -https://github.com/linuxmint/muffin.git,2012-01-11 17:11:49+00:00,a9a1fdbb3ded8581df23b105019d4d67148b7571,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 26, 0, 7, 1, 1, 16, 0, 0, 147, 0, 2, 0, 3, 0, 0, 2, 2, 0, 13, 3, 4, 0, 0, 1]","[0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 1]",1,2,62,0 -https://github.com/openpreserve/jpylyzer.git,2014-02-14 19:58:43+01:00,583e36e1cae8f64b7376b00cf46b2e2ccea34f85,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://gitlab.xfce.org/panel-plugins/xfce4-indicator-plugin,2009-05-15 14:57:09+02:00,ac4fe3fd7608567165e08aeb76311651adf3ddbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 17, 6, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/gnu-octave/statistics,2018-01-07 17:51:00+01:00,8ed5087296b9d228d4d35796d84b9f1544f0b5f9,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 6, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 6, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/hughsie/appstream-glib,2014-03-12 15:54:17+00:00,32cb5d554937b62f2e6e630afc7cb7dea0c5d725,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 30, 4, 6, 11, 27, 6, 13, 10, 14, 11, 7, 9, 65, 44, 41, 29, 44, 8, 21, 22, 23, 16, 3, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/NeoRaider/fastd.git,2012-02-25 18:20:10+01:00,d86a948a67c44ca1c484cfbe30261f1bf61c59ab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 13, 2, 0, 39, 39, 4, 14, 7, 5, 0, 7, 2, 1, 17, 3, 1, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/geopython/OWSLib.git,2006-04-05 03:33:34+00:00,87b755b45b0e7e33151eaefed42ef53135764b67,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/lloyd/JSONSelect,2011-05-08 06:29:33-06:00,9f26f74734cf5092139d1e58de4cfc1d6cb4f6ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 53, 46, 22, 5, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 3, 4, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://gitlab.gnome.org/GNOME/atomix.git,2001-11-10 18:05:21+00:00,0dd87725e7b0fb644fbd5a6f499672d93fa5dae7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 29, 11, 14, 2, 0, 0, 0, 2, 14, 3, 0, 7, 6, 9, 6, 0, 2, 0, 1, 3, 1, 6, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0 -https://gitlab.gnome.org/GNOME/libgweather.git,2007-11-22 23:17:12+00:00,32e0353d86ffc2df26b19608a680b19cfa3cc04f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 4, 19, 16, 3, 6, 12, 11, 14, 14, 9, 21, 2, 0, 1, 18, 11, 12, 3, 6, 3, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,68,0 -https://github.com/NanoComp/harminv,2000-06-05 22:13:46-04:00,6e6447cfbc3785485d4d09e285c26b1bda693152,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/yamanq/xdrawchem,2016-11-25 12:15:19-05:00,383d07eb6972dee28f1c430246e0d1e2d03dfd61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 2, 3, 2, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/glfw/glfw.git,2009-09-29 22:10:27+01:00,027af59fc5ec6cdcf9885302a2c44cb85cbd41e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/scottkosty/vit.git,2013-06-15 11:36:01-04:00,9671b6fdf5e79d3b251c27f9acbf706d97c7e94e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 4, 0, 0, 0, 8, 3, 0, 0, 7, 0, 11, 2, 3, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/openlink/virtuoso-opensource,2006-04-11 17:56:16+00:00,e5eaf9fce2f7ebe2cb2ad01f092abc53d81680bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 49, 18, 0, 0, 31, 74, 69, 14, 0, 56, 8, 0, 75, 65, 50, 81, 25, 26, 15, 12, 13, 0, 32, 0, 33, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rtomayko/posix-spawn,2011-02-26 19:45:02-08:00,b0a8a5406ca5dbe1029ef44a16829d857c285491,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[143, 10, 4, 2, 0, 5, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/zsh-users/zsh-autosuggestions.git,2013-10-26 13:05:17-03:00,5595bcde18041a1be3ce3791bf88f13d44524848,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://github.com/mytbk/fqterm,2014-04-04 07:33:30-07:00,c4b028ad53f7b362a864de24828d7cc39ff67b0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 2, 3, 11, 1, 5, 1, 3, 7, 1, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/fargiolas/gnome-mastermind,2007-04-19 11:32:55+00:00,e950ffef03f3b7cd39ca0548a9610f6f882be311,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 4, 5, 15, 24, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dell/dkms,2007-05-16 22:46:05-05:00,3c79d2e7f7b25135ce7edac2fd294bc5b0ddc637,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12, 10, 5, 0, 0, 4, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/petkaantonov/bluebird.git,2013-09-02 16:31:08+03:00,9105389549d31333f4ba34050cf12e23fcbcd3bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 59, 27, 49, 55, 86, 61, 55, 23, 27, 24, 26, 59, 41, 2, 0, 10, 0, 13, 9, 10, 19, 32, 9, 8, 19, 1]","[0, 3, 0, 2, 7, 11, 12, 5, 0, 1, 0, 0, 0, 4, 0, 0, 1, 0, 2, 4, 3, 4, 9, 2, 2, 2, 0]",1,1,21,0 -https://github.com/hfst/hfst-ospell.git,2010-07-08 15:15:40+00:00,d92e82c407aa53cbdadaef23bcb06e7adf13d45f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 35, 1, 0, 1, 3, 0, 0, 0, 0, 3, 0, 0, 4, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/italiangrid/voms,2013-06-06 01:38:54-07:00,675a95cee2871ffd9372d6a11fa7d6086569aace,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 34, 9, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 1, 5, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,3,4,0 -https://github.com/evgeni/hdapsd.git,2008-12-13 22:11:33+01:00,01cd513f6da5fc715345e719e57c4e8ad727a529,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 6, 21, 24, 0, 0, 0, 0, 0, 0, 9, 10, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/DonyorM/weresync.git,2016-11-05 10:52:09+06:00,d8e61eafa964b3e987c274bf6b1a0e86fbe674d5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 11, 3, 2, 3, 7, 6, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 2, 1]","[0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/theory/class-meta.git,2002-04-27 22:02:40+00:00,a2b9a9d099dc1209fce236bb6375fbeeffce312c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 5, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libical/libical,2014-06-28 15:30:53-04:00,c363e524f603b4dbeb5bbde5971e7d1c9b26b206,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 1, 0, 0, 2, 1, 2, 5, 11, 9, 15, 4, 4, 1, 2, 6, 7, 7, 2, 5, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/openscenegraph/OpenSceneGraph.git,2001-01-10 16:32:10+00:00,70208ebc0616d0045c99f93062476ca210a45efd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/python-social-auth/social-app-django.git,2012-12-12 08:08:43-08:00,3de99ca0a4bbda43681e8c6a54d56e31ad5011d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 9, 14, 0, 0, 0, 2, 0, 0, 12, 43, 6, 3, 98, 40, 46, 18, 0, 16, 0, 0, 3, 12, 0, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,6,0 -https://gitlab.com/coringao/runescape,2017-10-23 13:21:18-02:00,437d27d749a599bc43ac2d6629e58618efc95867,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sparklemotion/mechanize.git,2006-03-17 16:20:16+00:00,f98e25450ac2985e82ea5372e234c8420b17798d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 11, 7, 4, 2, 0, 0, 2, 1, 0, 1, 0, 1, 0, 1, 0, 3, 2, 2, 4, 4, 1, 1, 13, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/FasterXML/jackson-core,2011-12-22 18:06:25-08:00,e0f0754dae9c76af0c2b060bddf373d5cc0b5102,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 0, 11, 3, 3, 0, 2, 4, 0, 4, 1, 7, 10, 1, 0, 3, 4, 2, 0, 5, 1, 0, 2, 1, 0, 1]","[0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/sanger-pathogens/ariba,2015-02-11 10:13:07+00:00,5ececb712a24a40dc15434ec5552df404ad059c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 35, 0, 0, 0, 34, 2, 21, 0, 7, 0, 0, 4, 0, 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 1]","[4, 8, 0, 0, 0, 8, 0, 5, 0, 3, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,6,6,0 -https://github.com/expressjs/parseurl.git,2014-03-07 18:08:39-08:00,4b5325e98df62bf2c96979f7b1bd8ef936923f64,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 14, 2, 0, 0, 5, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/timchen119/tpm2-initramfs-tool,2019-05-09 15:01:43+08:00,e5fef65f14459cba7c092ff65c65b0ec96dd0b33,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 -https://github.com/holylobster/nuntius-linux.git,2015-03-01 12:18:14+01:00,a0c673379b65c2512cea6a213bfeb1c2642bce0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 25, 22, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 5, 1, 0, 0]","[2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,11,0 -https://github.com/sleuthkit/sleuthkit,2008-09-28 22:52:48+00:00,3a78df5c010fde1b12ecec914bf4caa549565e55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 8, 1, 10, 0, 6, 2, 2, 2, 0, 0, 0, 8, 0, 6, 2, 0, 12, 4, 0, 1, 1, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/broadinstitute/barclay.git,2016-10-26 18:06:45-04:00,fd6bc2d906b2ea9fd812de0d1aee89067bb334d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 0, 2, 1, 3, 6, 0, 3, 5, 3, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 1, 3, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/milkytracker/MilkyTracker,2008-01-05 19:45:46+00:00,0836c4318800e81795a17e209c406ea380ce90f6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 28, 11, 5, 6, 6, 31, 8, 2, 5, 5, 8, 6, 16, 12, 4, 5, 4, 1, 2, 2, 11, 5, 2, 9, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/httprb/http.rb,2011-10-05 21:27:56-07:00,919b248ec4ecfedbb9c387b6e5c54f53a37f964e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 9, 0, 17, 0, 39, 2, 1, 8, 10, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0]",1,2,5,0 -https://github.com/tox-dev/py-filelock,2014-02-23 01:28:10+01:00,2157efb8b57666699fcf15bf03c3771c1571279c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/potassco/clasp,2014-11-12 09:00:51+00:00,e00dcf9b974a4c168382ef2ac58dea28a42fd883,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 5, 3, 5, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sphinx-contrib/restbuilder.git,2013-08-25 15:39:20+02:00,152f7615ca0794ee9d290072a3989bd1419d0667,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/candlepin/python-iniparse,2004-10-03 22:47:52+00:00,fc4d966d9b98d09f929ec6847672b3548928bcdb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 1, 0, 0, 0, 0, 0, 0, 0, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/redis/hiredis-py.git,2011-01-27 11:03:32+01:00,f0e0a6f225a7ea1128cf91362f415a7f365a58a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/erniebrodeur/ruby-beautify,2011-12-27 10:29:56-07:00,67f0d1c6ac43d1f0fa70b2b42a1517cbb79749ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 1, 6, 7, 2, 0, 0, 0, 0, 0, 2, 0, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,5,0 -https://github.com/robdimarco/omniauth_crowd,2011-03-18 00:12:16-04:00,69ff6afa9dc1f87d1345e4f539991e84f566f874,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lsyncd/lsyncd,2008-08-06 13:04:01+00:00,814c133e8210ed7e1ab991b703a30f6845a366bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 15, 4, 0, 2, 11, 3, 0, 11, 0, 10, 5, 0, 1, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ubuntubudgie/faba-icon-theme,2014-04-28 15:58:40-04:00,38742752c3e35d36c43399a5d9534a3185dcba77,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 3, 5, 0, 0, 2, 11, 3, 1, 0, 8, 7, 2, 0, 1, 0, 2, 2, 55, 43, 12, 64, 0, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://invent.kde.org/plasma/kactivitymanagerd.git,2012-01-07 14:22:31+01:00,569ce24fd19eeb7b414c1d6f6a36201492b54517,"[5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 7, 7, 6, 0, 1, 1, 5, 8, 1, 2, 11, 17, 15, 15, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 3, 0, 0, 0]","[8, 10, 17, 16, 12, 4, 4, 1, 20, 27, 6, 10, 5, 2, 9, 8, 3, 7, 13, 5, 7, 4, 3, 4, 3, 4, 0]","[1, 0, 2, 5, 0, 0, 0, 0, 2, 3, 0, 1, 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]",9,2,10,2 -https://github.com/JPEWdev/icecream-sundae,2018-04-10 09:09:46-05:00,ae8088e311bf53569d315d7b99c9ef51d726ce40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 16, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/ComplianceAsCode/content,2011-06-08 18:45:05-04:00,540a78f26191a69651a167d256b5af47fd3eb983,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 22, 6, 0, 9, 7, 5, 2, 15, 6, 20, 26, 24, 5, 8, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 2, 2, 4, 0, 0, 2, 0]",1,3,2,0 -https://github.com/metlov/cycle.git,2022-10-13 20:10:36+03:00,da824ed3edf328558634c3ab8dceeeb7dc58d1a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nikic/PHP-Parser,2011-04-18 19:02:30+02:00,aea5e433490c399a2763c9e3830cca88466bba68,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 17, 30, 2, 0, 4, 4, 1, 5, 0, 0, 13, 24, 5, 0, 2, 1, 0, 9, 7, 0, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/df7cb/newpid,2013-01-21 22:43:44+01:00,3d4adca89aab7f1bbc06f9971280b62b83c262fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/silverjuke/silverjuke.git,2015-04-02 12:06:06+02:00,648b51c1c59965ebb37ab5b76d9845784d6c8bbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 21, 21, 40, 3, 13, 8, 20, 36, 11, 2, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 5, 0, 1, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/openSUSE/open-build-service,2006-02-21 15:31:42+00:00,97561db8664eaf86a1e4c7b77d5fb5d5bff6681e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 8, 21, 55, 6, 3, 8, 10, 18, 25, 0, 10, 19, 13, 15, 17, 3, 3, 0, 0, 0, 5, 5, 14, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/NanoComp/h5utils.git,1999-11-21 20:24:59-05:00,e7daaee3dcd9a6fd2a2fcc67db83c50ce6467f63,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 2, 0, 0, 10, 0, 1, 5, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/puppetlabs/puppetlabs-xinetd,2010-06-24 15:49:51-07:00,cb1323333b8734f35b90cee20b6a8a420f3fd885,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/d-feet.git,2007-12-04 20:05:53-05:00,9264d63b0c7aca3e2c3253e172e05a01c2772f33,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 3, 0, 4, 5, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 5, 1, 0, 13, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/alecthomas/voluptuous,2010-07-15 19:55:52+10:00,465e102b51935ae7cc17150223522ae843907ef8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/iris-edu/libmseed,2012-02-28 21:25:12+00:00,9dcd8aeccefe71ee0ae8cca9eccea10aa7d29d8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/maxmind/geoip-api-perl.git,2002-11-21 06:15:12+00:00,fc2089cd8b49bb040d0287be0e3e73ed63e16e85,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/TooTallNate/ansi.js.git,2012-01-25 09:18:32-08:00,005293c2f24c9b194b22ff111ec0cf4b0503ad80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[41, 2, 2, 0, 0, 3, 17, 10, 2, 5, 5, 0, 0, 16, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/KJ7LNW/xnec2c.git,2008-02-25 17:38:42-08:00,7be8f3299cfecf403cf9d42db6548e0a090e2b26,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/thestk/stk,2009-03-24 22:41:14-04:00,6485746ee95310999a895fcbac123794d79b320d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ldx/python-iptables,2010-10-28 17:20:20+02:00,35053c97beea510acdb14198b9c3b8e38b2e68dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ThomasHabets/simple-tpm-pk11,2013-11-20 21:21:05+00:00,f187ea9501aa6b6fb642a57162e2071795b73019,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 22, 13, 5, 9, 7, 4, 0, 0, 0, 0, 1, 11, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,5,0 -https://github.com/theory/params-callbackrequest.git,2003-08-14 02:05:46+00:00,b09f6f951006e5b7b7d103441c4d81e47e2aa152,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 14, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/gpernot/wfrench.git,2018-09-07 09:10:28+00:00,afdcf27aba78d8dcc6b5fcce25b6a35647b2972c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/linux-can/can-utils.git,2015-09-04 11:16:17+02:00,0e3ff3b3157e456d4b6343f5d4b42ef692bce538,"[1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0 -https://gitlab.com/compiz/compiz-bcop.git,2007-03-05 17:40:18+00:00,040c0a7ebbdd057cc3d5a950053fd4f7fa5a1927,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 11, 7, 0, 19, 4, 5, 5, 3, 0, 0, 2, 4, 3, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,5,0 -https://github.com/jarun/buku.git,2015-11-02 01:23:18+05:30,ac9d15f8ba53a168c3be4444915f96ede496e06c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 71, 0, 0, 0, 2, 19, 4, 0, 0, 0, 1, 0, 1, 2, 0, 6, 3, 10, 39, 49, 6, 39, 10, 55, 44, 1]","[0, 5, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 0, 2, 2, 0, 1, 0]",1,2,3,0 -https://github.com/IndigoUnited/node-cross-spawn-async.git,2015-07-01 21:53:25+01:00,b3ffca525bdcd5bf2aaec4433795b7c3efd91cd2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 9, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0]",1,1,3,0 -https://github.com/LibreCat/Catmandu-SRU.git,2012-10-05 09:42:48+02:00,775630f1a6562d38748f277baf095697deee154b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/garrigue/labltk.git,2013-09-09 21:13:04+02:00,7e916f946c528e7e5e86ae69a0a2a396f8134a71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Feh/nocache,2012-02-05 20:48:34+01:00,0aa836ce640c57b7f42715ca033f0c4cbab4de49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/Icinga/icinga2,2012-03-28 13:24:49+02:00,e11994038dc0a70331da06b7e293838752f3cbaf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 7, 12, 43, 19, 25, 25, 21, 35, 17, 12, 45, 38, 48, 47, 58, 19, 9, 28, 15, 11, 2, 11, 12, 38, 50, 1]","[1, 0, 1, 0, 1, 0, 1, 1, 2, 1, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0]",1,2,1,0 -https://github.com/jopt-simple/jopt-simple.git,2011-04-07 16:27:14-05:00,0fa4b9559363774578653537d06137089e067ef8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 7, 0, 2, 0, 4, 0, 0, 1, 0, 8, 1, 0, 3, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/mrkkrp/zzz-to-char.git,2015-08-31 23:39:27+06:00,2737056ce316587c1564b8ca92b51f325807867a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mathiasbynens/jsesc,2013-06-05 11:59:59+02:00,8adba331b01c4d26ba95addfe2c19af5dfd9af91,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 17, 0, 22, 0, 0, 0, 41, 7, 2, 7, 0, 0, 0, 0, 0, 0, 0, 2, 0, 8, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/prometheus/snmp_exporter,2015-02-22 23:23:29+00:00,e56dc41bb0ba5182f0ffe89db33f60815ade8fd0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 2, 17, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/tdiary/tdiary-core,2002-02-27 02:12:31+00:00,1b8b693d8c6b8fa0c00de21033b5db2791fcc04a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 11, 8, 6, 8, 5, 4, 7, 2, 0, 4, 15, 4, 6, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/docker/libkv.git,2015-05-11 17:23:55-07:00,712d8e164370fac1e82572101c12034f9254d456,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 15, 14, 20, 18, 4, 3, 4, 0, 2, 5, 1, 4, 10, 3, 4, 1, 1, 9, 12, 9, 18, 4, 0, 0, 1, 0]","[2, 1, 2, 5, 7, 1, 1, 2, 0, 1, 2, 1, 2, 4, 2, 1, 0, 1, 3, 6, 3, 9, 2, 0, 0, 1, 0]",1,5,16,0 -https://github.com/RubyCrypto/rbnacl,2012-12-01 02:38:20-08:00,48f4a4a2e851fc8ebb4a89890ffc6b580e31c4c3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 12, 6, 0, 0, 50, 52, 52, 41, 16, 10, 39, 20, 0, 0, 0, 7, 2, 0, 0, 0, 0, 2, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 6, 1, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,5,0 -https://gitlab.gnome.org/GNOME/gitg.git,2008-06-24 00:04:20+02:00,11fc353c7beabe456723fe46ce0683c36b3bc070,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/opensdmx/rsdmx.git,2013-06-12 15:18:24+02:00,70096807ae47556f1531a09bd3d154d8f535a0b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/libidn/libidn2,2011-01-04 14:39:09+01:00,38f7c8da184d89b9dc318a72da53094cbfa1b82e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[72, 4, 0, 5, 0, 0, 0, 14, 41, 9, 8, 41, 18, 1, 0, 5, 0, 21, 0, 7, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/phpDocumentor/ReflectionCommon,2015-05-31 11:52:59+02:00,48ccd76e21889fa83b6b3f857b01e30f296b6779,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 4, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 -https://github.com/reduz/zytrax,2018-05-05 15:23:55-03:00,ea2498ec4b2842d654f5f6bcebf82b2cde7b3392,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nhorman/dropwatch,2009-03-03 09:24:46-05:00,bdfc66cb503c0f2076a41bd46184d4aafd751838,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 6, 12, 1, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/scravy/node-macaddress,2015-03-30 20:18:15+02:00,5f5275c3e3d58a5862fbfac036471c880165546f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/theyamo/CheeseCutter,2013-11-02 21:26:21+02:00,a9de00fb1286ffc5a7c68f0610b472e0e6348a13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 25, 1, 3, 26, 17, 4, 0, 4, 0, 0, 0, 5, 0, 0, 0, 4, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/ahcm/ffindex.git,2011-08-24 11:46:11+02:00,4825aca7c9f87279429261e35cfbdf20b7122908,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 1, 0, 0, 0, 0, 0, 7, 2, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/jaymzh/pius.git,2009-02-05 21:36:34+00:00,b74512b06d65b9667af4844262f33dff8a78a2b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 1, 0, 0, 4, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jrowen/rhandsontable.git,2015-03-04 20:31:12-06:00,a3c145bc09b60cab8507a1c4c4e86003cbeb15ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 9, 0, 0, 19, 36, 5, 1, 1, 0, 0, 0, 0, 0, 14, 19, 2, 0, 7, 0, 1, 21, 16, 12, 8, 6, 1]","[2, 0, 0, 0, 3, 6, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 0, 2, 1, 1, 0, 0, 0]",1,3,5,0 -https://github.com/mati75/openbox-menu.git,2013-11-01 18:17:55+01:00,916daef843e14fff0bbf9fee1f4975ac062c027b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/developit/preact.git,2015-09-10 22:43:47-04:00,e9f1a5645ef7d10ba05c601b94d70e4e4d0bd57f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 4, 0, 9, 8, 1, 4, 6, 4, 2, 16, 0, 5, 3, 0, 6, 1, 2, 16, 37, 17, 10, 52, 6, 18, 1]","[0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 6, 0, 2, 0]",1,2,8,0 -https://github.com/theseer/Autoload,2012-12-24 01:17:04+01:00,87084d6f47e365baf6b84ea0a470249e1818b39a,"[0, 0, 0, 0, 7, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 17, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://gitlab.com/rastersoft/devedeng,2014-08-06 01:04:14+02:00,b5f18da964c7078d5cfe1bab1c710e8c9c80db01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 9, 14, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 3, 17, 0, 0, 1, 1, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/flask-restful/flask-restful,2012-10-16 21:07:16-07:00,a4465e3e9cc4c30e7f53e0b908f734a42ed32da4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 5, 7, 2, 6, 7, 14, 2, 1, 5, 3, 1, 1, 0, 0, 0, 4, 8, 0, 6, 8, 9, 30, 0, 1]","[6, 0, 0, 1, 2, 1, 2, 1, 6, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 4, 0, 2, 1, 2, 3, 0, 0]",2,5,15,0 -https://github.com/ocaml/camlp4.git,1995-09-03 15:22:54+00:00,59cf50795583b4308a541ab85bd636ddfc9042ce,"[0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 4, 2, 8, 18, 1, 0, 22, 36, 26, 47, 0, 22, 0, 24, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 19, 9, 21, 18, 5, 14, 22, 30, 41, 17, 15, 29, 23, 21, 33, 4, 13, 19, 0, 0, 9, 2, 18, 23, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/unclechu/node-deep-extend.git,2011-08-18 18:59:20+02:00,209173ae6d899450fda5eb9ca5646694b99a1dfd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kilobyte/ndctl,2015-06-16 20:20:23-04:00,ff8e15231e0f98355f4becc80e1c21e2c39c45b3,"[2, 3, 7, 10, 11, 1, 5, 0, 0, 10, 18, 0, 1, 12, 4, 3, 2, 17, 12, 0, 6, 6, 0, 4, 1, 2, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 0, 2, 0, 5, 2, 0, 0, 4, 3, 0, 13, 1, 0, 0, 0, 12, 0, 0, 7, 1, 2, 1, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://github.com/Dragon2fly/xlrd3.git,2007-01-28 16:02:30+00:00,b9c962e12e5c704bec71c071864ad33beb113e7a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/micromatch/parse-glob,2015-02-07 16:16:25-05:00,4f7b0c9de00890771a8fb30a0ac5ed066da2eb6a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 0, 4, 5, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gdk-pixbuf,1997-11-24 22:37:52+00:00,9508b76bd2401b6b9e289b5c8ec9fc0e08909283,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 21, 17, 32, 16, 31, 19, 35, 33, 41, 22, 21, 46, 46, 40, 100, 38, 28, 35, 29, 18, 7, 24, 13, 14, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,46,0 -https://github.com/RoelofBerg/limereg.git,2014-08-03 21:52:04+02:00,83ed5ec5759cca0b5a0811c03d77e4a1c810ff70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lunarmodules/luaexpat,2011-06-01 22:14:25+01:00,1d90f50de803cbbf40bf0f0ef310bc106a79f270,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kodi-pvr/pvr.dvbviewer.git,2015-02-24 16:21:01+00:00,34205049a29a27655523edfb4f5e9f2e4d2c18e0,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 5, 2, 1, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 3, 1, 1, 0]","[0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",8,6,7,0 -https://github.com/jonschlinkert/extend-shallow,2014-10-06 04:36:58-04:00,13b67acca68028bddf985339aa4b6288e1ab4357,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Javanaise/mrboom-libretro,2017-01-21 14:48:30+01:00,090ae05d4adc2689622093a985405fd79f3b6cd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 35, 4, 16, 12, 4, 2, 1, 0, 1, 1, 28, 19, 4, 3, 0, 2, 2, 0, 3, 5, 3, 1, 7, 7, 5, 1]","[1, 4, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]",1,3,11,0 -https://github.com/ntop/nDPI.git,2015-04-19 07:21:14+02:00,7fa4694dadf869d1de2baa99383308a163902f8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 3, 11, 32, 4, 4, 3, 20, 12, 14, 11, 33, 6, 5, 2, 1, 5, 7, 5, 0, 0, 5, 2, 10, 11, 1]","[0, 0, 0, 0, 6, 2, 0, 0, 3, 2, 3, 3, 3, 1, 2, 0, 0, 1, 2, 2, 0, 0, 1, 0, 2, 2, 0]",0,7,24,0 -https://github.com/martinpitt/umockdev,2012-07-20 06:01:51+02:00,ffa9d25ff0d49219b4c2efe109e85ee6ea29fac2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/Bioconductor/IRanges.git,2019-04-19 12:19:05-07:00,98f3a42261f936b8afc078cc1444f215f98a3816,"[3, 3, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 2, 2, 2, 3, 2, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 1, 1, 0, 0, 0, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/jashkenas/backbone,2010-09-30 15:48:05-04:00,8a960b479859d343a6c734eb1a5817a2ff6c2b52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[52, 80, 52, 35, 14, 30, 13, 10, 14, 12, 10, 17, 3, 3, 4, 3, 2, 2, 20, 5, 0, 3, 0, 0, 8, 0, 0]","[8, 8, 8, 6, 2, 0, 1, 0, 1, 2, 2, 2, 0, 0, 2, 1, 0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 0]",1,6,30,0 -https://github.com/catchorg/Catch2.git,2010-11-09 23:24:00+00:00,d80260001bdc4811b5c63604041e3139fb80ecd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 1, 5, 0, 6, 1, 14, 17, 11, 11, 4, 11, 6, 2, 9, 7, 0, 21, 10, 9, 5, 9, 2, 10, 4, 0, 1]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/mariuz/flamerobin,2004-11-22 11:34:42+00:00,8153b493d66ee7aae55e7b34e0d7bddacf4999ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 1, 1, 2, 0, 6, 2, 1, 4, 13, 5, 0, 6, 18, 21, 21, 14, 3, 2, 2, 21, 3, 0, 2, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jnordberg/coffeeify.git,2015-11-20 22:39:33+01:00,ae21668b56151270f8aff4b9df0243cfa996dce9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/cubiq/iscroll,2010-12-03 20:20:11+01:00,20a64d1ba6bf1f9219043d8ef3541c0abbc93e5c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 4, 4, 2, 0, 1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/hoytech/vmtouch,2012-01-24 21:49:00-05:00,a302136106c0be1401aedd5040ce0cebec0c8bc8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 0, 11, 2, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/maxmind/geoipupdate,2013-10-16 07:54:45-07:00,850f8d389d884453187294b4d1a9bf5837bda6af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 47, 27, 5, 14, 13, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 5, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 10, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0]",3,3,3,0 -https://github.com/TheLocehiliosan/yadm,2016-09-06 22:18:34-05:00,d7a037e46945504a906f359a094f6b0b48bb2792,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/dyne/Tomb,2010-08-22 15:04:19+02:00,f8ed58afc3bd69e3e4285ca2db219d465f59b369,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 9, 15, 9, 47, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]",1,2,1,0 -https://github.com/jquery/jquery-mousewheel,2008-10-15 20:35:05-05:00,02de3f0becd8d4a4989c68b5113a6380a009e630,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/FasterXML/jackson-dataformat-yaml.git,2012-03-30 16:15:45-07:00,54fb6330f9cc5d0a1c156ec70916fdc45e68edf8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 1, 1, 4, 3, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 1, 3, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/sebastianbergmann/object-enumerator,2016-01-28 07:33:39+01:00,ba2412bf427b0ed536aded24be510a1216529af9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mongodb/motor,2013-01-11 13:34:44-08:00,e85a13c1492b6f9f86e67ba93ff9fb425988bdd5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 38, 47, 6, 24, 7, 29, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/psf/black.git,2018-03-14 12:55:32-07:00,e74117f172e29e8a980e2c9de929ad50d3769150,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 41, 30, 17, 19, 34, 5, 24, 18, 30, 13, 36, 33, 13, 3, 3, 1, 0, 2, 0, 0, 0, 20, 12, 0, 2, 1]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,52,0 -https://github.com/kevin1024/vcrpy,2012-05-30 20:52:26-10:00,431e385ded95a6f5c80e90ae20f78e927eb96f0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/guillaumechereau/goxel.git,2015-10-05 09:07:00+08:00,6fcfb08a1d6329fc4958682a608002c92e1fe127,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 32, 39, 11, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 43, 24, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/androguard/androguard,2011-11-04 09:43:27-04:00,00e8cdcedda79618c1678b5f4599d1e8e41ab736,"[6, 13, 3, 2, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 9, 10, 10, 6, 7, 4, 1, 0, 3, 4, 2, 4, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 2, 4, 3, 0, 1, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, 11, 10, 6, 1, 1, 3, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://gitlab.gnome.org/GNOME/almanah,2008-05-24 20:41:01+00:00,80a18bb6e14b0cf6ff109f5b464756a3622c109b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 0, 4, 4, 13, 0, 7, 1, 2, 1, 0, 2, 0, 2, 0, 1, 1, 2, 1, 5, 5, 7, 3, 0, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 -https://github.com/gosa-project/gosa-core,2005-05-12 06:44:40+00:00,e299f0ca47a924516f2afbe4e922f2418b75315c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 208, 119, 41, 111, 76, 99, 22, 21, 22, 47, 45, 39, 77, 36, 62, 45, 44, 39, 34, 52, 75, 59, 73, 101, 96, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0 -https://github.com/ekenberg/quotatool,2012-02-18 13:03:42+00:00,56e93c9c1db7d006de45fecc4d8da397074a7743,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/spyder-ide/qtawesome,2015-03-04 10:51:56-05:00,04bf55003043a79c3426631a381734f174cff306,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 23, 10, 4, 4, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/parklab/nozzle.git,2013-01-02 09:41:50-08:00,33893468ec28a3725d9944307e72b8c69c05a5f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 6, 0, 3, 2, 0, 0, 0, 1, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/opencog/link-grammar.git,2005-02-15 13:55:43+00:00,3fad47e76bf79595a23563765bb7e22b76214ae3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 1, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/redis-store/redis-actionpack,2011-11-17 15:24:24+01:00,06b2969585eec2ae2fee0b0853b4b07ade33b3e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/CafeOBJ/cafeobj,2012-10-20 11:31:46+09:00,2a775ab17e357e22e2c39694567e47d62d9e301e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/git-ftp/git-ftp,2010-02-06 21:58:44+01:00,1ebe9f2bae4246203ca5cafa0a2b57b31886634c,"[0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 7, 0, 0, 0, 0, 12, 8, 18, 11, 1, 2, 0, 0, 7, 35, 2, 2, 1, 9, 1, 2, 2, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,0 -https://github.com/phpseclib/phpseclib.git,2012-06-10 03:27:23-06:00,592652cdb55251e88119f47c0c66b69b5abbca3a,"[1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 6, 3, 2, 0, 0, 1, 5, 3, 2, 0, 4, 0, 1, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[9, 3, 3, 3, 0, 0, 4, 2, 2, 2, 7, 3, 4, 1, 4, 6, 5, 18, 5, 5, 2, 16, 2, 0, 0, 0, 1]","[2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 4, 1, 0, 0, 0, 0]",3,2,4,1 -https://github.com/mathiasbynens/unicode-property-aliases-ecmascript,2017-04-15 10:37:46+02:00,e6ff1b29ca86bf2d13068d98761325795bf6915d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/topepo/caret.git,2014-05-16 11:52:30-04:00,9399a05ac5df8797e1803a749bf360282fc0ceb4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 3, 0, 0, 0, 4, 7, 12, 12, 12, 26, 6, 14, 3, 0, 9, 0, 3, 45, 8, 2, 0, 4, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0]",1,3,4,0 -https://github.com/Yelp/elastalert.git,2015-02-19 15:03:11-08:00,249e48bac66f1f6948819d8bf6320aab3fcf71a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 13, 22, 19, 11, 11, 8, 17, 4, 3, 10, 24, 3, 23, 41, 18, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 5, 8, 4, 5, 3, 2, 5, 2, 0, 2, 6, 0, 6, 15, 5, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,9,18,0 -https://github.com/worldforge/mercator,2003-01-14 17:38:05+00:00,7bf24d23ce43813253964b0761cdf3391eedacac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 4, 1, 2, 3, 0, 0, 0, 2, 4, 1, 0, 3, 2, 0, 0, 1, 2, 1, 8, 2, 14, 3, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/flareteam/flare-game,2011-06-03 22:02:11-05:00,2866148a6da4e8d9c309423a843de005a27847fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 28, 22, 17, 27, 9, 15, 13, 5, 0, 0, 3, 0, 0, 1, 2, 1, 0, 1, 0, 10, 24, 11, 8, 47, 28, 1]","[10, 13, 6, 5, 9, 4, 11, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 6, 2, 21, 10, 1]",1,10,16,0 -https://github.com/intel/bmap-tools,2012-11-28 17:38:33+02:00,dd39da9f80a1c7a48f6b9300da46634771adac87,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 24, 43, 32, 65, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 2, 41, 9, 0, 8, 7, 9, 0, 0, 0, 5, 10, 0, 6, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0 -https://github.com/suds-community/suds.git,2014-01-16 12:11:33+01:00,670f3c50b0eceee10c8e7573f8a94b1964ed66fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 44, 12, 29, 28, 30, 34, 1, 0, 5, 0, 0, 0, 0, 20, 2, 16, 21, 23, 9, 1, 18, 4, 23, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/ropensci/ritis.git,2011-11-01 23:53:20-05:00,21fe5e6128ed8d94086a99cc3adc79d3d439e2ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/geopython/pycsw.git,2010-12-02 22:31:14+00:00,505ed69283389370ce483a6d53ffd0a62ca37adf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 2, 2, 3, 3, 3, 8, 12, 13, 26, 4, 3, 9, 14, 30, 36, 10, 19, 4, 8, 4, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/treasure-data/serverengine.git,2013-06-01 17:02:53-07:00,1a67016a80ebec92f81f35a5ca3c1fcea1366fa5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 7, 2, 5, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 11, 7, 3, 3, 0, 7, 6, 2, 0, 1, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 -https://github.com/winchen/engauge_debian,2013-05-12 13:58:48+02:00,b0af36a071782e44d9ec6dcac09560562fa4a828,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 0, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/qix-/node-is-arrayish,2015-08-25 11:07:39-06:00,0a6d011135dd6242ef91eb06e3e2260d50ed3112,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0 -https://github.com/deeptools/deeptools_intervals,2016-03-09 18:04:03+01:00,e7b246b65638dba58c8c533430348cc82f685daf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 13, 1, 10, 10, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 17, 0, 11, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/fabiangreffrath/crispy-doom.git,2005-07-23 16:54:24+00:00,bbe2bfe4df3709bee31ef3eeac45fd3be7f72671,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 10, 1, 1, 10, 30, 11, 17, 18, 22, 28, 23, 4, 4, 0, 1, 0, 0, 0, 0, 0, 5, 22, 38, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/babelouest/yder,2020-03-12 20:41:13-04:00,e25ba4c119c3bbdcb35700e6689fd8d643478b4c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/CoderPuppy/os-browserify,2012-12-21 17:55:47-08:00,8228d3210ae642695ab7ad4ad86adbdae50f03d2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/e2tools/e2tools,2007-12-14 16:08:25+01:00,6749719af90afe9544db14bdd8e2742926f1439c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/irstlm-team/irstlm.git,2015-07-17 16:13:05+02:00,10fc63648584c4f94c4cb29fb0aed8540e736dc1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 7, 15, 0, 6, 0, 0, 24, 13, 16, 4, 20, 1, 8, 10, 5, 38, 5, 1, 13, 12, 0, 2, 1, 0, 2, 1]","[0, 0, 1, 0, 2, 0, 0, 10, 3, 3, 0, 0, 0, 0, 0, 0, 9, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://codeberg.org/grisha/gumbo-parser.git,2013-08-09 11:25:49-07:00,101726c50e172e45be6002c51b85e45f27f0c2c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 22, 7, 0, 14, 6, 7, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 9, 1, 0, 5, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,18,0 -https://github.com/cleishm/libcypher-parser,2016-03-29 18:49:38-07:00,dc452e8e0d765a5c68a4a1b37eeaa55a2295f721,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 4, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/magit/magit-popup.git,2017-11-20 19:18:00+01:00,cacc3c8191e5545e9c798a990b8dfe4f875a88ee,"[0, 0, 1, 0, 2, 1, 1, 0, 0, 2, 0, 1, 0, 1, 0, 1, 4, 0, 0, 8, 1, 10, 0, 0, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 2, 3, 1, 0, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,0 -https://github.com/ocaml-community/zed.git,2012-10-16 23:57:06+02:00,eb2e05d3f886962fd54a77783725346e3b1ac789,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Bioconductor/BiocParallel,2012-11-15 00:51:06+00:00,8bc770675e658778ba4fb0f714ec07b62d472e4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/rockdaboot/libpsl.git,2014-03-20 08:38:32-07:00,a06ac3334358a28a887f96452830efc953b75342,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 18, 1, 19, 6, 3, 0, 3, 0, 10, 16, 42, 27, 14, 11, 10, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 3, 9, 0, 2, 2, 2, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]",0,4,4,0 -https://github.com/s3tools/s3cmd,2007-01-19 03:38:04+00:00,f8f436e569a7b7741809273e689b2f6c4fb48d1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 13, 0, 4, 5, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/amplab/snap.git,2012-07-14 12:06:01-07:00,e11dd78a7c84b44375509e87c0859d0d4321d202,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 4, 0, 22, 32, 0, 4, 4, 2, 6, 9, 8, 7, 1, 3, 1, 0, 0, 0, 10, 2, 12, 3, 0, 0, 0]","[0, 0, 0, 0, 4, 9, 0, 1, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0]",1,3,7,0 -https://gitlab.gnome.org/GNOME/json-glib.git,2007-09-20 20:35:49+01:00,c5bfb22f964b8f1feecdc8fb29d8a74b36861d32,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 28, 10, 20, 0, 6, 0, 18, 17, 0, 0, 0, 0, 9, 0, 0, 0, 0, 7, 0, 0, 0, 0, 42, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/Castaglia/proftpd-mod_counter,2011-10-20 10:03:41-07:00,7a21e9ce85c04fb4a80f838abdd0f48da2d6eab1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/r-lib/processx.git,2016-08-19 09:04:52+01:00,e7d053a96d145a36244c08b74fa0029201d19067,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 0, 16, 11, 1, 2, 1, 0, 0, 0, 0, 0, 0, 21, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/zealdocs/zeal,2013-01-20 01:49:25+00:00,422bcfe23f9a4c097e9ab490cc152570d2c7a6b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 8, 4, 3, 0, 0, 4, 12, 9, 9, 0, 0, 3, 3, 0, 3, 1, 2, 2, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/lessthanoptimal/ejml,2010-04-07 11:12:20+00:00,769224e5c3c4e9bb742ed166fb614fbff4df19ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 3, 0, 7, 5, 7, 6, 5, 7, 6, 3, 0, 2, 0, 0, 1, 4, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/endrazine/wcc.git,2016-08-08 23:54:37-07:00,dbb0ff186d2a2af7930f5bab7b8dfb44f706f90f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://gitlab.gnome.org/GNOME/gnome-dictionary,2005-12-16 17:27:58+00:00,84bec038841753c5eb7a0a3cb2fccb0db5401759,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 8, 9, 5, 12, 7, 3, 6, 1, 7, 1, 2, 1, 1, 1, 2, 0, 2, 3, 0, 2, 0, 0, 0, 0, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 -https://github.com/editorconfig/editorconfig-core-c.git,2011-10-22 09:49:51-07:00,45142061d9afb09a66c300f72c6daee7a22f3a27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 40, 23, 19, 13, 42, 30, 6, 0, 18, 10, 3, 1, 17, 5, 7, 1, 7, 0, 4, 2, 0, 7, 0, 1, 0, 0]","[2, 3, 0, 0, 1, 2, 1, 0, 0, 2, 1, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/redis/hiredis-rb.git,2010-09-21 20:36:21+02:00,6ea8cac4fcfaac2da428e034b410fff2a037129e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 0, 0, 6, 42, 0, 0, 0, 2, 0, 0, 0, 0, 11, 1, 24, 0, 15, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/baldurk/renderdoc.git,2014-02-27 16:02:07+00:00,787c80c1fe63375a00f67a8106439f4308fa367d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 8, 0, 5, 37, 6, 35, 28, 17, 6, 20, 6, 21, 22, 33, 26, 41, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,4,0 -https://github.com/ejeschke/ginga.git,2017-07-13 13:57:08-04:00,d5378a1ce16a2adc41183bf36d5d8ea66233663b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 10, 12, 25, 5, 5, 4, 7, 5, 9, 4, 3, 57, 12, 17, 4, 4, 11, 6, 10, 4, 25, 5, 2, 4, 1]","[0, 1, 3, 0, 5, 0, 1, 0, 1, 0, 0, 1, 1, 4, 3, 3, 0, 1, 3, 1, 2, 0, 4, 0, 0, 0, 0]",1,1,3,0 -https://github.com/puppetlabs/puppetlabs-firewall,2011-05-09 08:55:19-07:00,bff53bdbc03ad416e3f23d7ad943ebdffb3bd999,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 21, 7, 3, 1, 6, 0, 0, 1, 0, 12, 1, 1, 0, 6, 0, 0, 0, 5, 6, 12, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 2, 3, 6, 0, 0]",1,3,4,0 -https://github.com/kilobyte/compsize,2017-09-04 16:52:51+02:00,4854f0cc171b404aa2c5bc1a0806a8784c53690d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[69, 2, 2, 0, 0, 4, 0, 0, 0, 0, 1, 0, 2, 0, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,2,0 -https://github.com/google/pybadges.git,2018-06-27 13:29:57-07:00,2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/patrys/httmock,2013-03-19 16:35:34-07:00,a24f76f0bf963bc9a6d4d6c1117c5b771dc3478d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 4, 3, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]",1,1,5,0 -https://github.com/FFTW/fftw3.git,2002-06-02 14:42:32-04:00,9a85d188479075e3f6d1de0d33c35008578e5b97,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 53, 38, 2, 19, 30, 42, 70, 68, 35, 36, 29, 43, 24, 36, 66, 18, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/r-lib/httr.git,2012-03-28 19:13:32-05:00,e6e39d0f26de7997831c851de9718dc81b714bcf,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 0, 0, 0, 14, 26, 0, 0, 0, 0, 2, 4, 0, 0, 11, 8, 8, 0, 0, 2, 0, 0, 1, 4, 0, 3, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/bear/parsedatetime,2012-09-11 23:44:45-07:00,536d16e4b6ec69713e6c3e80282a8a30026b943f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0, 0, 0, 0, 4, 0, 2, 2, 0, 0, 0, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 1, 0, 0]",1,1,5,0 -https://invent.kde.org/plasma/drkonqi.git,2014-03-31 01:31:46+02:00,da27b276789a213775f1d1fdba20e5ca91430af2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 69, 31, 42, 31, 107, 62, 39, 67, 82, 61, 130, 74, 62, 57, 38, 32, 37, 61, 64, 48, 128, 32, 16, 49, 74, 1]","[1, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 1, 0, 0, 1, 13, 4, 1, 3, 3, 1, 7, 1, 0, 1, 3, 0]",1,10,48,0 -https://github.com/yob/pdf-reader,2007-07-28 04:07:52+00:00,525ff7dcad98fbd1d4b3f1e0fad7d0819e466843,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 3, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/micheleg/dash-to-dock.git,2012-12-04 22:53:13+00:00,bf392734c5bce8e1ff39ace49cd955b5b5ad8454,"[10, 10, 11, 0, 7, 18, 21, 26, 14, 10, 17, 5, 3, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 9, 1, 4, 9, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,5,0 -https://github.com/kaminari/kaminari,2011-02-05 22:32:10+09:00,4db3397b4d962076bca6dd047ed15627e1f9f67d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[86, 62, 42, 6, 0, 0, 0, 0, 0, 4, 38, 21, 13, 1, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,22,0 -https://github.com/lxqt/lxqt-policykit.git,2016-06-25 22:58:42+02:00,29e3b8988a8cfb3075726fb85e6a6bda964cfe16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/p12tic/cppreference-doc-debian,2012-06-21 18:38:46+03:00,ceb829eb9ceaa12ad8a8222024bf5cd228eae193,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/highlightjs/highlight.js,2011-05-16 21:53:37-07:00,a0fa0063d9ff0633ae44b6fa53626982bc923f21,"[0, 0, 3, 1, 0, 0, 0, 0, 1, 12, 16, 9, 1, 1, 6, 0, 26, 0, 0, 0, 0, 0, 40, 34, 2, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 1]","[11, 0, 1, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 6, 5, 5, 0, 0, 0, 0, 0, 1, 1, 1]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,1,3 -https://github.com/storaged-project/libblockdev,2014-05-20 18:48:14+02:00,621fa65c3599963f0ea5fad8e12201758e7c532e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 18, 27, 20, 34, 20, 19, 6, 9, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 5, 0, 1, 10, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/cocagne/pysrp,2010-12-01 09:44:20-05:00,f649a03c1be597a4da12ee4d503043b153fe084b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/spyder-ide/qtpy,2015-02-28 13:26:05+01:00,5a7e8ab3a5a0c147b7d96865bdcdcec386410673,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sabnzbd/sabyenc.git,2016-09-19 10:04:11+02:00,24da3863c7e1f553c473d7f83511f7904246c329,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/gsakkis/pytrie,2016-12-05 01:36:11+02:00,2e7cbcc95933da2220636dd52b9fd644e7f411cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/daqana/dqrng.git,2018-04-18 18:43:40+02:00,fe72301878616d33480e84f5f27e95954afc5293,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 12, 7, 0, 0, 6, 10, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 10, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://gitlab.dune-project.org/core/dune-common,2003-10-30 17:03:38+00:00,59f6e9106e69c012d6bf4a004f43bf09d4349887,"[9, 10, 0, 1, 8, 7, 0, 2, 3, 3, 8, 4, 6, 11, 0, 9, 15, 2, 1, 13, 4, 6, 4, 13, 19, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 11, 9, 7, 16, 2, 5, 0, 0, 0, 13, 8, 3, 16, 10, 0, 0, 27, 12, 15, 9, 13, 0, 0, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/Unidata/netcdf-cxx4.git,2013-11-22 14:39:15-07:00,08fea74fbd3188f47e9afca3cd6c8129f48fdb45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 1, 22, 5, 1, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,1 -https://github.com/mattp-/Plack-Middleware-CSRFBlock,2010-08-07 02:22:55+09:00,730602f795629880e86a03fa3b4dd6edb1405c8d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/libimobiledevice/libplist.git,2008-07-30 23:50:39-07:00,47d60e2b9f8ddec18107cee21e046cd4df50fdef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 20, 14, 24, 30, 0, 1, 1, 1, 3, 1, 0, 10, 3, 0, 1, 3, 8, 3, 10, 0, 0, 6, 7, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,5,0 -https://github.com/kiwix/libkiwix.git,2017-01-02 06:57:01-08:00,12b6a50dbaa506d09fd459d8f290d7a7468e9715,"[4, 0, 0, 0, 0, 2, 0, 0, 3, 1, 0, 0, 5, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 2]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 3, 6, 8, 2, 2, 0, 3, 0, 1, 1, 5, 5, 17, 1, 1, 3, 0, 0, 2, 4, 0, 0, 4, 0, 2, 1]","[2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 5, 1, 0, 2, 0, 0, 1, 2, 0, 0, 2, 0, 1, 0]",6,0,3,2 -https://github.com/sebastinas/yafc.git,2000-09-14 14:05:22+00:00,a84420664457ac7e240b47085bb9370604b37221,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 4, 14, 32, 20, 0, 2, 1, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/premailer/premailer,2009-11-27 14:38:19-08:00,9c3c44407de4225e276bd12900a9356851f562e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 16, 4, 2, 1, 4, 0, 0, 0, 0, 0, 0, 7, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/SebWouters/CheMPS2,2013-12-11 16:34:46+01:00,f438ab9cfa955b2652a3de2935e26eefd1e59fcc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jshttp/content-disposition.git,2014-09-18 21:59:07-07:00,5ab443630137b8adfa5b030d9375d00ae5fcf286,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/resurrecting-open-source-projects/stress,2021-09-18 18:35:36-03:00,3b075d8c26d9a99dc90e7e2a31595f79c1a87f0e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/linuxdeepin/deepin-notifications,2013-01-15 14:48:29+08:00,14f0ed9a3a7fceff12aef2ad8c78beba38ba4385,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/linuxhw/hw-probe,2015-11-29 20:34:57+03:00,942d3c4a9efb3018708b0cf57f07fb283d3b4e45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/carlhuda/bundler,1998-01-16 12:13:05+00:00,3db12e8b236ac8f88db8eb4690d10e4a3b8dbcd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://salsa.debian.org/debian/github-backup,2012-01-26 00:02:23-04:00,ba6fea838a31433a406d745de103f923aa5f3b27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 0, 2, 1, 2, 0, 6, 5, 1, 0, 0, 0, 4, 1, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/glv2/bruteforce-luks,2014-06-19 21:16:54+02:00,871ea2caa89c489ddcbc01d5619f08f59ebca7ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ua-parser/uap-core.git,2014-02-17 16:00:07+01:00,ec27337e6f8417e8db9b0c88f84ecf7c81e5466b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://invent.kde.org/pim/akonadi-mime,2016-08-05 02:53:51+02:00,af762b9230dda02adc2995f807718f3b2687eeea,"[3, 4, 0, 0, 0, 2, 4, 2, 2, 4, 0, 1, 3, 2, 0, 2, 0, 0, 2, 0, 7, 1, 1, 0, 2, 0, 1]","[1, 3, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 0, 1, 2, 0, 0, 1, 1, 2, 0, 2, 2, 1, 2, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/mati75/volumeicon-debian.git,2011-09-17 15:05:29-04:00,521fa2d1502d30e3ec0f84dc9af61350a814afba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/jelmer/python-fastimport,2008-02-14 16:28:42+10:00,99e4fa2de15cecf1d27e8dcff850c7d6d641578a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 11, 1, 8, 10, 4, 1, 0, 0, 0, 0, 2, 4, 2, 0, 9, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,6,0 -https://github.com/flameshot-org/flameshot.git,2017-05-10 22:02:21+02:00,294ee7c5a2881d2944dbf55ebf9a4c03b653c029,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 31, 18, 12, 10, 13, 0, 5, 10, 2, 16, 19, 5, 9, 5, 0, 0, 0, 1, 10, 1, 1, 0, 4, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0]",2,3,3,0 -https://gitlab.dune-project.org/core/dune-geometry,2011-10-04 09:31:17+00:00,b5dd922abbdb4ab0ee477093be8c6bc60a5e9d24,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 2, 1, 6, 9, 2, 1, 0, 0, 0, 0, 0, 1, 0, 4, 2, 2, 2, 4, 0, 0, 0, 2, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 -https://github.com/apache/activemq,2005-12-12 17:53:59+00:00,40a7d3b6ac35d2ecb34e85fc3403d2e48e33874e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 72, 99, 77, 48, 12, 28, 34, 36, 75, 58, 122, 108, 63, 55, 62, 35, 32, 31, 45, 38, 11, 11, 17, 43, 54, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,15,0 -https://github.com/vifm/vifm.git,2009-01-21 16:30:11-07:00,6317a2a89b20fb102475fb049e12b3b450d29a27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/Mottie/tablesorter.git,2011-06-22 18:19:27-05:00,466b3a5860771d7e71089924ce62e68ab79e1cb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 3, 2, 1, 0, 5, 0, 0, 4, 3, 2, 0, 2, 3, 1, 1, 1, 0, 0, 0, 2, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git,2011-03-18 16:16:49+00:00,c78e1210a07e83ba0fc2ad1c474f226ecad211e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ForensicArtifacts/artifacts.git,2017-05-13 20:10:10+02:00,cdae777f69398b3610ad62d9de3c2eabb5861fd6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[311, 7, 0, 0, 0, 3, 1, 2, 3, 0, 2, 1, 4, 1, 1, 0, 1, 0, 1, 0, 0, 3, 0, 1, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,41,0 -https://github.com/brummer10/gxtuner,2016-07-26 07:13:59+02:00,7ea73de958ba02475defd79be0b4802d3d25c920,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/glyph/Automat,2014-08-21 02:38:59-07:00,a3aa905d647c1fceea2e9697d3e0c1f68ec2fc50,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 20, 11, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 17, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,1,0 -https://github.com/captin411/ofxclient,2012-08-21 23:03:10-07:00,ea9fdd8baf64c06fba9390b2bf64c23f2754d226,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/gerbv/gerbv.git,2001-08-30 20:26:42+00:00,a5bdb870a25cdec127ef7c31321e5bab3352bafa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 0, 0, 0, 1, 2, 9, 14, 9, 4, 4, 6, 18, 14, 2, 0, 12, 1, 0, 0, 2, 4, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/broadinstitute/gatk-native-bindings,2016-05-03 15:43:54-04:00,45cb71b9cf40637e302c9df073ff989458f4245b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/uriparser/uriparser.git,2018-01-07 04:02:23+01:00,f0e3992d4de003f6c8b8ffcdfc615abb52bcef16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,1,1,0 -https://github.com/emcrisostomo/fswatch.git,2009-06-25 17:34:41-04:00,e7e5f4a51840a6acda61e531bac36c98ee9eb19f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/intridea/omniauth-openid,2010-04-09 21:30:16-04:00,c625919b74f91930ad4bc7bd95a3f80ecdda8103,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 2, 0, 2, 8, 0, 1, 1, 0, 2, 0, 0, 4, 2, 0, 0, 0, 0, 0, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,4,0 -https://git.samba.org/nss_wrapper.git,2013-05-15 14:13:50+02:00,bf21dbfc808c5e54c6b11c3525d07149f57d6cf2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 3, 9, 0, 4, 33, 3, 9, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/pgul/binkd,2001-01-10 11:34:57+00:00,45986b77161a366ea3d258a01dad442d3d21d81e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 3, 0, 0, 1, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/voxpupuli/hiera-eyaml,2013-06-25 12:54:10-07:00,ed535fe2b83972545c037045c304f7a672954d0f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 23, 14, 4, 13, 12, 0, 0, 6, 1, 13, 4, 0, 0, 0, 1, 0, 1, 38, 13, 21, 2, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 11, 2, 4, 1, 0, 0, 0]",2,6,11,0 -https://github.com/TACC/Lmod,2011-02-15 17:34:37-06:00,26f005e487ea4535134d228314479f2c27858541,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 11, 8, 0, 11, 4, 3, 7, 1, 3, 0, 1, 0, 4, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/brianmario/yajl-ruby,2009-04-20 11:18:31-07:00,9f6ec766d3f857138388ee6d512f02ba2d41718b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 -https://github.com/lxqt/lxqt-openssh-askpass.git,2012-06-21 11:24:56+02:00,da388021307340ac3ad9ce1362407280a7a1a44c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/Iotic-Labs/py-ubjson,2015-08-16 12:21:14+01:00,53b9f1f942b4a88be80043bd94a0f6399e0200de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 4, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 1, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/mde/utilities.git,2012-07-28 19:26:27-07:00,c8bca758db8b84546ebd4b1c95ef7e59dc98932c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 19, 13, 6, 7, 7, 0, 1, 3, 7, 12, 2, 0, 0, 7, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/worldforge/libwfut,2005-11-27 16:36:00+00:00,35752d7962ed1ee2146d7ab96bbe677fe85c4467,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/thlorenz/convert-source-map,2013-03-13 05:22:33-07:00,c0d4ff0f395d7d0adf9a2de76a0ed37aa1f7280a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/markov2/perl5-XML-Compile-WSDL11,2018-05-11 00:43:36+02:00,ae6493b83472e25d3d6a0431f63a353ea6f71eed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/shellinabox/shellinabox,2008-12-29 23:57:07+00:00,aab20f5ed00104c8bc9d12d362085634ff64dead,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 7, 5, 7, 2, 2, 4, 8, 4, 0, 2, 13, 14, 7, 3, 2, 2, 1, 0, 0, 4, 0, 0, 0, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/SELinuxProject/setools.git,2014-07-08 14:28:55-04:00,39505d0295b3fa533fb364aa83a338d762609e0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 3, 5, 0, 0, 3, 0, 0, 0, 2, 1, 4, 6, 0, 8, 50, 16, 2, 2, 16, 0, 6, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/lxqt/qps.git,2014-05-13 23:50:52+09:00,ad2c4ab44143c3628a827d767ff1961780c25ad9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/suyusung/arm.git,2016-08-20 21:12:31+08:00,7b4e5c66578e3803b10606b0f8223948da0c577a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/SIPp/sipp.git,2006-06-05 20:07:17+00:00,3d805744e39370c7a31c1d04e815551810da2dba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 1, 1, 3, 2, 0, 0, 0, 4, 3, 2, 3, 2, 5, 3, 7, 1, 3, 6, 6, 22, 1, 2, 14, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/gruns/icecream.git,2018-02-13 11:09:23-08:00,1e3faff72720c8dd4f9c368173b8e3b704e7ccda,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 10, 3, 6, 7, 3, 4, 4, 2, 1, 0, 0, 1, 2, 1, 0, 2, 5, 6, 2, 2, 5, 1, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 -https://github.com/NVIDIA/egl-wayland.git,2017-01-17 21:21:01-08:00,743d702fac0feb02d52ff34deadecb32284f18ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/DarwinAwardWinner/ido-completing-read-plus.git,2011-09-04 22:00:34-07:00,2457964bd535ad3d72914b6268d4ca5d1b4a632a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 6, 7, 4, 10, 8, 0, 0, 0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/armed/gulp-flatten,2014-01-11 04:46:46-08:00,f86b9c4d95a8d6356f8750a5aa7614950f6698b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/dragotin/kraft.git,2006-07-18 07:32:20+00:00,52e295c10dbcd00a452246463c80b8adc4c8fe6e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tecnickcom/TCPDF,2009-03-24 19:37:18+01:00,342de0004d1327912956b4adb7eb8b8eb63d2a36,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 7, 8, 5, 1, 2, 4, 1, 1, 1, 3, 0, 0, 2, 2, 2, 1, 1, 1, 1, 6, 4, 5, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/OlafvdSpek/ctemplate.git,2007-03-21 23:06:14+00:00,de4182841733f4e848e6fadddc6f447f5057db8e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/bluca/stlink,2011-01-14 02:54:52-06:00,27b50a3df817492716d21cf8ec91bcf074e2a479,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 1, 0, 1, 2, 0, 0, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 1]",1,1,5,0 -https://github.com/AccelerationNet/cl-csv,2011-08-11 15:19:12-04:00,85bab2f386ad747b619e4e481ae7b4e434551755,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 6, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 5, 0, 0, 0, 6, 0, 0, 6, 0, 2, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 1, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,4,0 -https://github.com/jonschlinkert/window-size,2014-02-14 22:42:03-05:00,0899b3e71b0740a024bd9d8bb702c91f8af7dcc8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mmottl/ocaml-makefile.git,2006-05-01 18:28:02-04:00,9a26a6deb9eb4391e87a12224148d242b7705725,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/rstudio/shiny.git,2012-06-20 11:49:15-07:00,75ee6791b172f10040f2d031683229bf81916b9e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 9, 3, 28, 119, 83, 7, 9, 15, 5, 16, 3, 5, 6, 0, 1, 0, 0, 23, 10, 6, 10, 13, 6, 0, 11, 1]","[0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0]",1,3,5,0 -https://salsa.debian.org/iso-codes-team/iso-codes,2004-02-22 18:58:06+00:00,3330c3350522315d1ee77a616a1b771746363408,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 5, 9, 29, 31, 10, 30, 4, 11, 5, 2, 23, 11, 5, 6, 19, 8, 5, 1, 2, 4, 17, 10, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,15,0 -https://github.com/voxpupuli/librarian-puppet.git,2012-05-30 20:49:47+10:00,51a2e0ed67aed3fb443ac6407d6fc690d91a7630,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 16, 5, 4, 0, 0, 9, 0, 1, 14, 5, 4, 6, 1, 0, 0, 1, 1, 8, 1, 1, 1, 0, 0, 9, 0, 1]","[0, 3, 2, 0, 0, 0, 0, 0, 0, 3, 1, 0, 3, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 1, 0, 1]",1,5,12,0 -https://github.com/BioPP/bpp-popgen,2022-12-05 10:05:00+01:00,c8328c02c044e919756b4bf96d3266c5d8bba6b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/digint/btrbk-packaging,2015-07-20 15:46:37+02:00,0cd777b99020b32b94220777a38b5d961f192fcd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/honza/vim-snippets.git,2011-06-20 19:49:54-03:00,a96f674eed23e4e25c065a0935b2fe4f104d47ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 3, 7, 1, 4, 0, 14, 3, 4, 1, 5, 2, 2, 1, 0, 5, 8, 5, 2, 2, 0, 0, 9, 5, 4, 0, 1]","[5, 2, 1, 0, 2, 0, 6, 1, 2, 0, 2, 1, 1, 0, 0, 1, 2, 3, 1, 1, 0, 0, 3, 3, 2, 0, 0]",2,4,28,0 -https://github.com/ncarrier/discus.git,2019-12-23 08:39:46+01:00,44f48b1a0e6e1e526becaa3c5289a5b702e34b78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 19, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/LanguageMachines/timbl.git,2015-11-23 14:48:35+01:00,da8ea56b901aa4ffb97ab502674fbace64f716fd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/andreas-kupries/critcl,2011-09-22 22:37:51-07:00,fcd6493f014dba7b8ac1c6d51189499be3db811b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[20, 7, 2, 6, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 13, 0, 0, 0, 3, 1, 5, 2, 0]","[3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",1,1,0,1 -https://github.com/Dav1dde/glad.git,2013-08-04 14:16:17+02:00,baf22f5efa99a98762b9ac11bfac8b7b883bf57d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/savonet/ocaml-flac.git,2010-05-26 16:18:47+00:00,489ba02e80e0484a77e043f4b04726f25bb08634,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 9, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/compiz/simple-ccsm.git,2007-09-26 17:50:46+02:00,44485e2da13831c48d07a019a1d36c5abd2e6f0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 10, 0, 3, 2, 0, 0, 0, 0, 1, 0, 0, 5, 3, 0, 5, 0, 1, 0, 5, 2, 2, 0, 5, 0, 1, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,2,0 -https://github.com/originell/jpype.git,2012-07-31 11:41:07+02:00,19eb92edc0ff70510a3078cd832c77ce996e6ba4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/tatsuhiro-t/wslay,2011-12-21 01:11:45+09:00,2d004e3fe7bcc6de66e913da0194558145488467,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/meskarune/i3lock-fancy,2016-03-27 11:12:21-04:00,628551a1c49501fd77a9f22b8b23810fba4987c8,"[0, 0, 3, 0, 0, 0, 0, 5, 14, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[26, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,1,2 -https://github.com/operatornormal/classified-ads,2014-12-26 22:35:52+02:00,0506b56bab7e6b98c50ac769b5530a4d1d8a7bd9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 9, 3, 6, 3, 5, 0, 4, 4, 9, 9, 9, 6, 0, 5, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/Ozzyboshi/guake-indicator,2014-05-04 13:10:02+02:00,3f701fc55e3d28927b2ed50e39f2e6e33c5a396a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/potatosalad/erlang-jose.git,2015-07-27 16:40:21-06:00,a7746ecd4950f85a393136e449a91dac62b5c429,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 17, 8, 11, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 0, 2, 8, 0]","[0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 -https://github.com/porridge/ydpdict,2005-10-01 09:40:45+00:00,762ffed3d6acd33e85337dbdd1dc5372dd2d2fbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/tidyverse/hms,2016-03-31 12:26:47+02:00,f97b4c95b67965419bf540d736af169a8fae9d27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[54, 5, 12, 1, 17, 0, 0, 17, 0, 2, 7, 8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0]","[20, 2, 4, 0, 4, 0, 0, 4, 0, 0, 3, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,3,3,0 -https://github.com/sacerdot/ocaml-http.git,2006-02-02 18:57:10+00:00,6588ba292425d32cd2bec878bc8c3651a5673bd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/processone/pkix.git,2018-09-24 18:27:32+03:00,9b21a00cf640ef4510d8d71c9d17d51ec6378335,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 1, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://git.samba.org/pam_wrapper.git,2015-12-10 13:31:14+01:00,8f6ecbb5a1427fe94ad75872bfbee1c72a54d0bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[67, 0, 0, 0, 22, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/skorokithakis/shortuuid.git,2011-01-08 16:44:52+02:00,57ad5d63571a03c1d53dff31d86e0bc3a4d4851a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/faye/websocket-driver-ruby,2011-11-22 01:43:51+00:00,9bcbcd6ef911135f60c6bc5513c616c88d42d3bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 6, 0, 23, 9, 0, 20, 19, 0, 1, 0, 12, 1, 2, 14, 9, 6, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/hvesalai/emacs-scala-mode,2012-10-06 20:19:36+03:00,6f1b748d7240deb30e5921a61646237f025f18f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 30, 29, 6, 6, 5, 1, 3, 0, 0, 0, 0, 3, 0, 0, 0, 2, 3, 3, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 1, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",1,2,9,0 -https://github.com/felixdoerre/primus_vk,2018-09-08 01:39:55+02:00,56766d1c44d2dd37d82fbf19484c83f336d3e5cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 8, 10, 16, 8, 2, 0, 2, 0, 0, 2, 0, 0, 0, 1, 6, 4, 0, 4, 3, 0, 0, 0, 3, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 1, 0, 0, 0, 0, 1, 0]",1,2,4,0 -https://github.com/svgpp/svgpp.git,2014-02-18 11:23:21-08:00,be4d3da76b77aae3ff4f2e34786d8a3e2f13a185,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 5, 4, 4, 2, 3, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 -https://github.com/nix-community/acpi_call.git,2010-06-29 17:31:48+02:00,009f34b45ffb3f001e3f0f5e27f4b15b0f4eb333,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/libimobiledevice/usbmuxd,2009-05-05 01:40:40+02:00,102e8ff46e5491c8d1a5928b34f058c88e55d065,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 12, 0, 1, 3, 4, 1, 0, 1, 0, 0, 19, 8, 12, 14, 13, 2, 2, 0, 2, 1, 7, 0, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/ropensci/crul.git,2016-10-28 16:15:38-07:00,8fe79db23336b9eef5e6542daca7fe5e131e3430,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 15, 1, 0, 1, 0, 8, 13, 2, 4, 3, 4, 3, 1, 1, 9, 6, 0, 0, 1, 9, 7, 8, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,2,0,0 -https://github.com/stevegrubb/libcap-ng,2017-06-20 07:10:28-04:00,cd7f2f4918c90dcf5b0aa52a7ffd7860b7ba6288,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://salsa.debian.org/jcc/zram-tools.git,2014-03-09 07:31:01-07:00,7ae71cc80f5f9ebff223bf0791f57e66170126a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/Castaglia/proftpd-mod_msg,2018-04-11 06:39:20-07:00,17f0a0bee7359135d13d12d94ab41bcfb376cd22,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/wjoye/tktable,2016-10-17 11:22:52-04:00,7fde2daeed593684120d75de07598154f3ddaf2c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[39, 22, 8, 3, 11, 0, 0, 0, 0, 34, 31, 63, 56, 0, 78, 42, 7, 2, 4, 5, 28, 18, 18, 21, 4, 1, 1]","[15, 6, 1, 0, 3, 0, 0, 0, 0, 4, 5, 10, 2, 0, 20, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]",1,0,1,1 -https://github.com/npm/nopt,2011-03-29 19:32:09-07:00,1b1237c7d5525660d6df76e2b88047b1035fc12a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/tianon/gosu.git,2014-09-22 16:28:51-06:00,ff3214d67b1de4caa64fcb82a120e9128a9e8f86,"[0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 5, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/g0hl1n/xprintidle,2014-02-26 12:45:16+01:00,a89754dd4555923ebf791b5991b8b424cbc7543f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/flori/tins.git,2009-10-29 01:54:37+01:00,84171acc770baf1a4c3df3881eb7861bdf2e892b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/prometheus/alertmanager,2013-07-16 17:09:56+02:00,f59d8fb2fcbcb0c566266e4dac83d3c7c729a978,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 16, 9, 5, 9, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/silnrsi/font-eeyek.git,2019-12-02 13:32:03+00:00,3fe3db96d6ecf16f42036b51f1f2ad8d9ce26097,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/cmrd-senya/markdown-it-html5-embed,2015-09-17 23:56:26+03:00,bc2ff4f1134ebfc60f5bffab0e2d5f495f9df897,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/naelstrof/slop,2013-09-08 14:39:42-06:00,7f72447efeb1da71c39db9bf6c5b333e045c6466,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 9, 1, 0, 2, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/Gnonthgol/sosi2osm.git,2013-10-06 15:02:25-07:00,66a912bea3603afe46a37f8f831a696d43ab6d03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/ros/genpy.git,2011-10-11 18:07:08-07:00,bf29133ae2666b5997e206dedc1f4e341cf23d65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 3, 0, 3, 5, 1, 0, 2, 5, 0, 8, 15, 7, 11, 0, 0, 1, 10, 2, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,10,0 -https://github.com/r-lib/gtable.git,2015-06-22 08:17:56-05:00,5b5630708decf04b38d7a52e00c0b1dca1a5ab52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1 -https://github.com/resurrecting-open-source-projects/outguess,2018-11-08 21:11:58-02:00,e665afa4ea8513bdb155c0f5cded3a8330ff341a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/palinek/nm-tray.git,2015-10-08 16:08:02+02:00,04b94f9df6167c43a4d9e191c8f74ee9ade44eca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://invent.kde.org/pim/grantleetheme,2016-08-05 02:49:40+02:00,73bd97b75d76e06fe758e590ddeaa778f03c994f,"[0, 1, 0, 0, 0, 1, 1, 0, 7, 6, 0, 2, 0, 1, 0, 2, 0, 0, 2, 0, 14, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 3, 0, 1, 1, 1, 0, 2, 1, 1, 0, 1, 2, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,0,1 -https://github.com/michipili/bsdowl,2008-03-14 10:07:55+00:00,c43a3649cfa131d1cb753bb976f277bca1e455af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 2, 0, 7, 22, 1, 27, 12, 0, 5, 6, 1, 1, 0, 0, 0, 14, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/mpld3/mplexporter,2014-02-14 15:23:32-08:00,37df028da95b6d90cf042f19e86a5033e7ad780c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 34, 16, 12, 4, 21, 0, 0, 1, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0]","[4, 5, 4, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0]",2,6,7,0 -http://github.com/voloko/twitter-stream/issues/new,2009-10-09 13:54:44+04:00,11ce705f70adfbc51a5c426d3616d2901adff761,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://gitlab.gnome.org/GNOME/at-spi2-atk.git,2001-07-25 18:26:40+00:00,9bf98cd378e1572019a743bb4bf18e896b4fcd1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 9, 23, 1, 9, 0, 3, 2, 5, 7, 0, 3, 1, 1, 7, 18, 10, 8, 41, 6, 2, 2, 6, 18, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 -https://github.com/selectize/selectize.js,2012-08-31 18:02:00-07:00,5abfb2298cc243417dfd68788596520c809a9d2c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/rails/sprockets.git,2009-02-09 16:15:39-06:00,225b17f7ee1926d6e9b63a4e2cddbcd2e534ba01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/doctrine/data-fixtures,2010-09-20 17:24:15-05:00,4a860e98d5c03205cef55ba0d4049436e4d319d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/Winetricks/winetricks,2015-03-29 16:53:54-05:00,c047d61f89406682b19edbda5007c739912e2007,"[0, 6, 0, 0, 1, 0, 0, 3, 5, 7, 6, 1, 0, 0, 0, 8, 0, 0, 4, 1, 3, 0, 0, 1, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[24, 1, 13, 1, 2, 0, 1, 0, 0, 0, 0, 0, 4, 15, 24, 5, 11, 9, 4, 14, 0, 2, 0, 10, 0, 3, 1]","[3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 1, 3, 4, 3, 2, 0, 0, 0, 3, 0, 1, 1]",11,2,11,1 -https://github.com/exodist/Term-Table.git,2016-12-18 23:01:11-08:00,27010fb24f19791b5ea859430c2c10846328f935,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/metaodi/osmapi.git,2014-01-01 12:32:49+01:00,55893a643fc3257a988ebf9c593c5007bec8a76f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 26, 0, 4, 0, 0, 0, 0, 6, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0]",2,1,1,0 -https://github.com/ietf-tools/xml2rfc.git,2010-01-18 13:34:25+00:00,5f1f8b9ced72dea365b98717219bbeadc86cce74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 0, 0, 0, 0, 0, 5, 0, 6, 17, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://gitlab.com/oath-toolkit/oath-toolkit,2009-11-24 14:36:33+01:00,479af86e6cde18cdf8da80ae0fc65e5d7ad3adf7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 44, 13, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/PacificBiosciences/pbcore,2012-08-30 10:58:02-08:00,8aea59a2c96e8c83ee2a75eb3ca704f748dbd113,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 1, 2, 0, 0, 7, 1, 2, 0, 0, 0, 2, 0, 0, 2, 1, 5, 0, 1, 2, 3, 5, 9, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/ruby-amqp/amqp.git,2008-07-11 16:17:47-07:00,5b2fec58829ecd0fb7c659e8e3b862551e2ed4ee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 60, 15, 6, 13, 1, 0, 5, 2, 1, 2, 5, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 12, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 1]",1,2,8,0 -https://github.com/Seldaek/monolog,2011-02-17 03:04:58+01:00,2ff85ba4721a1fd3ab5b77cc7e9778945dcf95de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 8, 0, 0, 7, 2, 21, 3, 1, 13, 3, 32, 3, 0, 6, 0, 4, 1, 9, 8, 2, 8, 0, 4, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 10, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 0, 0]",1,3,12,0 -https://github.com/kilobyte/safeclib,2012-06-18 14:50:54-04:00,8379e6f6e74afec9e96eae41853567faec6fb273,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 0, 5, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]",1,1,0,0 -https://github.com/ponty/pyvirtualdisplay.git,2011-02-11 12:40:38+01:00,9c7b92f6624c35de8600fff9b0f69640156cbdac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 5, 0, 0, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/emacs-lsp/lsp-mode.git,2016-12-02 22:38:27+05:30,e42e99e026b037c1d29709955273b890be95c9fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 65, 16, 3, 6, 1, 3, 0, 0, 0, 2, 1, 5, 0, 7, 0, 0, 40, 45, 41, 5, 22, 17, 0, 0, 3, 0]","[0, 1, 2, 0, 0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 3, 5, 5, 0, 4, 4, 0, 0, 1, 0]",1,3,14,0 -https://gitlab.gnome.org/GNOME/libpeas.git,2009-10-23 09:28:39+02:00,a8952b9e7b8bfdc4e5ad32841708492cf0998347,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 23, 0, 7, 0, 0, 16, 9, 7, 1, 4, 0, 2, 1, 0, 1, 8, 2, 1, 1, 2, 2, 0, 0, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,15,0 -https://github.com/mdub/sham_rack,2009-05-03 21:13:40+10:00,fabc0be6c16f3e855e8bbdd655e723ffd7f6537a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 3, 0, 0, 11, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/brendangregg/perf-tools,2014-07-10 12:54:14-07:00,a12c0063e89ed1195752617bd43d8e76de23915e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 46, 29, 14, 0, 1, 0, 0, 4, 6, 5, 2, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 4, 1, 0, 2, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,7,0 -https://github.com/bluemonk/ipaddress/issues/new,2009-08-25 15:23:15+01:00,540023c8ce27954a0ddbcf7cd18064ffbecba70b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/r-lib/roxygen2,2007-06-25 10:38:44+00:00,7733e2079c4652f4df7fdab71b65c6ec38d53685,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/xavierleroy/ocamlagrep,2002-02-01 15:01:56+00:00,79f53a5e3eb55cbc337ed3754a3d3156025eb680,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/hadley/memoise.git,2010-11-11 16:55:32+01:00,eb41e985d9e84d52b64f22834efa1bdaf2cc2605,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/dmeranda/demjson,2012-06-08 17:09:35-07:00,f579ffabbd5026dfe67a61e97d4524c9a171612d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/muquit/grabc.git,2018-04-11 19:08:10-04:00,4be2da1ec8745d51df63e92c149f3d1484a1113f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/linuxmint/cinnamon-session.git,2013-06-02 16:22:34+01:00,ced663aaf4032bf31a3b526143a59c5f2654013f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 2, 2, 4, 1, 0, 2, 5, 2, 0, 2, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/pytroll/pyresample,2012-05-14 14:14:03+02:00,a6551fc76eef2d694a3a5ebc52620a61d6538ff0,"[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/Xubuntu/lightdm-gtk-greeter.git,2011-11-29 14:06:00+11:00,23b165b78ce4a03d20183edf48f6220a363064b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 1, 2, 0, 3, 2, 2, 0, 0, 0, 0, 0, 3, 0, 3, 0, 2, 1, 0, 1, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/NetworkConfiguration/dhcpcd.git,2007-11-07 16:05:07+00:00,755a28e47fb28b412e6a8e664d2bceeeeba284f6,"[15, 4, 2, 0, 0, 0, 3, 3, 0, 8, 3, 9, 2, 6, 7, 1, 3, 0, 0, 0, 0, 3, 16, 11, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 3, 1, 0, 0, 0, 0, 28, 6, 17, 26, 9, 7, 8, 21, 4, 0, 1, 8, 23, 0, 31, 23, 13, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/dimitri/pgcharts,2014-03-28 22:30:28+01:00,68029d113c985567c052b8e1cdc37f488c37ef86,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 14, 0, 5, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 -https://gitlab.gnome.org/GNOME/glibmm.git,2003-01-07 16:59:16+00:00,78e5bf1313f67e4cbc67fe01a408d27de7383abd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 6, 0, 0, 0, 0, 1, 0, 3, 2, 1, 0, 0, 4, 2, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,7,0 -https://github.com/capistrano/sshkit.git,2012-03-09 17:39:33+01:00,d45ff069dc60cdc288fac09eb12d998c4e608a4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://invent.kde.org/pim/kpkpass,2018-03-16 17:31:06+01:00,92f358bf5411468c8db41f5eb6b89ad4bece35ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/indutny/node-ip,2012-08-15 15:59:28+07:00,bedc9da9ef1dbaaa71524f6952a4f39a57738a84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",1,2,4,0 -https://github.com/flowgrind/flowgrind,2007-10-24 14:03:30+00:00,7465eea8ef8d0fa3293ba547b592d5897207d39c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 41, 4, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/linuxdeepin/deepin-deb-installer,2018-07-31 13:26:45+08:00,03d4cf7871f710f8c79cf9d691ae23cbc935e303,"[7, 6, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 2]","[1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 3, 2, 1, 1, 8, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,1 -https://github.com/fontforge/libspiro.git,2007-10-28 21:46:07+00:00,8bd6222facb17e0aa09532853b34e1f9c400ea3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/LeoIannacone/apt-venv,2014-05-05 02:19:03+02:00,47d48cd77b79b40a2fc07198b9cdac2f1a4efbd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://invent.kde.org/libraries/libqaccessibilityclient.git,2012-04-05 17:19:45+02:00,c9118022c7a5cb9e21bc9250b53c5c7cbb837022,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 8, 1, 2, 14, 0, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 2, 0, 9, 7, 19, 4, 5, 36, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 -https://github.com/puppetlabs/puppetdb.git,2011-08-02 11:29:09-06:00,db9e99a0a89b6d32d574c63d1fe70329f9003548,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 5, 0, 2, 14, 5, 17, 0, 20, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 30, 35, 1]","[0, 0, 0, 0, 5, 0, 5, 0, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 8, 11, 0]",1,3,4,0 -https://github.com/roundcube/roundcubemail,2005-09-28 22:28:05+00:00,30233b8dfb7fe5070dfa11b3e6d2015fb50aa769,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 5, 16, 21, 10, 9, 3, 3, 0, 1, 2, 2, 0, 0, 7, 12, 15, 2, 7, 0, 19, 0, 8, 3, 5, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/cpants/Module-CPANTS-Analyse.git,2007-04-19 19:13:19+00:00,96975b42736ae4994df64b42bd08216619ad997e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 4, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/bbatsov/solarized-emacs.git,2011-12-03 09:07:57+02:00,f6ca4b7020fc7c9d45dd1cd6ce72cd5a0b2726dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 1, 13, 22, 3, 9, 0, 5, 0, 1, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 1, 4, 0, 1, 0, 0, 0]",1,2,9,0 -https://github.com/google/double-conversion.git,2012-02-05 18:06:27+01:00,27f3a9897627dcea6bf4d9d2ce576d2b21563502,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/c-amie/analog-ce.git,2019-04-14 10:02:00+01:00,f40c5609272dd8cd2fee934256dde61f9c1b0f4f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/trentm/node-dashdash,2013-02-27 00:07:36-08:00,b1925e052b674c0cafadcef909950b41c865f5b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 16, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dunst-project/dunst,2011-09-07 15:43:50+02:00,10d7c3fbab67e27edd20e1f2f6c6b272469fd2ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 14, 5, 8, 0, 0, 1, 0, 1, 14, 8, 1, 0, 0, 1, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/savonet/ocaml-opus.git,2021-03-08 20:33:53-06:00,178172af1903a0d520ed29666c14e8e07ed7c013,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/Bioconductor/GenomicRanges.git,2019-04-19 13:21:48-07:00,2626eb2cb23257b9f75e5d8fc638d741ff043962,"[0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/google/stenographer,2014-10-13 16:20:30-06:00,35b7ec1595265f1cb4b35f910f188cf8a0259916,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 26, 15, 12, 8, 5, 1, 20, 20, 18, 2, 1, 34, 21, 18, 22, 21, 42, 18, 3, 9, 8, 2, 6, 3, 0, 0]","[0, 6, 5, 4, 2, 1, 0, 7, 6, 11, 0, 0, 10, 12, 7, 10, 11, 13, 7, 2, 3, 2, 1, 3, 1, 0, 0]",2,7,6,0 -https://github.com/rvaser/bioparser,2016-06-17 10:59:17+02:00,5c6bd4bf36e2558c097eb72717d6d315feba064d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/muammar/mkchromecast.git,2016-03-19 12:59:07+01:00,a05aba58355f706216f05e13e686bd99db2a093e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 25, 40, 11, 77, 22, 77, 46, 80, 14, 20, 23, 57, 30, 20, 28, 13, 14, 4, 4, 4, 34, 19, 7, 5, 17, 1]","[0, 0, 1, 0, 0, 1, 1, 2, 4, 2, 2, 5, 3, 2, 0, 2, 1, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0]",1,2,3,0 -https://github.com/heynemann/preggy,2013-04-12 11:08:53-07:00,7db8ca7203eb0c1efb9b3e94240dc3869d5ba211,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 46, 51, 23, 19, 7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/aresch/rencode.git,2012-12-01 23:04:58+00:00,79f485d54967efa330b30ff94085274db7c5e818,"[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/jonschlinkert/repeat-element,2015-01-11 18:40:45-05:00,002215cd327b57ceffa9c4a74c1a7ed20cdf8d61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/jquery-i18n-properties/jquery-i18n-properties.git,2014-06-12 20:44:16+02:00,cbb8300bef6e148753f147643ecc5f64f0e0b34e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/firmafon/ruby-fogbugz,2011-05-22 00:06:01+02:00,535feb371ade7a1eb4e1e093157cc5f796faaf49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/miquels/liblockfile-debian,2017-01-05 15:04:25+01:00,020bca7898bfd0a173435907f0ad3dce2f00eca5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/hturner/gnm.git,2017-09-02 12:37:39+01:00,e83dbc32b7f6f1d030e516697e1928e911a928de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mate-desktop/libmatekbd.git,2011-12-01 20:53:10-03:00,916e2eafe251b44f9d0339282f5d00723899caec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://invent.kde.org/sdk/clazy,2015-06-10 17:00:03+01:00,d37732b0a1bd7ce0340b8f06baebb0d3d90dee89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 7, 11, 0, 4, 0, 0, 17, 48, 37, 29, 12, 29, 10, 9, 6, 15, 38, 21, 38, 16, 34, 34, 18, 33, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,12,0 -https://github.com/hunspell/hyphen.git,2010-03-04 12:13:53+00:00,21127cc8493a68d4fe9adbb71377b469b4f2b550,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/qix-/node-simple-swizzle,2016-01-20 08:59:41-07:00,cf1677cf0ebc219b3770cabd226362bfbe4b920f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/khenriks/mp3fs.git,2006-08-06 00:39:56-07:00,113db0eef2a9e6f7b4bd955586a07ff14ef5841c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 1, 0, 0, 4, 0, 0, 1, 0, 0, 0, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/pramsey/pgsql-ogr-fdw.git,2014-12-15 14:18:00-08:00,e950361fb1e874b44f0f325c11fc7f22a8871e5f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 0, 6, 12, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/tkellen/node-v8flags.git,2018-12-17 12:41:06-07:00,0e81c66b29dae48b6d6c2db838266e0cff9c6cc0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,10,0 -https://github.com/taem/sxid,2009-09-08 15:23:07+06:00,7415c8937998b81e58b8eb38b99479089434f7a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/mbostock/smash.git,2013-03-12 20:06:47-07:00,d49c97e38c23c173ca2a4b0d058ac867a49e4766,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 2, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/prawnpdf/pdf-core,2014-01-19 12:41:10-05:00,b0fde4e9be829a84a38b8e273b17a998bd30cbf6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 6, 1, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/monocasual/giada.git,2012-11-08 22:08:58+01:00,b5b195799c155b0262cdff098508f1dac62847ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[8, 1, 12, 10, 11, 4, 17, 17, 7, 15, 19, 11, 10, 20, 12, 10, 9, 29, 31, 17, 26, 4, 10, 5, 21, 7, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,0,0,1 -https://invent.kde.org/plasma/xdg-desktop-portal-kde.git,2016-07-13 11:25:32+02:00,295ca79cc0b8d8f704254d06e154929d0d79f1a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 1, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/matze/pkgconfig,2013-08-08 11:37:11+02:00,f109dbbfc99dfed7ecb3540484e1499fb68097b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/stef/pysodium.git,2013-08-25 23:26:38+02:00,d31211d189e36c53991729243b1abef51420f22b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mathiasbynens/unicode-property-value-aliases.git,2016-05-21 11:58:38+02:00,4916baf7c95c7d418dadc5478cf6dd6b472cf33b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dompdf/php-font-lib,2012-11-16 18:16:02+01:00,6cd2f2a4b0e1dd3104295c80864b24fb5ff8934d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 7, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/curvedns/curvedns.git,2010-10-23 12:41:01+00:00,93abc68e47e52adc99c846dc9b07a4e609128fc4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 2, 0, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/unshiftio/ultron,2014-11-11 14:04:22+01:00,974a17398c7d15fe36b86ffe6cbf62f5d8612e5a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://gitlab.com/compiz/libcompizconfig.git,2007-03-13 14:01:52+00:00,54b8baf2a3c54f62c47255c12e02d4631b60eb88,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 29, 8, 1, 0, 49, 31, 14, 13, 8, 1, 3, 15, 29, 5, 3, 19, 5, 0, 1, 28, 14, 16, 9, 16, 3, 0]","[0, 0, 0, 0, 0, 9, 4, 2, 2, 2, 0, 0, 3, 5, 1, 0, 1, 0, 0, 0, 4, 3, 0, 1, 0, 0, 0]",2,4,16,0 -https://github.com/es128/glob-parent,2015-01-12 15:18:06-05:00,b08cbec38731960b35446da9d819824ba35e0c49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/speed47/spectre-meltdown-checker,2018-01-07 15:00:15+01:00,3b59139e7970bbeca5c8a56ce9f1ac09ed02bfcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[126, 31, 23, 23, 4, 7, 0, 1, 4, 3, 13, 3, 16, 17, 12, 0, 2, 0, 2, 20, 0, 0, 2, 2, 0, 0, 0]","[28, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,37,0 -https://github.com/amrayn/easyloggingpp.git,2012-09-22 20:41:35-07:00,c7aff6c9823f07f149cbebcc9a4047f8d48aa195,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 28, 14, 2, 0, 4, 24, 9, 24, 9, 1, 1, 0, 0, 10, 31, 39, 23, 15, 10, 0, 0, 40, 23, 20, 1]","[0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 2, 1, 0, 0]",1,4,4,0 -https://salsa.debian.org/ruby-team/ruby-github-api,2016-07-01 20:13:10+08:00,8d56e514802d9bd658b78b07958d045d0c12127d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gulpjs/glob-stream,2013-07-04 01:29:17-07:00,2c7ffd644cca9791998cdb534444800d52602244,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 2, 10, 8, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0]",1,1,6,0 -https://github.com/d3/d3-dsv,2013-03-08 09:42:16-08:00,656f5ace67cb50a1f157229ee4fca0985469929d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/Backblaze/b2-sdk-python.git,2015-11-16 08:44:35-10:00,4fd290c0d4b4b252c749898a373beaca7d60fbad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 6, 16, 39, 27, 17, 9, 19, 5, 1, 37, 10, 22, 77, 30, 18, 46, 36, 41, 47, 35, 17, 20, 0]","[1, 0, 1, 2, 1, 2, 9, 9, 7, 2, 5, 1, 0, 8, 2, 5, 10, 5, 0, 9, 11, 6, 9, 5, 2, 6, 0]",1,4,14,0 -https://github.com/diff-match-patch-python/diff-match-patch,2018-11-05 18:00:06-08:00,6e065aa329cec6fbd73dd2fef7c72c1dd68d07f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/watson-developer-cloud/python-sdk.git,2015-10-08 10:09:23-04:00,0fc9e32a0296ba399f216878c305fd83d7f115a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 24, 9, 5, 6, 0, 15, 0, 4, 1, 0, 0, 0, 10, 3, 5, 6, 8, 10, 5, 0, 12, 5, 16, 2, 4, 1]","[0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,2,3,0 -https://github.com/osmcode/libosmium.git,2013-12-09 09:39:57-08:00,de9553e0ef33098680498e895b1d6bb207f31b0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 5, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/keras-team/keras,2015-03-27 17:59:42-07:00,37a1db225420851cc668600c49697d9a2057f098,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 35, 31, 44, 17, 20, 27, 17, 45, 39, 37, 53, 100, 75, 63, 49, 64, 23, 16, 19, 48, 23, 11, 39, 9, 12, 1]","[15, 6, 6, 13, 2, 6, 10, 5, 13, 12, 15, 8, 24, 21, 11, 11, 19, 7, 4, 4, 18, 9, 3, 14, 3, 5, 0]",2,18,87,0 -https://github.com/smarty-gettext/smarty-gettext.git,2004-04-28 18:19:14+00:00,6acf4031afa2502b31c2ae8b6138bc375ebd9ff1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kjetilk/p5-rdf-ns-curated.git,2015-08-26 23:24:42+02:00,e69829af2e187c6ebd6907ca259ac0870174eed4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/pdudaemon/pkg-pdudaemon,2014-01-13 10:02:28+00:00,6ab1ca0485662e7eebf047e409fda37a9b5984c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/hpjansson/chafa.git,2018-02-25 23:41:01+01:00,0bd2c276903b2dca423c305316ee0a3ac508769f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 42, 14, 30, 23, 25, 19, 4, 12, 33, 2, 2, 18, 11, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 13, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",1,1,4,0 -https://github.com/rzvncj/xCHM.git,2003-07-31 19:01:08+00:00,fb2e99cd6bd4962e9caa1ba5d4061f1b81c0075a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 12, 5, 3, 17, 4, 32, 10, 14, 3, 3, 1, 4, 11, 0, 1, 3, 0, 1, 1, 0, 0, 1, 1, 6, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kugaevsky/mousetrap-rails,2012-09-23 02:08:58+04:00,554f4d3b6e1d663b49cacb3d8d54083322dbc467,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/PacificBiosciences/pbcopper.git,2016-06-22 16:08:45-07:00,d03084a4062c00bf166fee17bbcc270e1f3d54a8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 1, 0, 0, 0, 0, 0, 0, 7, 0, 3, 3, 4, 12, 0, 0, 2, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 2, 1, 6, 0, 0, 1, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0]",1,4,7,0 -https://github.com/sebastianbergmann/comparator,2013-11-04 22:21:42-05:00,5790b7f6dd52309a381747f3bc7247175d8e5afe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 6, 0, 0, 3, 1, 0, 0, 0, 0, 1, 2, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/mishoo/UglifyJS2,2012-08-27 12:29:53+03:00,ce8e8d57c0d346dba9527b7a11b03364ce9ad1bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 28, 17, 15, 35, 42, 19, 5, 7, 24, 10, 4, 5, 4, 1, 3, 0, 7, 3, 6, 2, 5, 7, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 0, 0]",1,2,12,0 -https://github.com/mapbox/leaflet-image,2013-08-09 12:42:15-04:00,f3537f5378af66331cdf8606772a328231ce962c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 11, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/voc/voctomix.git,2014-07-28 10:00:25+02:00,b758723fe3266e91d0427c3367d0753a7663a514,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 14, 10, 10, 8, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/crucialfelix/django-ajax-selects,2010-06-06 22:36:35+00:00,bbd9bcdbe34eece934cd1a40515c77f886879384,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mypaint/mypaint,2005-02-07 22:14:34+00:00,fca719792bae5ade6d0ec8b223fa5fb80822ce25,"[8, 5, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 5, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 3, 2, 5, 2, 11, 6, 0, 0, 0, 7, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/r-lib/svglite.git,2012-11-27 15:32:24+01:00,d7bf5c27ce306e8c14dd2eb4cb7abb3369b8162b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/chrissimpkins/shellescape,2015-05-07 22:07:10-04:00,43251349dfb2b1cc04bc64579729113e7e7667b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/plotly/plotly.R.git,2013-11-25 18:43:45-08:00,32157e89620d3747121a4f906d865423f9ec00a4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 15, 5, 6, 3, 2, 8, 1, 8, 4, 16, 5, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 0, 1, 0, 2, 1, 6, 2, 5, 0]",2,5,6,0 -https://github.com/opencontainers/runc,2014-02-21 14:56:15-08:00,6415e8becc2c47845cf565b87229b5dbd2fa40ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 29, 11, 15, 3, 11, 15, 2, 22, 30, 5, 20, 20, 12, 18, 36, 37, 50, 4, 38, 31, 38, 17, 32, 27, 7, 1]","[0, 4, 2, 2, 1, 4, 5, 0, 1, 5, 2, 5, 5, 2, 3, 8, 15, 12, 1, 16, 12, 16, 8, 6, 10, 2, 1]",2,11,47,0 -http://space.twc.de/public/git/gst123.git,2009-08-15 10:12:16+02:00,6124e55e68b86f495803bc3257dec8a84ddd6cb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/google/python_portpicker,2015-03-20 18:22:24-07:00,56fceff11bf90f020acd4000568a0a56299f8ffe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tonsky/FiraCode.git,2014-11-12 01:47:04+06:00,5a65981f5daed5087fee0cc9a5d1832cc91a93e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/LMMS/lmms.git,2005-09-22 13:49:52+00:00,4c7832a975f9786da873edecb6f917c5b8f98a06,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 2, 3, 2, 1, 2, 0, 0, 1, 4, 7, 7, 0, 1, 4, 1, 19, 6, 5, 2, 7, 7, 7, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/containers/conmon,2018-08-10 07:21:44-06:00,04b9fcd670a13899618539011ab82f3efd79565e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/jbj/magicrescue,2018-10-14 17:11:58+02:00,2503bc547acd5d42567132d55eac790c69ef5f7e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ccocchi/rabl-rails/issues/new,2012-02-22 11:42:38+01:00,5930e46ec0899d9d1003ce4b104d2c5f36829f9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 0, 1, 4, 5, 2, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 9, 16, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,1,0 -https://github.com/r-lib/scales,2010-11-11 09:06:52-06:00,4c5f18e015d757715bcc65c29b1661d853ca0d63,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 11, 0, 0, 0, 0, 20, 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gvfs.git,2007-09-13 08:26:29+00:00,4bed9f54c2cb8fc1900a881b5cc3e50c804f0b23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[908, 7, 4, 12, 3, 12, 12, 12, 7, 6, 2, 2, 1, 17, 10, 1, 20, 53, 30, 35, 21, 36, 46, 93, 156, 79, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,74,0 -https://github.com/digitalbazaar/jsonld.js,2011-08-22 23:23:24-04:00,28d5541eaad8811609251352e66788dcc9940802,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 5, 31, 36, 0, 13, 14, 4, 9, 7, 1, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 0, 3, 5, 2, 1, 5, 0, 9, 6, 0, 13, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,4,0 -https://github.com/coreruleset/coreruleset.git,2012-08-02 08:12:09-07:00,f9fa656f69bb368182c7f3c9e8355e0b6dae644c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 20, 10, 6, 1, 1, 0, 5, 3, 1, 0, 1, 2, 0, 5, 0, 0, 0, 2, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,7,0 -https://github.com/kasei/atteanx-endpoint.git,2016-03-23 15:14:05-04:00,4cc8f1e8d170bb669cbd845f3c0a7d6b117412b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/hughsk/is-typedarray,2014-06-01 15:11:41-04:00,a52c5395ea29bc6e8bd0deeeca215214f817f899,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kodi-pvr/pvr.njoy.git,2015-02-24 16:27:30+00:00,dee3094e07fe4992ed59e6fe715ba38987812084,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 0, 1, 1, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 2, 1, 1, 0]","[0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",5,4,4,0 -https://github.com/neovim/pynvim,2014-05-09 18:51:45-03:00,1d75e8a73c0d76b946285309c0b051f5ca3e2fca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 12, 6, 0, 8, 0, 2, 0, 0, 4, 0, 2, 2, 11, 0, 11, 8, 10, 26, 18, 12, 2, 4, 17, 0, 5, 0]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 1, 1, 1, 5, 0, 2, 1, 2, 8, 0, 1, 0]",1,1,11,0 -https://github.com/pagekite/Colormake,2012-02-18 16:22:23+00:00,7958c2343958c85a2a8736846832df514064b019,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/psb1558/Junicode-font,2019-05-06 10:06:13-04:00,8a3398f1d753e53fc5f1f8f91d7d6ec399bdebd8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/thoughtbot/shoulda-matchers,2007-03-14 18:12:55+00:00,7a4202f9b8fa77318694864af9d1bcfde4084deb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 13, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 6, 0, 0, 3, 12, 0, 4, 2, 2, 6, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Tom-McDermott/gr-hpsdr,2014-09-29 16:03:21-07:00,9522f87d06c459fc0b53a2f0253ff2795d9d691a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 11, 4, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0 -https://github.com/PierreRaybaut/PythonQwt.git,2015-08-20 16:29:51+02:00,aed9ddfbb84cb2393a95ff0a1ff92d1258fb6305,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/VirusTotal/yara.git,2008-09-26 19:46:09+00:00,4c55513b9f20e6cad96f29bd3d3877f6871db062,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 5, 0, 3, 1, 2, 1, 2, 1, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gucharmap.git,2002-09-09 18:53:03+00:00,fac0012b349ffaf2b690758aa5953f2ad36906ab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 13, 0, 77, 18, 19, 0, 25, 26, 15, 24, 10, 21, 5, 14, 27, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0 -https://github.com/nodeca/argparse.git,2012-05-14 19:32:59+04:00,c754849d8b452815db893f20547c70eda59e3949,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 6, 7, 0, 0, 0, 2, 9, 0, 0, 10, 0, 0, 0, 0, 6, 4, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,7,0 -https://gitlab.gnome.org/GNOME/gtksourceview.git,2001-12-06 02:51:13+00:00,5c6e5cbc5512a1cbfad1ca905f21b07065e0defd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 2, 0, 0, 0, 1, 2, 2, 0, 0, 0, 7, 1, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,9,0 -https://github.com/davesteele/sirikali,2016-08-11 03:34:05+03:00,e80b7f7351a3fc5913840f197074a89b31e18e1b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 13, 6, 14, 4, 23, 7, 8, 16, 0, 2, 7, 0, 9, 6, 6, 4, 8, 0, 2, 4, 0, 0, 7, 31, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/nichtich/RDF-aREF.git,2013-11-28 13:19:42+01:00,94c1087e67782ad8da4f411400ef76966b77b3b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 3, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/cjcliffe/CubicSDR.git,2014-10-26 12:36:32-04:00,6bb7d344aa700f565b5621035df17b2eb5440c94,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 21, 12, 36, 15, 25, 20, 15, 31, 24, 37, 12, 19, 14, 19, 19, 14, 10, 13, 8, 1, 15, 8, 1, 3, 8, 0]","[0, 1, 2, 6, 3, 2, 1, 2, 4, 3, 6, 1, 6, 4, 5, 2, 4, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0]",1,2,3,0 -https://github.com/solvespace/solvespace/issues/new,2015-07-10 15:59:12+03:00,636b20bfa9fae2a40dba6b1b8c1adecfbfc5a9b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/ternjs/acorn.git,2012-09-24 12:10:30+02:00,61906485a19579ba5b131778f9c94c5c6228e91a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 15, 6, 12, 0, 1, 7, 1, 7, 1, 0, 0, 0, 4, 2, 4, 15, 1, 6, 2, 5, 3, 4, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0 -https://github.com/jashkenas/underscore.git,2009-10-27 13:26:36-04:00,ef10906b5f82f873960786578565d42d14163771,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 15, 2, 9, 5, 17, 16, 0, 0, 8, 1, 3, 4, 2, 2, 0, 13, 31, 3, 1, 3, 0, 2, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,13,0 -https://github.com/korfuri/django-prometheus,2015-04-04 23:53:05-07:00,2cf8fcc039a4f21f8611ee78067f446f1856d80c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/agateau/yokadi/issues/new,2009-02-03 10:41:14+01:00,b68abca7bf25451a3ee24d62b3d8b4f7d6e9b81b,"[1, 0, 25, 21, 10, 4, 7, 16, 1, 0, 0, 1, 1, 7, 22, 6, 8, 35, 0, 20, 0, 1, 10, 11, 7, 15, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[28, 7, 15, 0, 0, 5, 14, 4, 8, 2, 0, 1, 0, 1, 13, 8, 2, 0, 7, 0, 1, 16, 31, 2, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,6,2 -https://github.com/linuxdeepin/deepin-image-viewer,2016-02-24 13:52:33+08:00,c02df4746940d5ccb542c35e1438948aa6da0054,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 6, 3, 5, 4, 11, 9, 10, 10, 7, 15, 11, 19, 27, 14, 28, 38, 48, 39, 26, 38, 27, 49, 29, 41, 46, 1]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 7, 2, 3, 11, 14, 12, 6, 11, 9, 17, 9, 13, 17, 0]",2,2,9,0 -https://gitlab.gnome.org/GNOME/baobab.git,2006-04-23 14:28:58+00:00,253a387c66a5c666adb115980580e4aaf54e6f66,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 8, 5, 3, 3, 0, 11, 2, 1, 0, 4, 4, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0 -https://invent.kde.org/plasma/kwin.git,1999-08-19 23:26:42+00:00,311db796c68e520e5b6d28829d6aaa4bfbcd1536,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 6, 0, 1, 3, 24, 20, 18, 22, 14, 10, 8, 4, 2, 4, 2, 6, 0, 1, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,16,0 -https://invent.kde.org/plasma/kdecoration.git,2014-07-18 07:45:21+02:00,e76c6ff9e16a4b1d965d3dbff1a32f8a7e2a5a18,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 30, 5, 6, 18, 0, 0, 14, 3, 5, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://git.osgeo.org/gitea/postgis/postgis.git,2001-06-22 17:39:29+00:00,3cda1194452a9a96a97e97e049c29c7154aa3b8d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 6, 20, 7, 7, 1, 0, 3, 2, 0, 10, 0, 2, 5, 6, 8, 7, 5, 0, 2, 0, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/ricmoo/pyaes.git,2014-05-12 15:53:53-04:00,1fd2a0aee1f43b575b57529026cb3d2e7efd8dcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 1, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/diafygi/acme-tiny.git,2015-11-25 21:44:00-08:00,7eacef721cb9c7f1c120bff9ff03adb6e5c35b4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 51, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 11, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,14,0 -https://github.com/p-e-w/maybe,2016-01-24 19:20:36+01:00,abe496afe2d56ebfd1e4dd7681d1c4a7853adea3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 4, 1, 0, 0, 0, 1, 16, 4, 6, 4, 4, 0, 4, 3, 0, 7, 3, 3, 4, 0, 1, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/xelerance/xl2tpd,2005-11-19 21:28:56-05:00,79e3fc3e6352e58cf91a36928c40f80f8631479a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/c-ares/c-ares.git,2003-10-07 21:54:04+00:00,5e847a14bd65383ce65f143c578e120899981fd9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 18, 17, 9, 15, 10, 5, 2, 1, 1, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-control-center,1998-02-10 21:22:12+00:00,3c03b47392098da82a675d968629c4d62da49619,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 8, 7, 7, 3, 0, 0, 1, 7, 12, 11, 3, 6, 15, 7, 7, 11, 4, 5, 0, 5, 7, 6, 10, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,43,0 -https://github.com/alexdantas/xbomb.debian,2013-05-02 20:54:17-03:00,e7cff2e6dfb5ec22a6dd80d9eb0b2864b69beee8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/librsync/librsync,2000-02-29 04:58:16+00:00,4ddd6df3df0334fc9053e860966b0e91f1b6e1b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 2, 0, 0, 39, 13, 62, 6, 22, 3, 4, 7, 22, 16, 5, 3, 1, 0, 0, 0, 8, 15, 19, 0, 9, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/theskumar/python-dotenv.git,2013-06-13 10:32:14-05:00,5fc02b7303e8854243970e12564f2433da7a1f7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/umlaeute/v4l2loopback.git,2009-02-03 10:08:56+00:00,01a209f7c8b3e6a32d1543facc6006d6458b89e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 5, 6, 0, 10, 1, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/lxqt/lxqt-runner.git,2016-09-06 18:21:01+02:00,b86ea09ab0e0ea76737288a50113029221d3a1d7,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 -https://gitlab.freedesktop.org/cairo/cairomm,2005-12-02 13:34:41+00:00,579e53718d29e77486e076d2b3461d986911f050,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 2, 1, 0, 2, 0, 3, 3, 3, 1, 9, 3, 1, 3, 0, 3, 5, 0, 1, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/JuliaMath/openlibm.git,2011-08-13 00:31:25+05:30,aba7ae910f04f7df13024ba61763eabc2524bcdc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 17, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/zkat/ssri.git,2017-03-22 21:55:28-07:00,6f6a12d82ed2e609d9883126c22b1764a97ed407,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 19, 5, 2, 1, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/biolab-unige/nifti2dicom.git,2012-01-12 16:02:01+01:00,8962e2d5c2a74d508ba08a154c01250c97c05f38,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",0,1,0,0 -https://github.com/brofield/simpleini,2013-09-28 11:13:59+10:00,8d48b8dc83b07b2b24d3ac155a55a02332af9688,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jtauber/pyuca,2012-06-21 09:34:36-04:00,02e4fd3a6b15e52e5bd7983c6844f587e2a35876,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mkdocs/mkdocs,2014-01-11 21:06:13+00:00,4fb859db0ffc5d509107ef6bcad21416a0c1a991,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 14, 9, 20, 23, 9, 5, 3, 3, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 3, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/ropensci/av.git,2018-08-28 14:36:45+02:00,42ef21e3448bcbd1e9e0beda7d60360ef079e2ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 50, 15, 28, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/RDFLib/rdflib.git,2003-12-18 03:34:39+00:00,881fbc392f06ceb7166fd5bb4523f0796d4af363,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 0, 0, 0, 0, 1, 1, 0, 6, 3, 10, 16, 3, 3, 3, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.xfce.org/panel-plugins/xfce4-pulseaudio-plugin,2014-04-24 23:32:18+01:00,6d5680f733ce6bc1ee6bf60dd6d2e4b427ada70c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/drobilla/jalv.git,2012-04-19 23:42:34+00:00,ad424892b0d45b2c46b6bc503e68e776f092af27,"[1, 0, 6, 0, 3, 0, 0, 2, 17, 2, 1, 3, 8, 0, 3, 3, 3, 7, 2, 4, 0, 12, 6, 4, 10, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 2, 1, 2, 1, 1, 0, 0, 0, 7, 3, 0, 5, 10, 4, 9, 4, 0, 5, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/svn-all-fast-export/svn2git.git,2015-04-21 08:58:49+03:00,7522adcf07a42d08faae61bc86b44bef2b00b177,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1 -https://github.com/Unidata/netcdf-c.git,2010-06-03 13:24:43+00:00,18f4bca367140fc05be78287da26a34ebc3d9286,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 22, 25, 8, 17, 1, 4, 17, 10, 7, 7, 11, 8, 2, 4, 4, 16, 11, 8, 0, 2, 4, 8, 4, 7, 1]","[1, 0, 3, 5, 1, 5, 0, 1, 5, 3, 1, 1, 1, 3, 1, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/ocaml-community/sedlex,2003-09-20 17:52:50+00:00,dfe4e5e4a4bf23eba96226aeb28e4c51044c7244,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/drforr/perl6-readline.git,2015-03-28 14:37:46+02:00,cdfda53217b5970a76b7a4e3cf755952a84a8000,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 3, 0, 1, 0, 5, 9, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/sebastianbergmann/php-token-stream,2009-11-06 10:29:10+01:00,25da2ae9ecc8404036fc542b81272840dde115de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 7, 9, 1, 0, 1, 3, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/debian-tex/biber,2009-05-20 11:41:04+02:00,3266cab21339dccd1f207d6f9c691f413ca43946,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 40, 3, 30, 32, 24, 14, 4, 26, 18, 5, 0, 0, 1, 0, 0, 0, 0, 0, 21, 47, 26, 7, 1, 6, 3, 0]","[1, 4, 0, 4, 1, 4, 6, 0, 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 1, 1, 1, 0]",2,2,0,0 -https://github.com/transceptor-technology/siridb-server.git,2016-03-30 21:58:40+02:00,f0516f4ce3fdf9bb82a2dd988afcc29067d7141c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 8, 11, 8, 4, 0, 0, 3, 7, 13, 17, 15, 20, 9, 6, 13, 15, 11, 11, 6, 0, 1, 5, 7, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/boundary/folsom.git,2011-03-23 16:06:02-07:00,eef9c04d04c297955ff8e73c9c8b73088ae64151,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 21, 0, 12, 20, 0, 0, 0, 7, 6, 5, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/cboursnell/crb-blast,2014-04-29 11:38:12+01:00,10e3d9902ac7157efd110040104a4ff6dfd8d425,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 14, 0, 1, 0, 4, 0, 0, 1, 8, 8, 2, 9, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/yoriyuki/Camomile.git,2009-06-21 09:28:39+00:00,5bbba627977691f03b6c57c853bcf42256113083,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/pocl/pocl,2011-10-18 20:16:49+03:00,9b92906eda88817a9a7a569d0a062c7ad0f64139,"[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 26, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[35, 46, 14, 45, 1, 14, 38, 30, 58, 14, 6, 8, 25, 31, 11, 10, 15, 9, 18, 10, 10, 4, 5, 11, 6, 0, 1]","[5, 10, 5, 8, 0, 2, 11, 6, 12, 2, 2, 2, 7, 9, 1, 2, 3, 2, 2, 1, 2, 0, 0, 2, 3, 0, 1]",2,4,5,0 -https://gitlab.gnome.org/GNOME/gsound.git,2013-03-03 01:55:42+08:00,1fd3bd141467532aabb887903edf81176bd79fcc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 7, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/JJ/perl-mp3-info.git,2007-01-04 21:36:56+00:00,8e03b8bd9a414c83324b41af447a2884f36f2a78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/linux-rdma/rdma-core,2009-09-16 15:02:40-07:00,e333b8e2463b83cbb77cab87396fa175de683dac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sorich87/bootstrap-tour,2012-07-03 15:03:22+01:00,f8cf8c62981ef84ddc2561f7b2939d1f2a92832e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 22, 4, 1, 0, 11, 1, 1, 14, 0, 0, 0, 0, 2, 4, 1, 1, 9, 2, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 5, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0 -https://github.com/df7cb/postgresql-numeral,2017-04-01 18:31:07+02:00,05846b04a1aa9ac5dc8d4634841ebc0a2863478f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ncannasse/xml-light.git,2003-06-11 16:51:34+00:00,babf2584ba112b3e29c77683f30f004e45cb862a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ejwa/gitinspector,2013-07-12 03:50:21+02:00,cae99cb3f7bc944648bb962ddbece2154d5d391a,"[0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 3, 0, 9, 5, 0, 1, 14, 6, 6, 0, 7, 6, 8, 18, 20, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 7, 5, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 -https://github.com/ultrajson/ultrajson,2011-02-27 21:09:37+01:00,f184c5744f1965f3c8d5b68671c6d693fb47d2e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 6, 18, 0, 4, 0, 2, 1, 0, 0, 0, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0]","[2, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]",1,3,5,0 -https://github.com/getlogbook/logbook.git,2010-07-22 12:22:18+01:00,814be4bb37bd4989d377342aabb45d45ad9a6ef4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0]","[78, 1, 0, 33, 5, 12, 188, 57, 74, 42, 1, 0, 3, 3, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[8, 0, 0, 1, 1, 0, 24, 7, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,5,10,2 -https://github.com/ckeditor/ckeditor4,2012-08-21 17:14:46+02:00,67142516d5ecf595e7efc92c0648eed634390150,"[0, 0, 0, 0, 0, 0, 0, 90, 307, 4, 6, 23, 14, 30, 39, 82, 34, 31, 12, 35, 50, 145, 39, 99, 12, 68, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 15, 0, 1, 3, 1, 3, 3, 19, 10, 4, 3, 11, 15, 24, 13, 23, 4, 6, 0]","[20, 35, 36, 19, 9, 9, 14, 44, 68, 38, 46, 105, 107, 34, 3, 42, 24, 40, 12, 12, 0, 13, 8, 0, 34, 171, 1]","[5, 9, 13, 7, 5, 4, 5, 8, 16, 10, 17, 26, 24, 6, 1, 17, 9, 9, 4, 1, 0, 2, 1, 0, 9, 16, 0]",5,0,7,5 -https://github.com/redis-store/redis-store,2009-04-11 12:54:41+02:00,4d0f469dac65fc67b1c209a301b1acf743cfd22e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 31, 22, 1, 3, 5, 3, 6, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/davesteele/comitup,2015-12-08 17:01:54-05:00,cf3dacffa94627c2b7d488eac046a35d20870530,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 4, 7, 2, 0, 18, 13, 13, 24, 12, 0, 1, 4, 7, 3, 0, 7, 1, 1, 0, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/madsen/dist-zilla-plugins-cjm,2010-03-15 20:13:08-05:00,e212bd97ec490a006cfe2544b72d8c48c4a42e31,"[0, 5, 0, 15, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 14, 2, 7, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/vsergeev/u-msgpack-python,2013-09-29 07:09:19-07:00,736ee98064b6d9795099cf7ad2eda1d480e58915,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 5, 2, 0, 0, 0, 5, 1, 3, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/sebastianbergmann/phploc,2009-01-22 12:40:31+01:00,51a2e5ec792e0976a2a2dd4a4c215cdd6c82ab2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 11, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/lxqt/lxqt-powermanagement.git,2013-08-06 06:33:32-07:00,d5947e7a94ca4ca308b6202fc72bd415dba1018d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0 -https://github.com/drj11/pypng,2009-03-13 12:18:09+00:00,343323ef1247cb574ed0b5d1bfadfb6d5831f29c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 26, 24, 11, 12, 19, 7, 5, 4, 8, 0, 6, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/quantstack-debian/xtl,2019-09-10 21:24:57+02:00,e05f29436ada10045cedc631ac930babf18a7823,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/isaacs/node-glob.git,2009-11-01 21:03:59-08:00,d3c97e253b520e05a6d979adfa0a67e3f95653c1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tstack/lnav,2010-02-23 20:35:52-08:00,88889954b85185e4ef335dcb0f38ea70d734389c,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/fstl-app/fstl,2014-03-15 14:51:22-04:00,615d837b3bd6cfc50cc935f97248702551c36219,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/johndyer/mediaelement.git,2010-07-27 21:35:01-05:00,93d983133804e0b3bbd0dbff03dbef186923455e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 2, 5, 1, 4, 3, 2, 6, 0, 0, 3, 0, 0, 0, 10, 47, 2, 31, 14, 9, 2, 9, 0, 14, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,4,0 -https://github.com/achernya/hesiod,1988-08-07 21:49:56+00:00,e077b257d4b7d04eda76cf3e004bdc1fc745652f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/amueller/word_cloud,2012-11-04 14:57:59-08:00,c8230f32ece9d370879cdf4b6548918d12d7cd23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,1 -https://github.com/girke-lab/ChemmineR.git,2008-10-14 18:37:39+00:00,812a3d4e656419825b4ee2c8f84a72480538986d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/mongoengine/flask-mongoengine,2011-05-09 16:48:03+01:00,838e3fed96d1e038ddfca3f2902fc2c940d02a5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 15, 0, 2, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 3, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/Graylog2/gelf-rb,2010-11-02 17:30:59+03:00,421bf4d3f71befc659e68a1e8a7cbf31ac5dfc84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 32, 18, 26, 11, 5, 0, 0, 7, 8, 0, 7, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 5, 1, 7, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/eferdman/dehydrated-hook-ddns-tsig.git,2016-11-04 23:50:16-07:00,a596e0c0785d54a7817c232f5095e3d5976df56b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 31, 22, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://gitlab.com/onlyjob/writeboost.git,2015-06-12 11:17:35+10:00,0be8b404a9dc52a577395c848a48b56e46327a4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/seatgeek/fuzzywuzzy,2011-07-08 15:33:26-04:00,7d7e03befa7bf867233ebc214970cdb8267499e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 4, 0, 0, 1, 0, 1, 2, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/clojure/tools.logging.git,2011-03-11 11:12:31-05:00,4ee20655311f532dc9aa8259139bf52318b8b2b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 0, 0, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/anvilresearch/json-document.git,2016-02-04 18:27:07-08:00,071ca6aaa37feaf66461d139b01a3ef27d665256,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 13, 5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 24, 2, 10, 31, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 -https://gitlab.gnome.org/GNOME/glade,2001-06-19 03:29:28+00:00,dc4dfdf1884bda41748269b12280aecf4e05409d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 14, 8, 10, 4, 1, 6, 3, 7, 4, 4, 2, 0, 6, 1, 1, 1, 2, 0, 7, 2, 0, 6, 11, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0 -https://github.com/jquery/jquery.git,2006-08-14 02:00:28+00:00,f8402b9a081f0096986d140f809f4d57c6db7834,"[0, 0, 0, 0, 0, 11, 4, 5, 2, 1, 0, 1, 2, 11, 1, 6, 13, 32, 12, 5, 24, 13, 5, 13, 2, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 14, 26, 22, 19, 12, 10, 24, 24, 6, 16, 9, 13, 15, 8, 9, 5, 13, 27, 16, 53, 61, 18, 19, 12, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,8,0 -https://github.com/strukturag/libheif.git,2017-12-14 14:45:48+01:00,97f8cd6222a5b69135e9dc1b130e7eb200bb6e6b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 32, 36, 72, 85, 59, 35, 10, 67, 16, 0, 0, 0, 0, 20, 4, 35, 9, 4, 15, 2, 1, 8, 40, 4, 41, 1]","[0, 0, 1, 0, 2, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 4, 1, 1, 0]",1,3,9,0 -https://github.com/voxpupuli/beaker,2010-07-21 10:50:25-07:00,7e2fea573dde4f7e82c2e936a4c020e2d4055e9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 30, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 0]","[63, 11, 0, 1, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 6, 21, 15, 3, 16, 24, 20, 4, 1, 9, 0, 0]","[11, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",6,4,7,2 -https://github.com/sdgathman/pysrs.git,2017-07-27 23:38:56-04:00,dacb6fc7e1d97235898f229da3e9eb6f20c40ac7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 2, 0, 0, 3, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/twbs/bootstrap-sass,2011-09-06 20:08:31+01:00,c303d86d57e2fc8b5b9b4e812bc6820649941c71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/fusioninventory/fusioninventory-agent.git,2007-02-23 14:32:05+00:00,b484b46d5ffa65837123f07963b97782dcd1a8b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 11, 9, 0, 0, 0, 0, 24, 15, 0, 8, 25, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 8, 13, 17, 4, 7, 3, 8, 0, 0, 0, 0, 5, 1, 24, 6, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/whitequark/ocaml-inotify,2014-01-26 08:46:43-05:00,b93d43a8609027c532ae6ac7e5025bfb5a8f4300,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 1, 0, 4, 11, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/puppetlabs/puppetlabs-ntp.git,2011-02-23 14:05:56-05:00,384ffd957153f65eb4f47b3142d98853c31b4124,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/vmware/pyvmomi,2013-12-13 09:30:30-08:00,c03fac748a4286e65e3739688af71f0e7c775b3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 3, 0, 0, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 0]",2,3,11,0 -https://github.com/krig/parallax,2009-01-08 14:34:49-07:00,b24af9c96d353160b466f0f6217048ea17a0d014,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 0, 0, 0, 0, 4, 4, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/greenbone/openvas,2005-11-06 20:06:15+00:00,366905e40bfe94314580d76a24c2ab0d79f8e6b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 3, 33, 11, 1, 10, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/prometheus/mysqld_exporter,2015-03-12 13:23:48+01:00,8739b894e3709102ad65bea7068d3e3b989eb920,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 1, 4, 0, 0, 4, 3, 0, 0, 3, 0, 3, 5, 0, 0, 7, 2, 0, 0, 1, 0, 14, 11, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 6, 5, 2, 0]",1,5,15,0 -https://github.com/GoalSmashers/clean-css.git,2011-02-28 19:53:41+01:00,5a1b3a6a414f4df182d1f3557d84b985d364c341,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/mjambon/cppo.git,2019-05-27 00:50:57+01:00,55261fd39d4b0a6eb17ac9e07438f56469e6a01a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/hoelzro/linotify.git,2009-08-03 13:40:39-05:00,fff42a9963648dcbca8082a017e47428a4ccbfd3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/fcitx/fcitx5-gtk,2017-05-12 17:57:29-04:00,4014c205ec1d7f5738052b3928259b43c04feb31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 3, 0, 9, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ukui/ukui-control-center,2017-02-13 15:07:02+08:00,77c79b8fbad25b7973389134dc4ea8a34d312744,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 14, 9, 4, 7, 0, 0, 3, 2, 1, 1, 0, 0, 11, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,6,0 -https://github.com/ValeevGroup/tiledarray.git,2008-07-30 17:28:00+00:00,6fad665cf56d9416668f3b6447b850d1dd873780,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 8, 25, 5, 0, 0, 0, 0, 0, 1, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/geopandas/geopandas.git,2013-06-27 12:26:35-05:00,c8ba1daf43dd46ad81c60b1e109d2f37289cedd2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 26, 32, 5, 3, 2, 0, 28, 8, 0, 5, 12, 0, 15, 9, 6, 30, 22, 26, 29, 18, 11, 4, 0, 0, 0, 1]","[2, 3, 6, 2, 0, 0, 0, 4, 2, 0, 2, 2, 0, 1, 1, 1, 4, 4, 8, 6, 2, 1, 2, 0, 0, 0, 0]",1,2,9,0 -https://github.com/xtaran/systray-mdstat,2017-01-27 01:22:16+01:00,31d63fb5ddeb3b44a3109c1858484da4e7bc86d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 4, 3, 0, 5, 9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/stathissideris/ditaa,2011-04-21 20:59:06+01:00,76981bbd052f8d7b2c07646dd1f2d82989526a1f,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/jarun/googler.git,2008-10-13 13:17:55+03:00,3f6e257f1c261b1db162a7e21a12302b37bf5b6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/lamyj/odil,2015-07-16 14:16:22+02:00,f5076a144f10de74fe163338f832cab82276b5f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 10, 10, 0, 1, 2, 1, 6, 0, 0, 3, 9, 9, 5, 6, 2, 9, 18, 15, 2, 15, 26, 24, 40, 34, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0]",2,2,2,0 -https://github.com/state-machines/state_machines-activerecord,2015-01-06 15:29:20+00:00,89c12531e92a34fc2ae939e698c3674345ada033,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 6, 4, 5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 3, 0, 0, 0, 0, 0, 4, 0, 0, 1]","[0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,5,0 -https://github.com/rhinstaller/fwupdate.git,2018-01-11 11:01:14-06:00,6d8b91904b8ea7feb0c78a219ccf3bfe39801c79,"[0, 0, 0, 0, 6, 0, 0, 14, 11, 7, 2, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 6, 1, 0, 0, 2, 1, 2, 1, 11, 0, 0, 17, 4, 2, 0, 0, 0, 0, 0, 1, 12, 3, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,5,0 -https://github.com/florimondmanca/djangorestframework-api-key,2018-07-28 09:38:27+01:00,9980141e10b1dfeaaca3a6e0deebd36f5c144e7a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 0, 38, 20, 0, 9, 1, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,1,0 -https://github.com/savonet/ocaml-speex.git,2008-10-15 17:30:33+00:00,0e2c9f30ad0294de86864a77d864fcd183b83688,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/python-tap/tappy,2014-03-07 20:45:53-08:00,a46b12533d9b0e64c1d72737005de1e1357493ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 11, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/kivy/kivy,2010-11-03 17:05:03-04:00,1f2fb6eb41651e4d10cb51c24a24af66be37606d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[129, 8, 1, 7, 5, 3, 39, 4, 9, 58, 73, 29, 120, 26, 29, 38, 33, 13, 21, 23, 53, 12, 78, 55, 26, 22, 1]","[24, 0, 0, 0, 1, 0, 1, 0, 0, 4, 4, 0, 18, 0, 2, 0, 6, 2, 1, 1, 5, 1, 16, 12, 1, 0, 0]",1,6,10,0 -https://github.com/paravoid/gdnsd,2012-02-01 00:59:57-05:00,054157c5ec283835603f46ae84dfb2c3560a60d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 17, 23, 4, 3, 18, 3, 4, 10, 4, 0, 0, 2, 19, 1, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 3, 1]","[8, 5, 2, 0, 0, 3, 1, 1, 2, 0, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,2,0 -https://github.com/ranger/ranger.git,2009-07-20 05:41:26+02:00,426dc8f9b2946bfbbfe62f416b53a8483a14c4ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 4, 47, 27, 7, 25, 12, 70, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[56, 12, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 6, 27, 23, 19, 30, 70, 87, 38, 49, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,0,0 -https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2016-06-03 16:52:16+02:00,0236ef27e3c8828c51ff5d0910744aaacf234253,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/venthur/python-popcon,2017-11-04 15:10:32+01:00,a0776d4ef5577d2a348133a65ffdae0686f08ef4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0 -https://github.com/mapserver/mapcache.git,2011-08-26 10:59:54+00:00,c6c3d5e22f817dc76dd24901a62b2427994b0fe3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[370, 6, 1, 0, 3, 9, 3, 11, 16, 0, 2, 4, 0, 3, 6, 6, 0, 8, 14, 2, 7, 0, 5, 4, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/openstreetmap/osm2pgsql.git,2008-03-22 17:58:18+00:00,550fc0186cf771133152f641869c44eaa972fc0e,"[0, 1, 11, 3, 1, 1, 0, 3, 4, 1, 1, 2, 5, 0, 2, 0, 0, 0, 1, 0, 1, 2, 0, 2, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 5, 1, 7, 0, 0, 2, 4, 1, 3, 4, 0, 0, 8, 1, 6, 2, 1, 1, 0, 4, 3, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/SciTools/cartopy.git,2012-08-03 10:35:34+01:00,2084e853bf68cc3a59ab99f0dfcf9a6988cce025,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 5, 9, 0, 24, 26, 13, 37, 23, 28, 13, 17, 12, 15, 1, 37, 10, 4, 0, 0, 5, 1, 8, 6, 1]","[0, 0, 1, 3, 3, 0, 8, 10, 5, 12, 8, 10, 7, 4, 3, 7, 0, 11, 3, 2, 0, 0, 3, 0, 3, 5, 0]",1,6,11,0 -https://github.com/prometheus-community/node-exporter-textfile-collector-scripts,2016-12-22 22:57:14+00:00,4cac164d391d26036c31c199ba7a0fc6bdb2cc6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/oauth-xx/oauth-ruby,2007-11-27 06:10:32+00:00,e3cd7146c2ec45c7373cf63843c617ad3e30214b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/Jmgr/actiona,2010-05-10 14:30:03+00:00,76aa581b2fd96485defc5f9302660fe1ab9a1842,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 10, 5, 1, 10, 16, 5, 0, 19, 7, 9, 9, 26, 4, 12, 4, 4, 4, 11, 5, 3, 20, 2, 0, 5, 27, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]",1,2,4,0 -https://gitlab.com/compiz/compiz-plugins-main.git,2015-10-24 19:49:07+02:00,cf96d1fed7d6c1f5d833980395dec78066b8c1f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 0, 0, 3, 0, 0, 5, 0, 0, 0, 1, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/NICMx/Jool,2011-09-26 12:19:46-05:00,a22eed1df8e7ad97e95f5a8474a712882f6fface,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 15, 17, 14, 5, 11, 58, 36, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[0, 0, 3, 1, 0, 0, 0, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/martanne/vis,2014-09-13 19:10:07+02:00,da264da19a0f8fccffad699f40be35fd2b82822f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 14, 2, 1, 5, 4, 13, 27, 78, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 44, 14, 1, 5, 21, 4, 0, 1, 0, 0, 0, 0, 2, 5, 11, 19, 25, 4, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,14,0 -https://github.com/a2o/snoopy,2015-05-13 13:28:36+00:00,ea5567b728663d2c825a183779b363df52f1271a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[92, 67, 27, 10, 30, 17, 0, 0, 4, 2, 1, 0, 1, 4, 0, 9, 1, 0, 0, 0, 0, 1, 4, 10, 0, 0, 0]","[2, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/symfony/contracts,2018-07-13 19:06:58+02:00,316e2120250017445eef76c1b9a80ee863f90d6e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 4, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/Libvisual/libvisual,2007-10-24 21:53:00+00:00,bff24ac0f772b61ec28bcf247ea1edbc0dbeb3c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/theseer/fDOMDocument,2012-10-28 02:45:20+01:00,bd316b39247ac56c7a59232454e83728358695f4,"[0, 0, 0, 0, 1, 8, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 3, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/coin-or/Clp,2002-07-30 19:14:29+00:00,b42534866981c7939cf699bbc719338c76ceda87,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 9, 3, 6, 2, 0, 6, 8, 8, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/openstack/liberasurecode.git,2014-04-20 23:07:49-07:00,76a551dca73650ac2c429b6946e712fcc7887e2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 2, 7, 3, 22, 14, 11, 55, 28, 11, 14, 5, 11, 9, 13, 3, 1, 3, 16, 7, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 2, 3, 2, 1, 1, 0, 0, 1, 0, 0, 0]",1,3,4,0 -https://github.com/bbcmicrobit/micropython.git,2015-08-07 12:58:54+01:00,0d5783af12a1c273c4e6c951f5437dd07b708bd5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 1, 0, 14, 20, 12, 12, 11, 6, 16, 18, 12, 12, 11, 9, 17, 0, 2, 1, 1, 2, 6, 23, 7, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]",1,3,20,0 -https://github.com/hboetes/mg.git,2016-01-24 22:16:49+01:00,45b62e7f434fdcd6aa6230f4ddf38c9ca6336b8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/obriencj/meanwhile.git,2004-06-01 23:24:53+00:00,2c6f8373a3029c94223aa3aa7769f5bcca4f591f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 9, 21, 2, 0, 1, 0, 0, 3, 3, 0, 0, 0, 0, 0, 4, 3, 5, 7, 1, 0, 3, 3, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/RobertBeckebans/RBDOOM-3-BFG,2012-11-26 09:22:41-08:00,a5214f79ef68252f51402006a52deebdee2d803e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 14, 30, 24, 5, 37, 5, 5, 1, 0, 2, 0, 0, 0, 0, 19, 4, 6, 0, 2, 0, 2, 0, 0, 0, 2, 1]","[1, 1, 5, 1, 0, 7, 3, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,6,0 -https://github.com/headius/ruby-atomic,2010-06-08 00:01:57-04:00,d94363f8ec73b7eaf2dc9658fdf2cb1b50958494,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/madsen/p5-Palm,2009-08-16 00:39:10-05:00,8e24139734ace39082b085a789013dcff774f6da,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/davisp/jiffy.git,2011-04-03 19:27:49-04:00,e8c05b4145e776ef7ee580069843c7794d8eb5c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/linuxmint/timeshift.git,2013-10-05 11:04:20+05:30,0ff459072bc4dba97438889e36cec47add9c21da,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 18, 10, 6, 14, 6, 0, 4, 2, 0, 0, 6, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jonathanwin/yagv.git,2012-11-18 16:31:02-08:00,bfbf83f2db342acafd2e0acb7e75b72ed1020728,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 -https://github.com/google/benchmark,2013-12-20 14:51:56-08:00,01af2bc857f6824594b4a4af2f957fcdfe06e2dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[3, 0, 18, 10, 4, 0, 4, 8, 0, 2, 0, 0, 3, 0, 0, 4, 4, 9, 0, 6, 0, 0, 3, 12, 2, 0, 0]","[0, 0, 2, 2, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 2, 0, 3, 0, 0, 0, 6, 1, 0, 0]",1,3,13,1 -https://github.com/ropensci/RNeXML.git,2013-06-30 09:15:59-07:00,0673d170f6f742f1db06f2d4163ae597d03f47bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 1, 10, 0, 4, 0, 11, 18, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/pyxnat/pyxnat.git,2010-08-17 16:14:17+02:00,9f379eb00d882ea64e165c08407b155e90b2dd8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 0, 0, 1, 1, 1, 3, 1, 0, 1, 0, 1, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/lepture/python-livereload,2012-05-03 23:53:37+08:00,8ef49f8d576bf33f27bfdbd8ba8031ca1c08bf2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 2, 0, 5, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/duritong/trocla,2011-07-27 18:43:55+02:00,9146a541ff96b92f4f14c6292307b68dc4673097,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/googlei18n/fontmake.git,2015-11-16 16:58:47-08:00,ff8f62e92f06cef4158fb9be327487d45ba047e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 0, 0, 0, 2, 0, 0, 3, 1, 9, 3, 7, 1, 2, 0, 3, 8, 16, 1, 6, 4, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0]",1,2,3,0 -https://gitlab.freedesktop.org/spice/usbredir.git,2011-07-14 16:22:21+02:00,ee954d28286408262c6762a22e5e0871e8baa00b,"[0, 0, 0, 17, 0, 17, 12, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 9, 0, 0, 4, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 5, 3, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 7, 5, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/python-hyper/hyperlink,2017-03-24 18:22:10-07:00,c6f44153b3a1fe978df0f8ce56a2c5bf43c2b1d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 6, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 12, 57, 27, 8, 0, 6, 0, 0, 2, 1, 0, 31, 19, 17, 10, 20, 7, 0, 3, 2, 6, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 2, 5, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0]",1,2,9,0 -https://github.com/naelstrof/maim.git,2013-09-28 13:40:33-06:00,6f331d847d6fcf3c90638ea0313401cd8d0ffad2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 -https://gitlab.com/sebholt/qastools,2011-11-18 14:10:01+01:00,24efee36df19c8ac2abb9dfbf06ed42a5d09853e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 6, 8, 16, 19, 6, 18, 26, 12, 0, 6, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/XMLTV/xmltv.git,2001-11-02 17:58:03+00:00,89a69bef532f957828549ec299b1692a207de087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 33, 9, 7, 1, 7, 17, 19, 24, 16, 3, 18, 19, 27, 22, 5, 29, 34, 12, 15, 1, 6, 1, 12, 26, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/spanezz/staticsite,2016-02-28 10:41:40+01:00,f09ff50df8cf78aad0acf708c63e361c8fd1214c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 29, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 3, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/miguelgrinberg/Flask-SocketIO.git,2014-02-08 23:22:50-08:00,63db33d193e651b5df8a0ae305098dbb33832a58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 10, 3, 2, 2, 5, 2, 2, 1, 0, 8, 0, 3, 2, 3, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/python-otr/pure-python-otr,2011-11-05 15:32:21+01:00,a53dedfcc6bc6874650d9ecdb0aa59117afa0e35,"[3, 0, 7, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 0, 0, 3, 3, 0, 7, 4, 2, 1, 2, 0, 0, 4, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/gitpython-developers/GitPython,2008-05-07 16:49:48-04:00,33ebe7acec14b25c5f84f35a664803fcab2f7781,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 12, 4, 49, 7, 9, 9, 0, 1, 0, 8, 4, 0, 1, 2, 2, 2, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,8,0 -https://github.com/perfectline/validates_url.git,2010-09-08 15:43:46+03:00,68dc01206cbb0e2a894df120e53d66f40be45f08,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://gitlab.com/craftyguy/networkd-dispatcher,2017-01-04 18:56:34-08:00,cb3329178c31105639215b286e7ed5fa9a8bc24c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 17, 2, 26, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,2,0 -https://github.com/Tlf/tlf.git,2009-11-06 12:27:33+00:00,b79ce94a43655f9a4015c6f546cf357f2c6d131d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/CarlFK/voctomix-outcasts.git,2016-04-29 23:01:16-04:00,ce604ea1116133b4cf8c97736d6712c372502de7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 3, 0, 0, 0, 2, 1, 21, 1, 3, 0, 2, 0, 12, 0, 0, 0, 8, 1, 0, 17, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0]",2,3,3,0 -https://gitlab.com/compiz/emerald,2006-09-27 23:27:36+00:00,5636dbda85aecac177418e1c515fecf246d87bb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 10, 20, 27, 6, 10, 6, 6, 3, 12, 13, 4, 6, 5, 1, 5, 5, 12, 8, 1, 4, 2, 1, 1, 13, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,24,0 -https://github.com/miyagawa/Filesys-Notify-Simple.git,2009-10-21 02:53:08-07:00,cc9452fdc1340bd040e5eca11cba6c1b73a17fbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/crypto-browserify/sha.js,2013-12-24 19:52:15+07:00,c1cabff65dc811bd9c7e7530aab90db3b1080f04,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[73, 13, 8, 14, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/Grokzen/redis-py-cluster,2013-05-20 23:41:35-07:00,31dd3d2b5f303b4a039cef5c2d46dabce8cc6970,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/the-cavalry/light-locker,2005-04-14 19:59:44+00:00,3270cf30f07ad685d7a38216fd13e735d575072d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 16, 6, 10, 3, 7, 3, 6, 13, 14, 10, 13, 21, 9, 5, 13, 2, 1, 4, 24, 12, 8, 7, 21, 22, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0 -https://github.com/troglobit/smcroute.git,2011-10-09 16:06:57+02:00,1dc25e14ef1ac1154dcb5740ee0857464a694e74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 14, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 17, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/alexmurray/indicator-sensors.git,2011-04-03 20:45:21+09:30,cd2ceaa0b87255ad58560007192e2a4bee83bbac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 17, 10, 15, 19, 10, 14, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 9, 1, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/htop-dev/htop,2006-03-04 18:16:49+00:00,d6231bab89d634da5564491196b7c478db038505,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 0, 0, 2, 0, 0, 0, 9, 4, 2, 6, 8, 0, 0, 0, 1, 7, 0, 3, 1, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-notes,2012-08-18 00:16:20+02:00,bdc8b05108e17d25a4e3fed3ea3ef3d768579c42,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 12, 5, 31, 25, 13, 28, 28, 11, 8, 1, 7, 4, 37, 19, 20, 9, 10, 7, 16, 4, 9, 1, 9, 8, 10, 1]","[0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,16,0 -https://github.com/infirit/caja-admin,2014-12-14 12:14:17+00:00,e255f48679f9596c487ab368ecec614f77ff83db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 3, 4, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/openalpr/openalpr,2013-11-09 07:26:02-08:00,b9ab379a2b2f4bdc9d99d508cf9e61da357d47f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 11, 6, 2, 3, 7, 1, 7, 37, 2, 0, 0, 11, 12, 12, 23, 0, 3, 3, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 6, 1, 0, 0, 3, 1, 3, 0, 0, 0, 0, 2, 0]",2,3,4,0 -https://github.com/jarun/nnn.git,2016-08-20 19:40:14+05:30,66d9e933baef509881aba27cb5f424392c4e01c8,"[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[28, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/simi/omniauth-facebook,2011-10-15 00:36:27-07:00,2f871a07cea5a7a8957f7cc9dec6a20332b418b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/FriendsOfPHP/proxy-manager-lts.git,2013-03-19 10:42:39+01:00,22f469f74232182ee42e37f567b7f42fd65fedf5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 46, 0, 4, 34, 7, 4, 3, 3, 0, 0, 9, 18, 18, 25, 3, 2, 0, 0, 48, 0, 9, 0, 9, 0, 34, 1]","[4, 5, 0, 1, 3, 1, 2, 1, 1, 0, 0, 2, 1, 5, 4, 1, 1, 0, 0, 2, 0, 2, 0, 3, 0, 4, 0]",1,1,6,0 -https://gitlab.dune-project.org/extensions/dune-grid-glue,2009-05-27 15:48:50+00:00,0c2f431f53d044e07bb4b6ea4fe4d4f15d0520db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 6, 4, 48, 11, 18, 19, 12, 9, 3, 0, 9, 40, 27, 9, 12, 40, 9, 18, 2, 3, 1, 4, 7, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/vapier/ncompress.git,2006-09-28 21:15:42+00:00,e7a71c8c58a6ed7fddcdcfd93f30edfacb42755f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/linux-on-mac/mbpfan.git,2012-01-25 10:26:01-05:00,1dfe7d981075569d22ae67ac3e373343b61b099f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/ninja-build/ninja.git,2010-10-23 21:00:12-07:00,c42e512fb56b5e12116a759f5c3e30bf3ad28c0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 46, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 12, 28, 11, 13, 45, 5, 11, 17, 3, 25, 7, 13, 12, 22, 10, 0, 0, 15, 12, 3, 3, 0, 1, 4, 25, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0]",1,1,13,0 -https://github.com/babel/grunt-babel.git,2018-03-19 14:23:05+01:00,628b912e793d06f8f4d7c4caec2bde7116c53cb5,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://gitlab.cern.ch/dmc/gfal2,2012-04-18 15:31:24+00:00,dbb5d22fbb0e7aa5a362f351a07fb3ecb3770203,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 13, 13, 0, 18, 3, 7, 6, 6, 4, 0, 0, 14, 12, 9, 6, 5, 9, 25, 2, 2, 0, 17, 27, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/letoh/ocaml-usb.git,2009-10-23 22:55:48+02:00,d42f26d094b1709038d6b0222105d862d03984c4,"[3, 2, 4, 4, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/basho/bitcask.git,2010-04-27 14:21:02-04:00,0a45a771ae96fb5628d9b3c50291470a34b9f77a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 28, 4, 5, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 1, 0]","[13, 19, 28, 2, 4, 9, 1, 10, 6, 6, 4, 3, 1, 4, 7, 7, 1, 0, 1, 0, 0, 9, 2, 5, 0, 2, 0]","[1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,2 -https://github.com/ultrabug/py3status.git,2013-02-19 06:59:13-08:00,e88d2d968cd02e68237af97a4352f421b6088a3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 3, 8, 4, 0, 10, 13, 9, 5, 0, 1, 0, 0, 0, 0, 0, 8, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/tych0/xcffib.git,2014-05-18 17:23:31-05:00,66cc1b8b6db248f50acc07fae14c673a2a345ada,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 11, 13, 32, 14, 13, 20, 9, 2, 0, 7, 16, 13, 1, 2, 9, 3, 0, 0, 10, 8, 0, 4, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/survivejs/webpack-merge.git,2015-06-26 13:20:27+03:00,888fd232ab2ea186a6c0a46566b24c7db0629a1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0, 0, 2, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,4,0 -https://github.com/trezor/trezor-firmware.git,2016-09-27 17:19:47+02:00,a8d5432fd5ba7d2f47a6b76f96abd3d57c7fbb6e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[448, 67, 17, 26, 7, 23, 46, 40, 12, 2, 19, 12, 1, 4, 2, 3, 18, 0, 2, 13, 12, 4, 9, 13, 23, 17, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,7,0 -https://github.com/spaam/svtplay-dl,2011-10-11 20:30:39+02:00,4ae1c73079d97b07201d38ea78012e1d877c2eac,"[0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 6, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 10, 3, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 10, 0, 0, 3, 0, 0, 0, 5, 0, 0, 5, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0 -https://github.com/firecat53/urlscan,2009-10-08 22:35:01+02:00,ec9cc4fee60e09ef83cfd726294cf832c47f808f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bbidulock/blackboxwm,2001-11-30 05:09:48+00:00,85dee0c8029ad9689d21bbddb17645bfdfa49863,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[137, 0, 0, 0, 0, 0, 0, 0, 24, 4, 6, 68, 20, 2, 31, 12, 50, 12, 4, 15, 21, 10, 21, 37, 47, 25, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/grobian/carbon-c-relay.git,2013-12-13 11:43:42+01:00,f223b70f04b261d30521006939e6fdea438792a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 46, 15, 5, 6, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 1, 13, 31, 15, 16, 14, 11, 11, 26, 17, 25, 12, 4, 17, 0, 0, 4, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/pgpartman/pg_partman.git,2012-09-05 01:07:50-04:00,8326fb03611b2c541e6f31ba18f28b3272eb3805,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 1, 3, 4, 0, 0, 0, 3, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/rizsotto/Bear,2012-10-30 17:14:07+01:00,2d758d3d82f9d2613c1b5d8335b028e2240a665d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 0, 0, 0, 29, 2, 0, 11, 30, 5, 0, 0, 2, 0, 1, 0, 0, 0, 5, 0, 2, 0, 0, 0, 26, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/Qiskit/qiskit-terra,2017-03-03 18:09:31-05:00,8800edbcf1bb8870bd6429eab7c8edc10293e220,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 5, 2, 3, 13, 1, 11, 4, 28, 103, 236, 36, 3, 6, 0, 11, 40, 31, 32, 50, 93, 89, 39, 7, 19, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 85, 14, 2, 1, 0, 0, 4, 9, 3, 7, 17, 26, 19, 4, 8, 5, 0]",2,13,20,0 -https://github.com/scanmem/scanmem.git,2007-12-16 23:03:54+00:00,da4dc9e7d667a2f2f291bbe273db18b272cf37b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ReFirmLabs/binwalk,2013-11-15 12:45:40-08:00,4001b759711ddb16b73006f4a3ee64ea1d85c2a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 15, 44, 14, 26, 50, 1, 37, 6, 10, 1, 3, 4, 5, 0, 9, 4, 0, 10, 0, 2, 3, 25, 10, 3, 2, 1]","[3, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,5,0 -https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin,2003-10-08 15:04:04+00:00,384fa9f6cb2298efb81215ddc5ec4f085bbe4a73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jodal/pykka.git,2010-11-15 00:47:04+01:00,f2366b7915b1ff0a35c93679f3c7e47884c9c2a4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 4, 0, 26, 1, 0, 0, 0, 1, 0, 0, 2, 18, 18, 9, 28, 5, 12, 23, 14, 0, 0, 1, 6, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/webmozart/assert,2015-03-11 13:13:28+01:00,2e101de251958f0c2e04c7d24f219b6172d5c4b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 6, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,1,0 -https://github.com/nvbn/thefuck.git,2015-04-08 18:15:49+02:00,71f1f4224b267711bd9cc372a2ec69902f423a01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 154, 72, 32, 45, 46, 18, 30, 9, 12, 7, 14, 20, 19, 62, 72, 21, 10, 21, 32, 33, 41, 5, 0, 1, 4, 1]","[0, 48, 23, 6, 13, 12, 5, 14, 3, 3, 2, 2, 8, 5, 13, 11, 3, 4, 4, 5, 7, 8, 2, 0, 0, 2, 0]",1,5,70,0 -https://github.com/Bumblebee-Project/bbswitch,2011-12-27 19:46:22+01:00,b3214826507fefd74f1b2c708827d01a120820af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 10, 12, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 3, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,5,0 -https://github.com/linuxmint/cjs.git,2013-07-19 20:45:49-04:00,bcc84c818f2fa94bea1f0fe192e14e4af7c43797,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://gitlab.com/sagemath/symmetrica,2020-01-07 10:41:13-05:00,f01a825f0c0098d2472f81e875a8dabb569c6237,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/codedread/scour.git,2013-10-22 07:02:57-07:00,f3a7507d8246118d16d7fba1e3b924bab65ccfbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/Cacti/cacti,2002-05-18 20:29:57+00:00,eb59dd520f710a827967399984773f133550c132,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 14, 41, 9, 10, 16, 0, 6, 11, 6, 9, 7, 8, 8, 0, 3, 0, 0, 0, 0, 2, 2, 29, 29, 15, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/bkeepers/dotenv,2012-07-23 23:39:43-04:00,c3568a06b341f1182bd4e8b0d6e58a594cac7966,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 3, 0, 9, 9, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 3, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,9,0 -https://github.com/libimobiledevice/ideviceinstaller.git,2010-01-05 04:52:50+01:00,e0cf27624accbcd49ff628919a2546685e3136d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/posva/catimg.git,2013-05-27 00:07:32+02:00,64b9d9c03c3b72a945a6a0d86ff323e79458b2a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/tat/mimetic.git,2014-02-15 04:31:07-08:00,cdf6f48cf94eb10ef3702013e8ac14fe74daa893,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/etingof/pyasn1-modules.git,2011-02-17 18:35:16+00:00,8b513895caeda00b34f662bec79238a5bf636383,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tristanheaven/gtkhash,2011-03-31 21:32:46+01:00,d8fe578bc5268745cfafc060e6c6259baf36ccde,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 3, 1, 4, 2, 0, 1, 6, 2, 1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/pitivi.git,2004-05-01 10:48:55+00:00,509ec404f4e7314ebd027a2c74607582fb71c185,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 48, 11, 1, 5, 10, 18, 17, 30, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 2, 22, 35, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 -https://github.com/libwww-perl/URI.git,1998-04-10 09:10:26+00:00,28c0706b9fbdfa6cf9ba5da5c4184fc4ec0290d8,"[6, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 125, 43, 27, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/thlorenz/proxyquire.git,2012-07-03 16:15:15-07:00,e9b52196c815da54d131b5df5cdbd433c6d6577f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 11, 1, 16, 18, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 0, 0, 0, 0, 4, 5, 33, 0, 13, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/mysticatea/eslint-plugin-node.git,2015-11-23 16:09:51+09:00,53a96758e7d16c882cd5b0f3e939b9e1dc6ecaba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 2, 3, 4, 4, 19, 7, 6, 10, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 8, 5, 2, 1]","[0, 0, 0, 0, 0, 0, 4, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/OpenRTX/dmrconfig.git,2018-08-20 23:24:38-07:00,abebad7dbd0ab8338a65bb62ae45c31cb3fe5c99,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 20, 25, 25, 19, 5, 6, 7, 10, 27, 15, 3, 6, 9, 2, 5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 1, 0, 1, 1, 0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/collectiveidea/json_spec,2011-07-08 13:30:11-04:00,8706422f753378ca79f96026d04b5a1fe81f81e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 0, 6, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[1, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 -https://github.com/jackfranklin/gulp-load-plugins,2013-12-04 00:48:12+00:00,e73ae465591211528ece2cbd15cbc224b950e7ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 2, 0, 3, 0, 4, 0, 2, 0, 0, 4, 4, 1, 0, 0, 1, 6, 0, 0, 0, 1, 1, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/argerim/select2-rails,2012-05-07 19:32:15-03:00,5fa0d7b6aa07ae5210ab841c1ecc56e72d17334a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 1, 2, 0, 1, 0, 1, 1, 0, 1, 5, 6, 0, 8, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/warner/magic-wormhole.git,2015-02-10 00:38:44-08:00,82d8d02445a0d3674aea2bcfb7cc7a75e943bdc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 20, 6, 1, 18, 10, 5, 1, 19, 2, 0, 7, 0, 0, 0, 1, 0, 0, 11, 1, 0, 0, 2, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://gitlab.gnome.org/GNOME/simple-scan.git,2009-11-13 18:15:15+11:00,659050732d95eed59f5be3037b1b3b024b100840,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 27, 11, 2, 33, 29, 5, 1, 7, 19, 13, 2, 18, 62, 14, 34, 28, 31, 30, 6, 13, 13, 10, 5, 5, 3, 1]","[0, 0, 0, 0, 1, 3, 0, 0, 1, 3, 2, 0, 1, 2, 2, 2, 1, 1, 1, 0, 2, 1, 2, 0, 1, 1, 0]",1,3,6,0 -https://gitlab.com/accounts-sso/libaccounts-glib.git,2009-04-28 13:52:23+03:00,20207243a81a20f61cbdc13e48e00a9957d09a50,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 8, 16, 35, 37, 1, 18, 7, 0, 2, 0, 2, 0, 4, 10, 1, 6, 14, 0, 8, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/resurrecting-open-source-projects/sniffit,2019-09-06 18:48:41-03:00,e1b5d1ab68f3e3cbee02baeec765ae95636553cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rstudio/rmarkdown,2014-01-24 11:18:43-05:00,04b435dbe1ddc6e4a050ebb2c17721ebe5241133,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[95, 67, 97, 17, 13, 16, 8, 27, 20, 47, 35, 40, 21, 35, 17, 24, 24, 7, 34, 1, 7, 8, 1, 13, 6, 6, 1]","[1, 7, 9, 0, 1, 1, 1, 0, 0, 6, 5, 6, 3, 9, 1, 4, 4, 3, 3, 0, 0, 1, 0, 3, 1, 3, 0]",2,5,14,0 -https://github.com/dnstap/dnstap-ldns.git,2013-05-11 11:13:49-04:00,3b4eebd2ad4d903cbfa08f1883def67407492563,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/neomutt/neomutt,1998-06-08 09:16:03+00:00,1a5381e07e97fe482c2b3a7c75f99938f0b105d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/JamesHeinrich/getID3,2013-07-29 22:36:20-03:00,7401a6c5a00165a56d5f2b56fada618360d56346,"[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,1,1 -https://github.com/geopython/geolinks.git,2014-05-11 15:28:19-07:00,4fe243f67d67d55b71db60c33bd7c2b648940ff7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/schani/metapixel.git,1999-12-28 15:26:55+01:00,6129962af8cddac5cee5e838ee2457d1f5d0071b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/fnando/browser.git,2010-07-16 14:24:22-03:00,3746499906339a3f8af692eaa719268dbc03d2df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/resurrecting-open-source-projects/nbtscan,2019-08-18 22:30:25-03:00,26c63155cfcce89d3c32e849b9352e54e3b383dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ros-infrastructure/rospkg.git,2012-04-04 17:06:38-07:00,621810ed0864f0848dd938588ea77a77952162bc,"[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 5, 17, 2, 10, 6, 3, 4, 1, 13, 8, 0, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 2, 0, 1, 0, 0, 2, 1, 0, 0, 1, 0]","[0, 0, 0, 2, 0, 0, 0, 5, 9, 1, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,2,4,2 -https://github.com/sargon/trayer-srg/issues/new,2010-01-26 08:45:41+01:00,3d4a69db156ece98e0bcbe0aecb2436988d4c6b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 1, 0, 0, 0, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/msgpack/msgpack-ruby,2011-08-25 13:58:38+09:00,c605a0af5ad580a0a62434c247633f835f0dd6ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 1, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/pantherb/setBfree.git,2012-07-11 23:51:17-05:00,e5c05b1a6e2e056b879bfbd7dede002c15f9e6d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/djs55/ocaml-sha.git,2006-08-17 10:57:13+02:00,c5e6213b67088f57a86d7bbcff77f1b543392ed5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 14, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/workhorsy/py-cpuinfo,2013-11-05 23:12:11-08:00,b7d44a4b1b70e6b8f9468d947cfba805fa157ee9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/eulerto/wal2json.git,2014-02-19 10:34:12-08:00,fc77351e10feb1d6a66ce8e5168326898a5c4be1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/juba/scatterD3.git,2015-06-23 17:20:41+02:00,cb30edc105b2d678e76b3b4e081379a5052a77cb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[27, 12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 4, 42, 20, 0, 7, 0, 0, 3, 23, 28, 8, 1, 5, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 1, 0]",1,0,2,1 -https://android.googlesource.com/platform/libnativehelper,2008-10-21 07:00:00-07:00,ad83f63492fb91e7f8120fb78a01acee5b29c386,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/alexmyczko/modplug-tools,2018-09-03 16:19:31+02:00,2025c218b3cff3a59c81dda7b1ddc013af02c087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/OpenSCAP/openscap,2008-11-03 17:58:30+01:00,768d2d13c7b95736738ce2a48db7f2e528c161fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 1, 16, 14, 7, 6, 7, 7, 4, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 -https://github.com/nodeca/js-yaml.git,2011-10-03 13:41:35+02:00,d61b9314a38d4a781ef51a486b069d949c46a43e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 13, 71, 105, 103, 6, 11, 4, 17, 28, 19, 3, 0, 1, 0, 0, 0, 0, 3, 4, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 9, 7, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/terser/terser,2012-08-27 12:29:53+03:00,ce8e8d57c0d346dba9527b7a11b03364ce9ad1bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 28, 17, 15, 35, 42, 19, 5, 7, 24, 10, 4, 5, 4, 1, 3, 0, 7, 3, 6, 2, 5, 7, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 0, 0]",1,2,12,0 -https://github.com/pickleshare/pickleshare,2014-01-22 14:12:52+02:00,327a9b7cfce1afa53c6b71282596b5d487d512e0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/pysimplesoap/pysimplesoap,2011-12-19 09:49:25+01:00,be3c7770496539c74b258b9ead42327483c00deb,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 17, 3, 2, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 8, 2, 0, 0, 0, 3, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,5,0 -https://github.com/tarantool/tarantool,2010-09-08 17:42:13+04:00,9b8dd7032d05e53ffcbde78d68ed3bd47f1d8081,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 16, 1, 0, 30, 13, 6, 5, 30, 49, 5, 11, 25, 19, 9, 20, 5, 0, 20, 4, 3, 12, 9, 17, 17, 6, 1]","[0, 1, 0, 0, 2, 2, 0, 1, 3, 4, 1, 0, 4, 3, 2, 3, 1, 0, 8, 0, 0, 4, 2, 2, 3, 2, 1]",2,4,7,0 -https://github.com/jonschlinkert/map-visit,2015-07-04 16:27:45-04:00,c42a1faeff7f2b1ca7aba60aac3213178909db73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/phw/peek.git,2015-12-16 18:14:24+01:00,6a6f563cdd1bbcc9069838ccbc8d67f57e6ab6a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 16, 44, 14, 0, 4, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 -https://github.com/skymizer/SkyPat,2014-03-03 16:01:15+08:00,828072875f90a269ce41e3277dabc2d0ba9fd92e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/irontec/sngrep.git,2013-06-20 19:11:33+02:00,d304ecbfe0052f60a55bf00b390fa3d1be992430,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/AlbrechtL/welle.io,2015-11-06 20:02:05+01:00,c81a87028dac810187f09d0a7ab059c45fe9c3a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 13, 2, 5, 5, 1, 2, 3, 0, 3, 2, 0, 0, 2, 2, 4, 1, 1, 7, 4, 1, 0, 1, 2, 1, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://invent.kde.org/plasma/plasma-integration.git,2013-12-20 20:11:24+01:00,2b25d450149445583c0c66da1a090e8cd311d580,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 5, 10, 2, 4, 0, 2, 3, 4, 1, 1, 2, 1, 0, 1, 2, 7, 4, 0, 0, 0, 3, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,16,0 -https://github.com/ocaml/ocaml-re,2011-12-21 22:43:10+00:00,594c50761808dd42a5658e9901dc7d9acd65823e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/PurpleI2P/i2pd,2013-09-01 08:09:28-07:00,bab26a5a14ee7a13014700ced66022a2769c385d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 2, 6, 0, 4, 4, 4, 1, 10, 3, 2, 8, 23, 15, 39, 52, 40, 15, 11, 10, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 10, 12, 13, 4, 2, 0, 0]",1,4,3,0 -https://github.com/libimobiledevice/libimobiledevice.git,2008-07-30 23:50:39-07:00,47d60e2b9f8ddec18107cee21e046cd4df50fdef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 20, 14, 24, 30, 0, 1, 1, 1, 3, 1, 0, 10, 3, 0, 1, 0, 0, 0, 0, 0, 0, 7, 5, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,7,0 -https://github.com/prawnpdf/prawn,2008-04-04 18:43:04-04:00,722604019a24f0961dcff5d65206ded5f8fab778,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 21, 50, 14, 26, 26, 56, 96, 30, 40, 118, 22, 2, 64, 80, 48, 69, 33, 45, 20, 1, 13, 5, 2, 0, 0]","[0, 0, 3, 6, 2, 2, 4, 6, 24, 4, 6, 8, 2, 2, 10, 10, 2, 8, 1, 1, 0, 0, 0, 2, 1, 0, 0]",1,4,16,0 -https://github.com/vim-airline/vim-airline.git,2013-06-30 11:49:56-07:00,25b9d4d48bd8c0a3daf3859998825e2e55562f70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[95, 65, 21, 45, 30, 63, 59, 95, 87, 82, 29, 30, 44, 22, 4, 2, 4, 3, 4, 2, 2, 0, 5, 10, 6, 6, 1]","[8, 15, 2, 12, 3, 5, 5, 13, 5, 12, 5, 7, 9, 5, 0, 1, 1, 1, 1, 0, 1, 0, 1, 4, 0, 2, 0]",1,4,61,0 -https://github.com/djberg96/pathname2,2010-01-06 18:08:07-07:00,e2e082984e09a6dc695950208b87d7fe54393043,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/IRCAD/sight,2015-07-08 14:14:36+02:00,98c3cc47d3c2a433983374acddc8ceba383ce279,"[25, 1, 16, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 5, 0, 0, 0, 0, 0, 0, 12, 9, 4, 0, 0, 11, 5, 0, 11, 29, 0, 0, 25, 2, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,7,1 -https://github.com/languitar/autosuspend.git,2014-10-22 21:30:42+02:00,2bca55e9546ad519d50078537ead6db19145fd94,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/audacity/audacity.git,2010-01-23 19:44:49+00:00,e74978ba776f78158e3e9729d5fda6814358ea3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 12, 34, 7, 11, 17, 25, 13, 8, 6, 12, 8, 14, 8, 11, 4, 0, 1, 3, 8, 8, 2, 13, 9, 7, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 -https://github.com/definite/ibus-chewing,2008-06-29 15:57:07+08:00,058ff8eec8aa8a7e5e8e7b404f2f47d87456bfaa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 4, 3, 3, 16, 33, 3, 1, 6, 3, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/osmcode/pyosmium.git,2014-09-23 00:07:12+02:00,3e79ea927148eea21b5a3287643663d23e1228f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 3, 10, 3, 1, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 1, 2, 8, 1, 0, 0, 0, 0, 6, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/icecc/icemon.git,2012-11-09 22:33:19+01:00,8cabea28d321b88ff59569945eb1b89105a86f33,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,1 -https://github.com/libimobiledevice/libusbmuxd.git,2013-09-17 11:00:31+02:00,c45ae1f6b6f53995a5bc99591688102d11ad2148,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 8, 0, 0, 0, 3, 1, 0, 0, 2, 0, 0, 2, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/snare/voltron.git,2013-06-25 19:07:17+10:00,8f662a4337c055b78b788b9174b0412edef2b31f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 31, 5, 7, 1, 0, 0, 1, 1, 0, 0, 0, 38, 4, 0, 26, 0, 4, 13, 9, 1, 0, 1, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 4, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0]",1,3,5,0 -https://github.com/npm/node-tar,2011-03-27 15:16:31-07:00,5f603330c6c0c12c9e8ebeaeffe97d6effa040c5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ubuntu-mate/mate-menu.git,2014-11-01 15:47:58+00:00,c1c57af9c272e2facd748365d8db019b7f547b2d,"[7, 0, 6, 2, 0, 0, 1, 0, 0, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 2]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 3, 0, 15, 20, 6, 2, 4, 5, 2, 3, 0, 0, 1, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0]",2,2,5,0 -https://github.com/LedgerHQ/btchip-python.git,2012-12-29 03:52:32-08:00,955445584490905f49123836706791e229b5d237,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/qiime2/q2templates.git,2016-10-11 15:12:10-07:00,941a781b3d244009ce5eb3ac4830343eb905a268,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 6, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/bgreenlee/pygtail,2011-06-29 22:33:12-07:00,b4368d53165e613b8940f1b3129978366aa7f391,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/mozilla/dryice,2010-11-23 13:16:34-05:00,fab58892da67935c562e04e04d84aba17ecf52a8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 5, 4, 1, 11, 3, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0 -https://github.com/lv2/lilv.git,2006-06-06 20:20:33+00:00,7fd4168fe8581e46f4ee35cc182db6220b6eed04,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 1, 1, 7, 0, 0, 1, 0, 4, 0, 0, 0, 1, 3, 2, 3, 1, 1, 1, 0, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/twogood/unshield.git,2003-08-09 21:25:49+00:00,c3bd2439d2232563d558698527a96c0b92b9e429,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 7, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Syndace/python-xeddsa,2018-03-05 11:19:29+01:00,31ba06054344d9cc5ed771817dc74908955441ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 10, 3, 1, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/Exiv2/exiv2.git,2004-05-08 09:28:18+00:00,4ccdbd7866bebd443c33051e2fdd81b5e4430f91,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 14, 12, 23, 16, 7, 6, 25, 21, 11, 20, 0, 0, 2, 2, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 3, 18, 17, 3, 2, 9, 16, 7, 0, 0, 8, 3, 11, 1, 6, 10, 16, 7, 5, 1, 4, 8, 2, 8, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://gitlab.com/eztrace/eztrace,2010-05-28 16:24:51+00:00,df65424cc285c93bba30c95af85bd19b2fc5ef0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 12, 9, 10, 1, 7, 1, 3, 2, 3, 21, 8, 6, 10, 1, 0, 0, 3, 11, 16, 2, 5, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/linuxmint/cinnamon-screensaver.git,2013-01-09 10:41:02+00:00,d5f13c4c086342bc7072af9b223fe5c78d65ceb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 9, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/Getty/p5-moox-cmd,2014-12-01 15:34:20+01:00,6ce4263438419b33d708e684aa3ea7d6ef2ffa19,"[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 -https://github.com/ipython/ipykernel.git,2015-04-09 12:02:45-07:00,8b877ac254ecbd94b3af329380d020566eb9dc6a,"[6, 3, 14, 2, 3, 2, 6, 6, 22, 14, 1, 2, 2, 2, 5, 4, 4, 2, 5, 2, 5, 0, 0, 8, 24, 14, 2]","[3, 1, 5, 1, 2, 0, 2, 3, 7, 4, 1, 1, 1, 1, 2, 2, 0, 1, 3, 0, 2, 0, 0, 5, 4, 5, 0]","[10, 11, 4, 2, 6, 0, 4, 2, 2, 0, 0, 0, 2, 11, 4, 5, 4, 4, 2, 7, 2, 9, 3, 8, 1, 6, 0]","[3, 4, 2, 1, 3, 0, 1, 1, 1, 0, 0, 0, 1, 4, 1, 1, 2, 1, 1, 3, 1, 5, 0, 4, 1, 2, 0]",6,1,7,1 -https://github.com/jalvesaq/gconjugue,2016-02-02 15:06:53-03:00,a1a3e23e89ab8eea810faba85e637cc8ee170f6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/phillipberndt/autorandr.git,2012-06-28 22:30:49+02:00,72bced7aeb2269af9e252b45149af5c350550aec,"[0, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/xtaran/unburden-home-dir,2010-10-29 14:37:15+02:00,d0ddb46dd657ec4c6c8386a548704058020fe9ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 2, 0, 0, 14, 0, 13, 37, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/AlDanial/cloc.git,2015-09-06 20:35:11-07:00,4e172cfefe8f498d2a5647b1a3a92105fa2ca30f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 2, 10, 3, 6, 0, 3, 3, 8, 5, 5, 4, 2, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,7,0 -https://github.com/mojotx/xttitle,2016-04-06 22:50:15-05:00,aca2b6c600db6bb02cc5d425cc8b05bfce2c3545,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/cvxopt/cvxopt,2013-02-22 14:14:31-08:00,a2156ed8ffb53468dcd128f02ed37f5715d1fef1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/intel/libyami-utils,2016-06-08 14:41:39+08:00,97bcdb04a40732f7de64b7113cfb302bfef7c929,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 16, 1, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 5, 2, 1, 4, 8, 1, 1, 1, 7, 9, 6, 4, 0, 2, 1, 2, 3, 0, 4, 3, 5, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,12,0 -https://github.com/lxqt/qtermwidget.git,2010-09-11 10:50:46+02:00,2d6c2b82b7767e0e9678eddb527b1902c9d593e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 3, 1, 0, 4, 3, 1, 1, 1, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/psemiletov/tea-qt.git,2016-02-11 13:37:43+00:00,e3a87b45f1a413c3dc04cebdf25516c2fb295284,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 2, 0, 0, 1, 0, 0, 1, 0, 4, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 2, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/schacon/hg-git.git,2009-04-28 18:18:26-07:00,e5a1f52473c95a6ad8d699c81dc15679f982142e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 41, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[32, 40, 22, 10, 18, 14, 3, 12, 8, 11, 2, 2, 9, 11, 6, 2, 1, 0, 0, 0, 0, 3, 1, 2, 5, 3, 1]","[6, 1, 3, 2, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]",2,3,12,1 -https://github.com/pwr/Solaar.git,2011-11-23 14:16:26-06:00,2eb7d66a926b54401d5a635666d8dedf6cedce66,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/NagiosEnterprises/nrpe.git,2001-06-23 17:02:57+00:00,c861650004ac5f6f64b23776a2541bd9186d5daa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/BLAKE2/libb2.git,2015-10-14 14:50:52+02:00,a8b3f1469c2ee79727e1541b2016097350144be7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/lxqt/lxqt-globalkeys.git,2016-09-07 17:02:57+02:00,3b7485b0e65d28f7786f2c225cba3effd276c464,"[0, 2, 0, 1, 0, 0, 0, 1, 0, 5, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 -https://github.com/eslint/eslint-scope.git,2012-09-13 07:49:05+09:00,654f695085cee8530968743f8b322336ae65995f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 8, 5, 2, 0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 0, 0, 3, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/rails/jquery-rails.git,2010-08-16 12:31:38-07:00,7d6abaeb4a4d73b8c2da412a30ca0a32e716666b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 2, 1, 4, 0, 10, 2, 14, 6, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/ckeditor/ckbuilder.git,2014-06-04 12:40:13+02:00,db2ec082811a9030bd2711de4ebae5d10adb2b96,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ansible/ansible-lint,2013-08-14 21:06:35+10:00,fb6e7b5a8783b372bc4fef0c8fac95db625dc446,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://gitlab.gnome.org/GNOME/at-spi2-core.git,2001-07-25 18:26:40+00:00,9bf98cd378e1572019a743bb4bf18e896b4fcd1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 9, 23, 1, 9, 0, 3, 2, 5, 7, 0, 3, 1, 1, 7, 18, 10, 8, 41, 6, 2, 2, 6, 18, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 -https://github.com/hadley/plyr/issues/new,2010-07-28 08:25:08-05:00,00b6ce26822096650ff1b6c012e570653b496433,"[0, 3, 0, 0, 2, 0, 0, 1, 1, 2, 0, 0, 7, 30, 7, 6, 2, 0, 0, 0, 3, 13, 15, 0, 14, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 0, 0, 7, 16, 10, 0, 1, 0, 4, 4, 0, 0, 1, 0, 0, 0, 1, 0, 11, 9, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]",0,0,2,0 -https://github.com/sharplispers/split-sequence,2011-11-01 23:32:53+00:00,fd0ead2da324ae8a7d70c2c85ab521179329d71b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ojuba-org/othman.git,2010-04-28 18:37:42+03:00,ca54d3c20404bce91158e0743b2b1bb694db43b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/lepture/mistune,2014-02-18 18:12:31+08:00,a2ad36f2b1973cc6800ba982d3cd64be00688154,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 9, 0, 3, 0, 2, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 2, 1, 0, 5, 0, 6, 0, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/voxpupuli/pypuppetdb,2013-07-29 11:21:06-07:00,57fd270340fb2233100ae90f62c4ec74c11a7e37,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 11, 11, 0, 0, 0, 0, 0, 1, 0, 11, 2, 10, 3, 15, 0, 0, 0, 0, 18, 1, 0, 8, 6, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 1, 5, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 0]",1,2,8,0 -https://github.com/JulienPalard/logtop,2010-07-01 19:05:05+02:00,ba0a8d9b310f8aeefbd226aaca33076d7696a3fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 4, 4, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://gitlab.com/compiz/compizconfig-python.git,2007-04-24 12:08:26-04:00,a78bd02e33c20e48a7e70722cf343965389a4b63,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 11, 9, 6, 0, 2, 4, 11, 1, 3, 3, 1, 0, 0, 7, 1, 3, 7, 5, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,4,6,0 -https://github.com/bobek/pkg-pimd,2010-01-16 14:00:54+01:00,62ca0b4f2bbedb628d998d0238792413c789f4ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0, 26, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/wjoye/tclsignal,2016-05-31 15:42:27-04:00,17f3d03e19b22b3259c968929bea3bb29b70fefa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gcla/termshark.git,2019-04-19 17:27:23-04:00,b6b2c35461d9910710c8ef03f95f21a879240d2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 2, 5, 1, 0, 3, 8, 18, 11, 1, 12, 0, 0, 2, 1, 0, 16, 13, 0, 0, 0, 6, 52, 35, 14, 20, 1]","[5, 1, 0, 1, 0, 0, 2, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,8,0 -https://github.com/qiime2/q2cli,2016-04-22 15:15:41-07:00,e8327eefe88358dd74f24b4b641f67544d296ee7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[7, 2, 0, 0, 0, 2, 0, 0, 6, 7, 0, 12, 22, 0, 1, 14, 0, 0, 2, 3, 0, 2, 2, 11, 4, 0, 1]","[5, 0, 0, 0, 0, 1, 0, 0, 2, 3, 0, 5, 11, 0, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,9,1 -https://github.com/WebAssembly/wabt,2015-09-07 01:37:41-07:00,970eea40d1cefc254aa36f177bafa18b14800559,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 30, 39, 20, 29, 38, 15, 9, 11, 15, 13, 0, 68, 9, 8, 5, 2, 19, 3, 1, 11, 6, 8, 5, 29, 21, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 3, 0]",1,3,7,0 -https://github.com/vagrant-libvirt/vagrant-libvirt,2013-03-27 00:55:30+01:00,810f0b31b973281bdf70e8b9810f02d2486e9eb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 6, 2, 1, 7, 9, 5, 0, 0, 0, 4, 0, 0, 0, 2, 0, 1, 5, 0, 4, 1, 0, 1, 9, 3, 1]","[2, 1, 0, 1, 0, 3, 2, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 3, 1, 0]",1,4,10,0 -https://github.com/abraunegg/onedrive.git,2015-09-22 18:31:10+02:00,42f5140f9a899b6da0d0906988a18ce641748b57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 9, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 1, 0, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0]",1,1,2,0 -https://github.com/storaged-project/udisks,2008-03-05 02:26:32-05:00,70e0bc44ff38d5acb715b9744c88a0290ae385af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 27, 13, 5, 2, 0, 8, 5, 0, 0, 2, 17, 18, 1, 2, 1, 0, 0, 4, 0, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/beancount/ledger2beancount,2018-03-17 14:59:35+01:00,c635f289d339a71a04362978497428b104911bb9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 87, 15, 8, 12, 3, 7, 15, 8, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/ruby-concurrency/concurrent-ruby.git,2013-07-23 08:18:51-04:00,773583560909b05e0679b872a85aa3118a08a1c5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 41, 20, 31, 23, 8, 7, 3, 0, 0, 33, 54, 7, 3, 22, 27, 4, 1, 2, 3, 0, 0, 0, 4, 3, 7, 1]","[0, 2, 1, 0, 3, 0, 0, 0, 0, 0, 3, 5, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 3, 0]",1,2,5,0 -https://github.com/google/textfsm.git,2015-08-25 13:26:31+10:00,1e2178fe4e6d2075f247c2248b9b2103ab5e2912,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/easyrdf/easyrdf.git,2009-09-20 21:05:06+00:00,b434baddcd4ac01a3691de8eae6d2e0a85bf3a3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 19, 17, 4, 18, 20, 4, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 29, 4, 10, 19, 0, 3, 7, 3, 1, 3, 14, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/kazu-yamamoto/Mew,2013-05-22 11:53:20+09:00,433176e2d2c519089d2ac6c58257de23e0e7a525,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 2, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[1, 0, 2, 4, 7, 5, 3, 3, 0, 0, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 2, 6, 6, 1]","[0, 0, 1, 1, 3, 2, 2, 2, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 1, 2, 3, 0]",1,0,4,0 -https://github.com/kasei/attean.git,2014-08-08 17:30:39-07:00,c7d58a5f2f6a4fa91c5b178c565fcea4b79db3ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 30, 13, 16, 40, 40, 47, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/thumbor/libthumbor,2011-03-30 14:32:47-03:00,ae1e829d3999c032ea5443a815156dc1ac3be8d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/singmann/afex.git,2015-06-29 22:00:57+02:00,628a93ff5047ec30bbaefc46182cd0cec98ebcd6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 0, 0, 5, 3, 0, 4, 0, 0, 0, 0, 2, 0, 1, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,3,3,0 -https://github.com/df7cb/pgsql-asn1oid,2017-09-24 11:30:40+02:00,197f4c3014c0a37588ea9b040d85d30f0671a531,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 -https://github.com/rthalley/dnspython.git,2005-09-02 05:21:28+00:00,df24d7e7fe18b2a4cd79c35d1c2efbb3e7ee5abc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 0, 1, 3, 2, 3, 0, 5, 1, 5, 0, 0, 0, 0, 1, 8, 2, 3, 1, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/puppetlabs/marionette-collective,2010-05-24 08:09:24+08:00,9bb1671fa7ccfa697d3eec09b045aeae26783ba9,"[3, 10, 5, 13, 21, 24, 14, 14, 22, 7, 8, 4, 2, 0, 1, 0, 1, 5, 2, 4, 0, 0, 4, 1, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 13, 4, 18, 1, 2, 0, 0, 2, 7, 0, 22, 10, 0, 5, 17, 8, 6, 0, 3, 5, 1, 0, 4, 12, 1]","[1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,8,0 -https://github.com/jshttp/on-finished,2013-12-20 14:31:58-08:00,6b14841e7463a790520cbf7689f8be54c30b859b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 1, 0, 0, 2, 12, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/haiwen/seafile-client.git,2013-08-05 02:08:07-07:00,c703771bea2366d2cb740c38e020d6a2f207add3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 11, 4, 2, 19, 20, 9, 55, 1, 15, 28, 26, 19, 28, 4, 4, 1, 4, 2, 0, 8, 3, 17, 5, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,10,0 -https://github.com/claviska/jquery-minicolors,2011-11-15 19:01:08-05:00,fe8d5d9c8f0e2c890c64dab08d2bb8213ba6318e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 13, 5, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/prometheus/client_python.git,2015-02-09 23:02:29+00:00,7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 15, 0, 1, 0, 10, 2, 14, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 3, 0, 0, 0, 1]","[0, 7, 0, 0, 0, 4, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,6,0 -https://github.com/sebastianbergmann/phpcpd,2009-01-24 17:22:12+01:00,bbbf1324673c4578490c69e4091d1cf3e795078c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 8, 1, 0, 2, 0, 2, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/isaacs/inherits,2011-04-06 17:29:30-07:00,ab68ae67b9a6d17938f5a32e9b123c42220548b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/teamcapybara/xpath.git,2010-07-31 19:01:15+02:00,9e707f514933c903a457e2c96198123c4f8fe9a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 2, 0, 0, 0, 0, 0, 5, 19, 0, 0, 0, 6, 5, 3, 1, 0, 3, 2, 0, 2, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,8,0 -https://github.com/bk138/gromit-mpx.git,2009-05-14 21:14:15+02:00,11dd8860942c986d1aa2d5b2f0e3beb277c72d08,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/intridea/grape-entity,2013-01-12 14:04:55-07:00,056dd9a7a00e0b6b181d865e0b063f10bbcdf995,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/monitoring-plugins/monitoring-plugins.git,2002-02-28 06:42:51+00:00,44a321cb8a42d6c0ea2d96a1086a17f2134c89cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 2, 4, 1, 2, 2, 8, 5, 0, 10, 5, 3, 6, 4, 2, 1, 2, 0, 3, 0, 12, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/nojhan/liquidprompt.git,2012-07-19 14:17:32+02:00,c13e6d795f235afeee4cd38ed5117272dcd5be58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[26, 20, 33, 93, 62, 4, 2, 5, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 29, 13, 1]","[2, 2, 8, 19, 15, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0]",3,1,14,1 -https://github.com/intel/opencl-clang,2017-10-31 10:11:08+01:00,a979affcb23d22c56a2cae75f17866469f286328,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 -https://gitlab.dune-project.org/core/dune-istl,2003-10-30 17:03:38+00:00,01ebd69e1934980cc59eb1f4e2953f09fed702fa,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/scop/bash-completion,2002-02-09 08:41:35+00:00,0a5f6136735bfa39998cca584d36e296800244da,"[2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 6, 0, 4, 9, 6, 12, 10, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 24, 41, 20, 13, 11, 30, 32, 7, 10, 17, 13, 17, 16, 11, 7, 13, 11, 13, 14, 4, 4, 4, 11, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/nsntrace/nsntrace,2016-07-15 12:23:05+02:00,aa019a8147f0203dd02415b5c694f5fae583fb5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 1, 1, 18, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://github.com/pdewacht/brlaser,2013-12-27 18:01:43+01:00,fd97eb1258dd178cedaee34ebc44dae2a9ff7835,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ruby/curses.git,2013-06-30 16:25:20+09:00,7721d8ca2f13f8630b336b267c3124de995c378a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/spin83/multi-monitors-add-on.git,2014-12-17 02:30:41+01:00,95b8d8410d6d09d8868d168448812b00946cb3b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/bestouff/genext2fs,2001-05-02 18:20:05+00:00,60c7a4672551e6a3d51e5321ddc231bd61d5d690,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 -https://github.com/drakkar-lig/debootstick,2014-12-12 14:11:56+01:00,6a2efc6e31fa50bc124ad4c99493ff1de8bc3bc4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 0, 10, 4, 15, 6, 1, 2, 4, 7, 9, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/gitpython-developers/smmap,2011-06-08 15:17:35+02:00,03767cc17c6111c4c39cd4dde0517f5415515598,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/qxmpp-project/qxmpp.git,2009-06-14 10:54:22+00:00,cb37450aac5fedbc5aa0cd4bc6fb9955d13bc5be,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 4, 6, 3, 1, 0, 0, 0, 8, 3, 5, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/mirage/ocaml-ipaddr.git,2013-07-24 11:35:42+01:00,b977dd104ab2f2e30980f49169acdaeabbfa6a0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 17, 3, 0, 0, 0, 0, 0, 2, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 2, 30, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0]",1,2,4,0 -https://github.com/home-sweet-gnome/dash-to-panel.git,2016-09-21 01:29:56+01:00,f593c27bae00fce116cc06fb61a944b3e7497c5e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 33, 14, 13, 2, 3, 6, 8, 26, 13, 8, 1, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1]",1,2,8,0 -https://github.com/keepassxreboot/keepassxc.git,2014-04-28 22:09:24-05:00,7c7f0b93ae73785ade3b8016a056023a42a9c3fc,"[1, 0, 8, 12, 18, 3, 2, 1, 0, 1, 14, 16, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0, 8, 0, 4, 1]","[0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 36, 2, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,2 -https://github.com/flavorjones/loofah,2008-12-04 12:07:54-05:00,f1a51db18c23271fdc7c51e61e8f9d457fd7b266,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 8, 0, 1, 0, 1, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 2, 1, 1, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/todotxt/todo.txt-cli.git,2009-03-05 17:18:07-08:00,7ecda8973b9be28ca57215fd5c6782f173aa1524,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 21, 6, 6, 22, 11, 7, 3, 0, 2, 0, 0, 0, 0, 0, 7, 1, 1, 0, 0, 0, 0, 0, 0, 4, 5, 1]","[4, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0]",1,7,15,0 -https://github.com/aconchillo/guile-json.git,2013-01-26 13:18:26-08:00,c2952206fc911488f1f31811ea0466b258f358e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 7, 3, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/wanderlust/wanderlust,2000-04-03 06:58:14+00:00,d89e13c0af952508f94e7d6807c1634c586b7057,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 10, 15, 15, 2, 51, 30, 15, 18, 8, 27, 16, 14, 13, 24, 14, 12, 8, 5, 4, 22, 40, 10, 20, 16, 27, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 -https://github.com/fzumstein/nose-random,2015-11-02 13:28:25+01:00,dfcb7fb9ef586aae008f6c76c2dba896586dd7e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/ubuntu/gnome-shell-extension-appindicator,2013-02-23 17:38:12+01:00,0567ecd18902dcda37f15422ea7675334df52cb7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 15, 1, 6, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 2, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0 -https://github.com/jiixyj/libebur128,2011-01-12 12:14:38+01:00,617f9964274c6f28186cf8f91f3e8b4303263c80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 28, 40, 15, 9, 45, 22, 3, 7, 5, 9, 2, 12, 18, 17, 0, 0, 0, 7, 0, 0, 0, 0, 1, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 -https://github.com/processone/erlang-sqlite3.git,2010-10-12 12:25:01-07:00,63ae3cd7334ae11f5f52ad18032d71d3af6aa666,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 12, 3, 2, 8, 24, 6, 15, 17, 5, 3, 0, 5, 5, 6, 0, 0, 2, 3, 0, 0, 1, 2, 0, 3, 0, 1]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/fitnr/convertdate,2014-06-23 22:23:29-04:00,8df7d6bc0b6a302232ffe01db3c64f2c887033f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 6, 13, 9, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jruby/joni.git,2013-08-01 17:52:36+02:00,cc8cd8daaf29146cb183764ebd97584c8db3ee92,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 4, 2, 0, 0, 0, 0, 0, 1, 3, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1 -https://github.com/iustin/pylibacl,2002-12-23 16:55:31+00:00,50cf05229b7b99e9827ffa93dfc5a07512676c28,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/orcus/orcus,2012-04-04 00:44:13-04:00,74b9ac44144862b35997131f4022e0f4a79bbe68,"[7, 1, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 17, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 17, 2, 35, 36, 51, 47, 65, 4, 1, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,6,0 -https://github.com/schaal/bino,2011-09-09 14:23:04+02:00,2774879df7233feca804fd92e2a619d53efea73b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 7, 4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0, 2, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/pdfarranger/pdfarranger,2009-11-10 15:31:17+00:00,7db6876fffcbf6d71d2c83216108d4eb59dc193f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sporkmonger/uuidtools,2008-09-29 00:33:58-04:00,2b115d1663a7f7440b7d9f856c96b365d49b3164,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tijsverkoyen/CssToInlineStyles,2010-12-05 15:30:06+01:00,3854223540a58b4eab3e17ba1a2d6644a1d5b907,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jtesta/ssh-audit.git,2015-12-23 04:56:13+02:00,2ef7e65721dd91aeae5b21e1cc3765b2d1e55e03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 14, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/greenbone/gvmd,2008-11-11 15:57:28+00:00,ec02a2f9a141eeee8be3d803fa67bfe71d2e6da6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 7, 2, 1, 10, 13, 0, 0, 1, 21, 4, 5, 9, 0, 6, 6, 1, 17, 5, 17, 3, 4, 2, 0, 0, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/CSCsw/ColPack,2014-03-22 17:11:48-04:00,6fed3fdf83c36a19364c358e75575cb51f6200db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/chuckremes/ffi-rzmq,2010-05-06 17:15:03-05:00,ae5e456183bc5c54d5ecb00f255366a1c2b64c34,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 6, 10, 3, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 8, 0, 9, 6, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/toddr/Crypt-OpenSSL-RSA.git,2009-12-10 00:30:41-08:00,a6040a720d98861c3aca2e31f81bf573d88184ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/stephane/libmodbus.git,2005-09-10 09:49:54+00:00,f7cb1f06ce8ddeac709dc7a6f4c4784e7e0ef80d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/cesbit/libcleri.git,2016-05-23 16:21:28+02:00,d8e43a6845898345f9f6114899895195e5774d56,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/Castaglia/proftpd-mod_vroot.git,2012-08-20 11:02:24-07:00,c5c66cdc9457f9f359a130ab7f9a2cdfc3bdbe01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nordlicht/nordlicht,2013-02-07 15:53:53+01:00,cbdd2a9f99913492c575e4cfc2e8e12aa914189c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 34, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 23, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,0,0 -https://github.com/pearu/pylibtiff.git,2009-04-22 11:48:53+00:00,e6cc872fbcb18ae5d10f693f05cd5eec92f39bb2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/guilleiguaran/fakeredis.git,2011-02-21 00:50:48-05:00,a5044491e43c85747e68dcb0388eecc254be667b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/ukui/ukui-sidebar,2020-01-15 19:40:01+08:00,dc2f910b629506c65f8470b570cd4a1462faffca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 7, 9, 10, 8, 13, 6, 9, 49, 65, 61, 31, 81, 37, 12, 35, 30, 36, 6, 14, 11, 18, 5, 78, 12, 1]","[0, 0, 1, 1, 1, 1, 0, 0, 0, 11, 18, 21, 8, 29, 11, 6, 15, 6, 9, 3, 4, 3, 6, 1, 24, 5, 0]",2,7,26,0 -https://github.com/benhoyt/inih,2009-08-20 21:59:32+00:00,4d08274b355a112b9d07f040110a0e9c8ba68aba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/59naga/babel-plugin-add-module-exports,2015-11-11 05:33:50+09:00,9e0628799e766a5eedaadb774cef3d8adb84426b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 2, 1]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,1,2,0 -https://github.com/phpDocumentor/ReflectionDocBlock,2012-04-06 20:15:46+02:00,fea7abe168dfd01d96f61daa4bc27891814b94f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 2, 5, 0, 4, 0, 2, 4, 0, 2, 0, 0, 2, 0, 0, 0, 1, 1, 0, 3, 0]","[0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]",1,2,4,0 -https://github.com/somiaj/fvwm2-debian,2021-06-01 18:27:05-06:00,629cf2e5fbdc1d3ff8b9c28855ae2656a07be11f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/x42/jack_midi_clock,2009-02-20 21:25:34-06:00,3159c50a449d7bfa0d42a2b3d198420bda584b1a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/python/typed_ast.git,2016-04-11 17:38:06-07:00,8a8f8c82abcfee3f06b05764c74f461f65f07682,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 9, 2, 0, 0, 4, 0, 1, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 9, 2, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 -https://github.com/dbry/WavPack,2006-10-17 06:15:09+00:00,881de9b394fd7f1c4737661d421de6d9d65eea8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 6, 4, 4, 1, 11, 6, 0, 0, 0, 2, 1, 1, 0, 0, 2, 0, 0, 2, 1, 1, 2, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/seperman/deepdiff.git,2014-09-25 20:21:48-07:00,a018d334bcd0cd1d11544702d565e81fd99ffbb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,2,0 -https://github.com/meetecho/janus-gateway,2014-02-11 16:20:20+01:00,be35facbad6f8727838f8756cbfa5c1e1b2cf4de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 3, 0, 0, 1, 1, 2, 7, 2, 0, 4, 7, 1, 4, 2, 8, 3, 8, 3, 3, 1, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 -https://github.com/orocos/orocos-bayesian-filtering,2010-10-26 13:30:25+00:00,a0d76deb89c34bb012c9ffc1096467017dc6946d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 -https://github.com/JuliaStrings/utf8proc,2014-07-15 15:29:52-04:00,ab9520d18845248ef79ee98e8d671f8eecfec288,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 1, 4, 2, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,7,0 -https://github.com/paragonie/constant_time_encoding,2016-02-02 20:32:50-05:00,fac7f7434099a4882176a47dbcbe126a13f88176,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 12, 1, 2, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jcdubois/pixelize.git,2019-10-29 18:34:29+01:00,feecfb092b7e3daa967d50278474b0d2480d6f09,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 24, 15, 3, 2, 0, 0, 0, 0, 14, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jupyter/terminado,2013-08-08 09:03:31-05:00,51946a73c84369c1e35bc78fb599d8d27a237a2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 16, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 2, 1, 4, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/pyproj4/pyproj.git,2006-11-26 17:01:09+00:00,1938b0a62319aa24ed6297c1cac4b69b70e073ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 1, 10, 29, 2, 0, 0, 3, 4, 6, 0, 0, 0, 0, 30, 19, 6, 1, 0, 0, 1, 0, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/eea/odfpy,2008-08-18 16:15:43+00:00,fb73e609709027c1e47fb1f4cc6b4411feab75f0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 3, 1, 2, 6, 5, 0, 8, 1, 4, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mapbox/millstone,2011-09-26 11:19:31-04:00,bdab004448eee41e1d91a22a832fe28dfb08df24,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 24, 5, 3, 13, 6, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 24, 11, 1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 0, 0, 0, 0, 6, 0, 2, 0]","[0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,2,2,2 -https://github.com/jbouse-debian/libesmtp,2010-08-15 16:45:03-04:00,ca5bd0800ef1da234315da4c59716568eb5e6402,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/clutter.git,2005-04-13 19:49:56+00:00,3b342b81b72132902b6bb0185f83de46f764557c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 2, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libgeos/geos.git,2002-08-30 18:15:07+00:00,87da037e0eac12e1062039a08e74c475aa720b14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 2, 2, 1, 0, 0, 0, 0, 1, 3, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 0, 0, 0, 1, 1, 1, 5, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 21, 6, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0 -https://github.com/smbolton/whysynth.git,2012-05-20 11:48:11-07:00,f9515f55991e8ad1254715e211b0d44051cb4893,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 10, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/fourdollars/x11-touchscreen-calibrator,2013-08-14 20:01:49-07:00,babf2c3119eb6162bbd5578e8300f4a58da1c3b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/Swordfish90/cool-retro-term,2013-11-22 11:01:59+01:00,43d374cd79e9f58f8f040a2e1d7e37691d6c95e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 27, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 13, 15, 4, 10, 3, 0, 1, 1, 1, 1]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/raboof/nethogs,2004-08-23 09:48:43+00:00,b4073a4cf51b2ff96885dad1ca659336663065db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 12, 3, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Debian/ratt,2015-08-16 11:51:26+02:00,58be32d7c21b1d3919171aa2966faa7b2ae61f90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0 -https://github.com/jarun/imgp.git,2016-08-09 12:02:43+05:30,d894019c98fb10315e7b1c5c7934006fb75072c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[85, 14, 1, 0, 6, 1, 0, 2, 18, 2, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/curl/curl.git,1999-12-29 14:20:26+00:00,ae1912cb0d494b48d514d937826c9fe83ec96c4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 7, 9, 1, 15, 2, 21, 9, 0, 22, 7, 30, 11, 7, 9, 0, 1, 0, 3, 5, 17, 22, 20, 20, 25, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jterrace/pyssim,2012-08-29 15:45:07-04:00,1c4db9ef50181a8603783e55395da9442cada9b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/debian-tex/texworks-manual,2016-04-04 11:46:00+09:00,424e53a32564c9c6d68193d0222de31308abf9a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/trivial-features/trivial-features,2007-07-06 12:17:14+01:00,320426c0b6be8a551727d0809c7158f3e831f581,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 1, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/palortoff/pass-extension-tail,2017-02-18 23:56:23+01:00,f04b40ab50cb62b008c8b948e0ff926ac7c9de70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/jbfavre/python-protobix,2015-12-08 14:52:00+01:00,b530a94669f1f3eac969db714534d0b60f4d46d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0]",1,0,2,0 -https://github.com/OISF/suricata-update,2017-11-02 07:09:12-06:00,22e8e68f673604ca0616d025c326ac37b800d2a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 3, 2, 42, 27, 4, 0, 0, 0, 2, 2, 0, 5, 0, 2, 3, 0, 0, 3, 4, 1, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/AmatCoder/mednaffe,2013-08-30 08:25:52+00:00,ecb7d46ec97b25f89a7c8d9e9610c79a07c70fe2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 1, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/intel/intel-vaapi-driver.git,2011-08-25 14:27:45+02:00,eefea266a7ca3d5e56ebaccf63beeffce80c526a,"[0, 6, 6, 0, 0, 9, 5, 4, 11, 0, 6, 4, 6, 1, 3, 7, 0, 3, 1, 2, 0, 2, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 2, 0, 0, 5, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,1 -https://github.com/rvaser/thread_pool,2017-01-25 10:35:52+01:00,7e9a54ba935287556ec062eff35b699c579552bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/ivancrneto/pymox,2008-06-13 23:00:27+00:00,e30806ab916a83feb79f03c8fb2612f5d2061263,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/maxbachmann/python-Levenshtein,2022-09-27 03:40:50+02:00,883cd341426e846954b6e144f8b40dbdfcc7158a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/hashcat/hashcat.git,2015-12-04 15:47:52+01:00,5065474b4e5ed59add2d5af6e2e9cf3857969fe3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 33, 49, 27, 71, 41, 47, 54, 83, 115, 35, 43, 35, 28, 14, 11, 7, 19, 27, 50, 56, 27, 52, 33, 46, 44, 1]","[12, 3, 2, 5, 21, 10, 12, 21, 28, 16, 7, 4, 7, 9, 5, 3, 1, 7, 1, 4, 10, 3, 7, 8, 7, 2, 0]",2,6,20,0 -https://github.com/davesteele/gnome-gmail,2009-09-07 15:32:04-04:00,eedd7f34f5eeb6e50d23fcbd28c9fc3a377e53b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 17, 4, 0, 2, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 1, 0]",1,3,5,0 -https://github.com/enova/pgl_ddl_deploy.git,2017-05-01 09:03:19-05:00,d3893f8b43af419470da3c412d013e590941cf56,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 8, 0, 0, 2, 0, 18, 10, 10, 0, 0, 0, 2, 6, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,5,0 -https://github.com/landscapeio/dodgy,2013-12-25 04:22:20-08:00,688efd79d37ad19c621f19544acabaa9584223a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/cffi/cffi.git,2005-06-08 04:29:29+08:00,234abc3fd33688463e6087324529ee3ad3e4908a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 4, 10, 13, 1, 0, 2, 13, 2, 1, 4, 6, 6, 8, 5, 2, 3, 0, 0, 2, 10, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/howardabrams/node-mocks-http,2012-02-17 23:26:28-08:00,78369fba9328c10dc153133311aa88056fee3717,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/centreon/centreon-clib.git,2018-06-20 15:28:30+02:00,03a786d4a32adcb8ed16a83bc505ace33ab7a8c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/mkleehammer/pyodbc.git,2008-10-06 21:07:44-05:00,c3f6b46d8a4f73722439b4755ef5df42adff81d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 6, 5, 1, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/rclone/rclone.git,2012-11-18 17:32:31+00:00,e9ae4f89a44b1cac8e83ede1572f15dace692c67,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 16, 2, 0, 3, 6, 5, 4, 8, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/phingofficial/phing,2006-02-05 00:49:20+00:00,4ced988e4b54a099e31f50ca96cf4a3fdaf8aac3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 8, 4, 0, 4, 3, 0, 0, 0, 4, 0, 3, 5, 2, 2, 4, 0, 0, 2, 2, 0, 2, 12, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/mapserver/tinyows.git,2010-05-01 14:53:13+00:00,36b2440d604198ec89992d04789e8d4899bd4f2a,"[0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 2, 7, 18, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 4, 34, 0, 11, 4, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 5, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/kodi-pvr/pvr.hdhomerun.git,2015-11-06 19:03:13-06:00,98b0f93088eb516c56dc9ea10f29ffc19ff37aef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 11, 6, 0, 0, 2, 0, 2, 3, 1, 0, 0, 0, 4, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0 -https://gitlab.gnome.org/GNOME/gupnp-tools.git,2007-08-23 20:37:16+00:00,4f52351c03e29d431e215ae649e4b8b4fe74d59b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 39, 23, 27, 30, 0, 0, 6, 25, 6, 14, 1, 2, 4, 0, 6, 0, 0, 12, 0, 3, 1, 22, 13, 25, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://gitlab.dune-project.org/core/dune-localfunctions,2008-10-20 21:03:28+00:00,2f380291ac551cf908a8f5ddd390d9a731f3823f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 27, 0, 0, 6, 6, 3, 0, 3, 0, 4, 0, 3, 0, 0, 1, 2, 10, 7, 5, 5, 1, 4, 1, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://gitlab.com/LibreGames/jumpnbump,2002-02-13 15:52:05+00:00,f3895b3660cd04a815f48450dae2b0e3c0d53279,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 20, 0, 0, 0, 3, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 12, 0, 0, 0, 9, 0, 0, 0, 12, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/shsorbom/kcmsystemd-debian.git,2013-11-18 12:36:20-08:00,a4356040a13297829bb73a1bd8caf270f4110751,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 14, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 13, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/jarib/childprocess.git,2010-10-08 04:44:39+02:00,178f4f1a4be9530d9a6b89e27c6f5a6c72e689fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 21, 0, 0, 4, 1, 1, 2, 0, 4, 10, 1, 0, 1, 0, 0, 0, 10, 5, 0, 5, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/state-machines/state_machines-activemodel,2014-04-29 20:59:30+00:00,c78bba29d6a42cd5bc3fad578fa51dbd664d512e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ben-eb/colormin,2015-02-10 12:54:54+00:00,a9194c86fb017f3b4a4d397564b82fee6816033f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/OSGeo/PROJ.git,1999-03-18 16:34:52+00:00,565a4bd035b9d4a83955808efef20f1d8dfa24cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mllg/checkmate.git,2013-12-27 15:42:35-08:00,eddb0f2ccec899d986ad27960872d55b62559762,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 5, 1, 4, 2, 0, 3, 10, 0, 3, 1, 14, 13, 7, 21, 11, 2, 0, 40, 14, 5, 28, 39, 13, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0]",2,2,3,0 -https://github.com/keltia/dmarc-cat.git,2018-02-24 23:01:02+01:00,9a3ef8d9efe9a980ed8842c923005bc74966b097,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 0, 0, 5, 3, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[5, 0, 0, 0, 0, 2, 3, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/syncthing/syncthing-gtk,2014-08-07 00:32:49+02:00,d1e9e7e26b72a63b7f5f7b6b8dc0980710ed4daa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 26, 9, 3, 4, 9, 10, 14, 25, 10, 4, 0, 39, 33, 23, 68, 14, 24, 11, 4, 0, 23, 28, 30, 17, 15, 1]","[5, 2, 0, 1, 0, 0, 1, 2, 3, 0, 1, 0, 4, 3, 6, 13, 2, 2, 2, 0, 0, 2, 7, 3, 5, 3, 0]",2,5,11,0 -https://github.com/libreswan/libreswan.git,2005-11-02 12:27:49-05:00,6a3b72d55d831a275934773b40228809d9101eb2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 29, 60, 114, 21, 35, 3, 20, 0, 6, 10, 11, 4, 2, 2, 0, 3, 0, 9, 25, 21, 15, 12, 5, 1, 5, 1]","[1, 1, 4, 8, 4, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 4, 2, 1, 1, 0, 1, 0]",1,6,10,0 -https://github.com/pyutilib/pyutilib,2010-02-12 03:23:53+00:00,e7770cdb03801e3bf6144fd6eb79bec0eb4696ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 3, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/stewartsmith/libeatmydata.git,2007-11-27 14:46:08+10:00,ec724d61613f431035fd2eaad8e8119f2e75e86e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://codeberg.org/freedroid/freedroid-src.git,2007-11-28 14:50:01+00:00,f1bdc9d1444db1823565adbf54b49af1e6083522,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 29, 45, 1, 2, 4, 2, 18, 31, 42, 7, 16, 7, 43, 0, 6, 1, 68, 54, 23, 29, 80, 91, 73, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/Yoshimi/yoshimi.git,2010-10-17 01:04:39+11:00,45f9406c6b66b5f89cf2fb28b8c9badc59e9563b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 1, 2, 0, 0, 1, 2, 0, 1, 6, 5, 2, 0, 0, 0, 0, 0, 1, 1, 4, 3, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/pikepdf/pikepdf.git,2016-03-14 22:54:09-04:00,e04dff53f90fa8e044c0fa6d1c352d7f4d336155,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 6, 4, 0, 0, 1, 1, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,2,0 -https://github.com/13-37-org/infnoise.git,2014-09-28 05:39:20-04:00,778d162f6f5703d68bbf2fc3eb5c6811c2146320,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 10, 20, 24, 12, 22, 10, 6, 5, 7, 5, 2, 3, 0, 2, 1, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,4,0 -https://github.com/gssapi/gss-ntlmssp,2013-07-19 08:31:49-04:00,978dc0d44b3ab9c0a80f3ec7b9dd95939f2b6181,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 11, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 9, 16, 0, 0, 0, 0, 2, 0, 0, 9, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/Nuand/bladeRF.git,2013-02-18 20:11:39-08:00,ce7d8a7ab2a13dd8a2ea6412e5e022073be82369,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 26, 13, 9, 0, 38, 4, 41, 22, 38, 28, 23, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0]",1,2,12,0 -https://github.com/adah1972/libunibreak.git,2008-04-20 04:45:51+00:00,bb5bb69fac0feb47fc7e06f3a432a1e3fbe7668c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 1, 3, 3, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/conformal/spectrwm,2013-06-12 13:06:54-04:00,be49c0e89319cc03b7119bac2604744bcdd26775,"[0, 3, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 7, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 1, 2, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 4, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/thp/pyotherside,2011-05-30 20:47:21+02:00,1b0963a2d4702e0fff5885b21b5695a0d39edd83,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libgit2/libgit2.git,2010-11-07 01:31:08+02:00,4b7483a285024937df9623c3543390e717e2338a,"[0, 0, 0, 43, 7, 0, 0, 0, 3, 6, 0, 0, 2, 10, 0, 0, 0, 1, 2, 5, 0, 4, 0, 0, 10, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 9, 21, 15, 28, 14, 21, 2, 10, 8, 6, 9, 24, 20, 7, 9, 63, 2, 26, 36, 62, 48, 15, 17, 7, 10, 1]","[0, 0, 0, 1, 1, 1, 4, 0, 2, 0, 1, 0, 2, 5, 0, 0, 0, 0, 0, 0, 3, 2, 2, 7, 0, 6, 0]",5,4,25,0 -https://github.com/nanomsg/nanomsg.git,2012-10-10 10:29:58+02:00,62914b92d0d973bc5b1d6b692c3846bbf940fdc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 26, 26, 14, 7, 16, 54, 36, 20, 5, 19, 27, 32, 22, 17, 33, 30, 14, 37, 28, 9, 28, 30, 29, 13, 6, 1]","[0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,8,0 -https://github.com/nsf/termbox.git,2008-09-14 10:38:36-07:00,c2a1bc8df8abc5c3e8a4050aaad8fd3383d6ea90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://code.ungleich.ch/ungleich-public/cdist,2010-09-19 14:36:20+02:00,db178edafceec800f2b60dec1e0d99de684e3836,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 23, 0, 0, 0, 9, 8, 3, 0, 0, 12, 0, 0, 0, 0, 0, 32, 8, 1, 82, 34, 94, 213, 59, 114, 211, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 14, 1, 9, 9, 0]",1,4,5,0 -https://github.com/yarrick/iodine.git,2006-06-23 08:54:47+00:00,b320f6de5689bf2b5115aaf5c8b0fb40f5b56feb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 43, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 2, 0, 0, 1, 0, 11, 16, 4, 0, 3, 0, 0, 0, 0, 0, 0, 1, 16, 1, 7, 0, 0, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/silnrsi/font-abyssinica,2019-03-18 22:44:32+00:00,c2ae244b01c71b2b0ea69c19a2f6044746e6ced8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 10, 13, 12, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/iem-projects/ambix.git,2016-05-10 15:16:51+02:00,c30730388b1ec188a24b1b7b3f82105a914d59e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 5, 0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/confluentinc/confluent-kafka-python.git,2016-04-14 11:35:43+02:00,7e04f4e3c2249bb4a3e73877719c1f50cb387d2f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 5, 8, 3, 10, 3, 0, 2, 0, 0, 0, 6, 0, 4, 3, 12, 0, 6, 0, 1, 3, 0, 0, 0, 1, 1]","[0, 0, 0, 1, 1, 3, 1, 0, 1, 0, 0, 0, 1, 0, 1, 2, 5, 0, 2, 0, 0, 2, 0, 0, 0, 0, 1]",1,4,12,0 -https://github.com/MightyCreak/diffuse.git,2015-11-21 12:57:32-05:00,ba7f8868fc20ca1582a5ab1927be5f6009a61c40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jfhbrook/pyee,2011-07-16 16:23:07-07:00,f525bbbdf2aeaa5fab4b919fd6dd4ca79282f70c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ekg/tabixpp.git,2011-05-18 09:44:58-04:00,778e5c37c1b51aaf3832e82ee6cace27c6a50375,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/olive-editor/olive,2018-06-24 15:47:00-07:00,5c1b4cd479fda29ef7ad74e194d71f8a11d58aa6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 12, 4, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 15, 11, 21, 13, 10, 12, 15, 13, 15, 8, 10, 8, 9, 14, 29, 18, 9, 28, 26, 52, 45, 35, 14, 10, 35, 1]","[0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 6, 3, 2, 0, 1, 7, 0]",1,2,9,0 -https://github.com/twekkel/htpdate,2021-11-28 16:42:10+01:00,143364b71549f4b4c4af87795aa97af4174c5730,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 6, 6, 1, 6, 4, 8, 12, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/jklimke/libcitygml.git,2012-10-01 11:32:54+02:00,c9c90ddf610bfa24f7aa113b3d35b9349b046a4e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/umanwizard/libeot.git,2020-01-24 16:16:32-05:00,d6bacde5c96e4803b289449bd7f3ae87c2686018,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,2015-09-12 17:17:18-07:00,1053c4361dffaa5654eb58308094af9d11414f1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/gpodder/podcastparser.git,2013-04-13 10:50:06+02:00,019d60d3406d9e0c5c23be668ff078593264cdcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/django-treebeard/django-treebeard.git,2008-09-23 08:36:54+00:00,2c5ca017b592d5ac723fa7d595317d7b6e401836,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 18, 7, 0, 2, 0, 6, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/memtest86plus/memtest86plus.git,2022-02-12 01:48:34+01:00,c1bc395b4cd72fbc47d40751d3ba2d2c9815a540,"[0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 15, 2, 0, 6, 0, 5, 25, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 14, 14, 11, 0, 19, 9, 12, 10, 23, 8, 11, 5, 19, 11, 2, 8, 0, 8, 0, 0, 8, 5, 6, 2, 0, 1]","[0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0 -https://github.com/eproxus/meck.git,2010-05-03 20:21:39+02:00,539cbc883cf9c25f80759bc945418de57b29d775,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 7, 10, 1, 1, 4, 1, 0, 2, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/GNOME/msitools,2012-12-07 11:45:54+01:00,e64ed93d4859a1b95b40e70256fff5945500d78d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 139, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[51, 0, 0, 0, 124, 64, 28, 6, 28, 7, 2, 3, 2, 1, 1, 3, 3, 13, 8, 2, 0, 0, 6, 3, 0, 1, 0]","[15, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,19,1 -git://git.alsa-project.org/alsa-ucm-conf.git,2019-07-31 19:38:52+02:00,77499a280888411f9e057b8b535dce3767211c49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 73, 16, 0, 0, 2, 0, 11, 18, 1, 18, 11, 6, 0, 0, 0, 1, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0 -https://github.com/FirefighterBlu3/python-pam,2014-08-03 12:54:37-04:00,dbe2a9354181695b1e611e4e2bbdf340e8558cfe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bobtfish/text-markdown.git,2006-08-29 20:22:05+00:00,899f2fdaed605b0d4c71308a7dd77c67ad03210b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/qwinff/qwinff,2011-10-16 13:43:11+08:00,ce672687941f7fa9576ed7c1a8e8a28c2cd784c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 29, 15, 41, 45, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[28, 9, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2 -https://github.com/pear/Auth_SASL.git,2017-03-07 08:05:20-06:00,afe4424ea2621ba6eb707b9d1085beebbfde6027,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/micahflee/torbrowser-launcher,2013-02-06 20:31:03-08:00,a0fc944f2a3efea7d082b0b031e522cf96ec93f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 36, 14, 11, 0, 0, 0, 5, 19, 12, 1, 8, 1, 1, 4, 0, 2, 0, 5, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/skoblov-lab/genetic,2016-08-05 23:52:17+03:00,c58c4486b061009cadcf772a0dbb36d87ac92bd3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/un33k/django-ipware,2013-04-24 15:47:22-07:00,dc9663c84fdb99096acdde4414a5ae6867960c3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/google/yapf.git,2015-03-18 13:36:07-07:00,7d623455f45435ad351514dfd4abd064cac61aab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 50, 51, 21, 32, 18, 16, 0, 3, 5, 3, 0, 6, 2, 5, 10, 9, 3, 6, 1, 1, 0, 4, 0, 11, 12, 1]","[4, 2, 8, 5, 12, 5, 1, 0, 0, 1, 1, 0, 3, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,3,19,0 -https://github.com/danieljprice/giza,2012-08-28 07:37:27+00:00,906974b367d6176e9c58c32de5734917c3a6d7ad,"[0, 16, 0, 5, 0, 0, 0, 0, 0, 4, 1, 11, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mvz/ruby-gir-ffi,2009-11-09 19:49:30+09:00,d45997839d9c5433ef85fd045527f7832a4913db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 1, 0, 3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 8, 17, 8, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/KhronosGroup/OpenCL-Headers,2018-05-14 14:08:28-07:00,de26592167b9fdea503885e40e8755393c56523d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,1 -https://github.com/hzeller/gmrender-resurrect.git,2012-10-07 15:36:08-07:00,be559dc7b23c32452d7721cc825b60f29240e95d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 34, 8, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/chibisov/drf-extensions.git,2013-07-25 11:05:09+04:00,16c4f5f0c18f8cd132ce6825d7bf1285d0fd50bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/pure-data/deken,2015-04-24 15:10:02+08:00,d2ca75d5bf8b7e82022450a1623d53c6f063e66f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 15, 19, 2, 14, 27, 34, 34, 29, 13, 14, 36, 3, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1]","[0, 0, 1, 0, 0, 0, 5, 7, 3, 1, 1, 5, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,3,4,0 -https://github.com/cmusphinx/pocketsphinx,2006-06-05 03:56:31+00:00,f739f5646c599dc63242cf5f3972aff40a3b3048,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 3, 7, 8, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 13, 8, 7, 22, 7, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/johnkerl/miller.git,2015-05-03 16:00:37-07:00,63cf4c42628ea859edb0745679589b9550055f9f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 34, 28, 27, 36, 14, 17, 5, 0, 13, 22, 34, 12, 6, 20, 49, 104, 97, 69, 74, 89, 61, 90, 56, 43, 45, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 6, 3, 11, 6, 2, 1, 0, 0, 0, 0]",1,2,12,0 -https://github.com/storaged-project/libbytesize,2015-10-09 12:39:52+02:00,fa2251d6e94a45a6c3bbbeabe9f9057c5765ce76,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libxsmm/libxsmm,2016-03-30 09:32:40+02:00,61f09f3ea170c18700d95685a68dee17207c7a33,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/readthedocs/recommonmark.git,2013-08-25 16:45:13+02:00,21d5fab2ba53e357dc70e5ee8f139e5808001af3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/LibreCat/Catmandu.git,2010-08-27 10:54:49+02:00,9292a8b9b6693f44846fad00a400c045ae7a51f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 40, 14, 0, 0, 0, 0, 0, 7, 5, 13, 25, 11, 16, 27, 10, 10, 0, 6, 17, 8, 11, 4, 6, 2, 3, 1]","[0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 5, 0, 0, 0, 0, 5, 2, 2, 1, 0, 2, 0, 0]",2,2,2,0 -https://github.com/puppetlabs/puppetlabs-postgresql.git,2012-04-19 15:37:18-07:00,01c9cbeb7c3bd5c7bd067c5d7438df7d34027fbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 2, 0, 1, 5, 1, 6, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 0, 1, 0, 4, 0]",1,2,10,0 -https://github.com/google/fscrypt,2016-10-26 15:21:47-07:00,331800d9bacecdcaca3518d7ffe000600b35cef2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/az143/glimpse,2014-09-26 11:50:21-07:00,f938dd150035f8887d53d3a76e04c5ea5151d0f6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/evanw/node-source-map-support.git,2013-01-17 23:56:20-08:00,c50758519f67ee47cc5e1ff7a17c543bc3242eed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 4, 2, 1, 0, 0, 0, 0, 4, 2, 2, 0, 0, 0, 0, 3, 0, 4, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]",1,1,6,0 -https://github.com/lv2/sratom.git,2012-04-18 00:49:05+00:00,c27d12eec50db41f1d0ffca8385891060e35338e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 11, 2, 4, 5, 1, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 6, 7, 0, 2, 0, 5, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/GauiStori/PyQwt3D,2016-10-22 15:41:37+02:00,21958f37a351bd376fcbd70be19d71a202bf2acd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/Masterminds/html5-php,2013-04-02 16:40:53-05:00,42db622a7f8409571808f215081e64a22af41e2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 68, 28, 17, 25, 1, 10, 11, 16, 3, 16, 5, 18, 0, 1, 1, 0, 0, 3, 0, 1, 0, 0, 7, 0, 7, 1]","[0, 3, 3, 2, 3, 0, 2, 0, 1, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0 -https://github.com/yetist/lunar-date,2007-11-21 06:57:40+00:00,003a59b9a33ef46a03d35d93d08989721b0a171d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 6, 3, 14, 0, 4, 3, 4, 1, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/linuxdeepin/deepin-music,2012-02-14 10:16:55+08:00,0354725532139c397a1d0c3fb1f8b26c5da3f564,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 8, 5, 1, 6, 8, 14, 35, 11, 1, 10, 5, 1, 2, 3, 16, 25, 37, 28, 40, 37, 1, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/f-secure-foundry/tenshi,2014-09-30 22:11:24+02:00,2e3cacd27e768e9428de650e62c6b1d5ce611b55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://salsa.debian.org/ruby-team/ruby-github-markup,2013-06-09 00:28:31+02:00,12bdf2ffb8d10d094a3d14feab5804baf5b31a7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/brianmario/charlock_holmes,2011-08-23 16:04:06-07:00,6e122a2ed484b00ff7eddff4fa48dabb87330a7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 13, 10, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://gitlab.gnome.org/GNOME/gnome-desktop.git,1998-02-10 21:22:19+00:00,e745360fddfa92ae76b058dfa106918b83660350,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 1, 6, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 6, 16, 8, 8, 3, 0, 0, 2, 7, 12, 28, 6, 13, 19, 15, 8, 13, 5, 7, 1, 5, 7, 7, 14, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,39,0 -https://github.com/kilobyte/memkind,2014-03-18 14:52:23-07:00,274517603636f6b3ae838a2cecfcb5e8e719e4dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[81, 67, 63, 14, 61, 16, 18, 15, 0, 1, 31, 11, 0, 11, 21, 19, 99, 26, 9, 8, 24, 10, 17, 27, 49, 1, 1]","[2, 2, 10, 0, 4, 1, 2, 1, 0, 0, 0, 1, 0, 1, 2, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,3,5,0 -https://github.com/linuxdeepin/deepin-terminal.git,2019-05-17 17:07:10+08:00,bf70075598c5fde4628153ff7f61e541e090c7e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 7, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 1, 4, 1, 2, 5, 5, 2, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 -https://gitlab.gnome.org/GNOME/phodav.git,2014-01-22 21:32:10+01:00,34b1885abe273b0b7a8bb62deca55d5b313eebb1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 10, 4, 0, 5, 2, 1, 1, 7, 4, 3, 20, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,7,0 -https://github.com/vimalloc/flask-jwt-simple.git,2017-08-24 15:07:22-06:00,ffadaf578fe6f40198a50f1067d9ccb425013366,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/breakfastquay/rubberband.git,2007-12-10 16:29:52+00:00,a94f3f33577bf9d71166392febbfdf3cace6f1c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2, 14, 5, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/MagicStack/httptools.git,2016-04-25 12:36:56-04:00,cf864d941e4aede4231f79fcfe75b971ff79d16d,"[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/mdbtools/mdbtools,2000-02-12 23:51:37+00:00,30ab45dc35dbbb2ee349d2553ce4dda52729f317,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 5, 7, 17, 8, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tcolar/wmfrog,2013-09-05 20:54:54-07:00,d0732d71873fe4ef6c421b343d79f17f8b9bf0ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lunarmodules/say.git,2012-09-06 13:01:32-07:00,f25d51b206d382579cfe5d9499bd2008f720ca6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[1, 1, 2, 2, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,3 -https://github.com/kazu-yamamoto/pgpdump.git,2010-02-19 15:15:01+09:00,0e639f7a17bd5e1bf3a2d9263005e77cd51f03ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/processone/stun.git,2015-12-11 18:38:11+01:00,7cd78019d7058e483a2ce5cc5074d85650802180,"[0, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 8, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,2,1 -https://github.com/rncbc/synthv1.git,2012-09-02 00:45:35+00:00,a7892c4917b3aedf11b8f55399cb7384928ffaf2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 3, 2, 0, 1, 3, 4, 8, 12, 1, 8, 0, 14, 7, 4, 1, 1, 2, 3, 5, 4, 4, 5, 4, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/Eqonomize/eqonomize.git,2016-06-13 13:31:26+02:00,0b10002f8937c472c71768066791f304b6ad1a0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 19, 18, 10, 0, 0, 0, 0, 10, 2, 6, 3, 6, 4, 1, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://gitlab.freedesktop.org/mobile-broadband/libmbim.git,2013-08-14 15:37:31+02:00,675542eff661caa733977d93051ada49b56e4c8f,"[0, 0, 0, 0, 0, 0, 0, 10, 0, 37, 0, 0, 0, 34, 5, 10, 12, 14, 47, 0, 0, 1, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,4,0 -https://github.com/exaexa/apulse-debian,2014-09-15 01:43:53+04:00,ca9a34ff4907a1d3dfa7115b0c70a897a8b68368,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 3, 0, 0, 5, 1, 0, 4, 3, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jeancroy/fuzzaldrin-plus,2015-09-23 20:31:54-04:00,d45eb8cb58ef179eb07e09e39a0598fee415d770,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 0, 1, 1, 7, 0, 2, 1, 0, 11, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 -https://github.com/cseed/arachne-pnr.git,2015-05-27 16:13:45+08:00,1f461be75fbdb0fd958f7531358820f6f0edd2e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 3, 13, 21, 2, 0, 17, 1, 1, 9, 23, 13, 3, 0, 2, 3, 2, 0, 0, 3, 22, 6, 0, 0, 0, 1]","[1, 0, 2, 3, 1, 0, 0, 3, 0, 0, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,3,7,0 -https://github.com/keis/base58,2015-04-07 11:18:25+02:00,c16c7e60746eec885562e4c6778bd2f66c920b5e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 -https://github.com/Rykian/clockwork,2010-05-11 15:31:04-07:00,596af5c614f9660d946a9b72339323e46a6699c4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/eikenb/terminal-colors,2014-06-28 22:28:18-07:00,5ad3cfbc293cc506a0de418d3b90eba58a05c75e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://invent.kde.org/system/wacomtablet,2011-03-26 14:10:02+01:00,2b1999d8621c5524021008ec7b1b28ccd8b91527,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 21, 1, 0, 0, 2, 1, 2, 2, 7, 0, 1, 2, 0, 1, 1, 1, 1, 0, 0, 1, 0, 3, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/ai/autoprefixer-rails/issues/new,2013-04-05 00:58:36+03:00,b114dbd0c3482deef902d6e7d3ee876d9abd850d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 7, 6, 6, 4, 3, 7, 8, 3, 8, 15, 7, 10, 3, 15, 4, 14, 10, 3, 0, 6, 7, 5, 3, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/fordfrog/apgdiff,2012-09-16 02:31:55+02:00,f855af56a7a97c1bade9508dd226a15b1d027640,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/smuellerDD/jitterentropy-rngd,2017-05-19 00:41:01+02:00,dd8e82657489be6e35a050db377108c6491b2ead,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/htacg/tidy-html5,2011-11-17 11:58:38+09:00,ff7a980d9de76329cd2c38fadeac9b7565de0b0f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 4, 4, 9, 9, 7, 7, 11, 3, 5, 0, 3, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 -https://github.com/syohex/emacs-git-messenger.git,2013-05-16 17:16:13+09:00,de3096daeed4ac950851af441185b7b9d0653b9c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 15, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/ramnathv/htmlwidgets.git,2014-07-17 16:40:13-04:00,9b39806e6dfb3105cd875aa7103190ba2c3f98ab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 8, 46, 22, 2, 1, 0, 3, 2, 0, 0, 0, 0, 0, 2, 2, 2, 25, 8, 47, 37, 1, 0, 0, 0, 5, 1]","[0, 1, 10, 6, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 1, 0, 5, 2, 7, 11, 0, 0, 0, 0, 1, 0]",1,4,8,0 -https://github.com/alif-type/amiri.git,2008-10-31 18:50:55+00:00,cf68ff6a95082bc98c943792ac31abe857381b79,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/savonet/ocaml-theora.git,2008-10-15 17:30:33+00:00,0bb0ceba43dcab886d8e81c7c346a1f27c671e97,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/kornelski/pngquant.git,2011-12-26 21:31:04+00:00,74f5b43759234f741cb72aadb2a4a89cf0b112f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 -https://github.com/AFLplusplus/AFLplusplus.git,2019-05-28 16:40:24+02:00,f367728c4435670caf2e9cc5acad257e7766cc65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 8, 6, 11, 15, 22, 30, 28, 20, 13, 17, 4, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 0, 1, 2, 4, 3, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,5,17,0 -https://github.com/BioPP/bpp-core,2021-10-05 11:29:29+02:00,fca2cd9cc7e41d044d226588e1c7861f656d8a96,"[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[8, 0, 0, 0, 1, 2, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,0,2,1 -https://github.com/lucc/khard,2014-09-23 00:57:49+02:00,3371cc01c7fbace1e6fe247db1137c5080164407,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 1, 1, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/CDrummond/cantata,2011-11-27 15:24:05+00:00,cb159b27533d31a18dfd3d0a9324517f96da2652,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[73, 100, 41, 64, 12, 50, 7, 71, 41, 35, 85, 54, 70, 83, 58, 29, 50, 41, 38, 23, 48, 29, 30, 19, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/knowthelist/knowthelist,2014-05-16 09:45:33-07:00,288e15aca63d0a4333982c8f304d0c5b372d6049,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 8, 20, 19, 11, 8, 20, 19, 11, 5, 16, 23, 7, 0, 19, 15, 13, 17, 15, 8, 4, 3, 0, 6, 3, 0, 0]","[1, 0, 2, 2, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 2, 1, 1, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0]",0,3,5,0 -https://github.com/brack3t/django-braces.git,2012-03-02 12:16:29-08:00,1f054d280ee2cbdf5c57bc6967d51ce960036371,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 13, 1, 0, 1, 0, 1, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 -https://github.com/gbarr/perl-Convert-ASN1.git,2000-05-03 12:24:42+00:00,cdea6b4e90d89c945a4e7cc15697d63402c26856,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/resurrecting-open-source-projects/scrot,2019-02-12 14:28:27-02:00,3250e195fe7aab38b6ea09a45718280ff0301e3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 31, 7, 5, 0, 2, 10, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 1, 0, 0]",1,2,5,0 -https://github.com/trapexit/mergerfs,2014-03-24 08:43:21-07:00,2b78be18f4fb39e4f72bd3019aa352acc5e7ede3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 3, 4, 12, 2, 2, 2, 4, 0, 1, 0, 1, 3, 1, 1, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libsndfile/sndfile-tools.git,2007-10-08 22:23:55+10:00,ab4c9ce664f0e03fc31762513289aeb3b7540e9a,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 12, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/solnic/virtus.git,2011-04-02 18:10:47+02:00,1c16bae504ea1065ec35b5db1d3fc0d43242eb3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 6, 7, 33, 57, 0, 18, 27, 43, 25, 79, 67, 20, 7, 2, 7, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/intridea/multi_json,2010-06-13 13:09:59-04:00,518c21ab299c500527491e6c049ab2229e22a805,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/alexdalitz/dnsruby.git,2007-09-21 09:19:24+00:00,b2777fbc25bbfee396b2a730c0b33a5a368dbc9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 6, 15, 1, 2, 0, 5, 3, 4, 0, 0, 1, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jacktasia/dumb-jump.git,2015-11-18 13:29:17-08:00,cc622b011afcb4f5bfd5ede579dd80009dfc1dad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 3, 5, 18, 30, 26, 19, 26, 8, 22, 12, 13, 12, 17, 8, 8, 12, 12, 8, 6, 4, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 2, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,6,0 -https://github.com/pdepend/pdepend,2017-11-20 12:43:56+01:00,64abe82fd651216a4c8f1d5555193e91f8c00ec8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 34, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 1]","[5, 9, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,1,1 -https://github.com/nixxcode/amsynth.git,2002-03-16 19:25:22+00:00,1944e598363acc1ec39f69aa03dfe5f9e4d269fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 0, 0, 3, 2, 0, 0, 4, 0, 0, 7, 23, 2, 0, 3, 2, 1, 4, 1, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jpadilla/pyjwt.git,2011-02-24 12:28:20-08:00,ab8821fefa1c481ece410305d03a1f21c0b4a207,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0 -https://github.com/h2o/h2o,2011-01-13 12:12:45-05:00,f8769784e5469cfa0fd497030832364c3927c804,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 6, 1, 7, 0, 3, 19, 1, 0, 0, 1, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/datawraith/ascii85gem,2009-02-17 18:02:48+01:00,d3aaea468cfc5e320dbc601979603c19d6759385,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jonschlinkert/mixin-deep.git,2014-09-22 11:41:27-04:00,5a058ff68c208e13ee9e55f9f7b4ce79f307536a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/lxqt/lxqt-admin.git,2016-05-31 23:12:16+02:00,0f9ab3a1d618222472526e3fb13efb2bcf7bdc2e,"[0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 5, 2, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 -https://github.com/tpm2-software/tpm2-abrmd.git,2016-04-01 12:26:39-07:00,80379fdf6a330900f566dec6b809f510d3dc26bd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 13, 10, 10, 6, 2, 20, 14, 6, 19, 6, 5, 0, 0, 0, 1, 4, 7, 0, 8, 6, 0, 0, 7, 2, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Intel-HLS/GKL.git,2016-05-16 10:15:10-04:00,849a03755557798ac1351a9b5c3648fc7ca281ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 7, 0, 27, 10, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 8, 0, 37, 2, 1]","[3, 4, 3, 0, 14, 4, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0]",1,4,3,0 -https://github.com/isaacs/pseudomap,2015-11-27 14:13:43-08:00,821316ef5b2c53f4d6d40bfb21301f74fd0c21a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jammus/lastfm-node,2010-09-13 21:43:05+01:00,24bcc1ced77ba8edec1eeecb30b0a11c6192429b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 2, 2, 10, 5, 6, 0, 24, 3, 4, 1, 0, 0, 0, 0, 0, 0, 16, 5, 0, 0, 0, 0, 0, 12, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://gitlab.com/accounts-sso/telepathy-accounts-signon.git,2012-12-05 20:00:15-07:00,99d19de22b9f2371c4ee1f47d1eb735943475c6b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,1,0 -https://github.com/tweepy/tweepy.git,2009-07-05 14:24:56-05:00,04709fb6e5cb73060a962e85099ae704ce7bad45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 5, 2, 26, 36, 32, 7, 3, 4, 4, 13, 11, 14, 0, 37, 0, 7, 21, 3, 5, 1, 5, 34, 6, 0, 4, 1]","[0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,2,9,0 -https://github.com/rra/pgp-sign,1998-11-26 05:00:12+00:00,41c7a4a8d0d17ee8f00ea7a8995f5801e86a4bdf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-music,2012-07-29 03:35:21-07:00,12f63a47ecbbfd23b0a7300359fdb5f732a32eaf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 11, 22, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 2, 0, 0, 2, 4, 1, 0, 1, 2, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,11,0 -https://gitlab.freedesktop.org/libinput/libinput,2013-11-12 22:37:20+01:00,bd4db1c2a21fddd9b1135a41c5adaff3db0f8b3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 2, 0, 19, 12, 20, 0, 9, 15, 14, 28, 10, 13, 7, 10, 8, 1, 0, 31, 5, 6, 11, 2, 18, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0 -https://github.com/linuxdeepin/deepin-menu.git,2013-11-11 07:57:59-08:00,51ccf3f74f478c5695bb3f7f0018d30c1f17f781,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[18, 38, 18, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,1 -https://gitlab.gnome.org/GNOME/libgudev,2015-05-15 11:42:30+02:00,7042a0a7fae9a3b76ef02e9532b0353515e53249,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/jupyter/nbformat,2015-04-08 18:46:25-07:00,0762fbc4bbb2150944ed23b70dde4c23b30dc489,"[4, 1, 0, 34, 7, 1, 5, 2, 6, 3, 1, 0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 5, 10, 9, 2]","[2, 1, 0, 2, 3, 0, 1, 2, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0]","[3, 2, 0, 0, 4, 2, 4, 0, 2, 0, 2, 0, 4, 2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 -https://gitlab.gnome.org/World/lollypop.git,2014-10-02 17:53:35+02:00,d28a5d4c58bd19341c2891726eafd6d1444eda2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[61, 111, 44, 111, 62, 19, 3, 119, 26, 22, 27, 13, 2, 25, 36, 10, 117, 12, 4, 71, 59, 61, 31, 75, 47, 40, 1]","[0, 0, 5, 0, 1, 2, 0, 3, 0, 2, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]",1,1,2,0 -https://github.com/messageformat/Jed.git,2012-01-16 02:23:06-06:00,e036859005c009a8df7b3867584713a23ef84bab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/shimmerproject/Bluebird,2011-02-18 20:46:53+02:00,98b0f4b57a1c8939c77c03a4cc66d2392c4c487c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 6, 11, 3, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/coleifer/wtf-peewee,2011-09-01 10:21:04-05:00,205377acdc2313dbad5d154dd2794fd360535f30,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 1, 2, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/isaacs/once.git,2012-08-14 00:25:06-07:00,139a136bd478b623850879140d8fec96147e7a3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-disk-utility.git,2007-05-08 00:20:39-04:00,2c46760544b4f6336ea94267b957fb729845d7c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/alols/xcape,2012-03-31 23:02:17+02:00,7a396a4fac640638f02ec9b68c0f3bbe61e6f367,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 -https://github.com/kilobyte/ipmctl,2018-05-14 17:00:06-07:00,ea2872684563c6e9be4d09080f993a8d3bb6169a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 29, 23, 32, 18, 15, 0, 47, 0, 1, 58, 32, 31, 22, 17, 6, 16, 18, 11, 0, 0, 47, 0, 32, 12, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,16,0 -https://github.com/caml-pkcs11/caml-crush,2013-12-18 17:38:50+01:00,bf1ced5628bfefbd3cb4ec69cbb745fb039a7f0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 0, 2, 0, 0, 0, 5, 3, 3, 6, 4, 0, 7, 0, 0, 18, 1, 0, 0, 0, 6, 0, 1, 3, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/latchset/custodia.git,2016-12-09 17:39:22+01:00,e5332c993ac318fb262ac5819c60a757ac5342be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 7, 8, 6, 10, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/dsully/perl-crypt-cracklib.git,2010-07-20 14:00:26-07:00,2358018e31adb576b9f4eec686d30d38df8ca6d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ximion/appstream-generator,2016-02-21 23:21:32+01:00,8951ab113ddfaf633ae1b93e3c3d7a38cbf27f69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 17, 7, 13, 35, 29, 4, 23, 35, 13, 2, 0, 17, 17, 1, 5, 0, 0, 3, 1, 4, 4, 22, 15, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,2,5,0 -https://github.com/jupyter/jupyter_console,2015-04-09 14:58:56-07:00,01911a59496d49002da76d73c83a00fd735f63e4,"[3, 1, 0, 0, 5, 4, 0, 2, 2, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 2, 0, 0, 0, 10, 2, 10, 2]","[1, 1, 0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 0]","[1, 0, 1, 0, 2, 0, 2, 0, 5, 0, 0, 7, 2, 10, 0, 0, 0, 5, 0, 2, 10, 0, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 1, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0]",5,0,4,0 -https://github.com/bucciarati/mpc123,2006-08-05 00:15:03+00:00,7a414ec6e35b1e34dac506aea0bbb9ecd79d8160,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/timvideos/HDMI2USB-mode-switch.git,2015-09-20 02:03:36+10:00,e3c7c14f0120f3d40301dd5f92ca1e3fe4ceb1fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/hamcrest/hamcrest-php.git,2011-08-30 11:28:24-05:00,ece5e9b731efb036f7afd84155b18bd03442f829,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rails/arel,2007-12-30 11:35:44-08:00,960bbcb3ce4a82cf4f031d1c6682ce4c1a04474d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 20, 7, 4, 1, 4, 11, 8, 2, 4, 12, 10, 0, 0, 17, 17, 0, 8, 17, 22, 12, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://gitlab.gnome.org/gnome/gdm.git,1999-04-18 22:08:08+00:00,48dfb0c6fc683eb0512074448bc4418ad8241e40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 1, 0, 1, 0, 1, 0, 0, 1, 0, 2, 3, 4, 1, 9, 2, 2, 9, 2, 1, 8, 11, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,30,0 -https://github.com/Pingus/pingus,2000-02-04 23:45:08+00:00,0e80a5966856474f38235783f7928c69e76ea26b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 25, 9, 21, 20, 29, 6, 0, 0, 44, 10, 4, 22, 13, 5, 25, 10, 7, 38, 33, 32, 5, 17, 1, 0, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/etingof/pysmi,2015-04-11 11:04:27+00:00,ad7337ad5452804f959a1e60b2f9d5d8cd396e44,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 41, 14, 23, 11, 13, 1, 5, 1, 0, 3, 7, 9, 2, 0, 0, 2, 0, 1, 0, 0, 4, 0, 1, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/admesh/python-admesh,2014-07-15 13:41:30+02:00,0490492bbc466c08f272dd205ab9a1eeb36fd25a,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 7, 2, 0, 0, 0, 2, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/schismtracker/schismtracker,2003-07-08 16:57:56-07:00,6389808e2c266a5779a517c54bacb13bcc875919,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Xastir/Xastir.git,2002-02-02 03:19:52+00:00,fa09e5594e8cc377bde8c290c38656a527321aa0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 20, 4, 6, 33, 12, 8, 26, 32, 52, 35, 49, 30, 30, 14, 10, 8, 39, 22, 36, 23, 15, 25, 40, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,7,0 -https://github.com/tianon/cgroupfs-mount,2014-03-21 12:42:30-06:00,eb97f747608968cc2c29a6dedf882705c6e02f57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 10, 0, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/onetrueawk/awk,2012-12-22 10:35:39-05:00,87b94932e6f12ad16e9fc1af1a7b5b66ae9381e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/stumpwm/stumpwm.git,2003-09-13 21:01:16+00:00,f56ea9b506cae8819fcd5295ff8bc3afc1da1905,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 1, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-characters.git,2013-02-22 22:53:06+01:00,2c33b8a6a428cb19acc48983a07a060391067589,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/katajakasa/SDL_kitchensink,2016-01-04 04:33:59+02:00,537ca31915603d7ed47ab4374a74058e340125c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 38, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/mate-desktop/marco.git,2011-12-01 23:52:01-03:00,28a029a4990d2a84f9d6a0b890eba812ea503998,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,4,0 -https://github.com/epinna/weevely3.git,2014-09-27 20:11:21+02:00,032c061aea19fb302ae5254e438809045e41c0b3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[86, 41, 68, 27, 37, 19, 9, 6, 17, 3, 32, 0, 16, 0, 2, 34, 0, 0, 1, 2, 0, 0, 2, 0, 0, 15, 0]","[3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://invent.kde.org/education/labplot.git,2008-03-03 10:50:16+00:00,558afdbe9a38caee295e44fdb3f2e9e916c8aef8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 7, 1, 2, 4, 2, 0, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/purcell/ibuffer-projectile.git,2014-12-29 20:50:36+00:00,c736a211cf7a0d4b3cccec8687ba22aac66b1725,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/OpenShot/libopenshot.git,2011-10-11 08:44:27-05:00,161e8923afad20bae00fcdcea571af3d67301b8d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 8, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/miguelgrinberg/python-engineio.git,2015-06-21 18:59:54-07:00,4303b86e4f363e746957e6adecea303089e90f70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 3, 1, 0, 2, 2, 2, 12, 5, 8, 2, 0, 3, 0, 2, 4, 2, 0, 2, 0, 3, 0, 3, 4, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,2,0 -https://github.com/icholy/ttygif.git,2010-08-22 13:16:14-04:00,c4fd0f2bc69dba852526df3610f98d867ba5ab24,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/luceneplusplus/LucenePlusPlus.git,2010-08-19 23:24:58+01:00,2b1d647d73d9abe6b6b49d88c5cb2e4beb9eaf4c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 16, 3, 5, 3, 1, 1, 2, 9, 5, 3, 0, 0, 0, 0, 3, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/pydanny/cached-property.git,2014-05-17 15:42:43-07:00,7161ec8bf07e46aa08216e494a29d0428b7d988b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/mqttjs/mqtt-packet,2014-07-26 14:57:10+02:00,5efacaf07b8b241a88dbeba2ab56ccc520041463,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 2, 7, 15, 3, 4, 0, 0, 0, 0, 8, 0, 0, 6, 6, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 -https://github.com/lmj/lparallel,2011-10-22 10:48:24-04:00,520441ad620764be3b68c688c3cdd483cda1831b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 10, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 3, 4, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/pgRouting/pgrouting.git,2007-05-15 05:05:03+00:00,c7cbee6df17006494d85d5685c3a01a794b09e4b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 3, 0, 0, 1, 0, 0, 0, 0, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://gitlab.xfce.org/panel-plugins/xfce4-xkb-plugin,2004-05-23 08:44:20+00:00,198131826b14b4a8de6a8b8b7e5fc28a7221aad6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/koehlma/pygtkspellcheck,2012-04-11 01:17:02+02:00,d23125349868e391d43bc8fb8588f11892b3ef7d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 1, 31, 16, 21, 1, 5, 6, 24, 21, 0, 5, 3, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/shoheik/Graph-D3.git,2013-04-13 11:17:23+09:00,1a98dea29dde821f079e7a1b732261101bc6ee83,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dglent/meteo-qt.git,2014-10-18 09:50:09+02:00,b02b276391baecd48fc51f7247659794799b3637,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 38, 8, 27, 2, 3, 2, 1, 2, 19, 1, 0, 3, 0, 1, 4, 0, 4, 0, 0, 0, 0, 0, 2, 9, 1]","[2, 0, 8, 3, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,7,0 -https://github.com/darkk/redsocks.git,2008-08-19 03:27:14+07:00,a1f4ccddd03d1c895e8804efb7fe7b3d974eddad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/pydata/xarray,2013-09-30 10:21:10-07:00,f6202cb597237e5ad78904771bcbc03e01f39b27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 42, 11, 38, 50, 21, 6, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 12, 15, 4, 4, 10, 0]",2,4,5,0 -https://github.com/johang/btfs,2015-07-26 10:37:22+02:00,5f3f0c0d444679d9e1b378a9040fe251fa0486e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 3, 0]",2,1,4,0 -https://gitlab.com/larswirzenius/vmdb2.git,2017-02-26 18:13:54+02:00,544805adcb8244e6bbe72befec09d69c627debf9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 16, 0, 11, 22, 0, 9, 0, 0, 0, 9, 11, 0, 16, 4, 11, 0, 0, 0, 3, 0, 11, 0, 0, 7, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/mudge/re2.git,2010-07-24 14:49:13+01:00,3f654a4dfc7bdcb18a421e20a8f0f5af918eb035,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 10, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/JRaspass/Cache-Memcached-Fast.git,2007-12-06 13:07:27+03:00,c05b1a429bb86babd602bafa99eeffad32ed9138,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[130, 73, 21, 1, 35, 53, 38, 3, 3, 2, 0, 2, 11, 14, 0, 0, 3, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/intel/hyperscan.git,2015-10-20 09:13:35+11:00,904e436f11ed1197a1192b421ab7278975dce169,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 18, 0, 32, 5, 0, 14, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://gitlab.gnome.org/tuxor1337/hidetopbar,2012-11-22 13:20:39-05:00,62d39377dd7a081d8948ebb45f860b7c9a314793,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 4, 0, 3, 5, 0, 0, 0, 0, 1, 13, 0, 2, 3, 1, 2, 0, 0, 0, 5, 1, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]",1,3,4,0 -https://github.com/dosfstools/dosfstools.git,2013-01-23 12:46:45+01:00,ba6774ae1dd5199a733dfaeaf438dff095284de7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[101, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 1, 20, 1, 2, 0, 0, 2, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,30,0 -https://github.com/txt2tags/txt2tags.git,2019-12-17 22:59:46+01:00,2aadebd414dd85b67f2c0a9f7f7d6032ce661c6d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/topfunky/gruff,2008-03-11 15:10:13-07:00,b5788a43b0d9714ed2e53dfa138d41c22ea4649c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/01org/libyami.git,2013-09-10 00:52:04+08:00,0964cbafc01ee529b7fa53013170cc61c4e81fb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 0, 14]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 -https://github.com/Xaviju/inkscape-open-symbols,2015-02-26 00:17:06+01:00,cec5fd2fd20e3ff2fdf616170fe8ca4cdeaafea6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,7,0 -https://github.com/Debian/debiman.git,2017-01-06 16:11:22+01:00,46fd41016de5adf921326141eb7c1a047b997478,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 75, 31, 27, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 4, 4, 1, 1, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/tbird20d/grabserial,2013-12-16 15:09:47-08:00,02077ab2a63beabcbd7114998b808aaf90362d1a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,0 -https://github.com/google/jimfs.git,2013-09-08 01:09:27-04:00,b12009d0b8ecf6725d50cf9226fd232c0aff12c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 11, 4, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0]","[32, 29, 16, 17, 19, 27, 14, 14, 9, 5, 0, 0, 9, 9, 2, 0, 0, 0, 0, 12, 7, 2, 2, 0, 5, 0, 1]","[0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0]",1,1,1,1 -https://github.com/williamh/espeakup,2008-07-28 01:23:43-05:00,4e3bbdb0b02eb1f12c087909e6437a31a9c60d7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 3, 14, 0, 7, 5, 0, 0, 5, 5, 7, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rrthomas/mmv.git,2022-02-27 23:07:44+00:00,90026621b4cbabc4b29c112a515d50825a8a0500,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/puppetlabs/clj-kitchensink.git,2013-10-28 16:10:22-07:00,ba53c060312bbc36fdc4003d2f413a78ece53bbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 13, 9, 20, 6, 3, 1, 8, 4, 0, 15, 0, 1, 5, 7, 2, 12, 5, 0, 5, 0, 0, 6, 0, 14, 5, 0]","[0, 6, 3, 8, 3, 0, 0, 2, 1, 0, 3, 0, 0, 2, 1, 2, 2, 2, 0, 1, 0, 0, 1, 0, 3, 2, 0]",1,5,12,0 -https://github.com/thoughtbot/factory_girl.git,2010-06-09 11:42:48-04:00,dd737af03e6f626403c87aeae516940bf80535c9,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 1, 0, 1, 0, 6, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,2,0 -https://git.launchpad.net/gmult,2008-04-15 05:23:34+00:00,f13a4f8e618894ee4c0d6d28c1aa89f992870bd7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 0, 0, 0, 0, 0, 8, 8, 0, 12, 4, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 -https://gitlab.com/camlspotter/camlimages.git,2010-05-03 23:37:01+09:00,79f2d677749f292d3f022789d87c67e225399fab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 8, 5, 0, 0, 2, 0, 0, 0, 3, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/edmonds/ifupdown-multi,2013-09-17 21:32:53-04:00,e715f53c3d9f9ee91b8a56b1ba124018c0f8246e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/DaveGamble/cJSON.git,2011-08-22 00:43:38-04:00,fc0df31a18b6acdcd01a4507060287097a50b4f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/felixge/node-dirty.git,2010-01-12 16:17:51+01:00,bf46237bf9d63019287e1d4395a61c9823e9d078,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 5, 0, 0, 0, 0, 14, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/edenhill/kcat,2014-03-30 15:58:25+07:00,b81469f12dd3f06d5f0e3eb98b2cb75d1fb6a731,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/flot/flot,2007-12-03 19:54:22+00:00,87390ae7fe343764d30203d233992427afdd4dc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 14, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/squizlabs/PHP_CodeSniffer,2011-11-04 09:18:45+11:00,6f41fcd0ded363336e238815d3d826ded137bd44,"[0, 1, 0, 0, 0, 1, 0, 0, 0, 4, 1, 0, 1, 3, 0, 0, 0, 0, 4, 4, 1, 0, 3, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 6, 13, 6, 0, 1, 2, 0, 0, 13, 1, 8, 1, 5, 3, 8, 0, 1, 3, 0, 9, 0, 4, 3, 3, 4, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 1, 0, 0, 0]",0,1,10,0 -https://github.com/csound/csound_pd,2018-01-19 13:20:22+00:00,5082f5035b94af58dd4a8cf1ab17609b3b46fcf3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1 -https://github.com/anthon38/gmailfeed.git,2014-12-20 15:59:18+01:00,f2a730ff98b25ce293c078b1232ffac78de96ab2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 1, 4, 1, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/supermihi/pytaglib,2011-08-27 01:23:48+02:00,2ef173461952c04285409697e34fb31609353451,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/strengejacke/sjlabelled,2017-05-30 21:24:32+02:00,ea313d08a9b43e09d532599f06df43c240e0474e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 1, 2, 1, 1, 0, 0, 0, 2, 0, 0, 1, 0, 2, 3, 1, 4, 4, 1, 0, 0, 11, 1, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,0,0 -https://gitlab.com/yawning/obfs4.git,2014-05-09 10:23:58+00:00,ef38b844f9989dff25f553b583aeafc411dd100e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 15, 16, 5, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 5, 5, 7, 3, 0, 2, 2, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/chocolate-doom/chocolate-doom.git,2005-07-23 16:54:24+00:00,bbe2bfe4df3709bee31ef3eeac45fd3be7f72671,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 10, 1, 1, 10, 30, 11, 17, 18, 22, 28, 23, 4, 4, 0, 1, 0, 0, 0, 0, 0, 5, 22, 38, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb,2013-07-24 16:45:26+02:00,0c3338a30dfb35d19ef26d3b36e087f5b4ad1388,"[13, 28, 25, 25, 99, 147, 103, 43, 38, 35, 20, 29, 25, 16, 0, 11, 21, 41, 30, 16, 26, 19, 23, 17, 10, 27, 2]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 18, 0, 1, 9, 10, 6, 14, 11, 4, 3, 7, 8, 5, 5, 4, 9, 11, 10, 9, 14, 0, 0, 0, 20, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2 -https://github.com/mfontanini/libtins.git,2013-01-28 17:57:43-03:00,2a1a28c3fbb42ff3d5198da11493b7f779045ab0,"[7, 14, 7, 11, 3, 9, 5, 0, 0, 10, 5, 9, 0, 0, 0, 0, 22, 12, 8, 1, 0, 0, 0, 0, 5, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 6, 8, 3, 3, 11, 22, 15, 3, 0, 0, 3, 12, 5, 1, 1, 0, 1, 2, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,0,2,0 -https://github.com/cherti/mailexporter,2015-08-08 19:34:58+02:00,d86c5f6f8feb2f13064ec6e2bd1073d3411de168,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 2, 0, 3, 15, 2, 1, 0, 0, 0, 2, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/3rd-Eden/FlashPolicyFileServer,2011-05-31 23:58:54+02:00,70d9bd6243f68e1fcfae5203aa5c741cd5803f82,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/rcsb/mmtf-java.git,2016-03-18 06:30:29-07:00,148b2f20524f4b91b95eaaa50211d1d0be42b84a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[57, 62, 65, 62, 43, 8, 2, 4, 5, 29, 29, 1, 10, 2, 0, 12, 0, 0, 0, 11, 11, 13, 0, 13, 0, 4, 0]","[3, 12, 3, 2, 5, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 3, 0, 1, 0, 1, 0]",1,3,4,1 -https://github.com/iustin/mt-st,2015-05-16 17:26:03+02:00,fcb4fbe0d1dd49ccda6b7421f007b5b41c0ef4d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 -https://gitlab.gnome.org/GNOME/polari.git,2017-11-02 03:44:44+01:00,7df628dde8115871dfa6da9446e00da93dc303cc,"[1, 3, 0, 4, 1, 1, 8, 3, 0, 3, 8, 12, 3, 4, 28, 8, 9, 6, 9, 10, 2, 6, 1, 1, 7, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 19, 6, 1, 4, 15, 2, 1, 0, 1, 1, 2, 2, 13, 2, 13, 16, 9, 6, 5, 3, 0, 1, 1, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",15,0,13,0 -https://github.com/stan-dev/rstan,2013-05-22 21:47:02-04:00,9a7b769ac7de9361846019ff20fe34ab763cf803,"[1, 22, 13, 8, 2, 6, 3, 5, 4, 4, 9, 6, 2, 6, 31, 17, 5, 1, 7, 13, 20, 15, 4, 9, 6, 6, 2]","[0, 11, 9, 4, 2, 5, 0, 3, 2, 4, 5, 4, 0, 2, 17, 9, 1, 1, 3, 10, 13, 7, 1, 6, 2, 4, 0]","[38, 9, 6, 22, 5, 1, 10, 1, 3, 6, 4, 1, 1, 7, 2, 4, 7, 5, 1, 0, 15, 4, 9, 0, 0, 0, 0]","[10, 4, 0, 5, 2, 0, 1, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 1, 1, 0, 0, 0, 0]",8,2,3,5 -https://github.com/Keruspe/GPaste,2011-01-18 21:42:01+01:00,9c4dd7c0b60875bc023e26a4873385cbf43e3f3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 52, 51, 19, 47, 22, 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 25, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jawnsy/Math-Random-ISAAC-XS.git,2009-04-07 00:25:30+00:00,86bf601b0d955086395a7f02a9761f910fc66acf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 12, 1, 2, 7, 0, 0, 1, 2, 0, 0, 0, 0, 0, 8, 3, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nichtich/Catmandu-Importer-getJSON.git,2014-01-21 11:58:10+01:00,843b72f4170286ebd040edaa205073acf066ae5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/mrash/fwknop.git,2008-11-28 00:57:59+00:00,0cdcbddf0d9f4dba786296288aa8f5c84ef3e413,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 1, 7, 16, 2, 0, 0, 11, 7, 6, 4, 2, 2, 1, 3, 1, 1, 0, 2, 2, 0, 3, 1, 2, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://gitlab.freedesktop.org/hadess/iio-sensor-proxy,2014-07-09 15:57:16+02:00,1e8ef1a116556604d6c60eaaf8ed634ef54f0e2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/williamh/speechd-up.git,2004-01-22 21:30:03+00:00,d519a2abb5d069c503e14b4e9dfc1a5498d5b9f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/libpwquality/libpwquality.git,2011-09-16 19:02:43+02:00,e745294c1839de3b0886c6cbe5d8601c56dd3dcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 4, 0, 0, 0, 2, 9, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/hughsie/libjcat.git,2020-02-27 18:10:10+00:00,f6003d8a7bda4f361282db617ccaf795f304920b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 6, 0, 2, 7, 2, 5, 2, 2, 0, 0, 0, 1, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/P-H-C/phc-winner-argon2,2015-10-04 10:25:27+02:00,72d0a2dc2a98e04aa52634b53fbb234ae6cd09d8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 58, 46, 52, 59, 12, 3, 8, 12, 5, 0, 7, 6, 11, 16, 19, 12, 11, 6, 33, 6, 8, 13, 5, 8, 6, 1]","[0, 3, 1, 1, 13, 5, 0, 1, 1, 0, 0, 1, 3, 5, 7, 6, 4, 3, 2, 3, 3, 2, 6, 0, 1, 3, 1]",1,7,32,0 -https://github.com/kodi-pvr/pvr.iptvsimple.git,2015-02-24 16:23:03+00:00,5f3455eb613052d33d9958a6a78a9524b6357aaa,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 3, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 2, 17, 2, 0, 3, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 2, 1, 1, 0]","[0, 3, 1, 5, 1, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",6,4,7,0 -https://github.com/systemd/python-systemd,2012-06-25 16:58:29-07:00,7bcd8598958496d67dada85ab58119a7528b95d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 13, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/easystats/parameters.git,2019-02-09 12:17:43+08:00,5417f314a36dfee79b133defe48547edd2e203e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 16, 16, 20, 2, 3, 1, 2, 8, 9, 12, 16, 17, 2, 19, 29, 19, 0, 24, 15, 2, 5, 24, 23, 8, 56, 1]","[5, 4, 4, 2, 1, 0, 0, 1, 0, 2, 1, 1, 3, 0, 2, 2, 2, 0, 2, 4, 1, 0, 2, 5, 1, 7, 0]",1,3,2,0 -https://github.com/webpy/webpy.git,2007-12-24 20:50:02+05:30,dd6e1af5451243b26009cfbea72b9968eec69cf7,"[1, 0, 0, 2, 1, 0, 3, 3, 2, 1, 2, 5, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 3, 15, 4, 2, 2, 1, 0, 4, 2, 5, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -https://github.com/nichtich/Pandoc-Elements.git,2014-10-23 21:34:21+02:00,c018b7cf5e1e7960e968d73ad9e05f4a05f76e6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jaqx0r/filtergen,2004-06-09 01:40:18+00:00,ab5e8d6ac02352b83eefbf531cd57d882013cd06,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 3, 0, 5, 0, 0, 0, 0, 0, 24, 0, 1, 0, 0, 0, 0, 0, 20, 5, 21, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/mate-desktop/python-caja.git,2012-01-13 23:18:04+01:00,ca0a8f4d6cc24707bc07c3013bff321e2f0c24fd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/njh/twolame,2005-04-15 01:10:16+00:00,5f3700de03bdf33884411af90275dab92fa11403,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mate-desktop/caja-actions,2012-03-18 00:09:29+01:00,ac7397db52e1e4ed447bbe0bc7b250570a20b898,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/xmendez/wfuzz.git,2014-10-22 22:23:49+01:00,221fe3e1fbd5a6df8c57b5ac03ec8abfb9277a3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 10, 10, 6, 1, 0, 0, 1, 0, 0, 0, 0, 1, 6, 8, 13, 14, 8, 0, 9, 4, 12, 3, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0]",2,3,6,0 -https://github.com/PyCQA/pylint-plugin-utils.git,2013-10-04 23:47:06-07:00,aaa393e8a77b8329faff65d7c48b29033d695824,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://salsa.debian.org/emacsen-team/magithub,2016-09-15 23:35:12-05:00,9de8c157fce3628b5b15a70a5ccdee592185e37c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[96, 38, 6, 31, 2, 2, 1, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 22, 5, 0, 0, 0, 0]","[4, 7, 1, 3, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,8,0 -https://gitlab.com/compiz/compiz-core.git,2006-02-09 06:03:09+00:00,9959c2b13ded64a5e66359a8097250dc9d87fc1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 7, 14, 12, 13, 4, 17, 17, 26, 19, 24, 12, 18, 13, 14, 15, 7, 8, 0, 28, 6, 15, 38, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0]",2,2,6,0 -https://gitlab.gnome.org/GNOME/cantarell-fonts.git,2010-11-05 01:42:09-04:00,da84af9ea68dc27b939992888a6859c596db1969,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 20, 0, 1, 0, 0, 0, 7, 9, 0, 3, 5, 4, 4, 32, 3, 0, 20, 1, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/joewing/jwm,2005-09-05 19:01:43+00:00,fec2cba77c3fd7b03208c176fdc158171358f2ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 14, 2, 7, 13, 3, 10, 3, 25, 16, 0, 0, 0, 0, 0, 4, 6, 26, 0, 0, 10, 1, 0, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/yappo/p5-String-Diff.git,2008-10-23 02:14:41+00:00,605d3e56c68d6ff500d469b414b6926f1213b6ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bneijt/ccbuild.git,2006-07-21 13:22:22+00:00,967b3051e4fe51372514bb68afd64144bfb904ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gpodder/mygpoclient,2010-01-17 23:01:58+01:00,a5c655881f02f064837fc3b76f054c2674196c6b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 1, 2, 1, 0, 1, 0, 3, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/x90skysn3k/brutespray,2017-03-31 21:00:19-05:00,f637ea3fc2f3ff7111c81acb317505608fc66758,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 4, 22, 1, 3, 27, 13, 1, 1, 1, 0, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,4,0 -https://github.com/Libvisual/libvisual.git,2007-10-24 21:53:00+00:00,bff24ac0f772b61ec28bcf247ea1edbc0dbeb3c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ericflo/django-pagination,2008-05-29 02:32:45+00:00,587bdd45aceb2d66bf91d5ea611d939ace8b9c55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 1, 0, 1, 0, 7, 1, 0, 1, 0, 2, 0, 5, 2, 0, 1, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/mikeal/tunnel-agent,2013-04-21 23:08:06+12:00,cf2a352a751c4106944444f4c50dfd739dcf312d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1 -https://github.com/Fluidsynth/fluidsynth.git,2003-03-11 16:56:45+00:00,b2a5d37109b7c6fdf8d7496b3e09421e124b875d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 4, 4, 5, 0, 1, 0, 0, 2, 0, 1, 1, 3, 2, 1, 0, 0, 1, 0, 0, 0, 0, 3, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/gosa-project/gosa-plugins-netgroups,2017-12-15 09:09:57+01:00,52ccec02b66b0ae471f722508b2ea52de93802a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/gvvaughan/lyaml,2013-03-17 19:54:02+07:00,b7d82cff378ff8e3e75e87bc2d94fb6cf74feaeb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/jas/libntlm,2002-10-01 02:36:53+00:00,adcf55e477ba092befff3be9473a90b8080aa769,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 10, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/igrigorik/em-synchrony,2010-03-16 21:45:08-04:00,036e1d5b6caf3d5827ed78ff70ad0419afa487bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 1, 0, 0, 9, 0, 0, 2, 0, 0, 1, 0, 1, 1, 2, 0, 2, 0, 1, 1, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/kitone/subtitleeditor,2008-02-05 13:17:58+00:00,6138789ae55172b7d9de3a96ce54a448844cb3bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 5, 0, 1, 0, 12, 15, 0, 4, 3, 2, 1, 6, 20, 6, 6, 3, 0, 9, 9, 6, 4, 1, 6, 7, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/alexdantas/pacman4console.debian,2013-05-28 15:52:41-03:00,bf527c534188bc38934d62d86343a03da3995b45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/mvidner/ruby-dbus,2007-02-22 14:49:56+00:00,7685ea7c2966d9949bddac1ffd440d11890e5576,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/trackballs/trackballs.git,2017-04-30 10:37:50-04:00,3744bb64ad2b66019c33521d58b46e6915eba79e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 10, 15, 13, 25, 25, 6, 21, 4, 0, 0, 3, 2, 0, 1, 4, 0, 1, 4, 1, 3, 1, 0, 1, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/Ranks/emojione,2014-09-01 12:02:43-06:00,4bb99dac1e372e170b7bece1ede669a5070a8f4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[59, 65, 56, 40, 8, 2, 2, 2, 8, 1, 0, 1, 0, 6, 1, 5, 0, 0, 3, 1, 0, 0, 2, 0, 0, 0, 1]","[6, 14, 10, 9, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1]",2,4,19,1 -https://github.com/weiss/nsca-ng.git,2013-02-08 21:38:00+01:00,c1af9968c9d2a7926b1e412b5cdb898bd68fa938,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 15, 11, 14, 5, 3, 1, 0, 9, 6, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 0, 0, 4, 0, 8, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/major/MySQLTuner-perl,2019-10-02 01:36:56+02:00,53876a69dc533c27dc8f699685243f9d258b54c4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/juliangruber/constants-browserify,2013-07-10 17:37:58+02:00,f9d5f2dd8185e165054c031ca7c6b7b7500e346f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/grobian/html2text,2020-02-24 17:15:40+01:00,c8b579cac0d9d4e45e37fa1702fbd130b98b4305,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 6, 0, 8, 2, 21, 0, 2, 5, 0, 4, 0, 0, 5, 3, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,4,0 -https://github.com/rcairo/rcairo,2004-09-01 15:29:25+00:00,24ef6d4df921c97293e7efd872f977f2967a5d57,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lxqt/lxqt-panel.git,2016-09-07 18:14:48+02:00,46ecc301febd0a2dae4f96d05912e936cfe3488d,"[3, 0, 1, 6, 14, 8, 5, 7, 2, 3, 0, 4, 2, 0, 1, 6, 2, 4, 2, 1, 0, 2, 1, 2, 2, 3, 2]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 1, 1, 0, 1, 0, 2, 3, 0, 1, 1, 5, 0, 1, 1, 3, 0, 5, 1, 3, 0, 2, 0, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,7,0 -https://github.com/Unidata/cftime,2016-11-08 15:54:32-08:00,aea9c66fc24de2aaa57ecd162030ab5dc1e2142c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 10, 19, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,1,1 -https://github.com/ocamllabs/ocaml-ctypes.git,2013-04-30 16:00:09+01:00,d535b614e55fdac6a9565bcac26417b3e3495f49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 24, 46, 13, 66, 22, 3, 1, 11, 4, 9, 0, 6, 2, 36, 22, 1, 3, 14, 0, 3, 0, 1, 1, 18, 11, 1]","[0, 1, 6, 1, 4, 0, 0, 0, 2, 1, 2, 0, 4, 0, 5, 6, 0, 1, 3, 0, 1, 0, 0, 0, 0, 2, 0]",1,3,6,0 -https://github.com/fent/node-ytdl-core.git,2012-07-16 15:58:43-07:00,e79fdc4c72c55b6c5221032b8ec40186f7154ae9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/esheldon/fitsio,2011-09-12 01:39:11-04:00,fb34e1e167accc35af76c8df5ff5190627d1b6ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[75, 61, 19, 24, 16, 2, 3, 2, 0, 3, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1]","[2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/jaap-karssenberg/zim-desktop-wiki.git,2008-09-22 23:46:06+02:00,89cbf169e76d834515cb8a8385654323222ecee0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 3, 2, 1, 0, 2, 4, 7, 5, 1, 4, 3, 2, 1, 1, 1, 1, 3, 1, 2, 0, 1, 4, 4, 5, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",2,1,1,0 -https://github.com/brunoos/luasec,2012-05-30 10:26:40-07:00,0bae6dedd9ee7fc2909149aa1ffebe1ca7a47219,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/rabbitvcs/rabbitvcs.git,2008-06-20 09:20:20+00:00,741959d3f2c711784460a2c64eb3d18cc8a29f90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bhollis/maruku,2010-03-02 20:56:07-08:00,77f4a7531ad5dddc03dd9bc5321431c87d6b4793,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/Backblaze/B2_Command_Line_Tool,2015-11-16 08:44:35-10:00,4fd290c0d4b4b252c749898a373beaca7d60fbad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 6, 16, 39, 27, 17, 9, 19, 5, 1, 37, 10, 22, 77, 30, 18, 46, 36, 41, 47, 35, 17, 20, 0]","[1, 0, 1, 2, 1, 2, 9, 9, 7, 2, 5, 1, 0, 8, 2, 5, 10, 5, 0, 9, 11, 6, 9, 5, 2, 6, 0]",1,4,14,0 -https://gitlab.com/ppentchev/feature-check,2018-04-13 10:29:14+03:00,aec200c41b5b3e1f436172a66c322cfbae421a8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 5, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/lv2/suil.git,2011-02-22 04:13:05+00:00,b2a6120d19163cdca60565d3c26d71cf95d97230,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 0, 7, 5, 1, 0, 2, 6, 3, 0, 1, 2, 12, 3, 2, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Jeija/gtkterm.git,2010-08-13 00:03:25-05:00,917f439c881e4a84a22522e87610bebed17d9598,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 4, 0, 1, 0, 0, 0, 0, 0, 0, 2, 4, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 3, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/worldforge/wfmath,2001-12-12 22:19:17+00:00,a750140c4fc55d660ef85b9bf6c5a3778c4dc677,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 6, 4, 3, 3, 3, 1, 2, 4, 6, 3, 5, 0, 2, 2, 10, 0, 1, 2, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/github/git-lfs.git,2014-06-02 09:33:03-06:00,d8f780329b64e789553bc8ccccfb993ebc430325,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[296, 18, 1, 31, 0, 0, 0, 32, 15, 46, 11, 10, 0, 9, 14, 16, 19, 25, 19, 1, 8, 11, 0, 0, 0, 0, 0]","[15, 4, 1, 2, 0, 0, 0, 9, 0, 4, 0, 4, 0, 2, 5, 1, 0, 3, 2, 1, 1, 1, 0, 0, 0, 0, 0]",1,2,5,0 -https://github.com/libssh2/libssh2,2004-12-07 21:17:20+00:00,7a5ffc8cee259bbde82ab92515cd8fea2166854b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 11, 12, 12, 12, 3, 13, 1, 2, 6, 5, 1, 1, 0, 3, 6, 5, 2, 0, 0, 2, 9, 8, 4, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/coin-or/CoinUtils,2008-01-07 01:41:56+00:00,e4fa51c9962f3fd7167f2ca962fc5ab0b4ff6c58,"[2, 0, 5, 2, 2, 1, 2, 5, 4, 0, 1, 2, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 3, 14, 2, 3, 8, 6, 1, 0, 9, 3, 5, 21, 0, 4, 2, 0, 1, 7, 0, 0, 4, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/theory/pgtap,2008-06-07 00:55:01+00:00,96e44c0062d399baddec6de52a367d23c808febd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 7, 9, 0, 4, 0, 0, 0, 1, 4, 41, 0, 22, 2, 39, 28, 0, 4, 25, 5, 9, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lxctl/lxctl,2011-07-13 02:39:12+04:00,3b102bbe48d01c4593a56f27ac5a13d2ea781e69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 18, 7, 4, 8, 3, 1, 2, 1, 32, 16, 4, 9, 35, 4, 9, 1, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,8,0 -https://github.com/PracticallyGreen/omniauth-saml.git,2012-02-13 20:56:41-05:00,0eeb956149e98eba8ba23c60d7d6123868e96182,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/kaelzhang/node-ignore.git,2013-09-01 18:55:04+08:00,9793e5643b5e7a71a004f440820bb6014853ff6d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/Sheeprider/BitBucket-api,2012-06-08 09:24:43-07:00,4d2ccc99b9aa4b2ad2a3c0f0258d136adba8aa9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/pixel/hexedit.git,2017-02-24 14:08:46+01:00,dbd7b94e4bfee41eaa21b5b407ab01ad6e4501b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 -https://github.com/nitrokey/libnitrokey.git,2016-04-13 22:34:27+02:00,92b929f86dc1d1712f515c164e5e77ad21ad8ff6,"[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0, 13, 0, 4, 4, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 92, 69, 1, 0, 0, 0, 8, 1, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",2,3,3,0 -https://github.com/SpintroniK/libeXaDrums,2017-09-27 22:32:32+01:00,26072a3350e677a4cdea3274e709cb7284453812,"[0, 0, 0, 1, 1, 5, 2, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 4, 2, 3, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/savonet/ocaml-ssl.git,2008-10-15 17:30:33+00:00,fe7d257610d6ce9e404c4f0648b64ba1d659a388,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nichtich/Pandoc-Wrapper.git,2016-10-10 10:32:25+02:00,cfbe5e274897b420ef2155de51ab2a082f8e0047,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 29, 5, 18, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jeffreykegler/Marpa--R2.git,2011-10-21 19:03:14-07:00,783a9064c10ddd644802c55520206f771dd77a75,"[0, 0, 136, 36, 24, 17, 19, 18, 13, 20, 17, 45, 27, 43, 28, 43, 18, 27, 61, 45, 12, 7, 11, 16, 29, 59, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1]","[89, 16, 23, 62, 6, 9, 14, 18, 42, 31, 5, 17, 93, 16, 29, 42, 132, 29, 5, 13, 17, 83, 14, 29, 48, 26, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",1,0,0,1 -https://github.com/doctrine/instantiator,2014-06-13 15:17:26+02:00,01a6505adf922ad9cfe08d8de8469caba37f37ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 11, 0, 1, 0, 67, 0, 32, 3, 3, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 2, 0, 2, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,2,5,0 -https://github.com/ugexe/zef.git,2013-07-02 17:12:15-07:00,a6cbe4c00ea995712cc22bb9c2788ca63f4eeecc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 6, 43, 12, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/bluesabre/mugshot,2013-07-25 06:34:56-04:00,316f70846ca08d71f044418f2dd594b27563cbc7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/tmate-io/tmate,2013-02-23 15:15:20+00:00,dc50de782a108d37b94de16e3407e2e8742334ed,"[9, 29, 1, 4, 18, 11, 10, 3, 8, 1, 5, 0, 7, 12, 3, 5, 1, 5, 1, 0, 12, 0, 5, 7, 31, 63, 1]","[0, 0, 1, 1, 5, 2, 3, 1, 2, 0, 2, 0, 3, 2, 0, 1, 0, 0, 1, 0, 3, 0, 1, 2, 0, 11, 0]","[13, 17, 24, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 1, 2, 0, 2, 0, 4, 1, 0, 5, 0, 0]","[2, 2, 4, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,2 -https://github.com/libsigcplusplus/libsigcplusplus.git,2003-01-13 18:56:56+00:00,d8019fcd745bbdb383bbaef45dd56dbc64dd1c99,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 6, 17, 3, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 4, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://git.launchpad.net/planetfilter,2015-02-08 23:08:15+13:00,1b805444dfc48f11ad72fb19dd2fbe7ae549929e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 18, 8, 0, 0, 0, 1, 8, 0, 2, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/fontforge/libuninameslist,2012-08-23 06:25:19+02:00,67ed3ed9d9afcb34077d0337923dbb0d599befe6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://gitlab.com/virt-viewer/virt-viewer.git,2007-07-20 15:26:08-04:00,07c89c3f5ef84aaee6faded8b78a07c87ba25d7e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 4, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/wxMaxima-developers/wxmaxima,2005-01-29 10:15:26+00:00,a96b09c95a3d71db9d4632ef177c6e5a282bc67a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 15, 14, 9, 17, 20, 7, 6, 13, 18, 1, 13, 5, 12, 16, 12, 1, 12, 4, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/jonschlinkert/is-glob,2014-12-18 05:41:22-05:00,69c7e5e18b9ab7306191cc13beecc3939dfba934,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 7, 5, 0, 0, 0, 0, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/virt-manager/virt-manager,2006-03-29 06:40:14-05:00,bd66e954738af7fec08cf788979757bcbc3450ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 2, 0, 0, 0, 0, 1, 0, 4, 22, 8, 12, 6, 22, 35, 6, 13, 23, 39, 13, 16, 2, 11, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 5, 0, 3, 2, 7, 2, 3, 0, 1, 3, 0]",1,4,3,0 -https://gitlab.gnome.org/gnome/gnome-shell.git,2008-10-31 04:22:44+00:00,4ba985b4844b7efeed1c64276759aa2632b86472,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 25, 18, 30, 6, 8, 6, 1, 4, 4, 16, 9, 16, 11, 11, 19, 1, 13, 4, 5, 4, 12, 4, 14, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,19,0 -https://github.com/lumean/svg-graph2,2009-08-20 19:37:02+00:00,5689c48b5489a934cbbb37d5350f261329f0f008,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/calamares/calamares.git,2014-06-03 22:03:07+02:00,f7f7167f20b16c51ba1028c54c5dad8b0096dc98,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 17, 58, 56, 55, 68, 73, 65, 58, 33, 20, 5, 0, 0, 1, 0, 35, 22, 17, 16, 27, 57, 44, 23, 43, 1]","[0, 0, 0, 0, 2, 1, 1, 0, 0, 2, 6, 5, 1, 0, 0, 1, 0, 0, 1, 1, 2, 1, 7, 4, 1, 4, 0]",1,4,10,0 -https://github.com/darold/pgbadger.git,2012-04-12 18:05:23+02:00,1b880c9f6af20694e3a2b9b5acf99b374310343f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 5, 5, 9, 0, 9, 1, 7, 8, 0, 14, 21, 12, 1, 4, 3, 0, 6, 10, 3, 2, 15, 2, 4, 0, 9, 1]","[0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0]",2,3,11,0 -https://github.com/babel/gulp-babel.git,2018-04-19 16:38:34-04:00,0983ecf0718702b2c647f7c8ffa7ad30c7003a00,"[1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0 -https://github.com/google/highwayhash,2016-03-01 15:44:10+01:00,13716d8b48c8380e3e0eb962a9ea2d452182db57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 2, 3, 3, 0, 1, 1, 2, 1, 4, 0, 0, 0, 4, 5, 3, 0, 0, 0, 0, 3, 1, 0, 0, 0]","[2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/mbeijen/File-MimeInfo.git,2013-06-03 21:02:41+02:00,1a04ed2322bf4343e9d9fca99ccf94b8bdec0574,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 4, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/runehaubo/lmerTestR.git,2018-01-17 17:28:44+01:00,f92539f00e825af65bc4abdb57453bf1189a8156,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 15, 11, 2, 4, 11, 14, 9, 5, 12, 4, 0, 0, 14, 10, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/royriojas/file-entry-cache.git,2015-03-01 21:58:29-08:00,3d5f42bae08d9da814f8efe00c80901b1a98263d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 -https://github.com/Qucs/ADMS.git,2012-10-03 11:51:12-04:00,a9b65bc15b5711b7082ce27f4c38e288f52d67db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sbt/launcher.git,2015-03-25 08:40:15-04:00,8e0998a0ce26c7d91c3697e439ec9148a768ea55,"[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/libratbag/piper,2016-02-12 11:34:22+10:00,3cd3f4e1a50022c4d44a562c5328c723b654d541,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 24, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/davidcelis/api-pagination.git,2013-06-29 16:36:10-07:00,9498645e36ee4252484d565640c5b00375e36872,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/httpie/httpie,2012-02-25 13:39:38+01:00,b966efa17d837dc62c23d5f8064e184e22b14c2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 37, 16, 1, 0, 1, 4, 5, 11, 0, 0, 0, 0, 0, 1, 14, 4, 8, 1, 4, 38, 20, 21, 20, 17, 3, 0]","[6, 6, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 0]",1,3,21,0 -https://github.com/mlpack/ensmallen,2018-10-02 22:39:31-04:00,dd847db64195efbfa3471c29a505c336b248c2f0,"[5, 10, 5, 11, 4, 2, 9, 3, 4, 6, 5, 8, 4, 7, 3, 4, 0, 5, 0, 0, 0, 0, 3, 1, 2, 2, 2]","[5, 9, 4, 9, 3, 2, 9, 2, 1, 5, 4, 7, 4, 7, 3, 2, 0, 5, 0, 0, 0, 0, 3, 1, 2, 1, 1]","[49, 95, 84, 8, 4, 11, 10, 21, 25, 13, 6, 0, 11, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0]","[1, 14, 10, 1, 0, 2, 2, 2, 8, 5, 2, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,4,2 -https://github.com/GreycLab/CImg.git,2015-05-29 09:59:12+02:00,c3bf53b5a82a886fce05ee7a9eb5e8c1f8a3b7b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 12, 24, 2, 6, 5, 6, 0, 2, 2, 2, 38, 31, 6, 26, 44, 19, 51, 16, 16, 11, 2, 6, 9, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,6,0 -https://github.com/kohler/gifsicle,1998-03-01 21:19:24+00:00,579959b9fa696ce3c288ad6034bd57101a49103d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 9, 12, 7, 6, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/robint99/dock-applet.git,2015-05-04 10:15:58+01:00,052c745e46fffa63105d93b8ecd603e3d9195e87,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 14, 4, 1, 6, 6, 2, 4, 0, 10, 3, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 2, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/cbm755/octsympy.git,2014-02-24 23:22:37+00:00,f99a9e773e3d54f8d3ea19cc938ab3c7591bd793,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 4, 0, 0, 29, 18, 74, 93, 20, 23, 9, 24, 24, 0, 0, 0, 0, 0, 6, 24, 2, 21, 30, 11, 23, 31, 1]","[0, 0, 0, 0, 0, 1, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,0,0 -https://github.com/casacore/observatories-table.git,2016-11-01 12:18:53+01:00,42b043597dabde67ba1bdc8a9dab77e6ed28c0bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/fog/fog-libvirt,2015-04-09 09:24:46+02:00,192adc0808d1d30c867f9fdb1a35a57193cc22b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://gitlab.com/crosswire-bible-society/strongsgreek,2021-01-17 14:48:10+00:00,99f66bb8f8b805c063a5e11bfb118bc799327a69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/linux-man/caja-mediainfo-tab,2018-06-04 23:22:50+01:00,d0db385997b5659a35334db7400ace1832e3dea0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/a-detiste/cruft-ng,2014-10-15 09:41:16+02:00,470a2593775a13e41bc8ce06a510637ba4853d60,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dirkvdb/ffmpegthumbnailer,2007-02-24 14:13:59+00:00,a5c90b822b22e58ecfa588ca034f12f4abfabfc1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/google/xsecurelock,2014-06-25 20:26:36+02:00,d1041acfbaabe3df0642f3312f9f0148fe819a7a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 4, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://gitlab.com/coringao/osmose-emulator,2017-01-11 12:20:12-02:00,0f00f3d37a311a94753fe800222c67a3ba5879f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 14, 1, 0, 0, 0, 7, 0, 9, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/nichtich/RDF-NS.git,2011-10-28 14:54:40+02:00,04a1886057e659f455c734ce557e1c4a87e7a2d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/pinax/pinax-notifications,2009-01-04 08:35:29+00:00,f4d526cb2a61a6830b4782edc4ce991e47e83035,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 7, 2, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 -https://github.com/requests-cache/requests-cache,2012-04-08 22:42:01+04:00,1e9fc768cea39fda27358ef603cde0956a1f7945,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 2, 0, 30, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://gitlab.gnome.org/GNOME/libsecret.git,2011-08-08 17:43:47+02:00,3dfd7aa70f64f4ec13c2684a80771b07a2b5843d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 9, 1, 2, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 16, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/processone/eimp.git,2017-09-11 09:31:58+03:00,3d510421c671ea48807543a1929adb8ee41755d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 2, 4, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/georgd/EB-Garamond.git,2010-07-02 15:59:44+02:00,d55bd762e7321d349da4421f61aaec40343b9b5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/estools/escodegen,2012-03-04 00:14:16+09:00,50831c28d2569abd5fd758b51111e7fbe03cdeda,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 3, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 8, 3, 1, 0, 0, 0, 25, 4, 2, 23, 3, 1, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 4, 1, 0, 9, 1, 0, 0, 0]",1,1,8,0 -https://github.com/imacat/Locale-Maketext-Gettext.git,2019-09-09 19:50:18+08:00,db7e22c83b8c1d6da2399170fbf6259abfbd29c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ValveSoftware/openvr.git,2015-04-29 19:57:55-07:00,f87667074cabc24f643170069d176dadb390dbb7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/libgit2/pygit2,2010-11-04 13:59:18-07:00,4940678d9f7d1e71a3a77383a9a84b2c40c41daa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/edwardgeorge/virtualenv-clone,2011-03-15 07:20:25+00:00,374e1f086bb63cf1775c39e069f51fa87e276313,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-packagekit,2007-08-23 15:56:28+01:00,c2686bc79afbfb8a8f0bf29f6c829795ff3a6632,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 15, 14, 19, 19, 26, 43, 68, 38, 41, 29, 30, 11, 9, 10, 2, 1, 5, 45, 25, 3, 15, 17, 8, 4, 15, 1]","[0, 1, 0, 0, 0, 0, 0, 3, 2, 1, 2, 0, 0, 0, 2, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 1, 0]",1,5,17,0 -https://github.com/venthur/dotenv-cli,2018-10-14 18:24:18+02:00,d249f5aef19f99095546d918e1f819f3833f01e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0]",1,2,1,0 -https://github.com/tdiary/tdiary-style-gfm,2013-08-26 13:06:52+09:00,cabb959e8f1ff8bde2fcc74c5b12e89cd78c5256,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 11, 0, 0, 0, 1, 0, 2, 3, 1, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 7, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,2,0 -https://github.com/jorgemanrubia/truncato,2012-11-09 23:30:26-08:00,5054c18e41f658a7f48f82fc9a2c396d346a45f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 4, 9, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,1,5,0 -https://github.com/ocsigen/js_of_ocaml.git,2010-06-10 16:03:08+02:00,d4457c2f9404b54ed8d89db3283c6b6a0868e42a,"[0, 0, 0, 0, 0, 0, 0, 6, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 35, 9, 12, 21, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 16, 22, 3, 4, 3, 15, 12, 2, 5, 0, 0, 1, 1, 0, 0, 0, 3, 3, 3, 7, 5, 2, 4, 4, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/rails/actionpack-xml_parser,2013-02-19 19:25:33-05:00,4546cb414acd9f05254643df8f83ef846fb3f851,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/shadowsocks/shadowsocks-libev,2012-10-15 14:55:46+08:00,c420ac9c92046c10d9e6a442fb02ebe77fd3e8fe,"[0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 12, 2, 0, 3, 1, 0, 1, 1, 1, 1, 5, 1, 6, 44, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 -https://github.com/andrewrk/libsoundio.git,2015-06-30 13:49:36-07:00,db713885095ed2efb41770177723da743173259b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 11, 23, 23, 39, 14, 11, 19, 23, 37, 14, 5, 4, 1, 8, 0, 1, 4, 4, 4, 7, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://gitlab.com/compiz/compiz-plugins-experimental.git,2016-01-10 21:40:53+03:00,d535b1fba51ea919900311f0a48c54744a131842,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 5, 0, 0, 1, 0, 1, 0, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/deeptools/pyBigWig.git,2015-07-31 14:07:36+02:00,431de3b553e6abed97325705cfe2196206fa147d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 1, 0, 0, 0, 8, 15, 6, 0, 11, 5, 12, 11, 8, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 2, 0, 1, 0]",2,3,4,0 -https://github.com/jwiegley/use-package.git,2012-06-17 04:40:25-05:00,7ee0fcd0a09c2934e77bf5702e75ba4acba4299c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]",1,1,2,0 -https://github.com/ros-planning/navigation_msgs,2015-03-16 12:20:17-07:00,a2a42c0486f4caa3f430d0db0d539aaa82a089b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/hlandau/acmetool,2015-11-15 01:56:58+00:00,bc1de30d582786f0882b9d6c07f755e88c93e77c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 7, 10, 4, 4, 0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/chrender/fizmo-ncursesw,2010-11-19 10:20:24+00:00,f5f64c9e91bf5670153e9b1271def3bf5422624f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 14, 5, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 1, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/netty/netty,2012-03-12 15:13:41+11:00,91463cad47f792a594f221e6e782b6fe0ff2504a,"[0, 0, 1, 0, 15, 11, 3, 8, 8, 0, 16, 9, 39, 10, 0, 1, 2, 10, 7, 2, 22, 6, 3, 5, 33, 16, 1]","[0, 0, 0, 0, 1, 2, 0, 2, 1, 0, 1, 1, 4, 3, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 2, 0]","[9, 12, 24, 12, 19, 25, 36, 40, 18, 50, 24, 39, 23, 21, 19, 11, 21, 13, 11, 13, 13, 13, 20, 21, 29, 13, 1]","[1, 0, 2, 0, 2, 0, 4, 1, 3, 4, 1, 2, 2, 3, 3, 1, 1, 2, 1, 2, 1, 4, 4, 3, 3, 1, 0]",8,3,10,4 -https://github.com/dh4/cen64-qt-debian,2015-10-28 15:23:02+01:00,4d91978bfdf4b6fd5ae442138a6a81a8e2911172,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/karlkleinpaste/biblesync.git,2014-05-11 06:46:39-07:00,25d9b2458a44c8a28c541ccb1ed383ff947f126e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 0, 1, 4, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/zeromq/pyzmq.git,2010-02-11 14:04:41-08:00,08c4dbb82205f6dbb3e3e1c024a10741bdc632d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 11, 6, 0, 17, 32, 2, 0, 0, 4, 12, 3, 1, 10, 11, 1, 1, 0, 0, 0, 15, 0, 0, 0, 1, 0, 0]","[0, 1, 1, 0, 2, 2, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",1,3,6,0 -https://github.com/mikaelgrev/miglayout,2015-06-04 07:51:27+02:00,fadfb3e9e1a88e2d0019536ec6f7a22e7ba952ff,"[0, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 3, 1, 0, 0]","[8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",3,1,1,0 -https://github.com/Unidata/netcdf-fortran.git,2011-08-17 19:07:39+00:00,e2473fe98a1d4fd915c3b79da911691370a67c2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 1, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/20kly/20kly.git,2011-08-26 22:10:24-05:00,83e667532c14d1ca504b44445278009fa6ab361d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/whm/libnet-ldapapi-perl,2016-08-14 00:54:20-07:00,fc4d04018c3a527bb9e43f2fdec959f85270fc74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/rails/rails-html-sanitizer,2013-09-24 21:53:23-03:00,94145e1c6c3140b30235d1667a11b51de807f650,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 2, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 12, 5, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 0]",1,3,4,0 -https://github.com/pear/text_password.git,2016-01-31 13:00:25-04:00,d5dc9698780768d2ab3ede2ff330c9031194a1d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 -https://github.com/droe/sslsplit,2012-04-13 14:47:30+02:00,4cfdef405a15c4449d502516cbf82d09a5fc636a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 16, 14, 0, 14, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 7, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Maproom/qmapshack.git,2019-04-02 11:00:37-07:00,1543a81b363f85fb44143257fd0ed606bbbab928,"[5, 3, 1, 1, 6, 2, 1, 12, 6, 12, 6, 10, 6, 0, 14, 13, 7, 18, 7, 3, 15, 14, 3, 12, 16, 11, 2]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 4, 2, 1, 3, 1, 0, 2, 4, 0, 2, 3, 2, 1]","[32, 15, 18, 8, 3, 8, 1, 1, 11, 13, 2, 6, 11, 1, 20, 28, 16, 22, 13, 13, 14, 9, 2, 23, 0, 15, 1]","[4, 1, 5, 1, 0, 1, 0, 0, 2, 1, 0, 2, 2, 0, 5, 3, 2, 3, 3, 2, 1, 3, 0, 1, 0, 0, 0]",3,2,11,1 -https://github.com/ocaml/caml-mode.git,1997-02-23 16:23:00+00:00,bf4ed0f926f3181a06b93396b2c59662da1e2711,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/vouillon/coinst,2013-10-21 14:22:28+02:00,7333a3a2bda701ae1996aa4ccaeaad0c3ee51036,"[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 4, 15, 0, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 6, 0, 3, 7, 6, 1, 0, 0, 0, 2, 13, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,3,3,0 -https://github.com/Sigil-Ebook/Sigil.git,2009-08-06 21:45:20+02:00,7f76ce802f21592586e910286bf9754c05e9f32d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[27, 12, 8, 17, 23, 15, 4, 7, 16, 16, 2, 2, 1, 7, 1, 21, 6, 32, 7, 11, 20, 1, 0, 0, 4, 1, 1]","[0, 0, 2, 2, 5, 3, 0, 0, 1, 2, 0, 0, 0, 1, 0, 4, 0, 3, 1, 2, 3, 0, 0, 0, 0, 0, 0]",2,1,2,2 -https://github.com/strengejacke/ggeffects.git,2017-06-01 07:54:13+02:00,5548d7dd9482e2cf140cf3ff6fab4c60d16f6a15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 6, 7, 3, 2, 1, 1, 3, 5, 9, 0, 3, 2, 0, 1, 4, 1, 2, 3, 2, 2, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/iputils/iputils.git,2014-04-18 16:26:30+02:00,7238279fabe59be9417da1a41d5208d19ff66d72,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 -https://github.com/nicotine-plus/nicotine-plus,2006-07-06 18:15:15+00:00,b8fa28b5dd27eafd44f2734ea9cb495a3cdf2e07,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 2, 0, 4, 1, 16, 5, 4, 10, 22, 7, 6, 4, 14, 20, 5, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/jeanparpaillon/averell,2014-09-10 13:55:16+02:00,a0eaa13414cebe978a30f36bbc7eb83aa1c2f0ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/e2guardian/e2guardian,2013-08-13 16:26:58+01:00,b8056eb74e839386ae6dd836ff662f9b787d94f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 16, 9, 2, 8, 0, 2, 2, 2, 8, 4, 0, 5, 11, 7, 2, 0, 1, 0, 0, 0, 1, 3, 0, 6, 0, 1]","[0, 1, 0, 0, 2, 0, 1, 0, 1, 2, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,4,7,0 -https://github.com/grml/grml-debootstrap,2014-04-19 02:13:15+02:00,bba7c1961b43afcbe30097fc3fbbf6c53c57b1ac,"[1, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 0, 4, 0, 0, 2, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 21, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/cbrnr/sigviewer.git,2010-03-03 18:49:47+00:00,446ca9ffb1d7036a20e27984826728e0d1b26d69,"[0, 0, 0, 0, 1, 2, 0, 1, 0, 3, 7, 1, 3, 6, 0, 3, 0, 0, 0, 1, 3, 2, 2, 0, 8, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 9, 6, 8, 9, 14, 7, 14, 18, 28, 7, 8, 17, 3, 18, 10, 3, 5, 8, 25, 13, 26, 12, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/gjwgit/wajig,2010-07-11 19:24:15+10:00,9cbf240e2a5ddd34c7f28b1c94f51465dea5c633,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 3, 0, 9, 9, 21, 0, 44, 44, 49, 26, 19, 14, 16, 0, 14, 2, 0, 3, 2, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://gitlab.gnome.org/GNOME/gnome-autoar,2021-04-26 12:58:10+00:00,8a42884242d4e43beec0038c70eda0d882335267,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 10, 0, 0, 1, 23, 0, 1, 0, 0, 0, 5, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 4, 1, 0, 1, 0, 0, 1, 1, 0, 0, 10, 11, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 -https://github.com/cyu/rack-cors,2010-06-02 21:21:19-04:00,8b1b6ed6c2f192db4b6df108f136d3cb4a22b8ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/node-modules/address.git,2013-07-30 23:09:20+08:00,73accf56995c0fadf862f5ef2e7fe1b479b5afd0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/AzureAD/azure-activedirectory-library-for-python.git,2015-05-05 09:43:25-07:00,9f4cbe19ee8be03f65cb59911897d697975286a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 10, 0, 6, 7, 11, 25, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 2, 4, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 2, 5, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]",1,4,7,0 -https://github.com/robert7/nixnote2,2012-07-08 12:37:14-07:00,9cc08b2e1d8454253f33b6ec16664ceff6154a89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 4, 1, 0, 0, 0, 2, 14, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/explosion/thinc.git,2014-11-18 16:27:50+11:00,82c85d13409c7fb53875df53ca34f3d18c674234,"[0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 18, 1, 18, 6, 4, 6, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[11, 11, 3, 4, 11, 10, 48, 7, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/jonnenauha/prometheus_varnish_exporter.git,2016-02-19 14:19:28-08:00,efc5b2816348c0eed10f43f251a96db191145b9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://git.samba.org/socket_wrapper.git,2013-02-07 16:58:18+01:00,237c6e951a8268afeaa288d8ddf0c79da32f6fd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 0, 0, 4, 24, 11, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ruby-concurrency/thread_safe,2012-04-25 19:00:11-05:00,bb5003d7ff799fccd5e184eec8fc823a894d5d9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 16, 11, 1, 0, 0, 0, 8, 0, 3, 16, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/dankogai/p5-encode.git,2007-11-18 10:16:11+00:00,8106c01862a9143868b9e90b62eb5c908c0cc291,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/foutaise/texttable,2015-11-16 10:54:06+01:00,df2b72868fd903b9520267185a298bb7c1555ad7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/asweigart/pyperclip,2011-06-14 18:12:32-07:00,a97030079fd47d274f1f439dc932d0f2c7ac2e72,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/FeralInteractive/gamemode,2018-03-05 17:32:01+00:00,c459c0507698aa4f8863c201bba283093b3b00b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 7, 0, 1, 19, 0, 14, 3, 6, 13, 4, 0, 4, 0, 3, 5, 5, 3, 4, 5, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,15,0 -https://github.com/eonpatapon/gnome-shell-extension-caffeine,2012-06-07 20:38:27+02:00,91a1ef27f107281b594e57eaedfadec354afe4b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/freifunk-gluon/ecdsautils,2012-12-07 02:00:20+01:00,10314fbda5fd7f882c9ec846e97e2b486c0ee233,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 5, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/AprilRobotics/apriltag.git,2018-09-18 15:25:09-04:00,0844f5e489c13c1bda8679d17cc934ed2c58515d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 1, 1, 1, 6, 1, 4, 0, 0, 5, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,1,4,0 -https://github.com/lastpass/lastpass-cli,2014-10-22 10:43:10-04:00,0fcb6d26cca644676ea59db34234dc14bbb5f779,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 9, 6, 1, 4, 0, 1, 0, 0, 2, 0, 1, 7, 0, 0, 2, 0, 0, 3, 0, 5, 4, 0, 0, 1, 0, 0]","[10, 3, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,25,0 -https://github.com/RiotGames/buff-extensions,2013-06-16 23:34:54-07:00,9d703c776a40162c0e3e7f555a9ed9e8bb8c3cbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/threerings/openvpn-auth-ldap,2006-07-22 20:01:29+00:00,46042c7cd5796af406ce31e4aa8c8d4f823a0356,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 15, 0, 0, 18, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/Ultimaker/libSavitar.git,2017-02-07 15:52:05+01:00,c8e6eabb188a8f8bd6caa0a57e7e9a833f6d76e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 -http://github.com/G-Node/python-neuroshare,2011-03-22 15:02:38+01:00,4319dd124773e7443bf7d8a0d17888c8060ce8e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 -https://github.com/kanedo/gzstream.git,2014-05-15 10:43:48-07:00,0e1bad5412bbae32a38cfe56ff22ba37b2180cd9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/python-bugzilla/python-bugzilla,2007-09-07 11:43:03-04:00,9d245a9748637335439b16ca419d83089e1e2d45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 29, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 5, 2, 0, 7, 5, 1, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/ribozz/sphinx-argparse,2013-09-03 22:48:46-07:00,461a88a6701486634d9715e5043cd172c2a9a291,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 3, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 5, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/silnrsi/grcompiler.git,2006-01-06 20:56:10+00:00,5672dca6ac86e33300e89363481b83b1aac7f22e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 2, 4, 3, 0, 1, 0, 3, 1, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/disco-stu/pg-rage-terminator-pkg,2015-03-06 14:04:21+01:00,6f5b6ad5c2bf7bca6a1466bf86ea5aa5c731a41b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/gregwar/fatcat,2013-10-22 10:54:32+02:00,1d189cb8fe0b8b77c82a2c0f42973f60b6d1fbb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[149, 50, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/USCiLab/cereal,2013-06-25 23:49:32-06:00,c4b8fb092fb0b3f252653000d7e413ce7f4184c5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 26, 28, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,4,0 -https://github.com/x42/harvid.git,2013-01-30 22:40:27+01:00,3beceaa9a72455de2ba2f8eb385886da58a60de8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 30, 56, 50, 18, 13, 7, 14, 2, 20, 4, 0, 2, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/celiao/tmdbsimple,2013-12-04 23:33:36-08:00,779664dca66032e40b34612c0f890c91f1106890,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/tlsa/libcyaml.git,2017-12-17 14:43:22+00:00,a15df3ffcaa0e3ff947bf91eed03ad2ee54770b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 29, 10, 1, 0, 0, 2, 15, 1, 3, 4, 16, 42, 47, 16, 6, 0, 0, 0, 6, 30, 40, 9, 30, 18, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 7, 3, 2, 0, 0, 0, 2, 6, 4, 3, 6, 3, 1, 0]",1,1,1,0 -https://invent.kde.org/office/ghostwriter,2015-08-22 02:14:37-07:00,fdd6266f00a85891e015b7133fc092dac088546b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 16, 28, 14, 2, 11, 0, 2, 0, 0, 1, 2, 0, 0, 2, 0, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/tari01/caja-rename,2020-10-11 17:10:23+02:00,2ebf9466b1afb35aba891e45560c2454ae730d1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/google/gemmlowp,2015-06-25 15:53:04-04:00,75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 13, 1, 0, 10, 11, 13, 6, 2, 15, 6, 28, 22, 20, 2, 15, 17, 2, 0, 4, 2, 5, 3, 0, 5, 0]","[0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 7, 5, 0, 5, 4, 0, 0, 2, 1, 0, 2, 0, 0, 0]",1,7,8,0 -https://github.com/juzzlin/DustRacing2D.git,2010-12-14 02:46:35+02:00,a7c1b89d44cde99b366ea48d92166e4ab617276a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 5, 6, 3, 0, 0, 0, 3, 7, 1, 3, 0, 0, 4, 3, 3, 2, 1, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jviereck/regjsparser.git,2013-11-03 17:30:09+01:00,759105797353898ba085b122b9981b04555fd11d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 9, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0]",1,2,3,0 -https://github.com/b20n/bernhard.git,2012-05-02 11:14:36-07:00,536ba39dc6d50ccb9af51c094eef3fa5dd9ef23f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mysecureshell/mysecureshell,2014-07-29 21:29:15+02:00,a78752bd9563d4b1e0e1b0ea36a2102bd0e4c654,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[11, 9, 12, 7, 7, 4, 3, 7, 3, 9, 3, 0, 10, 1, 2, 1, 7, 2, 4, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,1 -https://github.com/brianmario/escape_utils.git,2010-06-08 21:35:26-07:00,663fd5a8e8205d4a76e5096d32ed618c617a4aa0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 3, 5, 1, 7, 0, 0, 0, 0, 1, 4, 0, 3, 0, 0, 0, 12, 0, 3, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/ros/kdl_parser,2017-05-04 09:42:04-07:00,3fa7b87abe085a79d1b2fe9d451c2805df3702cd,"[0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 1, 4, 2, 2, 0, 0, 0, 0, 2, 4, 0, 0, 0, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,1,0 -https://github.com/aperezdc/signify.git,2014-01-14 15:42:40+02:00,72444343640c443540122bc4d89e39c6b0925ffc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tinti/pam-encfs,2006-08-05 01:33:30+00:00,40322f8b9548b537c6f13fd91154543b2ae62e85,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Komzpa/twms.git,2010-03-05 10:20:48+02:00,ce01aed07b66918fcdc9ea03f30fcab1db4678a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/nginxinc/nginx-prometheus-exporter,2018-05-30 14:49:53+01:00,8d90a86cdf4da7bc1ea520ef5701a63780638c13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 1, 1, 0, 2, 0, 0, 2, 2, 0, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 -https://github.com/spyder-ide/spyder-kernels,2018-06-18 10:29:36-05:00,31ebaf461cfb3aa6f969ada2c2158d3ae9ca1e65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[54, 9, 0, 5, 12, 0, 22, 30, 25, 13, 4, 14, 12, 25, 3, 15, 5, 8, 16, 0, 0, 0, 5, 0, 0, 0, 0]","[14, 3, 0, 2, 4, 0, 4, 9, 8, 4, 0, 1, 1, 5, 1, 8, 0, 4, 6, 0, 0, 0, 1, 0, 0, 0, 0]",14,3,2,0 -https://github.com/dimitri/pgextwlist,2011-12-11 14:12:00+01:00,a744db9a793caa41d34669af2c623ea6a8b8c71e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/OpenShot/libopenshot-audio.git,2012-06-15 17:45:27-05:00,c0e605fafed2095208d7daeb37dd50e90499b8d5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/puppetlabs/puppetlabs-apache,2012-06-16 21:34:50+01:00,a79baf6990cc8ef84026aefecc78a8f85b568885,"[0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 3, 0, 11, 1, 0, 0, 3, 8, 2, 0, 4, 0, 1, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6, 1, 0, 0, 1, 3, 1, 0, 2, 0, 0, 0, 0, 4, 1]","[6, 2, 6, 2, 2, 7, 4, 52, 25, 19, 2, 0, 0, 0, 7, 6, 3, 4, 0, 4, 9, 5, 0, 2, 0, 6, 0]","[3, 0, 3, 0, 0, 3, 1, 22, 8, 6, 1, 0, 0, 0, 1, 3, 2, 2, 0, 1, 3, 2, 0, 1, 0, 1, 0]",15,6,26,5 -https://github.com/openstreetmap/OSM-binary.git,2011-04-13 22:40:46+02:00,c7dce29491432e150739b852e1e83f69ef46c759,"[1, 0, 0, 0, 2, 0, 0, 0, 9, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 13, 7, 11, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,4,3,0 -https://github.com/emancu/toml-rb.git,2013-02-24 08:56:27-08:00,b36b370ee11769cceb53144708b0f87006499fbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 23, 0, 0, 0, 1, 9, 8, 0, 0, 1, 0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0 -https://github.com/c-w/ghp-import.git,2010-02-19 13:59:19-05:00,7b4d23db8fba985289075189cf5e540fb8cb42a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/wharris/esmre.git,2008-01-28 14:17:08+00:00,8bad5b90e1a70c4d288ab8129c5d55c177d2b007,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 0, 0, 11, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/jmk-foofus/medusa,2015-05-27 21:50:49-05:00,61b9ed6723ba95e92e04772f22cf2131a8e0ac1f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/matthewdeanmartin/terminaltables,2014-09-01 21:02:49-07:00,df6d28a1974c99ed7adc26cba122fd673f241502,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 11, 2, 0, 0, 0, 1, 0, 6, 2, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]",1,1,1,0 -https://github.com/r-lib/callr.git,2016-05-13 11:24:23+01:00,32693921097092b5512f76ba6c2e142c55103c79,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/elves/elvish.git,2013-06-16 16:45:22+08:00,6ef2ab157fc0999ae991a2f52ac0a333c5961d20,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 26, 3, 0, 4, 1, 4, 0, 8, 2, 0, 15, 12, 42, 31, 52, 6, 33, 7, 33, 0, 10, 38, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.xfce.org/panel-plugins/xfce4-timer-plugin.git,2005-12-01 07:49:54+00:00,48ed59f5e84b2d7549b680362ef760a04a06fcf1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 6, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/shekyan/slowhttptest,2015-03-14 20:07:23-07:00,5762f5989c807378acc6fad92cf26c9ab1b646fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/erlware/erlware_commons.git,2011-10-16 22:26:43-04:00,2b320a34a562fcb18243e96b632c9a77c1415a83,"[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0 -https://github.com/codereader/DarkRadiant.git,2006-03-03 19:46:06+00:00,d6422030a6f53b612a744636fe02f1eaf61894df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 17, 13, 28, 5, 2, 2, 4, 13, 8, 10, 8, 18, 12, 16, 13, 3, 8, 14, 25, 14, 11, 7, 11, 13, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/asb2m10/jsusfx.git,2014-08-02 02:22:41-04:00,f798c05a36b410c62698569a4555bd0c1a94e074,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/besser82/libxcrypt.git,2015-05-12 20:10:30+02:00,27fa0cb49d585aff8ea25c380eb43d0679784f58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/radare/valabind,2009-12-26 12:02:43+01:00,046a0de6f30c1a5c133775e05d4945364babc153,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 11, 10, 2, 7, 0, 4, 4, 1, 8, 13, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 -https://github.com/r-lib/devtools.git,2010-05-02 23:16:14-05:00,78a3ebaf8da61d1c0175e45a698dfa6f5c45282f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 9, 0, 0, 2, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/spanezz/django-housekeeping.git,2014-05-14 11:53:17+02:00,fe18a0159ca13659d3f79124bf8f3d9dec0c593f,"[0, 0, 0, 0, 0, 6, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/pydot/pydot.git,2007-07-09 22:27:24+00:00,c0233c6aae32d11d2dc1e0f836c0bcf8b2fab6d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ahmetb/kubectx,2017-03-29 00:30:12-07:00,6de838135f670a66e29e5bd8bf0a66bcf38d9e9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 3, 0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/tikzit/tikzit.git,2012-01-06 13:44:40+00:00,2ed61cfb3ad3d404b9a44bbb3f4c8083b469ae22,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 19, 5, 7, 6, 1, 0, 1, 2, 7, 0, 1, 0, 0, 5, 0, 8, 1, 0, 14, 3, 0, 9, 0, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/pgmodeler/pgmodeler.git,2012-08-23 20:59:29-03:00,daa8f9f4729241779ad1318dfed499144dbeb8e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 12, 4, 5, 5, 3, 16, 30, 5, 23, 30, 4, 18, 25, 9, 13, 26, 10, 19, 27, 19, 25, 25, 30, 13, 24, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 8, 1, 4, 1, 8, 2, 2, 0]",1,4,6,0 -https://github.com/ipython/ipython_genutils,2015-04-08 15:06:03-07:00,6cf40ccc0e77a41d9e4909ff3e8ea1e753b0a69e,"[1, 1, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 14, 2]","[0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0]","[8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jcomellas/getopt,2009-10-13 17:42:55-03:00,6cf2a8c0dd4f0f59d4027435740ce704bc9d08f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lanmaster53/recon-ng.git,2013-01-22 11:03:18-05:00,70d43147a7c6c82a2850cb668c6d2126f86621a2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 8, 3, 8, 1, 0, 2, 1, 0, 0, 0, 1, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 27, 80, 30, 30, 39, 19, 19, 6, 8, 9, 8, 10, 4, 9, 2, 2, 0, 5, 6, 1, 2, 1, 7, 7, 6, 1]","[10, 9, 31, 8, 10, 15, 10, 7, 2, 3, 5, 3, 1, 0, 2, 0, 0, 0, 1, 3, 0, 1, 0, 1, 2, 0, 0]",1,10,18,0 -https://github.com/bleakgrey/tootle.git,2018-04-14 15:09:06+03:00,30f8348286f4fe690b309409d7c438821710b8b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 15, 25, 30, 15, 21, 28, 13, 7, 29, 3, 2, 5, 1, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 0, 4, 1, 2, 3, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,11,0 -https://github.com/syncthing/syncthing.git,2013-12-15 11:43:40+01:00,bfe935b5ab3518cac083c9b748715b6aabb50215,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 15, 40, 46, 8, 14, 9, 8, 15, 5, 10, 30, 9, 21, 13, 15, 18, 31, 16, 28, 6, 62, 63, 40, 29, 27, 1]","[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 0, 0, 0, 0, 1, 0, 7, 3, 5, 1, 1, 0]",1,2,14,0 -https://github.com/dgasmith/gau2grid,2017-11-01 15:39:47-04:00,1b4e2291c801156fe9814d3641af63ebbee82499,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 36, 43, 22, 4, 35, 10, 8, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 21, 5, 4, 0, 0, 0]","[0, 5, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0]",2,2,1,0 -https://github.com/ignitionrobotics/ign-cmake.git,2017-09-19 20:05:04+00:00,27d4c7063cbda1614b7b371beb333eefe46b19d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 24, 26, 14, 13, 32, 10, 17, 10, 13, 37, 25, 10, 8, 1, 45, 69, 19, 2, 10, 11, 0, 6, 0, 0, 7, 1]","[0, 1, 6, 4, 2, 7, 0, 3, 0, 3, 11, 6, 1, 2, 1, 11, 17, 5, 1, 4, 3, 0, 1, 0, 0, 2, 0]",2,10,15,0 -https://github.com/rhinstaller/efivar.git,2012-08-16 11:10:11-07:00,eab7633042b5979582208cca36ce80989fb555e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/aperezdc/notmuch-addrlookup-c,2014-01-31 16:36:48+02:00,d545ab733466d412d0e20ba6de009372e4a8d7f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/saz/puppet-memcached,2011-11-20 14:38:05+01:00,3724c499f66b1da82c3ca99a70c12b612ed10d99,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 2, 8, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/venthur/python-debianbts,2015-10-13 10:12:41+02:00,fb8a8039c4ff31eb3f8c3521d17cba0627bdb4cb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 2, 0, 0, 9, 17, 24, 1, 0, 6, 9, 2, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 2, 0, 0, 2, 2, 1, 2, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,1 -https://github.com/json-c/json-c,2007-03-13 08:26:18+00:00,f0d08887b857fce1fe95a68d29eb7a07cd527d7c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-multi-writer.git,2015-01-02 15:22:18+00:00,2c93f497244581b6d3a113a0c95726834a05af35,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 23, 12, 14, 7, 5, 0, 5, 7, 0, 3, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,23,0 -https://github.com/johanmattssonm/birdfont.git,2012-05-18 09:01:47+02:00,0c5880f197f32b50062a888c07a069409a1b78db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 7, 0, 0, 0, 0, 0, 9, 15, 11, 13, 29, 15, 21, 31, 27, 32, 18, 8, 4, 0, 16, 15, 7, 6, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/Rich-Harris/sourcemap-codec,2015-10-10 00:49:04-04:00,a8698dc52b265fb93c30a922a14263ba94dfa7d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 4, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/zeux/pugixml,2014-02-09 00:28:29+00:00,7b41dce85e8f8788027672845fd2867dd9e2b27a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 2, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mobile-shell/mosh,2012-02-05 02:21:37-05:00,da2f481eea0ededfa3e4d256b7e4e00b50164be2,"[61, 15, 10, 0, 0, 6, 0, 10, 0, 26, 3, 3, 3, 0, 0, 0, 0, 0, 4, 1, 0, 7, 2, 2, 1, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 22, 18, 12, 63, 48, 47, 30, 16, 36, 77, 31, 16, 8, 16, 18, 1, 0, 6, 1, 0, 0, 1, 10, 6, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,20,0 -https://github.com/LibreCat/Catmandu-Atom.git,2013-06-10 16:22:32+02:00,d094a1c776be12bfecb6f2440c45121839f0dffc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ioquake/ioq3,2012-01-31 13:41:34-06:00,dbe4ddb10315479fc00086f08e25d968b4b43c49,"[16, 7, 1, 7, 0, 10, 10, 3, 6, 0, 2, 1, 6, 3, 1, 3, 2, 2, 8, 1, 1, 0, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 4, 0, 0, 0, 0, 0, 8, 8, 4, 0, 0, 5, 1, 1, 0, 1, 0, 34, 1, 10, 5, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gildor478/ounit.git,2010-05-24 23:49:19+02:00,bac217e81e7766e52ed0d83ee611d456a563aac3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://android.googlesource.com/platform/system/tools/hidl,2016-08-15 14:55:21-07:00,1aa476ba26601828117428c4bdd3367fbf999fec,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 4, 2, 0, 1, 0, 9, 4, 1, 5, 2, 4, 14, 39, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 3, 0]","[43, 16, 29, 153, 91, 85, 198, 117, 57, 95, 110, 126, 107, 81, 36, 59, 78, 97, 104, 15, 93, 128, 61, 60, 70, 75, 1]","[15, 4, 12, 126, 73, 66, 165, 96, 49, 73, 91, 102, 88, 68, 28, 44, 66, 76, 84, 9, 75, 103, 51, 49, 57, 62, 1]",13,2,14,1 -https://github.com/BioPP/bpp-qt,2020-03-15 14:14:10+01:00,9af840add9bf10874a7099de87f455bb2311e84d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://gitlab.gnome.org/GNOME/gnome-online-accounts.git,2011-04-19 17:16:00-04:00,118987fabb024253183e381292898f297f2b149b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 24, 2, 10, 20, 28, 1, 10, 1, 9, 4, 0, 1, 2, 0, 0, 0, 0, 4, 23, 14, 11, 19, 4, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,58,0 -https://github.com/LibreCat/Catmandu-MARC.git,2012-05-07 08:54:07+02:00,8141e284d8cf520be9fe09ee98a891c7f15c6890,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,2,1,0 -https://gitlab.com/drobilla/fomp.git,2012-08-20 05:16:04+00:00,734a9f490f2f8cb4552c71bfac8fc779f836c436,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/analogdevicesinc/libiio.git,2015-04-02 14:37:04+02:00,bb51a9844c6bf26de2e0f78aa6ed5fcc8cdde064,"[0, 0, 2, 9, 7, 8, 5, 8, 9, 11, 2, 0, 1, 1, 9, 1, 3, 3, 7, 2, 8, 12, 8, 51, 14, 10, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[2, 5, 7, 8, 3, 16, 5, 8, 0, 6, 1, 2, 15, 1, 1, 4, 1, 6, 3, 2, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,2 -https://github.com/jlaine/python-netfilter.git,2013-03-05 10:40:15+01:00,10699a37f1930e89d18ad27c1ca99f1fa48e1593,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/TokTok/c-toxcore,2013-06-23 17:12:13-07:00,f8ccb9adb99fc143e11927a461d06da1b3d5bcba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 42, 55, 91, 107, 379, 240, 156, 98, 65, 40, 99, 60, 36, 28, 15, 25, 26, 26, 16, 24, 24, 23, 24, 15, 10, 1]","[8, 1, 12, 29, 32, 137, 89, 42, 32, 16, 12, 25, 21, 8, 3, 5, 7, 5, 6, 5, 8, 5, 6, 8, 4, 2, 0]",1,25,139,0 -https://github.com/iptux-src/iptux,2009-02-13 13:40:43+00:00,2ee00029158ed1c2c3fb405513097278aa1f4a31,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/apache/avro,2009-04-09 19:25:42+00:00,9a0bad0604f93cb5733958532c8cc9dac2b605d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 4, 0, 4, 4, 8, 7, 3, 2, 8, 5, 13, 3, 4, 3, 3, 2, 7, 2, 5, 5, 1, 6, 10, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/rime/brise,2013-02-02 08:35:48+08:00,f71015bac6085b1c380c4197d19568c1e5249059,"[1, 4, 1, 2, 4, 5, 0, 2, 0, 1, 7, 5, 0, 0, 0, 3, 2, 1, 1, 5, 3, 2, 2, 8, 5, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 5, 9, 8, 8, 14, 2, 9, 3, 2, 10, 3, 1, 3, 1, 3, 5, 1, 4, 1, 4, 3, 0, 6, 1, 1]","[0, 0, 1, 0, 0, 0, 3, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",0,1,3,1 -https://github.com/linuxdeepin/deepin-icon-theme.git,2014-12-03 17:16:42+08:00,7a059612fb9617121de16f34285c148bff35ac10,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/tmuxinator/tmuxinator,2010-12-08 10:25:22+01:00,91b18206cee141bf3d95f68c5cacfaf2b754ae80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 16, 4, 0, 0, 1, 2, 0, 0, 6, 0, 2, 3, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",1,1,9,0 -https://github.com/ltsp/ltsp,2019-08-18 20:40:16+03:00,dec892918162be7ff2cb00b509dff1f433dbd50d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 12, 6, 6, 1, 6, 1, 1, 11, 1, 7, 2, 6, 4, 4, 3, 3, 5, 2, 0, 0, 3, 1, 15, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/lstein/LibIO-Interface-Perl.git,2004-03-26 23:18:31+00:00,fd77c1f62df1d660ff9b6038a7d8c93ca8eab89d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libratbag/libratbag.git,2015-08-13 11:55:07+10:00,3fefe97451243c486953ac9cef844195ea0bd049,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[83, 165, 71, 41, 107, 12, 2, 17, 43, 46, 20, 0, 10, 2, 4, 17, 3, 15, 4, 0, 0, 4, 0, 0, 0, 14, 1]","[0, 0, 3, 1, 10, 3, 0, 0, 2, 4, 2, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0]",1,3,9,0 -https://github.com/simd-everywhere/simde,2017-03-28 12:14:46-07:00,76e3e25fd0fac7efe63b89ea8c09adfe539749cd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 35, 49, 25, 18, 32, 13, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/kilobyte/pmemkv,2017-01-05 20:32:36-07:00,56b72f96038c240012f92ea4ff96880b0aa7528d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 7, 12, 1, 4, 11, 2, 3, 1, 0, 4, 7, 6, 0, 8, 6, 8, 2, 12, 0, 0, 0, 0, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1]",2,1,5,0 -https://github.com/justmoon/node-extend,2012-11-07 12:13:42-08:00,f65c443d4ce3934d6cedcffdf0037a8396c59e03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1 -https://github.com/benningm/mtpolicyd.git,2014-08-29 16:35:17+02:00,9c4c8d717609fe5c95be0ef2fe3b16ad0e707150,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 2, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/hiracy/serverspec-runner,2014-06-15 18:13:52+09:00,746f14d974677a6f6fc1b30504b01be0cc1ca758,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 2, 0, 0, 2, 1, 0, 9, 13, 0, 0, 0, 0, 0, 12, 21, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/sebastianbergmann/php-code-coverage,2010-04-03 16:35:09+02:00,94388af0c483b94353a81fa1973de8a663a01eb1,"[0, 0, 0, 0, 1, 16, 20, 17, 9, 14, 10, 2, 2, 6, 0, 17, 1, 2, 0, 0, 0, 0, 1, 0, 9, 49, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]","[8, 5, 7, 1, 0, 21, 3, 0, 1, 3, 0, 6, 1, 1, 0, 2, 2, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 -https://gitlab.freedesktop.org/spice/spice-gtk.git,2010-11-23 17:00:17+01:00,d960229a091a7bd5b3ce4a29ae5f5648978af51c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[124, 38, 3, 29, 12, 8, 13, 30, 31, 8, 1, 0, 13, 0, 3, 2, 14, 9, 21, 28, 9, 0, 5, 11, 11, 14, 1]","[0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0]",2,1,7,0 -https://github.com/firehol/iprange.git,2015-11-15 14:42:37+00:00,84a06f67597c2c4926e3649642bc037ed660da3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 0, 0, 0, 3, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[7, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,4,3,0 -https://github.com/Lawouach/WebSocket-for-Python.git,2011-08-08 22:55:33+02:00,491ba8df12d70661b3e1fbad0e52196a166e1ec5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 20, 20, 2, 5, 1, 14, 5, 3, 0, 0, 0, 2, 1, 0, 2, 0, 0, 9, 0, 1, 2, 0, 0, 0, 6, 1]","[0, 0, 2, 1, 0, 0, 4, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 -https://github.com/gauteh/lieer,2017-03-05 15:56:38+01:00,45047cd988e95c3c353c2657eaa46df48f9b7eb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 11, 0, 10, 3, 0, 0, 2, 3, 3, 3, 0, 3, 1, 1, 0, 0, 0, 0, 0, 1, 1, 6, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/angband/angband,2009-01-22 01:08:05+00:00,f594182282f3cd65a3b29e4fc366ee090bfee171,"[0, 1, 0, 1, 0, 0, 0, 0, 3, 24, 8, 2, 0, 0, 0, 0, 6, 4, 0, 0, 0, 28, 5, 30, 11, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 38, 36, 14, 3, 4, 1, 0, 0, 12, 16, 40, 17, 1, 0, 8, 20, 10, 11, 11, 8, 10, 2, 24, 5, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/janmojzis/dq.git,2015-01-01 11:30:21+01:00,104cf888c72ea28f4c5e73a841e92c989c7632e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ukui/ukui-indicators,2017-01-20 14:23:05+08:00,865546e5830e12445a34b3e27f3a86466dd7304a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 4, 0, 4, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/antanasbruzas/abGate.git,2017-01-05 18:04:40+02:00,e803054b87ef7dd8a9a5ee2499bd1e9dba8bfec3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/firewalld/firewalld.git,2013-06-12 12:46:55+02:00,7f9095c745fec8c8db67b4be6dde3c47cc4293e1,"[9, 1, 0, 1, 20, 4, 1, 6, 7, 11, 6, 2, 5, 14, 20, 14, 1, 5, 7, 10, 7, 3, 12, 5, 18, 21, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[11, 16, 14, 6, 8, 18, 34, 8, 0, 22, 13, 4, 10, 5, 5, 18, 24, 10, 17, 27, 5, 5, 10, 2, 10, 2, 1]","[0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,2,0 -https://github.com/cyrusimap/cyrus-sasl.git,1998-11-16 20:06:36+00:00,6f4b36e25a44e5f9a4627340920b88816507961c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 22, 3, 1, 1, 0, 0, 1, 7, 1, 0, 9, 7, 5, 2, 10, 5, 1, 16, 22, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/sybrenstuvel/python-rsa,2011-07-30 19:58:25+02:00,d94c677a45b981a852f3ea7b1d5ad12ef31e9edf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 23, 18, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0]","[50, 27, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,1 -https://github.com/rncbc/qxgedit.git,2009-07-20 23:04:08+00:00,04f2c0f7acf5ddeb409f6463e015061e91777127,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 9, 8, 6, 6, 15, 18, 12, 9, 13, 1, 0, 0, 0, 1, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/itamae-kitchen/itamae,2013-12-22 15:40:52+09:00,815f39ca717313d3bc94d6e6a500074ea2a89cf7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/LibreCat/Catmandu-FileStore.git,2018-06-25 11:56:55+02:00,5e985d798ebba722483e300fa5f454db170da123,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,1,0 -https://github.com/mmottl/gsl-ocaml.git,2009-07-12 19:43:24-04:00,e326c5d3902f7f617f8d415b82727d133267cd69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/webhippie/gettext_i18n_rails_js,2012-08-20 17:30:00-03:00,d78d6b2df13cd3a5170ec72c0c32c1f538f54204,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,2,1 -https://gerrit.wikimedia.org/r/integration/uprightdiff.git,2015-11-16 15:44:13+11:00,b8b489ea3775fa8c17dc51d361954fc7c1895613,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 6, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://gitlab.dune-project.org/staging/dune-typetree,2013-08-26 20:33:50+02:00,c276879fa715b2045ef0e9fe9c42a67e6559ebf4,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 5, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[20, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 3, 6, 1, 0, 3, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,6,0 -https://github.com/savoirfairelinux/opendht.git,2014-11-20 01:21:09-05:00,4f81ea2603d1af16a183cd0be82d99cac998dd3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 6, 35, 13, 1, 4, 2, 3, 3, 3, 2, 0, 4, 8, 3, 5, 6, 9, 15, 14, 2, 12, 4, 3, 1, 4, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",1,1,8,0 -https://invent.kde.org/plasma/plasma-workspace.git,2014-03-31 01:31:46+02:00,da27b276789a213775f1d1fdba20e5ca91430af2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 69, 31, 42, 31, 107, 62, 39, 67, 82, 61, 130, 74, 38, 43, 17, 10, 4, 7, 7, 5, 8, 6, 2, 1, 0, 0]","[1, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,39,0 -https://github.com/sebastianbergmann/php-invoker,2011-03-09 10:22:06-05:00,c171b14f9744a4875fa725be80dd3bc678f35a13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/qTox/qTox,2014-06-24 22:19:37+02:00,3dd7065378424295c173c6d555de1820b931a937,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[142, 134, 47, 10, 33, 21, 23, 22, 5, 87, 64, 90, 13, 103, 90, 71, 143, 75, 96, 159, 167, 47, 46, 32, 18, 14, 0]","[23, 43, 8, 4, 11, 3, 3, 5, 2, 15, 10, 18, 6, 21, 18, 19, 44, 16, 27, 38, 28, 15, 11, 11, 8, 6, 0]",1,20,71,0 -https://gitlab.com/man-db/man-db.git,2001-04-26 17:31:14+00:00,190b315e1caed82966c31306213aa58ab62abdf8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 6, 17, 3, 6, 1, 4, 4, 13, 8, 4, 3, 1, 1, 3, 0, 6, 3, 7, 3, 2, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/srikanth-lingala/zip4j.git,2019-05-04 14:27:40+02:00,3d40c8c0595b0ee564190a40970dbe3b59cf9f5a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 11, 8, 13, 4, 6, 30, 8, 11, 3, 7, 5, 9, 5, 2, 1, 4, 10, 1, 0, 5, 10, 8, 1, 0, 1]","[0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 0, 1, 3, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 -https://github.com/voyageur/wmsysmon.git,2017-12-06 13:46:20+01:00,5b62cd9db804a2e7e14cdc4c8a81f475fda15619,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sobolevn/django-split-settings,2013-05-17 09:05:09+03:00,454775cce320386f7466d3866efbffdc3c3d51f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,3,0 -https://github.com/gpertea/gclib,2015-09-04 15:06:38-04:00,ae32a9ebae00a1827b14ea3d3224a72272590722,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/bzed/debian-ksmtuned,2015-01-31 00:54:12+01:00,c519671361b6ddad2c6d14f2099fd9a27a7091e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/tox-dev/tox.git,2010-07-12 12:50:27+02:00,6b669316711207812419a7dc747eb1af157631d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 4, 2, 27, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[29, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 10, 12, 0, 2, 8, 0, 8, 0, 0, 0, 1, 0, 3, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,1 -https://gitlab.com/fkrull/quark-sphinx-theme,2016-02-24 03:30:30+01:00,b6f260d987e07d755bedb560a96fd2a5fa0f8eb2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 23, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/TomKellyGenetics/vioplot,2016-03-17 17:27:07+13:00,0ebf607f477473327fe4e47644e7aa52205afecf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 32, 0, 0, 4, 0, 1, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/ImageOptim/libimagequant.git,2011-12-26 21:31:04+00:00,74f5b43759234f741cb72aadb2a4a89cf0b112f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 -https://github.com/thp/minidb.git,2010-10-30 13:58:42+02:00,bfd84cbe29deaa7a94bf960f329d16a1d4a5659f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/P403n1x87/austin,2018-09-23 01:13:53+01:00,48c142e85d6e08edba82f7ef453cb07783dae911,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 3, 0, 3, 3, 0, 5, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/seb-m/pyinotify.git,2009-11-03 08:48:22+01:00,288efd44da7762dcc6b1ae33328df369491396da,"[0, 1, 1, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 5, 0, 0, 1, 1, 1, 1, 3, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 0, 1, 0, 0, 0, 2, 7, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/felixge/node-formidable.git,2019-12-06 09:55:06+02:00,e658324ea5e64a0f7746f58e0331cac0bc873511,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 63, 11, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,1,5,0 -https://github.com/pixelb/crudini,2013-01-26 00:41:41+00:00,fa83e1d2f0d4b01a18c9e8846f01655b42485b39,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mate-desktop/mate-utils.git,2011-12-14 10:13:54+01:00,ef0467789bfc8406b57ba553e4d59f4d6c3f9be8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 -https://gitlab.com/arcmenu/ArcMenu.git,2020-09-20 09:26:43-04:00,f65d8a6bed05de3e636f75e14167d032ae247be2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 17, 10, 15, 9, 20, 0, 2, 7, 1, 5, 0, 0, 0, 2, 0, 1, 24, 0, 0, 3, 4, 1, 5, 1, 6, 1]","[2, 5, 3, 5, 2, 4, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0]",2,1,11,0 -https://github.com/tidyverse/lubridate.git,2010-08-31 09:39:53-05:00,0f0bb7d04dfa1486e6c2880beb1bf6403f8d2c40,"[0, 1, 1, 8, 3, 5, 7, 3, 2, 21, 5, 0, 0, 0, 1, 17, 0, 0, 0, 5, 18, 12, 0, 17, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0]","[2, 0, 0, 0, 0, 7, 23, 17, 6, 0, 7, 0, 0, 6, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/google/python-subprocess32,2012-11-15 18:25:39-08:00,ac220bfe4603901bb577116286325cc30217ea25,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/compuphase/minIni,2015-03-13 13:35:09+01:00,d9d04c43be01e673e4daa283f897751ba280bda7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/babelouest/ulfius,2015-11-02 18:15:36-05:00,d8231fc57b4f07ef45ac8b9fd1dbdf5cc0397bee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 10, 0, 0, 1, 3, 2, 6, 1, 4, 0, 3, 5, 0, 7, 2, 3, 1, 0, 2, 7, 1, 0, 4, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/volkszaehler/libsml,2011-06-16 12:26:21+02:00,d105cd39b103ba7b73900cd7db89df41a696e3bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 7, 1, 11, 30, 6, 0, 0, 0, 20, 8, 9, 2, 0, 3, 15, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 -https://github.com/py-pdf/pypdf,2011-12-30 09:04:56-06:00,c59a212a4cda512c184a987312970b464404d17b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 5, 0, 0, 1, 0, 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/ipython/traitlets.git,2015-04-08 16:33:28-07:00,e722b4788b076c8f7b4b38c4926e49c15cbf4423,"[1, 1, 1, 1, 15, 13, 3, 4, 0, 8, 0, 0, 0, 0, 1, 3, 5, 0, 5, 5, 5, 1, 4, 41, 17, 30, 2]","[0, 1, 0, 1, 1, 3, 1, 2, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 0, 0, 2, 13, 4, 10, 0]","[6, 13, 3, 1, 4, 5, 7, 17, 10, 27, 3, 6, 1, 8, 4, 22, 1, 6, 6, 4, 11, 11, 10, 17, 8, 15, 1]","[1, 4, 1, 0, 2, 0, 2, 6, 5, 7, 1, 2, 0, 3, 1, 4, 0, 2, 2, 1, 2, 1, 2, 7, 1, 5, 1]",4,2,6,0 -https://github.com/rails/jbuilder,2011-11-27 15:02:46+01:00,65112058afb52a7a9345f24b8735dcba7df1f871,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 5, 1, 0, 0, 0, 1, 0, 10, 0, 4, 0, 4, 0, 1, 0, 9, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,15,0 -https://github.com/mootools/mootools-core.git,2008-04-22 00:26:49+02:00,d14ac127a614c8f0106a620b735823f7c0b1162e,"[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tpm2-software/tpm2-tools,2015-08-21 09:07:28+08:00,d4069d9279a3cd5a10e6919f157f66d625ba1b48,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 1, 2, 2, 0, 0, 0, 2, 3, 1, 3, 4, 8, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 2, 3, 0]",1,1,5,0 -https://github.com/osdlyrics/osdlyrics.git,2009-05-10 08:53:39+00:00,860a8e626d49da8007a57830c03572514cb75bf9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 5, 3, 1, 6, 3, 1, 2, 8, 5, 3, 4, 2, 3, 3, 6, 1, 1, 8, 3, 0, 2, 4, 1, 16, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",2,1,2,0 -https://github.com/n2ygk/aprsdigi.git,2004-02-24 21:34:05+00:00,c6b2a1c45f9881ef04af0cff03736662e697f9ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gohugoio/hugo.git,2013-07-04 08:26:26-07:00,50a1d6f3f155ab837310e00ffb309a9199773c73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 9, 9, 27, 51, 27, 12, 26, 2, 16, 6, 11, 30, 2, 4, 16, 11, 11, 6, 3, 4, 10, 6, 2, 10, 1]","[3, 0, 2, 0, 7, 15, 11, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,37,0 -https://github.com/x42/libltc,2012-08-13 05:32:44+02:00,3b26fe05b980903959289bf3e09870dfa4a9ae41,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 0, 0, 0, 0, 0, 2, 6, 10, 14, 15, 11, 13, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sciurus/vagrant-mutate,2013-10-19 14:57:14-05:00,0d1c20d0b66b7b19503e1849010903e00818dda5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 7, 1, 10, 6, 13, 7, 6, 0, 13, 1, 0, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 -https://github.com/heynemann/pyvows.git,2011-04-17 21:24:51-03:00,a606f0132cb4e4702001d759b296a1388ab22ce1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 71, 16, 8, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 19, 9, 2, 23, 4, 0, 0, 2, 0, 0]","[0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 -https://github.com/CoreSecurity/pcapy.git,2014-03-13 12:01:03-03:00,c7ae110ade63df9476357a8762ceff7549f990d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lcdproc/lcdproc,1999-12-09 23:15:14+00:00,2635c3085d0efae33ca91cf89d8d1eceff03dccd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://gitlab.com/gnutls/libtasn1,2002-04-05 19:57:55+00:00,c379ce7b913aaaa136c3f3ac4542770068fc2ddc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 4, 0, 2, 0, 8, 7, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/php-fig/link-util,2016-08-04 14:47:59-05:00,08b67e55dbb02e91e88729417acdac0cc871efe1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/pauldmccarthy/indexed_gzip.git,2016-03-10 23:03:47+00:00,ec713e934be910fa4cde6ac09321bf90bd3d8ef3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 5, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/OpenPrinting/pycups.git,2007-07-05 16:44:04+00:00,165a48029fa26441cc1815eee32a00f2b6910bec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[210, 0, 0, 0, 0, 0, 0, 10, 1, 8, 3, 0, 0, 0, 3, 0, 0, 0, 6, 11, 2, 1, 3, 3, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/rtsisyk/msgpuck,2013-11-12 18:41:41+04:00,9f3a5b33c4329300fd351bd04bc804cf808db279,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/orcasgit/python-fitbit,2012-02-17 10:59:34-08:00,b09fe0bcf65b617f8fd214d3e718e731bc54207c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://invent.kde.org/plasma/breeze-gtk,2015-05-12 12:40:27+02:00,9e43116d311c6271713f87a965c5e446802a3405,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 21, 1, 12, 0, 2, 0, 0, 0, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 1, 4, 0]","[0, 4, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,10,0 -https://github.com/steveire/grantlee.git,2009-05-12 19:29:06+01:00,3569595094a0b2826b260dc9681307cceb5c16ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 44, 18, 51, 24, 29, 0, 9, 3, 0, 0, 0, 5, 0, 6, 3, 16, 4, 6, 17, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/jonathanio/update-systemd-resolved,2016-06-14 21:54:19+01:00,208686005394a592827d81f13046a05b0fe2305e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 1, 0, 1, 0, 0, 0, 3, 3, 0, 39, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,4,0 -https://github.com/xmoto/xmoto,2007-02-05 19:58:16+00:00,4bf4d785fa19a4d6d648d33207b33e5531a141be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 41, 44, 40, 6, 27, 14, 28, 2, 32, 24, 24, 37, 19, 9, 7, 7, 8, 19, 8, 19, 5, 1, 4, 17, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 -https://github.com/simsong/tcpflow.git,2012-04-01 01:04:40-04:00,3043e4586bb1c977aa02ad7f6c50d259a9185c37,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 2, 0, 0, 0, 3, 1, 0, 0, 3, 2, 4, 7, 0, 5, 5, 6, 2, 2, 8, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]",2,3,6,0 -https://github.com/intjelic/python-sfml,2011-02-12 21:54:34+01:00,eebbf987a08ca2a0c1d068be0c4e237ad496e748,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 12, 22, 7, 0, 0, 0, 9, 8, 4, 3, 0, 8, 2, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,3,0 -https://github.com/claytonotey/libsbsms.git,2021-01-17 20:59:55-08:00,d0dfda337a8aee8e33f7da22d66a464d997e4073,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 -https://github.com/webcamoid/webcamoid.git,2012-02-25 12:11:41-03:00,b8ac2286446a2a35bf6a090b1fb00e4706038272,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 1, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 5, 3, 0, 0, 1, 4, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/OpenPrinting/cups-filters,1999-05-14 17:03:06+00:00,cb41960921511ebaa9dac722b53b96708f81c655,"[1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 11, 5, 12, 1, 9, 11, 11, 0, 22, 9, 14, 1, 52, 18, 12, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 14, 5, 18, 24, 61, 16, 26, 27, 9, 37, 15, 11, 7, 11, 14, 14, 5, 15, 31, 1, 10, 10, 25, 17, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/linbox-team/givaro,2004-05-12 16:08:24+00:00,ae1e50dc95940d3a1c986344973a10a30040e3b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 9, 0, 2, 7, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 15, 0, 2, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/inverse-inc/sogo.git,2006-06-15 19:34:10+00:00,f18c764ffad13c8e3dbda85019025b65d71f614d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 12, 29, 5, 0, 35, 54, 27, 49, 37, 39, 30, 59, 33, 46, 38, 96, 56, 68, 49, 59, 19, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 -https://github.com/moment/moment.git,2011-02-28 18:53:16-08:00,52e2408c33bcedf9907f987b7b95aa7efbfeb7bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 9, 6, 4, 0, 7, 0, 0, 3, 5, 0, 0, 0, 0, 6, 6, 6, 0, 3, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/taem/cd-discid,2009-08-07 11:44:30+06:00,3c31b32079a65133abd0219fd20a6ceb6dc1c8f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 13, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://github.com/radio-astro-tools/radio_beam,2014-04-11 15:26:05-04:00,67ea938f4d2d8931fe01fa6d915838b02dbba1c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/fkei/JSON.minify,2010-06-22 07:38:49-05:00,807ef4d90048a5f150c10fd8a722ef4758589154,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/silnrsi/font-andika,2017-06-05 10:29:42+01:00,27cc747e54a6c689a47d4e4d0faacd37abed9052,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 8, 3, 0, 0, 1, 3, 3, 12, 1, 0, 0, 1, 0, 2, 2, 11, 1, 7, 1, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/shesek/iferr,2014-04-11 09:07:19-07:00,b95cb0010d4aba2eac3363bb505b483a6d8c1e93,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/prometheus/blackbox_exporter,2015-09-05 18:37:28+01:00,1788a049dcaacbc9b81e44b3d3745a8e2c26df3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 0, 0, 0, 0, 7, 0, 0, 3, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 0, 0, 3, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0]",1,2,9,0 -https://github.com/iarna/DBIx-Abstract.git,2011-08-18 13:49:16-04:00,4134d4e35ba8f8582855ea2a52d4556cc73cdca7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/mchehab/zbar,2007-02-19 00:37:11+00:00,ae0168b2547dea5136416d9d0c5e90587532d2b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 4, 0, 0, 1, 3, 4, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ggruen/Chatbot-Eliza,2009-12-09 22:14:13-08:00,aaa0ca11abc686120aaff57627f020f52ba43a31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ifcquery/ifcplusplus,2018-02-05 12:09:40+01:00,841a5254392b74fa370d43567b35c2da9755d20e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 6, 0, 0, 1, 0, 1, 2, 4, 0, 0, 2, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0]","[7, 6, 1, 8, 1, 11, 0, 0, 0, 0, 0, 2, 7, 5, 4, 1, 0, 1, 9, 0, 0, 0, 1, 0, 0, 4, 0]","[2, 2, 0, 2, 1, 3, 0, 0, 0, 0, 0, 1, 1, 1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1 -https://github.com/sdsykes/fastimage,2009-06-10 16:58:57+03:00,fab2f9939bdf634ed00c0e253890473affefc857,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lxc/python3-lxc.git,2018-02-14 18:34:35+01:00,8c49ddee6fe467618bc30a26cdde02dd1cd6cb21,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 6, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/drobilla/sord.git,2011-01-27 19:29:55+00:00,0c67a1bd0cd5f40fe93584a2e3713cb8963d6835,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 15, 2, 5, 12, 3, 8, 6, 0, 0, 2, 23, 6, 5, 12, 25, 0, 2, 1, 1, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/r-lib/testthat.git,2010-08-25 13:30:20-05:00,a83e97fa6ab26528e630f9d7b89828857a675422,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 0, 0, 0, 2, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 -https://github.com/browserify/browserify-sign,2015-08-14 07:38:24+10:00,dd76c988ce7d1a6ff24e5ea55408d1771aa62380,"[0, 0, 0, 19, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 16, 0, 0, 0, 0, 3, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,2 -https://github.com/expressjs/media-typer.git,2014-06-13 15:11:05-04:00,aefafa3ae59574bf8b16c57d529bd1d930106ad9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/alexei/sprintf.js,2013-04-02 20:43:49+03:00,2d3b0f433ae3fd74f0075d4b1627cddeae92e805,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/ropensci/taxize.git,2011-05-19 10:06:16-05:00,667004eac329869099fdccb481138f572576cb69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 2, 0, 1, 1, 3, 1, 1, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/keymanapp/keyman,2014-11-02 08:03:05+11:00,a3226706909bb151d454e2c86e2ea4f2aa26f52c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 5, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,1 -https://github.com/plastex/plastex,2004-11-02 15:14:12+00:00,9c40f2ecd5ba8c40bce695ca7e81eaaa7647c6dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 0, 0, 0, 3, 3, 5, 3, 8, 10, 6, 5, 2, 3, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Nheko-Reborn/nheko.git,2017-04-06 04:03:46+03:00,227a46c32ae02130442a2769475d7a6b217ba455,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 10, 22, 10, 20, 11, 12, 18, 7, 0, 0, 0, 7, 4, 2, 0, 6, 14, 9, 3, 4, 3, 3, 4, 9, 23, 1]","[0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0]",1,2,16,0 -https://github.com/kilobyte/qjoypad,2004-01-08 18:53:25+00:00,7c82c85c713185d67154cf52f4f3701aaf8676da,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/psi-im/psi.git,2007-04-08 08:11:44+00:00,5a8c722526af975db6f3f9b9150d240dbf984ea3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[609, 7, 8, 42, 32, 11, 3, 4, 5, 0, 8, 8, 4, 9, 9, 1, 0, 5, 4, 0, 0, 4, 1, 2, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 -https://github.com/d3/d3-color,2015-06-02 09:48:44-07:00,404caef01faa1edacb3dcdf29a96ec5c3c532ab8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[74, 3, 6, 0, 1, 5, 10, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 3, 2, 0, 4, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/hbons/SparkleShare,2010-04-27 15:35:52+01:00,5951657dbc8280f251fec40423e70f517ea8118f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[85, 38, 32, 51, 21, 16, 64, 93, 18, 51, 21, 22, 40, 57, 37, 31, 14, 35, 14, 31, 8, 10, 16, 33, 2, 20, 1]","[0, 0, 0, 0, 0, 0, 5, 6, 2, 9, 2, 3, 3, 5, 1, 3, 1, 3, 1, 2, 0, 1, 0, 1, 0, 2, 0]",1,3,45,0 -https://github.com/siracusa/rose.git,2015-03-17 19:09:18-04:00,6851ef5298e983609d7b71b7896fbcdbba13a281,"[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/jtzemp/base62.git,2008-10-04 15:54:23-06:00,958c6691e3cd88a3ca101aa8892b77c74d135bd3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/varnish/hitch,2011-06-09 20:13:39-07:00,60084bb62961f295c619d26ae0315b22b4dcaae4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 3, 3, 21, 5, 2, 0, 2, 19, 6, 2, 5, 15, 1, 6, 1, 13, 1, 0, 6, 1, 0, 0, 0, 0, 1]","[3, 0, 1, 0, 2, 2, 0, 0, 0, 5, 3, 0, 1, 2, 0, 0, 0, 6, 0, 0, 3, 0, 0, 0, 0, 0, 1]",2,6,23,0 -https://github.com/ktbyers/netmiko,2014-11-28 13:42:52-08:00,87bdbe14668b08177b5f0c887856e36c95f7e6be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 21, 54, 10, 0, 3, 0, 2, 20, 7, 3, 8, 4, 17, 35, 12, 20, 9, 6, 13, 0, 28, 53, 16, 15, 8, 0]","[0, 3, 8, 0, 0, 1, 0, 0, 4, 1, 0, 1, 1, 4, 8, 2, 1, 0, 0, 0, 0, 1, 5, 3, 2, 0, 0]",1,4,13,0 -https://github.com/awslabs/amazon-ecr-credential-helper,2016-05-21 14:10:06-07:00,34df182b2881796da2a08a01390434a8962ae741,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/gosa-project/gosa-plugins-pwreset,2015-10-29 15:18:15+01:00,4163e5f5c1fdff4828c8da45dd09cee5bc52bff8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Infinidat/munch.git,2010-01-25 22:18:43-05:00,e4f155052194f7d316db5e7c449b76acb58b96c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/XQF/xqf,2000-11-05 20:40:48+00:00,ecdf6d7869c4b9e5690707390c0f0cbdcc7ef54b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 1, 1, 1, 0, 3, 4, 3, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/x42/x42-plugins,2013-05-22 01:33:53+02:00,94b9db87700f43bf4a0d4438e78bbe817b5f81ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/cea-hpc/clustershell,2009-01-20 21:40:55+00:00,c3fa5146abe51435c3912f53727db3ca0f67f165,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 10, 8, 1, 6, 0, 0, 0, 0, 3, 8, 0, 1, 0, 0, 0, 6, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 10, 5, 3, 0, 0, 1, 0, 4, 1, 2, 0, 0, 2, 0, 0, 0, 0, 11, 4, 1, 3, 18, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 -https://github.com/credativ/pg_checksums.git,2018-04-16 12:44:43+02:00,190e8b9301ef5623d8b9173a67c235c54ca70e91,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 3, 2, 1, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 7, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://gitlab.com/rhendric/puka,2017-09-29 20:34:10-04:00,abed3cdef4a921092b552733305bdd2070663eca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/lxc/lxcfs.git,2014-12-12 14:44:09+02:00,60f73aff3126dc2850a4fb698f911e4279ba46b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 5, 5, 5, 4, 9, 1, 0, 4, 2, 0, 1, 1, 0, 1, 14, 2, 6, 1, 3, 3, 2, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,4,6,0 -https://github.com/fadecut/fadecut,2011-01-21 13:58:51+01:00,c99da0bfec99a038f58cee7e5c020e46eb9b0bd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[78, 120, 40, 24, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 18, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,6,0 -https://github.com/prehor/amavisd-milter,2005-05-10 21:37:59+00:00,4127f425fbb170317bf14f36240d91b0fe529dcc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 7, 2, 2, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Wiimm/wiimms-iso-tools,2020-07-24 00:35:40+02:00,41ad6ec89f3a65c39f3f32bfcb25679c518d017c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/libvips/ruby-vips.git,2010-08-05 00:01:37-07:00,6e418e93b11fb0538b29f034c6017b11147207c1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/jch/html-pipeline,2012-08-24 12:49:28-07:00,4c064381a184791c49eb7ac3d388b445d4195aa1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 12, 16, 6, 10, 0, 0, 0, 24, 3, 0, 37, 7, 8, 0, 0, 2, 0, 0, 0, 5, 3, 0, 0, 0]","[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 2, 1, 0, 8, 4, 2, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0]",26,5,15,0 -https://github.com/wojtekka/6tunnel,2005-05-08 10:39:22+00:00,5bc8c3b3c2270fdc6e6ec8717e215119738194d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/samg/diffy,2010-06-28 20:12:26-07:00,33f33fce0a5ccc085a36c5e5ddf83c4ce9424d18,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 16, 2, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jryans/timers-browserify,2012-05-25 21:34:11-05:00,94cfa2b49f817237460c6e3807b287162de6f8bd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dh4/cen64-debian,2015-04-15 22:38:26+02:00,5296a55ee5704611b84fb444575fe59d775a62b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/oetiker/SmokePing.git,2005-02-11 20:22:38+00:00,3623e33d0ae10eaeca653e00a3796495dbc0f713,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 12, 7, 9, 0, 0, 0, 0, 4, 0, 0, 0, 8, 2, 4, 9, 0, 0, 0, 0, 4, 0, 0, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/sinatra/sinatra.git,2007-09-11 01:14:00+00:00,208158a7dafa0af88b443be51f9ce985e857ad16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 4, 9, 22, 1, 0, 15, 0, 0, 0, 41, 34, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 1, 17, 2, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 -https://github.com/kometbomb/klystrack,2016-08-04 20:10:11+03:00,07073d8286ef5e2524d3a2905dccef983b2ff4dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 3, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 -https://github.com/LibreCat/Catmandu-Store-MongoDB.git,2012-05-04 15:27:30+02:00,f8ca7a8743865fe6c1896c64e64cde1294dd2687,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/shibatch/sleef.git,2016-04-24 14:47:06+09:00,87a08c98052caf7ba86391748a938c2534f46a4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -http://github.com/yarikoptic/vowpal_wabbit,2009-04-29 16:16:59-07:00,89b6cd6a38264153ae425117e09ceff3d4d92b3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/theturtle32/WebSocket-Node,2011-04-09 03:22:13-07:00,071a49fb506e6e81f7918c0ff6e0b85952e243e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 2, 25, 0, 0, 0, 0, 0, 2, 0, 9, 0, 4, 0, 43, 0, 4, 19, 18, 11, 2, 2, 0, 0, 4, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://gitlab.gnome.org/GNOME/libgdata.git,2009-01-03 10:02:43+00:00,3ea04f77323acbd85b95d863dd730e2fd8f009ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 3, 0, 1, 1, 13, 3, 6, 3, 9, 10, 11, 12, 44, 5, 7, 11, 13, 5, 12, 2, 4, 2, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0 -https://github.com/janmojzis/tinyssh.git,2015-01-01 11:55:33+01:00,97dd9e05f52482e46d660af81547c7c02669c1a2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 21, 13, 2, 29, 6, 17, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/libtom/libtomcrypt,2010-06-16 12:37:53+02:00,b8b6e1ad589e59f0ef442c826a3c96c2a24b9cda,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/GostCrypt/linux-crypto.git,2018-10-09 10:13:51+03:00,387b43883b9ee3d1cce06e456d7919da1f4b71f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 10, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/r-lib/rlang.git,2014-08-12 10:08:31-05:00,737124817f8f35c8b2c72c86fa0e361950f08e48,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 16, 0, 0, 17, 45, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1]","[1, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,7,0 -https://github.com/hanslub42/rlwrap,2014-02-23 18:32:53+01:00,f3d3ae405f20b0f78681add144735dbfd81f8a6a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[34, 16, 0, 0, 0, 0, 0, 0, 0, 0, 23, 35, 5, 13, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 -https://gitlab.xfce.org/xfce/xfce4-panel,2002-05-20 14:56:42+00:00,d7074befadf86788e4aa3cc56f451231acf02569,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 4, 4, 12, 0, 8, 1, 4, 9, 4, 9, 1, 0, 0, 8, 7, 26, 36, 11, 10, 1, 9, 0, 20, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 -https://github.com/OpenHMD/OpenHMD,2013-05-28 17:02:26+02:00,a1662d7816171e7903e3facfbc4edf5698f0bead,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 5, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git,2009-10-13 00:00:10-07:00,a376dd57a19e7f2270b8e77886bb3bc0acd1ea4b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 9, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/hroptatyr/dateutils,2014-02-03 11:45:20+00:00,9d31f420674b2adae959f50df341a7452d6fabd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 12, 2, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gkz/LiveScript,2013-12-06 16:33:58-08:00,05be2735ca7b4b2c6bf1349a0756b43c02cfebb2,"[2, 2, 0, 0, 12, 8, 9, 5, 0, 6, 2, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 1, 0, 1, 1, 6, 1]","[1, 1, 0, 0, 1, 1, 4, 0, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0]","[0, 0, 0, 2, 0, 0, 0, 1, 2, 1, 0, 0, 0, 7, 2, 6, 10, 3, 0, 2, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,1 -https://github.com/warner/python-ecdsa.git,2010-04-18 19:10:33-07:00,0fa0573419c4736e34c093131b75109b44b65ac9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/swaywm/swayidle,2019-01-12 09:26:38-05:00,6c78c679257f298b983a44ae41a2d0ce986d8bd7,"[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 2, 0, 2, 5, 0, 1, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 4, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0]","[7, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,1,9,0 -https://github.com/beanstalkd/beaneater,2012-10-11 01:41:41-07:00,1b67c68eae7af0d3dfff42a8bddc869209d2f4d2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 24, 107, 56, 14, 0, 0, 7, 0, 0, 0, 0, 0, 3, 11, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,1,6,0 -https://github.com/jkraemer/mail-gpg,2008-11-22 14:17:14+11:00,e50471eaccdfc457ddad16c74e11353f74b1340a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/Coin3D/pivy,2015-11-11 19:03:11+01:00,b0468aaf4fa7e8f4c0641b0cc64457bdbae6b00d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/flonatel/pipexec.git,2014-03-16 11:34:35-07:00,51012e65db0fbef389132fc3d981c2a917ad1446,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 8, 51, 5, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 -https://github.com/fangfufu/httpdirfs.git,2018-07-18 16:26:26+01:00,cd097dc4f1a629c1320085efcc5b78d41228d01d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[88, 19, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 2, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/mvexel/overpass-api-python-wrapper.git,2014-08-24 10:18:09-06:00,fa4ae000535ca71c80cf1828f4a6813b813a8d14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 0, 0, 1, 8, 1, 12, 6, 5, 0, 1, 1, 8, 3, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 5, 3, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,1 -https://salsa.debian.org/ruby-team/ruby-omniauth-github,2014-04-22 11:41:54+02:00,f03645c9a8298a3e6a8285395983fff62c30675b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bruce/node-temp,2010-05-31 20:53:18-07:00,269481630fb37310cd7d4798dc852e05a7201cf6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/theseer/phpdox,2011-03-20 14:30:57+01:00,7cd606b0767eeab03d7c5e21a32817fc05fb8d4d,"[2, 4, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 6, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 10, 1, 0, 1, 8, 6, 2, 0, 5, 48, 6, 1, 2, 44, 22, 5, 1, 0, 0, 13, 2, 1, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 10, 1, 1, 1, 3, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",3,4,7,0 -https://github.com/laminas/laminas-stdlib,2009-04-28 10:23:49+00:00,933de80315ccd64f5f89dd4cd44bf20d5100579a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/joenoon/url_safe_base64,2008-08-21 11:52:36-07:00,74b507fa63935e6ecb7954fded63e857d0256a65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/codehelp/perl-cross-debian,2012-11-25 05:36:03-08:00,e60a9d01fe92f93fee1d9482be5268b66ebc0b29,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 12, 0, 0, 10, 9, 0, 0, 5, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mupen64plus/mupen64plus-core.git,2009-10-02 00:10:43-04:00,4fcb71627ccb49c12c56145474c893660e2afb57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 10, 15, 6, 8, 6, 20, 11, 17, 5, 19, 4, 6, 10, 7, 4, 4, 0, 0, 4, 3, 9, 0, 5, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/wedesoft/aiscm,2013-12-27 13:00:00+00:00,e6592c68e06bb723650dc9360d1a06e173b42087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 26, 16, 9, 15, 8, 16, 11, 17, 11, 12, 11, 8, 12, 1, 5, 8, 12, 1, 0, 3, 2, 2, 3, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/EttusResearch/uhd,2010-01-07 16:46:00-08:00,67a502ec0fb92b14db5eedf2cff36caacbb0efbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 22, 11, 7, 10, 21, 20, 12, 7, 15, 17, 29, 17, 35, 25, 33, 29, 21, 36, 8, 24, 27, 18, 13, 10, 39, 1]","[1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 1, 2, 5, 2, 5, 5, 4, 4, 1, 2, 2, 4, 4, 0, 3, 0]",1,1,3,0 -https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux.git,2015-07-08 00:07:11+02:00,46e8a0b638501ea8559ae254892507d6ae5662ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://invent.kde.org/plasma/sddm-kcm.git,2013-02-03 22:18:19+09:00,57c770571916c36cf9cce1ee7793e7ebc08f03ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 13, 11, 0, 1, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/ardentryst/ardentryst,2014-12-31 02:57:54+01:00,799470bfdee147b4b41eda94e4a508d58a90f018,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/derf/feh.git,2010-02-05 17:52:34+01:00,21c4996c71d76b01a4333ef9905589b3fffa687d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 18, 10, 11, 5, 6, 21, 5, 2, 7, 9, 0, 21, 4, 1, 3, 25, 22, 32, 21, 3, 8, 3, 2, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://gitlab.gnome.org/GNOME/tracker-miners,2005-12-14 11:11:14+00:00,3ba8f30898be054c2949c8842cee243ccf39ddee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 2, 7, 5, 5, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/timothycrosley/isort,2013-09-02 15:22:53-07:00,af493c9bce862bd07537eb09b10c44bc50dbf2fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 34, 10, 2, 9, 7, 29, 20, 23, 6, 24, 0, 10, 26, 0, 14, 0, 35, 8, 9, 18, 38, 16, 2, 69, 2, 1]","[22, 13, 2, 1, 3, 4, 12, 6, 11, 2, 6, 0, 3, 9, 0, 5, 0, 10, 3, 2, 5, 12, 6, 1, 16, 1, 0]",2,2,15,0 -https://github.com/eclipse-ee4j/eclipselink.git,2013-04-14 16:05:26-04:00,2715b9d400e57fae8454331730945abaf47c7a00,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 20, 7, 20, 21, 23, 24, 26, 22, 32, 20, 14, 17, 14, 17, 12, 7, 17, 17, 21, 9, 22, 20, 8, 2, 6, 1]","[1, 1, 0, 1, 1, 1, 0, 0, 1, 2, 0, 0, 2, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0]",0,1,1,0 -https://github.com/npm/abbrev-js,2010-03-09 13:15:25-08:00,a19cb746c0a21cfd00dcac29f4b98c62b3d2956d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/maxbube/mydumper.git,2009-02-20 23:56:21+02:00,b8104ebad02168495864bdf0ef28e5123ad2f533,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,1 -https://github.com/rstudio/httpuv.git,2013-02-26 16:21:06-08:00,846fae24a957cec16ccbac491f41fc7352a71c8e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 15, 14, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 13, 0, 1, 1, 2, 0, 1, 3, 0, 6, 2, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 12, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,2,4,0 -https://github.com/ledgersmb/PGObject-Type-DateTime.git,2013-11-13 00:43:16-08:00,db77cea7b44695efd6fd1edbca4414ad6da209b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/knxd/knxd,2014-11-25 18:06:28+01:00,41f495fd84f81dbfe1354a8b521adba45ac06d43,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 34, 9, 0, 8, 40, 6, 2, 1, 23, 2, 14, 7, 2, 15, 0, 0, 3, 26, 0, 11, 7, 1, 60, 41, 1]","[0, 0, 1, 3, 0, 3, 4, 2, 0, 1, 4, 0, 3, 0, 1, 5, 0, 0, 1, 0, 0, 0, 1, 1, 4, 4, 0]",1,9,19,0 -https://github.com/pypa/pipenv.git,2017-01-19 19:44:22-05:00,be4b70e646e6232834e9f9917fdc1adde2156f47,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[411, 248, 35, 36, 12, 20, 9, 33, 16, 8, 8, 3, 13, 30, 1, 2, 29, 19, 24, 16, 24, 6, 5, 3, 0, 1, 1]","[31, 30, 3, 6, 2, 4, 2, 3, 3, 2, 1, 0, 2, 6, 0, 1, 6, 5, 2, 5, 4, 1, 1, 0, 0, 0, 0]",1,6,48,0 -https://github.com/libsndfile/libsamplerate,2004-01-22 11:16:39+00:00,361a1044c3442b00b92da698bb1cdae6ed8eeb98,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 0, 2, 4, 4, 1, 9, 0, 3, 0, 0, 1, 0, 0, 0, 0, 7, 4, 1, 2, 0, 5, 6, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/sebastianbergmann/php-timer,2010-05-25 13:08:49+02:00,49fb6962c3b82515b918f3d619a1ef6c89176287,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rocky/Perl-Device-Cdio.git,2006-02-08 05:06:05+00:00,fa70782774fa56bd9e2921b218e2f02f5cebc770,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 7, 30, 2, 5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/phpDocumentor/TypeResolver,2015-06-10 21:17:01+02:00,1c9fdcd72471ff91805eb7427a58c6d89416046f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 6, 3, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[5, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,4,0 -https://github.com/ionos-cloud/netconsole,2018-10-30 17:26:51+01:00,d2a2e037a1fb680ebaf353c2a8f2b76fca110ef6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/resque/redis-namespace,2009-10-13 14:48:51-07:00,a8f5e4bec68a5fec1b82c4e3aa844cb6fc17a487,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 3, 0, 0, 3, 0, 0, 1, 5, 0, 3, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/thoughtbot/shoulda-context,2007-03-14 18:12:55+00:00,7a4202f9b8fa77318694864af9d1bcfde4084deb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 13, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 6, 0, 0, 3, 12, 0, 4, 2, 2, 6, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ukui/ukui-settings-daemon,2017-12-12 10:52:40+08:00,e545c66ef3938195eb858ea34ec2b1fab64be9b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 2, 0, 1, 3, 1, 6, 0, 0, 0, 0, 0, 1, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/sddm/sddm.git,2013-01-18 00:46:14+00:00,35e2bf71c50df8c695c3b05a7ff7a8ee19b9c86c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 38, 22, 41, 48, 23, 20, 27, 49, 65, 35, 9, 1, 0, 0, 0, 0, 6, 13, 0, 0, 0, 8, 0, 21, 5, 1]","[0, 1, 3, 1, 1, 0, 0, 1, 6, 5, 1, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 4, 2, 0]",1,2,11,0 -https://github.com/altdesktop/playerctl,2014-04-15 04:31:16-04:00,e97f14603b092a47eed18fb7926afc1c82db41bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 4, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 -https://github.com/mypaint/libmypaint,2009-10-23 21:34:52+02:00,d061f4ae870692445c4fb190c9ca6c64cb05fd41,"[0, 2, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 4, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1 -https://github.com/psi-im/qconf.git,2008-05-30 06:17:35+00:00,cc8132a8d37c68f97201179de9b0befc7389820e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rspatial/raster.git,2018-07-30 19:08:04-07:00,13872842e0c6feaea00103e1fcf391ecc76962cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 14, 6, 2, 0, 9, 9, 7, 46, 10, 9, 0, 4, 1, 0, 0, 0, 1, 0, 10, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 2, 1, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0]",1,4,8,0 -https://github.com/evandelisle/showq.git,2011-04-10 20:13:56+02:00,2449bac834a403efa3f54100f3eee3815c45b9d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://anongit.kde.org/kfourinline.git,2000-06-18 14:00:37+00:00,e3fd91a7bba031d77dc5683929bcd2c6c55e23cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 6, 1, 0, 1, 3, 10, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0 -https://github.com/jmoiron/humanize,2011-10-07 19:49:53-04:00,4267a54777e2ef1c71146d516429c6047a6de983,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mruby-debian/mruby,2012-04-19 02:11:15-07:00,54ad561098ed353ada70205c39b2c42a2a2eb9e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[139, 64, 87, 102, 120, 76, 161, 78, 90, 56, 33, 37, 65, 27, 79, 24, 37, 32, 13, 34, 43, 13, 6, 11, 3, 22, 1]","[35, 19, 17, 23, 22, 15, 36, 7, 20, 18, 5, 14, 15, 9, 18, 6, 9, 10, 4, 5, 14, 4, 1, 2, 1, 6, 0]",2,10,56,0 -https://github.com/mika/jenkins-debian-glue,2011-08-06 13:09:15+02:00,a34610068dbc08745c810ea415fa65f43249555c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 11, 1, 1, 3, 0, 0, 1, 1, 0, 0, 1, 19, 17, 23, 4, 1, 1, 0, 1, 4, 3, 10, 0, 3, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/babelouest/glewlwyd,2016-11-27 17:57:35-05:00,ce40297eec802c346753511992b60cc52bb3af9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 18, 11, 7, 3, 15, 30, 5, 6, 58, 12, 0, 7, 16, 11, 1, 4, 0, 0, 0, 0, 0, 0, 3, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,3,0 -https://github.com/elastic/elasticsearch-ruby,2013-04-30 14:16:06+02:00,e6ae26aabcef0402d463b30e0ebcb062f884d0b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 27, 0, 0, 0, 2, 87, 7, 0, 0, 0, 12, 0, 0, 0, 0, 0, 6, 1, 1, 13, 8, 5, 0, 22, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/lxqt/lxqt-about.git,2015-11-03 11:23:16+01:00,c6eb938c3476e9110665dc468580ee7740322410,"[0, 0, 2, 0, 7, 0, 3, 0, 1, 1, 9, 0, 1, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,3 -https://github.com/hughsie/libxmlb.git,2018-09-18 19:13:06+01:00,513a7fd4006f26ef3fe4c5d9f96e04268d697d35,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 18, 57, 27, 23, 2, 12, 9, 4, 5, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 4, 0, 0, 1, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/jwbargsten/perl-proc-processtable,2012-10-19 05:55:49-07:00,d65b758be29bf5abf80129b52a8ab743ea057a9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 11, 10, 0, 0, 2, 1, 3, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 1, 2, 1, 0, 0]",1,2,4,0 -https://github.com/jhawthorn/fzy,2014-07-11 21:48:29-07:00,a83b047f07d2adcc47555a510104910e526d0ce1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 31, 11, 1, 18, 0, 7, 9, 28, 1, 16, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/greenbone/gvm-libs,2005-11-06 20:06:15+00:00,c5b2c133f7fc3e016511fbf7f851bf8f2580d249,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/frogatto/frogatto.git,2011-06-21 02:50:38-04:00,a66dcc4ecfc1daa8b4f11af99551f92f22b136f9,"[15, 16, 60, 43, 48, 46, 44, 22, 32, 24, 44, 18, 28, 46, 26, 32, 82, 47, 46, 64, 20, 15, 29, 24, 32, 66, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 52, 28, 36, 104, 65, 26, 32, 37, 70, 71, 45, 31, 32, 40, 16, 43, 23, 26, 32, 40, 61, 41, 31, 24, 27, 1]","[2, 4, 2, 1, 10, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0]",4,9,17,0 -https://invent.kde.org/network/smb4k.git,2009-10-31 07:43:37+00:00,d7d2b1b413de843254a21dd42abfd52c529f8ccd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 3, 3, 1, 1, 22, 9, 0, 0, 14, 12, 1, 22, 21, 6, 9, 14, 0, 1, 29, 2, 0, 0, 23, 8, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/uclouvain/openjpeg.git,2005-12-07 21:28:11+00:00,4fb43c8af0ccd4533d83c586a44525bf3b2703d8,"[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1, 3, 8, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ofalk/libdnet,2001-10-11 04:14:42+00:00,43b6ade9980fe2b364f1e4919b6d87d7d12db221,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[81, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/python-cmd2/cmd2.git,2008-05-16 10:40:15-04:00,b55d45b4f2d8d5908368366987b80156ab8317b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 4, 7, 0, 2, 2, 2, 1, 0, 3, 1, 0, 0, 0, 3, 0, 0, 2, 8, 0, 1, 0, 20, 2, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/nichtich/Catmandu-Wikidata.git,2013-12-04 11:09:46+01:00,354799ea8ccdcf276e978bfd31dff1f853a1b1a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/visionmedia/node-fresh.git,2014-09-07 22:39:46-04:00,9e6e67b206e3e29fbf64582f92bdd6ed7a1649cb,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,0 -https://github.com/zmartzone/mod_auth_openidc.git,2014-03-27 20:18:52+01:00,fff2a454fa2b0fe38c90add5d75e450564bd6c79,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 20, 13, 12, 6, 5, 7, 3, 26, 21, 0, 1, 6, 0, 0, 5, 3, 7, 12, 13, 3, 11, 2, 12, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/pyFFTW/pyFFTW,2012-01-26 20:28:54+00:00,7c7044e34af53ce9bb35fac7552081eb4e1646e0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ZerBea/hcxdumptool,2018-02-25 09:18:41+01:00,00b2dad448f31a8f4e70eb1148beab7034cc67f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 1, 12, 46, 21, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, 0, 0]",1,1,5,0 -https://github.com/ShawnDEvans/smbmap.git,2015-04-22 17:10:48-04:00,4e1ca6d94d4ed31e009d940b8c4457cdaa41b5bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[19, 1, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 -https://github.com/fln/gnarwl,2012-09-18 00:42:26-07:00,1f3c6ba92abd963293afbfa19189071276670b49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,1,1,0 -https://github.com/jschaf/pylint-flask,2015-06-27 16:41:46-04:00,3c63a37baf7127a12091ddd21e03793b0a446195,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/dds-bridge/dds.git,2014-11-25 07:50:09-05:00,b2dd7f60e2dc2678ea3db3197f2a08085b9223ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/oetiker/rrdtool-1.x.git,2001-02-25 22:25:02+00:00,37fc663811528ddf3ded4fe236ea26f4f76fa32d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 8, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/axel-download-accelerator/axel.git,2008-01-11 11:57:58+00:00,5a08bb42c630fe722ac118b54d32af288fe06205,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/DanielAdolfsson/ndppd,2011-09-13 21:26:12+02:00,7d84dbeb183fc8ebad431b57346cf2c288e53b74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 2, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 -https://github.com/dhewm/dhewm3.git,2011-11-22 15:28:15-06:00,fb1609f5540e3578b579c5e3476de5613c45d3a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 95, 44, 34, 25, 58, 27, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://gitlab.gnome.org/GNOME/hitori.git,2009-03-02 00:03:36+00:00,7e313950c8c6e82726856fe73abcf7b1da0ca134,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 8, 1, 1, 6, 1, 0, 4, 0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,9,0 -https://github.com/dbr/tvdb_api.git,2020-04-28 19:23:19+09:30,a53f750903906995741a520a59e86a6aac85f727,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 12, 4, 9, 12, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 -https://github.com/tokuhirom/Furl.git,2010-10-15 17:55:24+09:00,81b3c2c45723d5ccec750cd97987a1539437e923,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[125, 276, 89, 5, 3, 17, 7, 4, 2, 9, 0, 0, 2, 0, 3, 2, 2, 4, 8, 5, 0, 0, 0, 0, 0, 0, 0]","[13, 43, 9, 1, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,5,9,0 -https://github.com/ytdl-org/youtube-dl.git,2011-08-05 19:14:13-04:00,6bcd846b5212b41877b80358125b2210432e080d,"[0, 2, 10, 2, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 3, 2, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 14, 9, 20, 48, 5, 9, 2, 2, 11, 0, 2, 5, 10, 15, 12, 8, 3, 2, 0, 5, 5, 2, 0, 0, 0]","[0, 0, 3, 3, 1, 3, 1, 0, 0, 0, 2, 0, 1, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,1,15,0 -https://github.com/mvo5/synaptic,2003-02-02 14:10:39-03:00,f45c3866e88fab6231b2841b7f3944eb5d253ba3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 6, 14, 11, 20, 14, 7, 7, 10, 5, 6, 2, 0, 5, 14, 9, 6, 4, 7, 7, 3, 5, 9, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/marcelm/alignlib.git,2018-11-27 13:31:50+01:00,75fd77f1b212ae02191247c1bfe947dff6c8f823,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/sebastinas/python-libdiscid.git,2013-04-10 18:18:21+02:00,d4baaa820406cc9267292c0dcfb76c25b94c3db8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 1, 3, 0, 3, 0, 0, 0, 0, 0, 0, 26, 11, 0, 0, 0, 0, 6, 0, 0, 0, 17, 0, 0, 3, 4, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]",1,1,2,0 -https://gitlab.com/DavidGriffith/frotz,2000-11-11 04:46:09-08:00,cf94b9e473718dc4981a1a9789a37945cc14d362,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/ge-ne/bibtool.git,2007-02-07 21:26:17+00:00,afd612dc4db0f7da8cc3bf04df007dae618756e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mogaal/sendemail,2010-09-12 12:09:43-04:30,f06d6953a7972d02c24a7764652df3c6c5ed6528,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/drowe67/freedv-gui,2015-08-13 13:07:43+00:00,a362d8ebe7efd9604edf537d7d81af97a8176baa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 11, 5, 9, 42, 30, 35, 16, 20, 20, 12, 2, 11, 2, 2, 5, 1, 48, 19, 22, 22, 13, 13, 29, 15, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 -https://github.com/gnustep/apps-gorm,1999-12-08 15:55:48+00:00,a44ba184470353ae009945c28af5b9282596e4ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 38, 5, 8, 8, 10, 0, 0, 5, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/prometheus/node_exporter,2013-04-18 07:44:52-07:00,051b651fa86e9e7038b8554a93a8248ce1f5f9f6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 -https://github.com/tinfoil/devise-two-factor.git,2014-05-12 11:46:54-07:00,2a66a568cac25cadc9443c7ce09582f077630ce5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 22, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1]","[2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,3,4,0 -https://github.com/pear/Crypt_GPG.git,2011-12-29 02:26:37-04:00,2f91d64139132e3d8c68af283ea69f7453873a07,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/csmith-project/csmith.git,2011-05-03 18:13:31-06:00,25b0a0c290fa55b9560a3b7184179d8f1bda144d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[93, 10, 13, 21, 2, 5, 9, 24, 15, 18, 2, 11, 8, 23, 12, 9, 3, 0, 0, 0, 0, 1, 0, 0, 6, 4, 1]","[1, 0, 1, 3, 0, 1, 0, 2, 3, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",1,3,9,0 -https://github.com/blitzpp/blitz,2016-01-18 18:32:18-10:00,c633a3441d0d838bf5d0749cdb8fd4b0e637cdb4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1821, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,11,0 -https://github.com/porridge/bambam,2014-02-12 20:45:51+00:00,6bab5a984fe9c52f62344fda5b48c6986e287d42,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/connorimes/powercap,2016-06-22 10:30:48-05:00,b7701e4cdd01295f7d1b8ad074788d2d2c313b57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/gildor478/ocaml-fileutils.git,2019-09-14 01:25:34+02:00,0cb8c2e28890fe94d25b47be69896697886c3482,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/bbatsov/powerpack.git,2013-07-12 15:44:22+03:00,65f3a9412e198262d900ec35e21c988cf0e534a2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 9, 12, 14, 12, 14, 5, 1, 2, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 1, 2, 3, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,9,0 -https://gitlab.com/libpipeline/libpipeline.git,2010-10-12 01:13:11+01:00,d7d0b4341cf1f5ce5773f905677bcb196e125afc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 17, 13, 1, 0, 1, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git,2008-07-31 09:43:00+03:00,cc31458b18e8c274641cf124f5bf7ec6fe506dfb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 1, 7, 11, 1, 18, 3, 0, 0, 1, 11, 6, 7, 0, 2, 1, 3, 4, 6, 0, 0, 0, 4, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/pypa/pipx.git,2018-10-07 22:35:38-07:00,c28613389d4e70dd82c85efe2f9d9c054740fc17,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 28, 23, 6, 1, 3, 5, 14, 3, 7, 3, 0, 1, 1, 2, 5, 12, 6, 18, 14, 4, 6, 0, 0, 3, 2, 0]","[0, 4, 2, 1, 0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0]",1,2,16,0 -https://github.com/Blosc/c-blosc,2009-07-22 17:19:25+00:00,718a002761f8137e350ebe9d77c9cecf23f45066,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 5, 1, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/invesalius/invesalius3.git,2009-06-10 17:30:02+00:00,8da812b0a127e1b2e4af912e9bb5ce0332e59850,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 34, 5, 2, 2, 14, 35, 4, 33, 45, 48, 43, 21, 12, 1, 7, 32, 6, 37, 12, 11, 15, 32, 44, 7, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://gitlab.gnome.org/GNOME/atkmm.git,2010-06-23 01:55:10+02:00,34e918d40d39a2db143d851eeb64f6a1d275d246,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 -https://github.com/christophgysin/pasystray.git,2011-10-07 23:54:18+03:00,85e00308c105586dca86c93cf862c06c0d5ef37c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 7, 0, 2, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 0, 0, 0, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/CESNET/libyang,2018-11-09 18:41:15+01:00,70cdc097672cc632be980b3661c1476f4a021b39,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/leamas/ddupdate,2017-12-25 17:50:56+01:00,83dbafcf24f631fc2c7245607f13bc44cd41b8bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 51, 9, 52, 27, 16, 4, 8, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 0]","[1, 2, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 -https://github.com/sebastianbergmann/php-text-template,2009-11-19 12:48:18+01:00,a480a20560937062e15d89e459c0df2c847cc329,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://gitlab.com/drobilla/ganv.git,2011-12-06 21:01:38+00:00,0731f12beaa0cfc0de56dc05ca3814143fd394a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 12, 3, 0, 3, 4, 1, 1, 2, 0, 0, 0, 0, 2, 0, 3, 1, 1, 3, 13, 12, 0, 5, 1, 6, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jupyter/jupyter-sphinx-theme,2011-12-07 09:55:00-05:00,efc9408bcd84cc6156f824e89014f79221af1b2f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0 -https://github.com/ocrmypdf/OCRmyPDF.git,2013-04-09 09:44:46-07:00,7972a156fc441c33cd6ddd60c9ff793fc523c3ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 22, 37, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/andrew-bibb/cmst.git,2014-05-10 14:17:37+00:00,566f7f239ef9a15a5353d1e32d071bd661401ae9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 1, 2, 1, 0, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[2, 4, 9, 15, 2, 8, 3, 13, 14, 19, 2, 4, 4, 4, 0, 2, 0, 0, 0, 0, 4, 6, 4, 16, 12, 12, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,2 -https://github.com/Seldaek/jsonlint,2011-12-13 18:05:01+01:00,44a4df33dd2e3bb370ff50aeb12621a8f1a77cfa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/geopython/stetl.git,2012-08-28 11:29:43+02:00,3e6f0e8416f6d5961377a438c0d4972b26d43e5c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 2, 0, 1, 3, 7, 0, 0, 2, 4, 3, 0, 0, 0, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 -https://github.com/gkz/type-check.git,2013-09-29 11:32:18-07:00,2011e3c2ee9b669a653e39eaa0dde012d300a1b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/ossimlabs/ossim.git,2015-09-02 16:20:52-04:00,e4d3c664cca5261541dc7f058424cef8c5c20bcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 32, 13, 19, 26, 0, 16, 15, 11, 21, 3, 12, 14, 70, 22, 32, 0, 19, 32, 27, 22, 20, 20, 13, 27, 26, 1]","[2, 5, 1, 2, 2, 0, 2, 0, 2, 5, 0, 0, 1, 4, 4, 3, 0, 2, 5, 3, 2, 1, 4, 3, 4, 8, 0]",2,5,7,0 -https://gitlab.gnome.org/GNOME/libmediaart.git,2013-08-13 07:28:43-07:00,c041d3813ff04d45677463a39d4f9e206be5676b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 7, 62, 0, 0, 0, 4, 6, 1, 12, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13, 0]","[1, 2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,15,0 -https://github.com/mikeboers/PyMemoize,2010-09-17 06:39:39-04:00,64e3d6db904a1e2798e5d169a41b22ac97b587e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/canonical/lightdm.git,2010-04-29 21:08:26+10:00,9e8fcfa450e52155dd5f664f954ebb2ec3e39768,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 3, 0, 0, 1, 0, 18, 18, 25, 3, 22, 36, 13, 36, 0, 9, 14, 2, 0, 3, 0, 0, 0, 0, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 -https://github.com/jekyll/jekyll-watch,2014-06-26 18:45:47-04:00,575ea9e326e2e0da366dde3b6fb16d8c5ce6faa6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 21, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0]",1,2,1,0 -https://github.com/Kitware/KWStyle,2003-04-11 13:36:16-04:00,5b1cf3594a205fd22a4e76daf0a6363e68e41e9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/residuum/PuRestJson.git,2011-08-23 23:44:38+02:00,965b9df46b58e0fafce1cf43aeaae579a993c158,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 8, 11, 10, 1, 1, 5, 1, 0, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 25, 9, 6, 0, 0]","[0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,1,0 -https://github.com/hynek/argon2-cffi,2015-12-07 17:14:57+01:00,2132ab8c3d2facc97d96c2668e1bf43c3ac666ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 27, 16, 4, 1, 1, 2, 5, 0, 0, 3, 1, 0, 0, 1, 0, 2, 1, 2, 8, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/ros/urdfdom_headers,2012-06-22 14:35:26-07:00,6ddbe9c36cd0cab527f5a77e1f73f0d0f00f2068,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/zmartzone/cjose.git,2016-03-14 15:38:19-06:00,230b6070aef5f64f396f90a74eb8f1165b3cd1f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 3, 0, 0, 7, 0, 3, 2, 0, 0, 1, 0, 0, 0, 9, 17, 11, 10, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 -https://github.com/slgobinath/SafeEyes.git,2017-10-23 20:27:43-04:00,ada0834ddf7106ef88bd842b16352570b0aa1bcd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/chrys87/simple-orca-plugin-system.git,2016-01-05 20:35:41+01:00,12b4c8437580257d967f2d7b20809f62f9b0e6c2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[108, 4, 29, 9, 0, 1, 0, 0, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0]","[10, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 -https://github.com/ros/robot_state_publisher,2017-03-22 13:59:01-07:00,4988ec4dbf413c6ec2518991d96254f4869ed954,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/akopytov/sysbench.git,2006-01-20 16:13:23+00:00,d224c6368ab20de3a87f5c9341ceeb5fb48730ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 8, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/savonet/ocaml-ffmpeg.git,2012-10-12 02:10:24-07:00,7b3dfe212d56d651c47045813f2d1b5d98ae499d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/jlmelville/uwot.git,2018-06-12 07:34:53-07:00,291d4c26e93a795692e3c2e02d30ee90ed90d412,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[52, 22, 54, 4, 5, 4, 5, 57, 6, 3, 1, 1, 0, 0, 13, 1, 1, 8, 10, 5, 2, 2, 1, 17, 5, 41, 1]","[0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0]",1,2,2,0 -https://github.com/jhnc/findimagedupes.git,2006-09-20 12:45:30+01:00,0534ec6a782b40d145695d3f23f49acbe31f5039,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/myriadrf/gr-limesdr.git,2018-04-24 12:37:35+03:00,a0bf587bd99f90a97686f7cfd288db98e5ddfdef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 -https://github.com/dvehrs/podget.git,2015-11-09 15:58:35-07:00,37bc6bf9d1235f92157b9b3451aa71c742097b28,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 11, 3, 4, 0, 0, 0, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/deiv/driftnet,2012-06-14 20:35:05+02:00,1357cd4ec4f89fa180cf1e2637c8ab165d8a4a9c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/tduehr/omniauth-cas3,2011-12-14 16:14:25-05:00,1297194de6e78bee57a9defc0b37558b880a2a3c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 2, 0, 5, 7, 0, 2, 4, 4, 0, 0, 5, 0, 0, 1, 0, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/phar-io/manifest.git,2016-11-24 17:35:20+01:00,8f8de1f8c5920b1148d620f69a4e6bde58f86fa4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/maxmind/libmaxminddb,2012-12-31 15:21:11+01:00,48321c4d84e874dc0c1b406129a5baa55cab7d11,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 31, 32, 9, 20, 0, 0, 0, 18, 12, 22, 2, 1, 0, 0, 0, 0, 6, 0, 0, 0, 1, 0, 27, 24, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/cespare/reflex.git,2013-05-20 19:09:33-07:00,6f5967b16b63439e3ebb4a36e2ddcc9cec9ea52e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/flareteam/flare-engine,2011-06-03 22:02:11-05:00,2866148a6da4e8d9c309423a843de005a27847fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 34, 30, 21, 31, 23, 24, 15, 9, 0, 0, 2, 0, 0, 0, 5, 1, 0, 2, 0, 11, 12, 18, 7, 83, 14, 1]","[10, 13, 6, 4, 9, 5, 11, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 6, 2, 21, 6, 1]",1,8,15,0 -https://github.com/savonet/ocaml-alsa.git,2008-10-15 17:30:33+00:00,8494698bf376381803458e369cf3e37144384b10,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 -https://github.com/jonschlinkert/global-modules,2015-03-06 08:15:23-05:00,9cf00ecb75c1da4f0f89bb79e51f9601ca87ef89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/danfruehauf/NetworkManager-ssh,2013-02-04 12:18:42+11:00,1984e3d762b40e0412cbb01464f55a4f48562f15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 18, 28, 12, 4, 1, 6, 14, 3, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 7, 13, 6, 3, 2, 0, 5, 0]","[1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0]",1,1,1,0 -https://github.com/sstrigler/JSJaC.git,2004-10-08 16:45:37+00:00,73bcbae2dc8988cd63653b42fbb8ca605083c1d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 13, 2, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 2, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/EasyScreenCast/EasyScreenCast.git,2013-06-29 12:59:07+02:00,e134b23c9d59842497727f0f41facd5f1a23112f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/edicl/hunchentoot,2008-05-26 14:22:29+00:00,a07b44baed0220868d52c84ebf8f770de0aee5dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 3, 0, 10, 0, 3, 1, 1, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/rails/sass-rails,2011-05-25 06:36:16-07:00,2e793da2132b7735bdddf9e0f18da5b90b47c567,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 2, 1, 2, 7, 7, 2, 0, 9, 9, 0, 11, 8, 4, 0, 9, 12, 6, 6, 0, 6, 0, 0, 1, 1, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 5, 1, 0, 0, 1, 0, 0, 3, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0]",2,4,16,0 -https://github.com/chartjs/Chart.js.git,2014-07-02 21:39:44+01:00,95844701bd235a42dd99180a6543e0166f5d8d70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0]","[12, 3, 2, 9, 4, 0, 6, 1, 0, 2, 3, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 14, 1]","[0, 0, 1, 5, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]",2,3,10,0 -https://github.com/WorkflowConversion/CTDConverter,2014-02-18 02:42:10-08:00,dae594c8218243f98593eba242253656aeb796ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 7, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/einaros/tinycolor.git,2011-12-10 13:21:55+01:00,5d9435151e62c6544d83c6031c6434f8908e61cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/viraptor/arpy.git,2013-06-30 22:10:07+01:00,e936d0423488dad54367f480d04c700d8c064d9f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 7, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,0,1,1 -https://framagit.org/simgrid/simgrid.git,2004-01-27 19:53:06+00:00,ff021a73f0cd26b2f27ca729783aa486393f9b3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 8, 5, 0, 11, 11, 0, 0, 0, 0, 20, 1, 5, 2, 0, 0, 0, 0, 7, 11, 35, 3, 44, 89, 20, 51, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/xaicron/p5-JSON-WebToken.git,2012-06-26 22:28:10+09:00,0f94f8fd796998513989b9b550aad2f3ad8f5f84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jonathanhogg/usepackage.git,1995-10-06 16:06:58+00:00,75b86134cfbd88d44789655fe0506a33225cb89a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 10, 10, 0, 0, 0, 1, 3, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 5, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 1, 0, 6, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/jnunemaker/flipper,2012-07-22 12:39:38-07:00,8257cc68a9a2ff6fb6b3ae6c497b15309c4d0d7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 64, 24, 0, 0, 0, 0, 38, 3, 0, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0, 3, 48, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",2,1,3,0 -https://github.com/Storyyeller/enjarify,2015-06-04 12:13:55-07:00,02c417d33da3c237ecf65afe84d4fb0c6f1b4286,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 2, 3, 0, 2, 3, 4, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,1,3,0 -https://github.com/pgbackrest/pgbackrest,2013-11-11 13:08:39-08:00,4a562eb55a691c0658b2f148703afacb38587b0d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 7, 2, 10, 15, 4, 0, 5, 20, 3, 8, 18, 19, 51, 14, 5, 12, 0, 0, 8, 8, 3, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0]",2,1,3,0 -https://anongit.kde.org/knavalbattle.git,2000-11-05 00:12:44+00:00,5ccdbce22406fbef0aace58d1ee4c4d8631ba003,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 39, 42, 5, 7, 5, 5, 14, 3, 0, 0, 4, 0, 6, 3, 7, 5, 0, 36, 14, 32, 2, 22, 23, 7, 22, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,15,0 -https://github.com/horde/mnemo.git,2010-04-07 09:51:45+02:00,ea2a9fb25f188f7ba1360757d6e48858db41b435,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 1, 1, 2, 16, 3, 1, 2, 0, 0, 5, 1, 2, 4, 2, 6, 0, 4, 9, 6, 4, 4, 0, 3, 7, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 -https://github.com/Electrostatics/apbs,2014-01-02 08:58:28-08:00,c86065cd47918595643d7971f79e6b8297c45c2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 2, 6, 2, 0, 0, 0, 0, 0, 0, 6, 3, 3, 0, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 -https://github.com/Yelp/py_zipkin,2016-08-04 10:58:27-07:00,db49ea751cbf763a51f53175357bed7ab5a9e96d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 3, 15, 7, 0, 8, 3, 10, 5, 3, 4, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 2, 0, 2, 1, 3, 2, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]",1,2,9,0 -https://github.com/mapbox/mapnik-vector-tile.git,2013-04-12 20:19:13-07:00,2ae215acc3757d9d96d569a565800155d64668b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 2, 2, 3, 0, 0, 2, 8, 0, 0, 2, 5, 9, 7, 1, 0, 0, 2, 0, 0, 0, 4, 2, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,2,5,0 -https://github.com/lxqt/compton-conf.git,2013-11-08 17:43:56+08:00,012d32679b613047cd8882454cf9cb2b48f604ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/TooTallNate/node-bindings,2012-01-28 12:24:24-08:00,0becd8255f46985d677695a24feb55d6db438451,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 10, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/chef/ffi-yajl.git,2013-10-23 21:37:05-07:00,872073ee055ff8e72251e6483a7c4d7c1558013e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 86, 25, 0, 19, 12, 33, 11, 9, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/01org/isa-l.git,2016-02-24 14:54:34-07:00,00c1efc109512678cb9536245032d995215e40d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/stompgem/stomp.git,2005-10-14 18:52:08+00:00,6991b0a97dcb607ec8e83d7301cd91d771cc5cef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 -https://github.com/ebiggers/libdeflate.git,2014-12-27 23:11:49-06:00,6a982b7ac73f52be4832b18cc159c5405ab94a80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/diyan/pywinrm.git,2012-07-06 08:25:55-07:00,f2479292f3a8e9fc00ffb871f8d1925e3e1a636c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0 -https://github.com/borntyping/python-colorlog.git,2012-09-05 18:57:08+01:00,430a6143b84fa18e3dd8ff29ff8aa1e164f35fc3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 -https://github.com/libpd/abl_link.git,2016-11-04 09:58:28+01:00,6e4f4284e395321be95b558a2803afe3b0214a2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 28, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,3,0 -https://github.com/digitalbazaar/rdf-canonize.git,2016-02-15 15:04:58-05:00,4bf24349b901769d0e568af656ceb69aee9616f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/jaspernbrouwer/powerline-gitstatus.git,2015-01-29 21:13:57+01:00,5e88a900727c588fb4b5be2e1e2584ce55a00056,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/mnooner256/pyqrcode.git,2013-06-07 11:37:36-05:00,7c6340807ca02f6aa5f4e8d6a68c7318208f5fbb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/aquynh/capstone,2013-11-26 18:32:11-08:00,0c91f8f0e7c0ed1f1b97911d52fa5504af5c60df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[150, 69, 63, 58, 37, 68, 62, 56, 37, 11, 7, 14, 73, 61, 63, 16, 47, 69, 5, 50, 10, 32, 23, 74, 53, 34, 1]","[16, 7, 6, 6, 2, 4, 3, 2, 6, 1, 0, 3, 4, 3, 7, 5, 1, 4, 0, 5, 0, 1, 5, 7, 8, 3, 0]",1,4,20,0 -https://github.com/un33k/python-slugify,2012-10-14 18:44:50-07:00,be60050791262776db3c59ff6c4bf7da7c2a1b43,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 -https://github.com/swaywm/wlroots,2017-04-25 11:32:52-04:00,52e6ed54cbaf05cd1829099e04427d1706ca0da4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 12, 13, 0, 0, 21, 31, 25, 45, 10, 11, 11, 4, 6, 39, 138, 72, 52, 26, 22, 19, 61, 155, 144, 55, 79, 1]","[0, 0, 4, 0, 0, 3, 2, 4, 6, 1, 1, 2, 2, 3, 5, 27, 20, 4, 5, 6, 1, 10, 24, 36, 13, 30, 0]",1,6,18,0 -https://github.com/Talinx/jp2a,2006-06-23 11:07:55+00:00,40e1edcdc36c0347cbef7091d41860c127ce7d47,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 0, 139, 100, 64, 32, 0, 11, 0, 12, 5, 1, 6, 11, 3, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/davesteele/aioprocessing,2014-07-28 19:51:59-04:00,79eceb06286d2a800e9cfa49c017ba7a7df4b40b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 6, 13, 8, 0, 11, 20, 7, 1, 6, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 -https://gitlab.gnome.org/GNOME/gnome-chess.git,2006-10-28 16:37:30+00:00,3ab0fee0434bce55452e70c5d73ef713e0de214c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 4, 3, 7, 8, 7, 5, 6, 15, 5, 2, 3, 6, 1, 4, 0, 0, 0, 6, 4, 1, 0, 1, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 -https://github.com/cloudpipe/cloudpickle,2015-04-13 12:33:00-04:00,7e3123747f3817552845fa3b59f4db987eac1cba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[83, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 1, 0, 0, 0, 0, 0, 1]","[24, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,4,6,0 -https://github.com/puppetlabs/puppetlabs-mysql,2011-05-31 20:47:19-07:00,344d644d5c92c69fa53d448ded087dc32b3cc3e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 12, 10, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 1]","[1, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0]",1,3,8,0 -https://github.com/MatMoul/g810-led.git,2016-06-12 22:16:07+02:00,fdc8220e70db692a40ae0fb5452bbed779ccef78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 3, 7, 1, 0, 15, 8, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 2, 0]",1,2,7,0 -https://github.com/UbuntuBudgie/budgie-indicator-applet,2016-10-29 13:40:37+01:00,caf95a9e6f84ddd426208d7ad275e1ce124c156e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 17, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 -https://github.com/mhekkel/libzeep.git,2008-11-21 14:52:04+00:00,5fd2b004a10ad1def71c3cb6acfdaca1062afa6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 -https://github.com/rvagg/node-errno,2012-04-30 14:10:12+10:00,399d0cacbdab29ea54fcf19239a4301cd7b24fbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 -https://github.com/fossfreedom/alternative-toolbar,2014-12-22 23:19:52+00:00,267c6eb020e60f303b30d333612b4ccf5b6182cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 5, 9, 4, 0, 2, 0, 2, 2, 0, 3, 7, 7, 19, 8, 20, 20, 12, 28, 11, 20, 11, 3, 1, 0, 1]","[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 1, 1, 1, 0, 0, 0, 0]",2,2,2,0 -https://github.com/awesomeWM/awesome.git,2007-09-05 20:15:00+02:00,f7173bd79df77a155444663a262dfc5b0f9f0f42,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[87, 119, 35, 72, 41, 76, 16, 51, 1, 96, 28, 16, 6, 8, 99, 28, 127, 132, 42, 129, 93, 35, 43, 0, 14, 16, 1]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,22,0 +"upstream_vcs_link","event_date","event_hash","before_all_ct","before_mrg_ct","after_all_ct","after_mrg_ct","before_auth_new","after_commit_new","after_auth_new","before_commit_new","age_of_project" +"https://github.com/enova/pg_fact_loader.git",2018-11-09 18:27:54,"e165e58d8bbe2f65f85a501c904d03cffd223fe4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 9, 2, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 3, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,1795.1245717593 +"https://github.com/spyder-ide/spyder-unittest.git",2013-10-28 23:09:55,"df9358f7beb6c5a9fc6cd112b2d9a229311ebbf5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3668.9764467593 +"https://github.com/frescobaldi/python-poppler-qt5",2015-02-21 22:48:21,"52fdb5040a056b68417253a691e9de1679a8e9de","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3161.7950231482 +"https://github.com/pylast/pylast",2009-08-31 04:18:37,"d61fbb3a04620f1e96882a7ba492e6794f1705a7","[0, 3, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 3, 0, 0, 2, 0, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 0, 1, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5565.5985532407 +"https://github.com/Leaflet/Leaflet.markercluster",2012-07-11 01:54:39,"b500f4c6cc94dd4dd73c194e1fba8090c52d9eaa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 70, 32, 16, 18, 9, 10, 13, 29, 12, 12, 4, 0, 13, 10, 0, 4, 5, 0, 2, 3, 6, 0, 2, 1, 6, 1]","[1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,7,0,3967.8092708333 +"https://gitlab.com/sfcgal/SFCGAL",2012-06-11 12:00:23,"f6a4db94d3d968fa695ab1f570eaff452aadbd71","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 5, 5, 7, 23, 11, 5, 0, 1, 9, 6, 14, 5, 11, 0, 0, 3, 31, 0, 0, 0, 0, 0, 3, 0, 5, 0]","[7, 1, 0, 1, 3, 0, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,3,2,0,4204.1506481482 +"https://github.com/irssi/irssi.git",1999-09-03 14:27:29,"770ae4596d3e826c63e8c9fa441d65bd0889f03c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 6, 3, 2, 8, 9, 15, 2, 7, 4, 1, 9, 10, 1, 0, 5, 1, 0, 2, 7, 3, 2, 0, 1, 10, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,5749.0144675926 +"https://github.com/zamaudio/zam-plugins.git",2014-04-10 16:26:30,"d037de78e5454474037e2d12a298cff19b177a90","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[66, 43, 38, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 20, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 13, 17, 1]","[7, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,2,0,0,3495.4258564815 +"https://gitlab.gnome.org/GNOME/mutter.git",2001-06-02 04:14:18,"e47c4d16a27aae7c3b8831b9855f25a9dfb8473f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 17, 11, 12, 7, 6, 0, 7, 6, 8, 1, 15, 8, 3, 10, 12, 0, 1, 10, 9, 7, 6, 0, 0, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0,5786.8776157407 +"https://github.com/debian-tex/dvisvgm",2019-07-25 13:23:39,"f8d8b2638dd514f744331dff148c0cb9df1d92e6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1541.3238194445 +"https://github.com/splattael/minitest-around",2012-09-28 12:43:51,"7447a8ad03c4a7a3ee7b08e714b9fdd60576066b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",0,1,2,0,2552.4467708333 +"https://github.com/BYVoid/OpenCC",2010-06-07 14:46:34,"919010fbb637c2bcc36a7e22cf291a8777b64518","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3838.8327430556 +"https://gitlab.dune-project.org/staging/dune-functions",2013-08-20 08:24:16,"c2282bb2862c98e51fbeddc553b92acf54d6d425","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,5,0,3750.5943518519 +"https://gitlab.com/o9000/tint2",2008-10-02 18:47:02,"420dd5d1e21d255cf20df36ecc911c976e628d1c","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 4, 0, 3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 3, 4, 3, 1, 3, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5016.1640162037 +"https://github.com/isaacs/isexe",2016-01-17 05:24:07,"96b54f38c4a8f8008e017f7e85f1d78867916065","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2832.2716319445 +"https://github.com/HOST-Oman/libraqm.git",2015-12-01 15:21:29,"c62ed8f02b0a93a9dd03f0d26b1eabf5d18d103e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 31, 43, 2, 14, 12, 66, 6, 4, 5, 4, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,11,0,2871.0404513889 +"https://github.com/eonpatapon/mpDris2.git",2011-06-10 07:01:00,"c8a764a006d5c9462879e7cff86ecd90cd8d5c19","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 0, 0, 1, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0]",1,1,2,0,4512.1038657407 +"https://github.com/Kyorai/cuttlefish.git",2013-07-11 16:27:15,"b43aa2d590727f6e7a0e2a330758161b296760f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 18, 5, 11, 16, 21, 7, 17, 2, 3, 2, 14, 9, 3, 1, 3, 31, 33, 19, 4, 24, 7, 4, 1, 11, 1]","[1, 0, 0, 0, 0, 1, 3, 0, 3, 1, 1, 1, 6, 2, 1, 1, 1, 8, 8, 2, 1, 4, 2, 2, 0, 5, 0]",1,6,8,0,3504.2075115741 +"https://github.com/pazz/alot",2011-05-18 09:17:07,"97e147ccf964e992a3074964f2d344f0e8ac798a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 49, 19, 11, 20, 12, 21, 33, 35, 13, 32, 42, 57, 49, 27, 7, 17, 14, 32, 37, 29, 53, 61, 15, 38, 33, 1]","[7, 1, 3, 0, 1, 0, 2, 2, 0, 2, 2, 0, 8, 12, 3, 0, 2, 0, 9, 8, 6, 3, 3, 2, 3, 2, 0]",2,4,7,0,4591.0241550926 +"https://gitlab.freedesktop.org/gstreamer/orc",2009-03-17 22:30:47,"8fc611c325b8d67bf88bebb5fa848bc38c19c959","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 16, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 20, 18, 1, 2, 13, 2, 5, 4, 15, 11, 2, 0, 0, 33, 7, 14, 4, 5, 4, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5664.9577546296 +"https://github.com/dharple/detox",2017-02-23 04:42:18,"12cc144e42f9428783cc9d3d44be30d9c8b1ea6c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2472.5849305556 +"https://github.com/intel/media-driver.git",2017-11-30 07:44:57,"a19f26ff91f3f1dbc74f9045d55dc006f1034352","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 3, 7, 24, 48, 49, 45, 24, 35, 21, 0, 7, 37, 21, 26, 14, 36, 39, 26, 32, 17, 14, 26, 20, 24, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,102,0,2204.0229513889 +"https://github.com/gnome-terminator/terminator",2006-11-17 04:16:58,"7bfd5ae9f7f9303060c3376cd90728add594679d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5766.056412037 +"https://gitlab.gnome.org/GNOME/grilo-plugins",2009-12-14 10:52:18,"2cd04f49f4a9c56daaf9127fd737116115fbf513","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 197, 45, 11, 16, 20, 0, 0, 0, 0, 3, 31, 1, 0, 0, 0, 0, 5, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,5111.7957060185 +"https://gitlab.com/pdftk-java/pdftk.git",2017-12-30 07:16:41,"bf02d471515659846f34852032e7ce1d78eb7824","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 2, 16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 3, 0, 1, 0, 0, 1, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,3,0,2124.7854513889 +"https://github.com/varietywalls/variety.git",2018-03-10 18:57:09,"585cd4efe2fd7b7727db59dcd22d01ddba46d29b","[2, 7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 2, 0, 11, 4, 0, 9, 5, 3, 3, 0, 0, 1, 0, 0, 0, 2, 13, 21, 0, 23, 44, 3, 2, 4, 1]","[0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 5, 0, 1, 0, 0]",1,2,5,0,4151.289224537 +"https://github.com/thlorenz/combine-source-map.git",2013-03-16 00:58:19,"f31a1a120ca602a046a1e3ed90a457da7fb4f6f5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,1465.4289583333 +"https://github.com/sumoheavy/jira-ruby",2011-12-07 10:23:21,"892980757ab222d3b1304b17c2ecf97ff6f8c640","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 22, 0, 0, 46, 20, 1, 2, 0, 0, 4, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0,4065.4467013889 +"https://github.com/lmanul/gimp-texturize.git",2011-04-20 12:18:40,"5f6eee550f75f4db3cf2b19662d8765d75ab1e65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3625.7350810185 +"https://github.com/rubys/nokogumbo",2013-08-17 22:08:40,"bfab73aaf6d8e591c36c1ffde900a0600788fc7d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 17, 8, 4, 2, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3061.6749537037 +"https://gitlab.gnome.org/GNOME/gnome-calendar.git",2012-04-26 03:56:34,"07b6ee8887c40adce3757119df75cb850b697b8e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 7, 8, 3, 16, 1, 0, 0, 0, 21, 17, 5, 4, 0, 0, 0, 14, 42, 4, 2, 1, 3, 5, 11, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0,4242.462962963 +"https://github.com/smarty-php/smarty.git",2014-10-30 23:42:46,"f433b70cf14c3bc1bedf1f1c04f93aa4fc70c104","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 15, 0, 1, 0, 5, 3, 0, 23, 27, 1, 6, 0, 0, 9, 3, 0, 1, 2, 10, 3, 3, 1, 0, 2, 2, 1]","[24, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0,3318.9346180556 +"https://github.com/ukui/peony-extensions",2017-10-17 09:45:54,"dd4795e2e5a54c5be4beed8a2b0dd372d002ced3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,1664.9383333333 +"https://github.com/JDimproved/JDim.git",2006-05-31 15:28:39,"ad1b13b5645cabbc344737c7393678af6eb1e25b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 9, 10, 9, 19, 17, 17, 15, 3, 0, 25, 13, 12, 25, 27, 9, 4, 31, 22, 8, 21, 25, 7, 29, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5782.9914467593 +"https://github.com/deckar01/task_list.git",2013-03-18 21:39:54,"8d783f8189caffd4083bf635478a1f9ff1317bfb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 4, 0, 0, 10, 29, 7, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3500.9144675926 +"https://github.com/jamesturk/jellyfish",2010-07-13 20:15:08,"d15631cebbd601f509d108fb9f2ac3a56fcb93d3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4902.3308101852 +"https://github.com/astro/node-expat",2010-05-22 13:26:33,"18227be4c7947c2687d0e5a4260a460476aba6b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 9, 8, 0, 0, 0, 6, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4931.3002893519 +"https://github.com/manisandro/qtspell.git",2014-09-03 21:44:33,"9dc558c6377c80a7d070935a9774f4ba0d53f14f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 3, 0, 0, 0, 0, 0, 0, 5, 8, 2, 8, 4, 0, 7, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2705.0642476852 +"https://github.com/Teemu/pytest-sugar.git",2013-04-07 19:23:02,"7dc26ebf51b41d66e149aa7f7d00fb8559658677","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3774.5057060185 +"https://github.com/raszi/node-tmp.git",2011-09-02 12:26:18,"5de36ea986ee8fe47f3f47d372f01b586eb8381a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4359.0872685185 +"https://github.com/the-tcpdump-group/tcpslice",2000-06-11 17:21:46,"ffac277bf41946a1d985afae7fe2535d7a28546f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1218.7178356482 +"https://github.com/FedoraQt/adwaita-qt.git",2014-07-04 15:08:44,"9163607dbf73c49bbe93d81b413374a72d63708a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 0, 0, 0, 0, 1, 4, 0, 4, 2, 3, 1, 1, 3, 8, 2, 14, 9, 1, 5, 17, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3324.8509953704 +"https://github.com/astanin/python-tabulate.git",2013-03-08 15:15:04,"e6346abc3b7529c8077b2b331ad20b6effb765ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 3, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0,3791.7183796296 +"https://github.com/nodejs/node-gyp.git",2012-02-03 21:17:28,"7ea13975871dc3aa32f6a1872affea37ec0d82d3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[115, 35, 4, 35, 29, 19, 15, 12, 24, 14, 3, 0, 0, 3, 7, 0, 4, 29, 14, 7, 11, 3, 19, 7, 5, 5, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,13,0,4297.5489699074 +"https://github.com/pytroll/pyorbital.git",2011-09-12 05:20:28,"8d94656fa146c32fa1431a5d4c82aae5f5578431","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 5, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4467.5734606482 +"https://github.com/attr-encrypted/attr_encrypted.git",2009-01-08 05:01:59,"9055be700f2579f74bc8d360dc75f414748b080d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5251.6153935185 +"https://github.com/theZiz/aha.git",2012-05-08 11:48:07,"79e3f97f07524a501de1743e75fc91eae680631e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,3422.3746180556 +"https://github.com/ceres-solver/ceres-solver.git",2012-05-01 06:09:08,"8ebb0730388045570f22b89fe8672c860cd2ad1b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 24, 2, 2, 6, 12, 12, 11, 0, 0, 5, 10, 2, 3, 18, 36, 15, 12, 12, 6, 7, 7, 8, 7, 2, 0, 1]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,6,0,4197.5254166667 +"https://codeberg.org/toddy/medicalterms",2005-05-07 21:52:07,"f830b3dbcd6b8079796eff03961aef06c0f1f5ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 3, 5, 10, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 2, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5666.9141550926 +"https://github.com/jnwatson/py-lmdb",2013-02-04 19:09:14,"5a309dc17ca4aff0c660dce37ab43581bf3b2a0b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 6, 85, 24, 24, 39, 2, 0, 0, 0, 2, 0, 0, 2, 0, 2, 27, 24, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,0,0,3712.4741898148 +"https://github.com/prometheus/pushgateway",2014-01-27 13:18:03,"60e09a4a90a48e0e4804385431c8505ed730a017","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 10, 10, 0, 0, 0, 9, 2, 5, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0]",1,3,6,0,3606.187337963 +"https://github.com/atig/atig",2010-02-25 23:12:58,"b34b307cd217b630d62ac27336da0c4f8f8f3387","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[110, 22, 39, 82, 13, 18, 48, 61, 3, 0, 0, 0, 0, 1, 9, 2, 9, 9, 8, 5, 8, 3, 0, 0, 0, 1, 1]","[2, 0, 2, 1, 2, 0, 6, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4572.5188078704 +"https://github.com/udo-stenzel/anfo",2009-01-16 16:14:21,"f837b71bf9fad86fa3447658dd517cd87377b251","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 5, 0, 1, 3, 9, 0, 4, 2, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 8, 4, 5, 1, 0, 4, 7, 15, 1, 6, 2, 9, 17, 4, 2, 5, 1, 0, 4, 7, 1, 2, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2083.7738310185 +"https://github.com/manisandro/gImageReader",2013-04-21 00:17:14,"f8f781f142da676b9756eeb4ba11135d989cfdba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 26, 30, 9, 12, 6, 6, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3878.6116319445 +"https://github.com/google/python-gflags.git",2010-01-05 02:49:37,"aa789bce7ca3b1ac68e9d27bc526c180206d22b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2858.4975 +"https://github.com/ncoders/redmine_local_avatars",2012-10-28 22:28:32,"7492f1805cfc2f3ad7034f55ef647dd8cf1725a5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3991.5587615741 +"https://github.com/Genymobile/scrcpy",2017-12-12 15:00:49,"9d141a7f50a0e81e1df751694f240b9ceac4f9f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 2, 0, 9, 14, 37, 48, 31, 0, 19, 44, 15, 27, 7, 5, 3, 0, 0, 0, 1, 0, 21, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,10,0,2194.2825462963 +"https://github.com/jendrikseipp/vulture.git",2012-03-16 23:46:18,"4b085860cfabe968ecb809866094bf293b5eed44","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4281.7359490741 +"https://github.com/baruch/diskscan.git",2013-09-19 20:54:55,"72981ec531e46ede670485676d0c315dadccbb8f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 14, 22, 25, 9, 1, 1, 4, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,1436.448587963 +"https://gitlab.gnome.org/GNOME/gupnp.git",2006-05-26 10:48:21,"19845518d23c03c0313f5637d6926f8501b5bf01","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 7, 12, 0, 7, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5782.8332523148 +"https://github.com/gabime/spdlog",2014-11-01 01:32:23,"214b938858d58ccf7506530097e659690d430113","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[58, 11, 25, 48, 48, 83, 20, 60, 3, 6, 20, 2, 16, 0, 6, 5, 2, 0, 5, 1, 8, 0, 24, 14, 0, 5, 1]","[5, 4, 2, 5, 3, 7, 2, 7, 1, 1, 3, 1, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 2, 0, 1, 1]",1,5,16,0,3288.9864467593 +"https://github.com/mwild1/luadbi",2009-02-17 00:23:00,"23cdfd9cc8fb07fea8a8da0e8a4d51ff53de2d88","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2870.1189699074 +"https://github.com/lwe/entypo-rails",2012-11-24 09:57:00,"e14966a57edcda2669928c084a186fa445c54d15","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,1757.4358333333 +"https://github.com/httplib2/httplib2.git",2006-02-07 05:34:14,"2d66d4f74f67dc9a49d6cf80bac4a289718422f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 3, 2, 1, 2, 5, 0, 0, 4, 2, 1, 0, 2, 0, 0, 1, 1, 0, 9, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5422.7818402778 +"https://github.com/boundary/bear.git",2012-03-30 22:22:30,"eb22734b85f857900bffd3a856626629c0f15019","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,2,0,985.0124652778 +"https://github.com/garbas/vim-snipmate.git",2009-02-16 15:30:11,"2a9c9acd97399a0c161d7577c32ddf41d1358ddf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 20, 8, 5, 15, 24, 9, 10, 4, 2, 5, 5, 6, 1, 0, 3, 3, 0, 3, 0, 9, 1, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,5137.2848263889 +"https://github.com/urllib3/urllib3",2009-12-11 05:33:08,"c73bf7c7ba0051cd3e52f2d4760322f62800a736","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5113.9802083333 +"https://github.com/KDAB/hotspot.git",2016-12-20 17:50:04,"38f53f620b773d137961e00480ea79dab50a0e9d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 5, 2, 9, 33, 6, 8, 10, 25, 6, 10, 10, 8, 28, 12, 6, 4, 2, 12, 4, 0, 0, 17, 0, 1, 1]","[0, 0, 0, 1, 1, 2, 0, 1, 1, 0, 2, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,5,0,2548.0331481482 +"https://github.com/osmcode/osmium-tool.git",2013-11-27 13:48:29,"159a1000267a88befa34cec8b72d7f64438282ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3639.05375 +"https://github.com/gazebosim/gz-transport",2014-04-08 07:51:03,"22c42b1dfd834366ac20f74e0159c1461416186d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 32, 21, 27, 11, 18, 7, 53, 50, 30, 41, 25, 3, 2, 0, 4, 2, 29, 3, 0, 2, 21, 12, 30, 27, 1]","[0, 0, 1, 0, 2, 1, 0, 0, 0, 3, 5, 1, 5, 0, 0, 0, 0, 1, 3, 1, 0, 2, 7, 1, 4, 1, 0]",1,4,5,0,3531.6416203704 +"https://gitlab.freedesktop.org/pipewire/pipewire",2015-04-16 14:58:33,"3fba92fb74ed9229cde1d069ce116bb2cfeaa322","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 3, 2, 9, 2, 3, 1, 1, 0, 2, 6, 18, 8, 1, 5, 6, 1, 12, 5, 3, 2, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3163.8856828704 +"https://github.com/kamailio/kamcli",2015-05-04 12:33:30,"b1d10f429787ef9a5838776c024f2372e71a93cc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 0, 2, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3121.9156134259 +"https://github.com/openstack/swauth.git",2011-05-26 09:48:56,"ea9f0d4053f88176a93198e7cf47bb30a8588abd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 7, 0, 0, 3, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3045.1673958333 +"https://github.com/mattcg/starttls",2013-03-05 00:55:52,"a8e8ae47cb27bf0c8c1679261b1473a116bd69aa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 12, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,960.3696643519 +"https://github.com/etingof/pysnmp",2000-11-28 07:49:09,"b876b2cefb76102d74ecbea3085c9b2fa60234bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4346.8111226852 +"https://github.com/bovigo/vfsStream",2015-04-13 17:47:24,"3a0e11a1df90d32b553bf12c012f836729a5abff","[0, 1, 0, 0, 0, 2, 13, 0, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 1, 18, 1, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]",5,1,2,1,5683.6370138889 +"https://github.com/predis/predis.git",2009-11-07 12:20:11,"34a616cd95cdfc48dfbec2d23025bcf2e271a75a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 5, 6, 8, 0, 20, 9, 36, 13, 0, 3, 5, 0, 0, 0, 28, 17, 25, 8, 0, 22, 10, 14, 55, 3, 0, 1]","[0, 1, 0, 2, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0]",1,1,0,0,5141.1934259259 +"https://gitlab.xfce.org/panel-plugins/xfce4-battery-plugin",2003-07-17 18:30:08,"8332c674c76d3c294f48bf72183a19ab3fb5e087","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5729.708587963 +"https://github.com/geggo/gpyfft",2012-05-24 11:37:38,"cc9480d2d14218160f5be9e309f976e1f51027be","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 33, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,2,0,2840.7253009259 +"https://github.com/components/highlightjs",2013-04-20 19:47:04,"afa572158b9cc656a1c4f2eefb856ce1930055a6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2389.9739467593 +"https://github.com/resurrecting-open-source-projects/packit",2016-05-09 13:19:51,"f5446328c7f1bef71569b687397ba26924d33b84","[0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2522.8474189815 +"https://github.com/Toblerity/rtree.git",2006-12-12 17:01:25,"65c80e5a096f8f83541bea44c79b33e4f1ad757f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5739.5775925926 +"https://github.com/y-256/libdivsufsort.git",2008-06-17 20:25:18,"18d7a90ad01a043f61d8af8b997fdeac10772cef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 6, 1, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2687.7754050926 +"https://github.com/cucumber/aruba.git",2010-02-12 19:05:07,"ed6a175d23aaff62dbf355706996f276f304ae8b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 32, 11, 0, 0, 4, 0, 3, 0, 0, 1, 1, 2, 0, 0, 0, 3, 1, 0, 1, 5, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,6,0,5041.5396643519 +"https://github.com/oneapi-src/oneTBB.git",2016-09-15 11:52:33,"d238c1f393c2ecd46c6d13a2fdacc98ee275f3d9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2645.1234143519 +"https://github.com/libevent/libevent",2006-10-28 03:28:27,"c9ad03bc0369132f436efd0af4b398d5f5e64c65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 11, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5769.2016435185 +"https://github.com/pediapress/pyfribidi.git",2011-07-12 20:01:31,"512b90684ba5a5f7929fa85ff5653bd8e2045004","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2842.4984953704 +"https://github.com/apache/logging-log4cxx.git",2003-06-09 09:02:28,"44e4c4173bd84ca1868fbd3f88e04508661e45dd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 21, 29, 0, 41, 25, 8, 30, 21, 0, 0, 0, 8, 0, 19, 0, 25, 0, 0, 10, 0, 0, 3, 0, 11, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3632.7022222222 +"https://github.com/intel/compute-runtime",2017-12-20 23:45:38,"7e9ad412908a4a16ce10f6512f13147e80dd8040","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 7, 26, 35, 22, 20, 25, 29, 47, 41, 46, 38, 37, 53, 40, 38, 42, 25, 17, 9, 32, 21, 24, 19, 24, 20, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0,2183.6453703704 +"https://github.com/php-fig/http-message",2014-06-10 23:03:12,"f3961cdbe31a0108281c4a23d8123532db3fd9c9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 0, 4, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 2, 0, 0, 0, 0, 0, 0]",2,2,3,0,3219.4525347222 +"https://github.com/OpenTTD/OpenSFX.git",2023-07-02 19:06:45,"ef827c31d4351d837184a568ae90cc9fd021cf32","[1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5073.9709953704 +"https://github.com/webpack-contrib/worker-loader.git",2012-08-06 16:26:51,"bc4acc97422522d6e6bf0de95d667a93b1694824","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3320.7711921296 +"https://github.com/libfann/fann",2012-01-23 06:02:51,"df467c918fe2ee99ce43c7fedc64d5fd259260b7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2643.8556828704 +"https://github.com/mate-desktop/pluma.git",2011-11-07 19:46:58,"528c1e5ff51e213936e800fc5a9a25da99c0bdf2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 4, 2, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 1, 0, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,4,0,4416.7881018519 +"https://github.com/phillord/assess.git",2015-10-25 16:47:41,"41a297b0668c18af9731ba95abb6f809e3d8201b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 0, 1, 0, 0, 0, 0, 1, 0, 3, 3, 2, 9, 0, 0, 0, 4, 0, 0, 0, 0, 2, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,2948.0093402778 +"https://github.com/sebastianbergmann/php-file-iterator",2009-11-05 05:09:47,"e20f5946e0ffaf4067d330d76f6ed7b76e2cd17c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 0, 0, 6, 0, 1, 1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,1,0,5147.3262731482 +"https://github.com/gerddie/ginkgocadx.git",2016-02-16 20:00:51,"5de603543d218c1fd1774760ffd1ba441d28d336","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 16, 4, 91, 20, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2123.8061111111 +"https://github.com/walling/unorm/issues/new",2011-11-15 12:55:54,"63d85f3d8db32cc55cc79d265d5b4ac4e64b9fc8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2746.3319791667 +"https://github.com/ctjacobs/pyqso",2013-03-31 01:03:17,"52867a396b505cca12c2398fe9bd26f743ee2f2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 56, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 7, 13, 6, 3, 3, 7, 1, 5, 1, 1, 3, 20, 5, 3, 1, 5, 0, 4, 1, 0, 12, 13, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2213.7885648148 +"https://invent.kde.org/multimedia/stopmotion.git",2012-02-21 15:23:17,"aaf2f5a720d8cdd95425197391327882aea665c8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4309.4254050926 +"https://github.com/bbatsov/persp-projectile.git",2015-12-20 12:30:11,"83e03b1284ea36f37a24571abd6442a267408360","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2006.7800810185 +"https://github.com/zzak/sdoc.git",2009-03-21 08:58:49,"3420b3a9520ee433a190f52e6491fb5ac219ace9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 41, 33, 13, 13, 1, 0, 2, 2, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0,5126.572337963 +"https://github.com/libusb/hidapi.git",2010-04-11 20:37:10,"3f9611fe5a0a815112457294bcdf947fd31d2918","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 11, 11, 0, 14, 37, 2, 5, 16, 3, 0, 2, 5, 1, 2, 11, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 3, 3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0]",1,2,2,0,4972.5820717593 +"https://github.com/cedadev/ndg_httpsclient",2012-01-06 16:16:03,"8ad766f537e5156ad4fd0882959373e79f2d95f0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 9, 1, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3360.0136342593 +"https://github.com/shimmerproject/Greybird",2011-03-07 14:21:55,"abb9ee35d8c77662638b085ab429f2de66e4acc9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 6, 15, 1, 2, 0, 5, 1, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,4402.0720486111 +"https://gitlab.gnome.org/GNOME/gnome-desktop-testing",2013-04-25 22:34:25,"5a153ea2cbb46678f26884465af73e81bd3716e5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 2, 4, 13, 2, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 3, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5324.4658680556 +"https://github.com/JakeWharton/pidcat.git",2013-06-12 05:59:50,"b5326a1cd5bbc0d2ed3d3f74b4905b1185f4ff9b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 5, 5, 2, 0, 0, 0, 0, 3, 0, 0, 1, 1, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0]","[6, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,13,0,3155.524837963 +"https://github.com/rootless-containers/slirp4netns.git",2018-07-10 10:57:38,"d5c44a94a271701ddc48c9b20aa6e9539a92ad0a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 26, 9, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 7, 9, 0, 2, 0, 0, 0, 0, 2, 0, 7, 0]","[0, 1, 9, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0]",1,1,6,0,1916.5166203704 +"https://github.com/otsaloma/nfoview",2007-08-14 16:39:31,"587d5b02ca084498642964de64b4dd27f12275b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5657.3754861111 +"https://github.com/mptre/yank",2015-08-24 07:24:04,"91509b4b37900218ac3bb1c0079491e18ca55695","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 3, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2596.2438310185 +"https://github.com/ravinet/mahimahi",2013-08-27 21:46:39,"95e1087cba1cebb94360a4fa6df209d9f226de45","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 11, 51, 10, 37, 45, 0, 0, 9, 34, 30, 0, 0, 0, 0, 0, 38, 0, 4, 43, 0, 0, 0, 0, 6, 17, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3537.8831712963 +"https://github.com/python-lz4/python-lz4.git",2012-01-31 11:07:56,"c661eb244ccd45586b9646fab9c79cc8af63bc1a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 1, 11, 0, 10, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3988.215625 +"https://github.com/toofishes/python-pgpdump",2011-10-26 09:16:20,"e5f487995f4e88000ac32e131237a8a343417982","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 23, 0, 16, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,826.806712963 +"https://github.com/lunarmodules/penlight",2010-03-09 07:17:15,"57e4c5deaee8b6b12be0792e4f1fdf40e555683a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 1, 6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4944.0652083333 +"https://github.com/lilydjwg/pssh.git",2009-01-08 21:34:49,"b24af9c96d353160b466f0f6217048ea17a0d014","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 0, 0, 0, 0, 4, 4, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5265.2351388889 +"https://github.com/biocore/pyqi",2013-06-06 18:18:30,"e0260e4822f0c3a1ffb33c8c26032a448ea690c2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 33, 17, 0, 0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[4, 4, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,2,0,1051.0106481482 +"https://github.com/savonet/ocaml-vorbis.git",2008-10-15 17:30:33,"78ba7c16f0370b1b1038a5f6f542bae05a084644","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5459.5669675926 +"https://github.com/tmm1/http_parser.rb.git",2009-12-19 03:21:29,"dce971b34331d4d4094afa55675900eae2013ea9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4794.1611111111 +"https://github.com/Perl-Critic/Test-Perl-Critic.git",2005-11-03 05:46:39,"687d7f83bf610d2f84e731e7b5b9b223c86979c6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 0, 0, 2, 0, 4, 0, 3, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4634.7458449074 +"https://github.com/coldsource/evqueue-core",2015-03-20 16:49:27,"449ef4a174c958116542f96de19bc93329f25ace","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 16, 0, 15, 0, 0, 1, 0, 19, 18, 8, 7, 19, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,7,0,3176.9503935185 +"https://github.com/seccomp/libseccomp",2012-01-30 17:35:27,"02201a5693430c8c1c1b8855633431eec9f54d31","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 3, 21, 29, 23, 17, 8, 19, 12, 33, 18, 6, 2, 0, 0, 1, 4, 0, 10, 0, 0, 0, 0, 0, 2, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0,4323.2139467593 +"https://github.com/linuxdeepin/deepin-screen-recorder",2017-04-01 09:24:04,"28f1295cd2e16d9c69ff80a3a99598702739d386","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 168]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 2, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 1, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",4,3,7,0,2445.6769328704 +"https://github.com/mvgrimes/catalyst-dispatch-regex.git",2013-03-27 16:31:46,"f26d5a1c22edf12b06f77f90fb982a6024047692","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,733.893287037 +"https://github.com/whipper-team/whipper.git",2009-05-23 07:59:16,"eb74b1a9b2fca6b407fac50af6eccf89adb7f98c","[0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 2, 43, 13, 31, 57, 14, 45, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 12, 18, 7, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 2, 3, 7, 0, 1, 2, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4941.070474537 +"https://github.com/ruby-prof/ruby-prof",2008-11-12 00:49:40,"7ec8a86b248b53f9af14e957909c2f15f8a01fc7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 5, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5272.258287037 +"https://github.com/Pulse-Eight/platform.git",2015-03-12 12:55:06,"dd73120ea4be3950f518816408589b04814ff7a4","[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 3, 1, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[3, 0, 0, 6, 0, 0, 1, 12, 10, 0, 0, 0, 0, 0, 0, 2, 0, 1, 3, 2, 1, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0]",6,1,8,2,2947.3549768519 +"https://github.com/shumatech/BOSSA.git",2011-10-20 03:12:19,"acea00237e48acd5f91549b3d4092267a3bccacd","[0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 1, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3233.4649537037 +"https://github.com/acetcom/nextepc.git",2017-02-02 11:34:37,"fdf97f47bbfcce08492da12ac346b222cd4f0efa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 55, 29, 49, 83, 59, 27, 43, 60, 90, 45, 18, 20, 0, 23, 19, 20, 14, 11, 23, 44, 43, 25, 16, 42, 53, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0]",2,3,2,0,2506.1347337963 +"https://github.com/jakearchibald/es6-promise.git",2012-10-16 18:11:05,"d1520571252e4508ed44c2a72964f2d19b18ae5c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 5, 0, 1, 0, 1, 1, 1, 5, 0, 5, 4, 11, 1, 1, 0, 1, 4, 0, 5, 6, 8, 0, 5, 0, 0, 1]","[8, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 3, 0, 1, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 0, 0]",1,4,17,0,3681.2223148148 +"https://github.com/amireh/lua_cliargs",2012-06-28 12:02:58,"39450b89ebe66f32f1f6a1f00d704043ac34c038","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 5, 0, 4, 35, 12, 6, 1, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,3,4,0,4184.1379166667 +"https://github.com/steveicarus/iverilog",1998-11-18 04:25:22,"ac71df5257c1474a11710a5588d7a47dcc6dd119","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 1, 3, 0, 3, 0, 0, 3, 4, 2, 3, 2, 1, 0, 4, 0, 0, 0, 0, 1, 7, 9, 14, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5784.215775463 +"https://github.com/Debian/dh-make-golang.git",2015-07-27 06:49:20,"3f59ff12f284fea0c66b81062a02f34cb0992061","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[3, 8, 4, 1, 0, 9, 7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,5,1,3064.9701851852 +"https://github.com/tantale/deprecated.git",2017-11-20 13:13:26,"1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2057.2850694445 +"https://github.com/openzim/libzim.git",2009-02-28 22:53:38,"6453e09894342fe50c3b17b06cf7765d940a25eb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 6, 3, 0, 1, 2, 1, 7, 1, 0, 1, 1, 0, 2, 0, 0, 0, 3, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5403.4984606482 +"https://gitlab.com/goodvibes/goodvibes.git",2016-11-29 12:27:46,"a33183bb37cb6663033affdd3ba4e82a0ebbbca8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 22, 14, 20, 14, 20, 35, 30, 37, 24, 49, 23, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 1, 1, 1, 1, 3, 3, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,0,2574.1305555556 +"https://github.com/OWASP/O-Saft",2012-12-20 22:13:19,"d00db6f45f2635cc707bfcd84640ef06eac66491","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 11, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4011.0202777778 +"https://github.com/iovisor/bpftrace",2017-01-02 20:03:41,"e8461e74826224b6f506e000bb6dc4bb43c28165","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 7, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 5, 5, 0, 0, 0, 0, 7, 2, 0, 1, 0, 1, 3, 1, 5, 3, 10, 1, 9, 9, 1, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2557.1546412037 +"https://github.com/FRRouting/frr",2002-12-13 20:15:29,"718e3744195351130f4ce7dbe0613f4b3e23df93","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 18, 4, 4, 3, 4, 0, 6, 1, 12, 9, 3, 19, 3, 10, 2, 5, 7, 21, 34, 15, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5771.604525463 +"https://github.com/carlodefalco/octave-mpi",2018-05-31 08:26:07,"7ff94ca6e1930f4d063436e1b542086cc182d301","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1390.161724537 +"https://github.com/rudionrails/yell",2011-10-29 14:38:44,"32f0c16d0d05abd8266c3f044beebe79ac1161bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,3852.7088541667 +"https://github.com/jnunemaker/crack",2009-03-29 03:43:14,"5c6b0b031ffc69692febeffc632f1bafb27351fd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,4290.8581481482 +"https://gitlab.gnome.org/GNOME/librsvg.git",2001-03-28 18:44:42,"9d95967905377141e0e83aafe782c702d1ae656a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 1, 0, 5, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5765.8452199074 +"https://github.com/mltframework/shotcut",2013-10-02 18:02:44,"a5639cc8ed9e94bd5cf8ec574de6e03df3cfe34c","[6, 13, 2, 2, 1, 0, 0, 4, 4, 4, 4, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 2, 22, 19, 31, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[14, 18, 17, 13, 6, 11, 11, 7, 3, 3, 0, 1, 76, 24, 22, 13, 17, 17, 18, 26, 0, 48, 14, 10, 16, 10, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,1,0,4437.0470486111 +"https://github.com/jelmer/subvertpy",2013-05-30 23:19:03,"716f12811c04d2012ccde097ad3a63c85f44012e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 46, 2, 3, 0, 2, 0, 0, 0, 6, 0, 49, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3827.0174421296 +"https://github.com/epoptes/epoptes",2011-09-27 21:02:59,"b9af4fbd85bba1f7c544f42a8852a33f6ea41c52","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 19, 9, 11, 29, 7, 6, 1, 1, 1, 1, 1, 0, 2, 31, 3, 11, 10, 3, 4, 22, 28, 11, 22, 20, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0,4351.4067939815 +"https://github.com/umlaeute/Gem",2002-10-21 07:45:55,"d2573d593f3725e7988c1eaa9bd94487302b984e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 6, 0, 12, 25, 5, 8, 4, 0, 0, 4, 1, 5, 2, 38, 5, 6, 27, 31, 4, 0, 3, 24, 63, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,5620.0985416667 +"https://github.com/skeeto/elfeed.git",2013-08-24 02:03:44,"b660b211cf2f9c41621ed20c62ef24c42023152a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[127, 47, 42, 4, 0, 14, 3, 1, 0, 0, 0, 1, 1, 12, 1, 0, 5, 0, 1, 0, 2, 3, 3, 1, 7, 1, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3363.4209490741 +"https://github.com/telegramdesktop/tdesktop.git",2014-05-02 12:36:31,"6d9ac2c4758fef40b865c4df1ee3211dab985392","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 1, 1, 14, 7, 1, 12, 22, 4, 8, 3, 15, 11, 1, 4, 3, 0, 7, 11, 4, 2, 21, 4, 1]","[0, 0, 0, 0, 0, 0, 2, 2, 0, 3, 7, 1, 1, 0, 4, 0, 0, 0, 1, 0, 1, 3, 0, 0, 4, 0, 0]",1,1,2,0,3514.705775463 +"https://github.com/thbishop/fission",2011-05-12 21:51:11,"117e510b61a749d0df5af459505ea9e0bfb7e4df","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 5, 15, 0, 0, 3, 0, 0, 0, 6, 20, 0, 19, 17, 20, 12, 26, 25, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0,876.3192708333 +"https://github.com/jorol/Catmandu-MAB2.git",2013-10-01 12:02:31,"d1b542c92b80d498b416c862d50113df56d537fb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 6, 0, 5, 1, 0, 0, 5, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2364.9603356482 +"https://github.com/r-lib/vctrs.git",2016-09-06 21:52:49,"8a52bc3cdb997350b2e74f1fcc2dbf47ab7cd699","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2644.680474537 +"https://github.com/savonet/ocaml-duppy.git",2008-10-15 17:30:33,"2ac6f3e4c163e2f5fd1d8c498b7d93a21a7cb57e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5432.8347337963 +"https://github.com/enova/pglogical_ticker.git",2018-11-09 17:43:20,"283b75352585a6667bbfc4b38a7ada309e740046","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 2, 0, 0, 2, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,1787.9691666667 +"https://github.com/pothosware/SoapyOsmo.git",2015-04-07 00:35:50,"6fa13e7ce07cd2b91676777a6894799da80d287b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 1, 0, 3, 5, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 10, 6, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0,2779.5272569445 +"https://github.com/globocom/derpconf",2012-08-01 14:28:37,"b3223c0024f222e7829a4c5542688c3aef877e18","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,6,0,4088.1859490741 +"https://github.com/OpenTTD/nml.git",2018-10-25 16:06:50,"c15f4ee3d737542f7c676bcd8f1c3e4fd844a823","[0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 0, 0, 0, 6, 0, 2, 2, 1, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,8,0,4991.1396296296 +"https://github.com/ocsigen/lwt.git",2008-05-25 10:52:03,"ed71a00f0d5780234c870e9f62d36f62d899f553","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5681.6560300926 +"https://github.com/alanxz/rabbitmq-c.git",2009-04-25 13:02:20,"d92b0f3c777bff3f7da7efb48059a8aee4e5287f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 9, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 2, 1, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,5294.5360185185 +"https://github.com/rbenv/ruby-build.git",2011-08-11 20:40:36,"fa263f2bdbdc8ba5f4af5acc753c5db270269958","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[11, 5, 0, 14, 14, 9, 13, 0, 2, 16, 13, 9, 2, 1, 2, 0, 8, 0, 2, 2, 10, 0, 0, 0, 0, 2, 1]","[4, 2, 0, 3, 3, 3, 2, 0, 2, 1, 6, 2, 1, 0, 0, 0, 5, 0, 1, 1, 3, 0, 0, 0, 0, 1, 0]",3,2,28,2,4513.8946527778 +"https://github.com/sqlitebrowser/sqlitebrowser",2010-10-05 10:04:14,"054ca360536b33c05eb54a143a5cf9c0cd70eb19","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5467.0491203704 +"https://gitlab.gnome.org/GNOME/gnome-boxes",2011-10-04 13:04:10,"f17dac41f91c6f5ec546469bdb35e90ef6915c4f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 7, 42, 33, 53, 12, 35, 27, 14, 22, 11, 1, 2, 16, 22, 11, 11, 11, 10, 20, 13, 30, 24, 14, 39, 22, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,64,0,4447.977662037 +"https://github.com/codehaus-plexus/plexus-interactivity.git",2018-05-12 12:58:49,"94cf7526c866b19c08f1c4533521097674e66522","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2997.8996759259 +"https://github.com/Cyan4973/xxHash",2014-07-10 20:44:08,"f0f007f0424c12997a33d604c01664b30bb248f4","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 3, 5, 2, 0, 0, 0, 0, 2, 3, 1, 0, 6, 6, 0, 0, 0, 2, 0, 3, 2, 0, 1, 2, 0]","[1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,2,4,0,4259.841875 +"https://github.com/erlang-lager/lager.git",2011-06-24 17:31:20,"7bcf044f1a43dbbf0a06ce795b80c7bcbdbaec15","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 31, 16, 9, 6, 1, 10, 16, 6, 11, 9, 1, 10, 3, 2, 2, 0, 9, 6, 3, 1, 0, 2, 2, 1, 2, 0]","[0, 1, 1, 0, 1, 0, 0, 3, 1, 3, 3, 0, 2, 1, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 0]",1,2,7,0,4513.8316435185 +"https://gitlab.com/crosswire-bible-society/scofield",2022-03-08 08:02:08,"2a8fe91d2f87d26f7d2e84943d079ef39b77e7f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,306.4266666667 +"https://github.com/martinblech/xmltodict.git",2012-04-17 14:39:52,"8da8cb30021e9d220b2c5adc74768d98bfe3c195","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3981.1987152778 +"https://github.com/daqana/tikzDevice.git",2009-05-19 08:37:40,"e0722f681db1d410a714e56f5aa74bbc98ffe404","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 5, 0, 0, 0, 0, 15, 55, 32, 3, 1, 0, 0, 2, 4, 1, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 5, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,9,0,5310.7431944445 +"https://github.com/marekjm/diaspy",2013-04-30 22:30:56,"f2eaa3c7bbb495584b5e3ee93da82073c4d3dc4e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 0, 19, 0, 1, 0, 3, 0, 6, 7, 20, 3, 7, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 4, 1, 1, 0, 0, 0]","[33, 3, 5, 8, 0, 9, 6, 0, 14, 35, 4, 0, 0, 1, 15, 5, 18, 4, 10, 7, 3, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 0, 0, 2, 0, 4, 7, 1, 0, 0, 0, 1, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,4,2,3779.1691319445 +"https://github.com/WebAssembly/binaryen",2015-10-29 19:43:59,"b3b8d931068ff09e245233451b4f1d47648f1e2b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[234, 160, 76, 67, 41, 89, 87, 135, 47, 70, 112, 111, 52, 90, 38, 32, 40, 11, 77, 76, 52, 60, 63, 40, 47, 101, 1]","[0, 0, 1, 0, 0, 0, 0, 28, 3, 14, 18, 15, 7, 14, 12, 6, 10, 5, 16, 10, 15, 15, 10, 4, 6, 12, 1]",1,6,24,0,2965.9878472222 +"https://github.com/fog/fog-local",2015-02-14 14:04:42,"4b45d54ca61be4c3428a273ba011675cade639c4","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,5023.4471759259 +"https://gitlab.com/drobilla/mda-lv2.git",2008-08-08 22:45:58,"e360047054117d63fb579ec9231e9dc77c99f12a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5537.0059606482 +"https://github.com/slime/slime",2003-09-04 11:07:27,"2fb4c4e53b59ed7b6e5f55780574a1016c0e5074","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 18, 24, 25, 0, 19, 76, 23, 47, 23, 26, 50, 58, 41, 66, 10, 0, 26, 57, 97, 13, 24, 26, 19, 32, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,8,0,3579.6025925926 +"https://github.com/jupyter/jupyter-sphinx.git",2016-12-05 15:46:35,"13950176e8633f78fdfb9a5a4dcce41da1975008","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,2558.9093171296 +"https://github.com/dottedmag/archmage",2007-09-30 09:51:25,"526aec890a1712c5e607597c361370ff4fb43d66","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4875.1846412037 +"https://github.com/s-yata/marisa-trie.git",2016-01-28 14:55:47,"3b5f964636a4d557d45760e446a1f4e6b2f24567","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,1648.6119675926 +"https://github.com/wesm/feather",2016-01-27 22:44:10,"6e91cc5e5cfeb0a5771997bee402f8fe1e72ebc2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 0, 3, 7, 2, 0, 4, 17, 18, 5, 1, 1, 6, 3, 4, 1, 2, 3, 3, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,19,0,1834.8181597222 +"https://github.com/puppetlabs/puppetlabs-concat",2010-05-06 21:55:02,"ee1fe7a0236e5fd100bbc229ea034bf7d2b530aa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4953.9728703704 +"https://github.com/ponty/easyprocess.git",2011-02-08 09:47:52,"d2dffa6268bc432cb36dd5a039bca6b60efbc059","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 2, 7, 0, 0, 0, 12, 0, 10, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4652.3978009259 +"https://github.com/elasticsearch/curator.git",2013-08-20 05:51:20,"7eac0259a3fdcf8684194af76d3acac7244a38dd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 7, 7, 3, 25, 3, 3, 27, 2, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 9, 1, 1, 10, 0, 0]",1,3,10,0,4523.4816435185 +"https://github.com/kimocoder/wifite2.git",2017-05-27 06:54:56,"baf3ae8711b34fb2862ea9c0f1f99a16ff3b7cf4","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,3100.7875578704 +"https://gitlab.gnome.org/GNOME/gnome-builder.git",2014-09-07 01:31:11,"18ddcf98ecc5569d39d538b329ca90775dc9b520","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[134, 69, 53, 175, 95, 97, 32, 1, 4, 17, 38, 18, 53, 157, 164, 41, 37, 34, 50, 88, 20, 11, 179, 35, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,47,0,3382.6812615741 +"https://github.com/busyloop/lolcat.git",2011-08-10 14:10:30,"207bc996a7084af57c4d9d4a5f5c42d8445a2dc6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3767.9154513889 +"https://github.com/mahmoud/boltons",2013-02-20 02:04:47,"2c4595e3278c4b4b4175c1dbf6d00a5b02fc65f2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 3, 1, 41, 29, 0, 0, 2, 4, 3, 0, 0, 0, 5, 5, 6, 0, 0, 2, 1, 1, 2, 2, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3938.2483333333 +"https://github.com/Bioconductor/XVector.git",2019-04-19 19:45:47,"7eae4812690e779e10c94b0515134cedff754d0b","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1,3819.2003935185 +"https://github.com/fenrus75/powertop",2010-12-20 23:45:35,"64d88a1a9fd21a497087a40e7dff8b3310874420","[0, 0, 0, 0, 0, 20, 27, 39, 42, 25, 21, 18, 8, 21, 10, 5, 13, 16, 19, 4, 1, 0, 26, 3, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 2, 1, 0, 0, 0]","[24, 17, 25, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 0, 23, 1, 2, 1, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]",3,0,10,1,4841.8389467593 +"https://gitlab.gnome.org/GNOME/ghex",1998-04-03 15:21:02,"1d9ef2a24b62cb31bc75e221bb17ce6f151e1964","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 1, 2, 1, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 6, 3, 7, 2, 1, 4, 7, 2, 4, 3, 4, 2, 4, 2, 2, 6, 2, 10, 3, 3, 5, 2, 4, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,18,0,5784.5501157407 +"https://github.com/capistrano/capistrano.git",2005-08-03 12:59:03,"f9da6dbb4ca3c52bb826653b3313e64541f7f693","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 1, 6, 4, 3, 3, 0, 6, 3, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 9, 6, 1, 6, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5751.7282060185 +"https://github.com/jeffkaufman/icdiff.git",2010-08-02 13:56:45,"15947e01fae9a2eb3e38ad3e29b0bd44439a5362","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4767.043599537 +"https://github.com/linuxmint/cinnamon-control-center.git",2013-01-09 10:32:58,"64f6e5baeefb705f367ed6fb92c3aaf27197861c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 66, 42, 4, 2, 4, 7, 0, 0, 1, 2, 0, 1, 9, 6, 7, 0, 5, 2, 1, 17, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3966.1298032407 +"https://github.com/cl-plus-ssl/cl-plus-ssl",2014-02-10 02:36:34,"7cc34767a580b06f5148fb7fdecd316462a4f5c2","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,0,3,0,5623.3226967593 +"https://github.com/rolinh/dfc",2012-03-18 10:30:13,"865cfaf4169180e64540573cc53ef3a3976edc4e","[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[70, 98, 70, 20, 68, 46, 18, 24, 25, 47, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,3944.7026157408 +"https://github.com/openwall/scanlogd.git",2021-03-10 16:51:01,"57791e89013df9a442013c30fdbae0310b5e0753","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3573.3593287037 +"https://github.com/mapbox/variant.git",2014-02-11 20:37:24,"9b82890ea11742eafd686f44b8cc7075029dbd7b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 40, 13, 6, 2, 12, 3, 23, 1, 0, 0, 0, 0, 2, 1]","[4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",2,3,4,0,2484.9211689815 +"https://github.com/teopost/qmenu",2013-10-29 15:03:02,"2611e6ffd97fe17e6307700c770fb432a4a7a585","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,5,0,3121.65625 +"https://github.com/qiime2/q2-types.git",2016-05-09 20:56:02,"200d63f3df39bfbfe9c11f181f2722e65de6180e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 2, 0, 2, 3, 5, 1, 6, 10, 0, 5, 3, 2, 2, 2, 4, 6, 3, 6, 5, 1, 0, 1, 3, 1]","[3, 0, 0, 1, 0, 0, 2, 2, 1, 3, 5, 0, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0,2710.9659490741 +"https://gitlab.com/accounts-sso/signond.git",2010-04-01 11:58:48,"985d0e30702101e84c82369fdfac8ba82a0696bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 26, 19, 14, 29, 13, 8, 13, 0, 16, 15, 4, 20, 9, 16, 4, 1, 9, 0, 18, 17, 4, 3, 16, 10, 7, 1]","[7, 9, 3, 2, 9, 5, 3, 2, 0, 3, 4, 1, 2, 1, 3, 1, 0, 3, 0, 3, 3, 0, 0, 6, 2, 2, 0]",1,4,4,0,4503.0937037037 +"https://github.com/trailofbits/onesixtyone",2014-02-07 17:02:49,"1f0d6d5600872422b4215693a1a9f774fdf8776d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3350.0547222222 +"https://git.samba.org/uid_wrapper.git",2013-06-05 15:19:59,"47fff10dd391a6b60508206ae96735b1d76daf51","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 10, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3714.8803240741 +"https://github.com/mgerhardy/caveexpress",2014-03-14 09:31:05,"a1f23b533b9b301136f8f904f91f74ac3ce801ec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 10, 0, 23, 28, 44, 31, 7, 2, 30, 1, 0, 0, 33, 57, 0, 20, 38, 107, 108, 125, 57, 18, 0, 8, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2582.468125 +"https://github.com/jquast/wcwidth",2014-04-08 03:55:21,"348321b3e57f02f52abd335d8a7591660050c050","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 12, 0, 12, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3540.9241550926 +"https://github.com/basho/innertube.git",2012-06-01 14:01:38,"d6b922b31cb6c308d72cbe79d4da9ff34c1c24bd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1008.2290162037 +"https://github.com/citusdata/postgresql-hll.git",2013-02-04 19:07:47,"f3fc391b7402fa925cb6afb1f0b741834acca875","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0, 1, 0, 0, 0, 4, 2, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0,3859.4959259259 +"https://github.com/tax/python-requests-aws",2012-01-13 13:26:52,"e854b8a3e75e134d77c659c90bbca23ecca1cc3d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,1319.2575 +"https://github.com/EnterpriseDB/mysql_fdw.git",2011-04-12 16:39:08,"688c0fdb7ed4eb9ff9ceb76f65b7608432a8b196","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4475.7229861111 +"https://github.com/julian-klode/dir2ogg",2007-06-22 15:58:38,"5b1a252cdab0f9b2f37f553c8ad7aa85cf256b6f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1310.0299884259 +"https://github.com/df7cb/tenace",2008-02-02 14:04:02,"c3809f4545c645f6ded33ea37251d7b6e2b410b3","[0, 8, 1, 0, 1, 0, 0, 0, 0, 6, 4, 0, 0, 1, 1, 3, 4, 0, 11, 8, 0, 0, 9, 0, 1, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 0, 0, 0, 0, 13, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4952.6237847222 +"https://github.com/turnstep/Math-GMP.git",2014-01-27 16:02:16,"3502d80334a75cf5893f861c159f3ca1c27b5f58","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2969.082974537 +"https://github.com/BioPP/bpp-phyl.git",2022-12-05 09:00:18,"c4b682887da5fd820f1a4d77e087675f7b9bfcf6","[1, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 3, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 1, 0, 3, 2, 0, 0, 5, 0, 5, 4, 0, 1, 0, 5, 1, 1, 6, 4, 3, 1, 0, 4, 1, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 4, 2, 0, 1, 0, 0, 0, 0, 0]",0,0,0,0,5775.3533796296 +"https://github.com/SoundScapeRenderer/ssr",2013-11-27 16:08:24,"282398501961d280e7845ca1c2f4841b62d40b65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 8, 2, 0, 2, 24, 11, 2, 3, 0, 3, 7, 8, 4, 6, 1, 0, 0, 3, 0, 0, 1, 0, 2, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3464.0590972222 +"https://github.com/snapcore/snapd-glib",2017-04-04 21:50:10,"af7aaee56ac30ffdf306628c38d0c9f32f942990","[0, 10, 14, 14, 20, 6, 1, 0, 1, 0, 0, 0, 0, 0, 3, 12, 16, 9, 3, 22, 13, 0, 4, 27, 10, 3, 2]","[0, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 6, 3, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2535.747037037 +"https://github.com/swipely/docker-api",2013-06-12 19:00:04,"75d70a0a7fd592770119aafe17a74a1d439d4848","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 54, 24, 3, 2, 7, 4, 7, 18, 3, 3, 12, 0, 7, 1, 3, 6, 8, 0, 2, 28, 11, 4, 2, 6, 11, 1]","[2, 10, 3, 2, 1, 2, 2, 1, 3, 0, 2, 2, 0, 2, 0, 1, 0, 2, 0, 1, 1, 2, 1, 0, 1, 3, 1]",1,3,14,0,3249.0699421296 +"https://github.com/radcli/radcli",2003-12-02 10:39:09,"8476e14e7ec992fd8a73700a968d6b579496539e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,0.0082986111 +"https://github.com/bit-team/backintime",2008-10-28 10:48:58,"520fc216cc8964825297c9243a42f1d08a3ff510","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 15, 16, 37, 22, 14, 9, 15, 14, 10, 44, 31, 37, 24, 14, 8, 7, 24, 43, 57, 26, 10, 13, 18, 10, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,5520.9053125 +"https://github.com/garrigue/lablgtk.git",1998-11-22 03:02:29,"861bdac520343073a08aa3ac7893b70a5d99060e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,5750.3717824074 +"https://github.com/aircrack-ng/mdk4",2018-02-06 08:23:27,"218029afb9c0e9ef3a9ddfcf4a91a4c727d32ce1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 1, 7, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,1545.4045949074 +"https://github.com/c4urself/bump2version",2013-03-10 18:08:42,"db5aa7b7588b6f9685534a0c565820f93be0dd30","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 6, 2, 2, 5, 2, 1, 0, 0, 0, 0, 0, 16, 11, 0, 0, 0, 12, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3866.5811574074 +"https://github.com/df7cb/pg_snakeoil",2018-08-10 12:24:23,"a66b75eb13f30b4243629f9b2c5ad24bd180c568","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 13, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,1864.2726273148 +"https://github.com/TurboGit/hubicfuse",2009-02-03 10:21:41,"d382289bbd50b2f54343c2c1316fce2829938233","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4598.8082291667 +"https://github.com/imanel/websocket-ruby.git",2012-07-13 10:35:03,"353bd7a768f79e7b34f530c33292ceecd4129a7b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 4, 0, 0, 0, 10, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4172.1994328704 +"https://github.com/hassox/warden",2009-04-06 15:09:39,"7b7814b468f02249dce1c5c06902bbcd996c66ce","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 12, 5, 3, 0, 0, 0, 2, 0, 0, 0, 0, 1, 10, 0, 2, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4887.5323842593 +"https://github.com/IRkernel/repr.git",2015-04-18 18:42:59,"6e9f5aed5765a657034f4fb8d1e8ead43de9e5e8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 7, 2, 1, 0, 0, 1, 0, 0, 0, 5, 1, 0, 2, 4, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,2,0,3009.4312615741 +"https://github.com/enzinia/hangouts-chat",2018-03-20 11:31:43,"a2975b27abad92e39f15e4d4bfa3d577bd44bf48","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 8, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,1065.9778472222 +"https://github.com/ajaiantilal/i7z",2012-12-06 20:08:36,"da1d2a9ae85335f395cc634f05d5ee94f56f000b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,310.0352199074 +"https://github.com/wfeldt/libx86emu",2008-12-12 13:34:09,"175c8d15c6c60359052ca182bfb0b9f459cf5d0e","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 4, 1, 4, 10, 1, 14, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5028.2515972222 +"https://github.com/jirka-h/haveged",2018-07-18 11:56:31,"2b60a12e3d4a3fa43af356e09ab32b82b63b60dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,3,0,1886.382650463 +"https://github.com/php-fig/cache.git",2015-08-21 01:19:05,"8e90a3f28d395d940520d2834f9a5854877848c9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2530.1591435185 +"https://github.com/PierreRaybaut/guiqwt.git",2010-09-01 14:54:41,"97df8c54b7db29d420fa7bcb02105b086ae67e59","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 8, 12, 0, 0, 0, 0, 8, 3, 14, 5, 17, 5, 28, 5, 0, 0, 2, 10, 12, 21, 32, 11, 15, 13, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,4806.7696527778 +"https://github.com/fgrehm/vagrant-lxc",2013-02-25 05:04:31,"55c9be772db32d4f49bf61af1801d2d6f14a880e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[91, 80, 19, 12, 61, 30, 27, 58, 13, 33, 33, 5, 2, 10, 30, 0, 0, 7, 3, 21, 20, 10, 16, 3, 0, 0, 1]","[2, 2, 1, 0, 3, 0, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 0, 1, 0, 0, 0]",1,2,9,0,3559.775474537 +"https://github.com/andrewrk/node-findit.git",2011-02-02 11:56:48,"0e0cd9c95ac796349530273a712fd1d5f3fde062","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1811.4445601852 +"https://github.com/CsoundQt/CsoundQt",2016-02-23 15:43:10,"14c2a149b50cafc1fba6adfed99744c036725ad2","[2, 0, 0, 0, 0, 0, 2, 1, 0, 0, 4, 2, 0, 0, 0, 1, 0, 7, 0, 7, 2, 3, 3, 6, 11, 24, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 1, 3, 5, 0]","[11, 16, 3, 10, 9, 11, 14, 2, 3, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0, 2, 0, 0, 1, 0, 5, 6, 0]","[2, 5, 1, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",6,2,6,2,5612.1172222222 +"https://github.com/lxqt/lxqt-notificationd.git",2015-10-31 00:17:52,"2d7f7dd9ae006cdc473fefb17b231a38e3e532b4","[0, 0, 1, 5, 1, 0, 3, 2, 3, 0, 5, 1, 1, 2, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,3,1,4167.6499305556 +"https://github.com/Debian/pk4",2017-10-21 08:29:34,"88c774ffb8cef2760fcd58ec4c324089c87774e9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1044.0391203704 +"https://github.com/ukui/biometric-authentication",2018-09-06 07:51:50,"88302f896234ab89c2e242f68dfdba10b6815a13","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 6, 10, 5, 0, 3, 0, 0, 3, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,1286.1941203704 +"https://github.com/anholt/libepoxy.git",2013-10-16 18:43:11,"a909eb4a229ebbea2d60717e748df3f0a2f69cc4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,3236.6618981482 +"https://github.com/davesteele/cryfs",2015-02-17 00:03:37,"30832284705c060547fbef8ffcae0e3fb0570d4a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 25, 1, 1, 5, 6, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 5, 14, 3, 0, 0, 14, 3, 14, 2, 1, 0, 0, 0, 0, 1, 9, 2, 2, 0, 1, 7, 2, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1,3180.9594560185 +"https://github.com/puppetlabs/facter.git",2005-08-29 21:30:45,"7cec936bf10ea2f0c2f56c00839043ad9369d99b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1, 10, 4, 0, 2, 0, 2, 4, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5785.7918055556 +"https://github.com/sbabic/swupdate",2013-11-17 13:18:04,"e4228034b49ad9717e3948b681bead89df8012ee","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,3657.1083217593 +"https://github.com/tidymodels/recipes",2016-12-16 02:40:24,"b57afd2a6c74337516964f4d547d89faac1c3168","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 4, 7, 22, 28, 25, 18, 17, 2, 25, 0, 33, 33, 2, 0, 2, 8, 0, 5, 16, 8, 0, 3, 1, 1, 1]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,2554.7539351852 +"https://github.com/pdfminer/pdfminer.six.git",2007-12-30 09:13:51,"b278b5339042aebfbcea58905b80303c1e003116","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0, 0, 0, 0, 0, 2, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5691.1447916667 +"https://github.com/varvet/pundit",2012-11-04 09:20:45,"1cad0b598a4ade135789e7371583ab72fbc7a151","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 18, 1, 2, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 3, 0, 4, 1, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0]",1,1,6,0,3993.9621990741 +"https://github.com/naihe2010/apvlv",2008-10-17 06:37:32,"e7a0e913c9072f87fdb78a5f5599013e4676f3de","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4571.1944675926 +"https://github.com/jupyter/jupyter_client",2015-04-09 07:12:21,"e7d7c01a9afd0ddcc8c183223a340ffa44468621","[4, 11, 2, 1, 2, 2, 1, 4, 29, 11, 4, 1, 5, 0, 5, 4, 3, 1, 3, 0, 4, 3, 0, 5, 26, 27, 2]","[1, 6, 0, 1, 1, 1, 0, 2, 3, 3, 2, 0, 3, 0, 2, 1, 1, 0, 1, 0, 2, 1, 0, 3, 5, 7, 0]","[10, 2, 4, 8, 8, 2, 12, 10, 2, 6, 3, 2, 11, 13, 2, 1, 2, 4, 4, 7, 0, 5, 6, 4, 0, 9, 1]","[3, 1, 1, 4, 4, 1, 2, 4, 1, 2, 1, 1, 4, 5, 1, 0, 1, 0, 2, 4, 0, 2, 2, 2, 0, 2, 0]",7,1,6,0,5666.1043171296 +"https://github.com/uTox/uTox.git",2014-03-15 12:52:31,"f405ebec61508934a0cff949a8c9bf62ec69e01c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 10, 0, 0, 0, 0, 2, 0, 0, 4, 3, 14, 42, 38, 50, 74, 51, 18, 14, 29, 33, 67, 57, 42, 26, 5, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 3, 1, 10, 4, 5, 4, 0, 3, 8, 13, 18, 12, 13, 2, 1]",1,8,36,0,2920.6360069445 +"https://github.com/PacificBiosciences/pbcommand",2015-07-09 16:29:26,"3d36af9cc36082a4793ae19b27e237cc31f5f6e7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 19, 32, 12, 24, 5, 6, 3, 6, 0, 2, 4, 1, 0, 0, 0, 2, 7, 8, 8, 6, 9, 3, 0, 0, 0, 0]","[1, 2, 5, 1, 2, 0, 0, 1, 3, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0]",1,3,7,0,3024.5842592593 +"https://github.com/netdiscover-scanner/netdiscover",2005-08-09 01:43:14,"51b6f0d69cd87edaa7c118416f2a41d5552d0e1f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 7, 5, 1, 2, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 11, 0, 9, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5323.4166087963 +"https://github.com/cdidier/irssi-xmpp",2007-08-13 13:33:57,"0b7922122729da5d564caf2f9482b446e1c8236f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 29, 5, 0, 0, 0, 2, 9, 17, 24, 10, 0, 0, 1, 7, 1, 5, 1, 4, 10, 3, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4266.8623958333 +"https://github.com/wch/webshot",2014-12-16 17:05:08,"8c53e486450cc98c390e1cd55a1d73b7e6d7626b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 4, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0,3137.5207291667 +"https://gitlab.com/gitlab-org/gitlab-gollum-rugged_adapter",2014-10-30 01:17:28,"15a6aff230fcf10bcdeab2953a72c9e9ac9f5dc5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 11, 0, 4, 0, 9, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2512.6936226852 +"https://github.com/bbonev/dhcpdump",2023-03-06 22:15:35,"f6a67e29718cd57afee817b669418805f0599cd7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 1, 0, 1, 0, 0, 0, 4, 0, 0, 15, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0,112.9948032407 +"https://github.com/brianmario/mysql2",2010-04-04 20:14:58,"2e11b94e5f5cf24ff37499e883823b671d6abfa9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 50, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 8, 11, 6, 14, 24, 3, 0, 9, 2, 5, 0, 11, 27, 5, 9, 10, 33, 20, 26, 6, 4, 3, 10, 3, 5, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 3, 0, 0, 0, 0, 1, 0, 1]",1,2,8,0,4877.8413194445 +"https://github.com/FreeOpcUa/python-opcua",2015-02-20 20:06:05,"6c39ac5f56f68f7608861ef031c893ccae22e134","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 24, 8, 19, 9, 17, 2, 15, 22, 9, 7, 9, 2, 2, 0, 0, 6, 2, 0, 6, 7, 2, 1, 2, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0]",1,2,6,0,2848.7678356482 +"https://github.com/checkpoint-restore/criu.git",2011-09-23 08:00:45,"523de236244946a0de127dfc9954369963819ef7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 19, 43, 6, 51, 15, 26, 31, 45, 30, 32, 11, 27, 38, 19, 51, 95, 57, 105, 55, 88, 26, 49, 32, 5, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 2, 0, 3, 1, 2, 0, 0, 0, 0, 0, 0]",1,1,6,0,4462.4346296296 +"https://github.com/aquasync/ruby-ole/issues/new",2007-10-19 13:25:04,"6f5628b665660c41ea52d8b439a7c2bc66231f11","[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 3, 0, 0, 6, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2746.3319791667 +"https://github.com/sionescu/bordeaux-threads",2011-08-02 22:35:27,"383d8d6241b2d17072e7581f7b7d4930dfce1516","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,618.6993865741 +"https://github.com/mywave82/opencubicplayer",2011-09-18 19:35:24,"38b5d672019e2315018a3d5c8bccb79ae83d3bb1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 2, 1, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4416.0663310185 +"https://github.com/matlab2tikz/matlab2tikz",2008-11-07 10:18:57,"fa03c34c00e1c57701fb7ffe4af8352ad6fb30ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 8, 0, 3, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 1, 3, 3, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5208.0300231482 +"https://github.com/rigred/sandsifter",2017-07-27 19:17:30,"dff63246fed84d90118441b8ba5b5d3bdd094427","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 3, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0,736.7519907407 +"https://github.com/kpdyer/libfte",2014-04-09 21:12:10,"6a91eaeab94e7931886cb9dc0b8cea4b4a2b274a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 5, 2, 0, 0, 2, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 9, 13, 2, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 6, 1, 0, 0]",0,2,1,0,519.2035763889 +"https://github.com/jeffreyhorner/rapache.git",2005-09-30 16:22:29,"4a2bafbbb6e53a51443403f3c34d49e482a91f40","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4155.5934953704 +"https://github.com/pcman-bbs/pcmanx",2005-06-30 21:03:55,"91258ebc328904df0f61ea8e2891967be86558df","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 22, 33, 31, 0, 13, 4, 29, 4, 0, 0, 2, 7, 1, 2, 1, 0, 1, 3, 2, 0, 0, 7, 3, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,4671.9572106482 +"https://github.com/chjj/term.js",2013-08-08 14:03:31,"51946a73c84369c1e35bc78fb599d8d27a237a2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 16, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 2, 1, 4, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0,1033.3200115741 +"https://github.com/ParaFly/ParaFly",2017-09-03 13:17:34,"e081b76649370f07f73ffce532165e5e53f67a03","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1437.0966666667 +"https://github.com/wookayin/gpustat",2016-04-24 10:57:23,"da312430ad0a5764cd99ac4c07fd260fa7ebce81","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 6, 0, 0, 0, 2, 1, 0, 1, 0, 0, 1, 0, 0, 2, 0, 5, 6, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2769.8730787037 +"https://github.com/bokmann/font-awesome-rails",2012-03-08 02:05:38,"fd941c0c8b44c695e80030ee5b341a504285bc8b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,3,0,4227.7840856482 +"https://github.com/EsotericSoftware/kryo.git",2013-11-06 15:31:58,"2c3194a8e64b655ea3de992d4a8a38f8cc315a09","[0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 4, 7, 5, 9, 2, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5184.6080092593 +"git://git.alsa-project.org/alsa-utils.git",1998-08-13 15:43:39,"fbb20e85ecb0419c4cb8143e3a3fcd0a6f31d9c4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 8, 0, 0, 2, 1, 4, 0, 0, 0, 14, 6, 4, 3, 8, 4, 2, 0, 0, 0, 0, 5, 3, 9, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5783.0309143519 +"https://github.com/cloudflare/python-cloudflare",2014-12-14 02:05:38,"948eed8afa9dd49213d8ac6f913d7a70e265d77a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3286.4968981482 +"https://github.com/hanshuebner/cl-github-v3",2013-03-03 07:20:19,"8e4259a324a31c9bec23ce49c6980efc17c6f351","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2986.6350810185 +"https://gitlab.freedesktop.org/xdg/shared-mime-info.git",2002-07-24 15:57:07,"e76dc2189be3d100f9efcd8a9fa60e5bd2e6d145","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 3, 1, 4, 7, 0, 0, 0, 0, 0, 1, 5, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5782.9944444445 +"https://github.com/processone/fast_tls.git",2015-04-06 09:03:40,"e231cbde546c2e2200f6dae01d13cf743d253c6d","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,3904.2279282408 +"https://github.com/libsdl-org/SDL_net.git",2001-01-15 02:06:06,"36b541b369dbe0958bc677cf351a6db5cc4f7cb8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 6, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5565.0336111111 +"https://github.com/viraptor/phply.git",2010-07-22 18:50:40,"06e943d6fc045ba027c756fd087a0a05012859ef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 32, 14, 26, 10, 4, 10, 0, 0, 0, 0, 20, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4545.3284143519 +"https://github.com/PerlGameDev/Alien-SDL.git",2009-08-07 01:18:06,"06b07bff559bdf86876c132de29c6dcd15a3663a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 2, 6, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2024.7772222222 +"https://github.com/chad3814/CSSStyleDeclaration.git",2012-07-11 04:54:08,"3492492f88739caf975ed83d06a5c48a27c2ae25","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2137.4537037037 +"https://github.com/myriadrf/LimeSuite.git",2015-07-07 12:15:19,"6088e057eecbcb99dda2d280e461ec8abf37ddf1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 12, 5, 9, 1, 0, 1, 0, 0, 4, 3, 4, 3, 4, 5, 0, 0, 6, 8, 2, 6, 0, 4, 4, 0, 1, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,3078.1977893519 +"https://github.com/namhyung/uftrace",2014-08-12 00:10:05,"8650b55b775ab8418380a0ce14f8cc96d737d9b4","[8, 16, 9, 4, 23, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 10, 7, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3614.2657175926 +"https://github.com/mrirecon/bart",2014-08-30 21:44:54,"713a858a01dd17d23c5375fbe1e357430cc96842","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 12, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3390.8110185185 +"https://github.com/okbob/pspg",2017-07-11 18:54:14,"aa677db8280f950d63b35f8999d626d9ce2a9ca3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 8, 6, 14, 22, 15, 10, 6, 5, 9, 8, 10, 1, 0, 0, 0, 1, 2, 20, 19, 6, 4, 2, 6, 13, 1, 1]","[0, 0, 1, 0, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 1, 0, 0, 0]",1,3,11,0,2316.4040509259 +"https://github.com/mheily/debian-packages",2014-02-23 20:43:26,"3874d07edbe0c77825605eb648044b07e40fb96c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3042.231712963 +"https://github.com/outatime/applause.git",2014-03-21 20:19:59,"70b35fab6674315125a988c9d7cdd75808b23104","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2600.1592592593 +"https://github.com/pothosware/SoapyHackRF.git",2015-09-26 11:16:21,"7afd29c7b22d55b3597da28f059a1fba916dded9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 2, 1, 2, 5, 5, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0,2556.4767361111 +"https://github.com/github/version_sorter",2009-04-25 00:05:20,"5556dba6528a573178f5aec7e5a29e7b3a7b7143","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 22, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5346.8123032407 +"https://github.com/zloirock/core-js.git",2014-01-05 16:42:36,"bf793c5fd5e8bbe95d1aeced8f7977c15edf5ea2","[0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 1, 2, 6, 2, 9, 6, 1, 2, 2, 3, 2, 1, 3, 6, 3, 2, 5, 3, 2, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3801.3871990741 +"https://github.com/ebook-utils/css-parser",2018-12-20 16:21:29,"111dda6b412e3cfec2f55b2f8838ac356bbc5f13","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 22, 4, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,4,0,1765.7022685185 +"https://github.com/pekdon/pekwm",2006-08-30 15:26:19,"c7b124bf1c6096ae04e1f483f6c63bc7d2a7041c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5508.5197222222 +"https://github.com/doxygen/doxygen.git",1999-12-15 19:25:10,"719f0a35063be88eddcc4ed8fe7a940de47ef20c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 3, 0, 0, 5, 3, 2, 2, 2, 3, 5, 2, 3, 2, 2, 2, 3, 2, 2, 2, 2, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,5784.3285185185 +"https://github.com/schrodinger/coordgenlibs.git",2017-06-12 09:43:57,"a779781fa783ad82f41eddaaaf504c4597087cb4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 3, 0, 0, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",1,1,4,0,2268.1054282408 +"https://github.com/RazrFalcon/resvg.git",2017-12-18 18:01:18,"81645877a26eae9dce26978b2a862793c026db9e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 3, 2, 1, 5, 2, 18, 5, 3, 21, 13, 6, 1, 7, 2, 0, 9, 21, 16, 9, 25, 19, 13, 5, 2, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,3,5,0,2182.7898726852 +"https://github.com/IdentityPython/djangosaml2",2014-11-06 01:17:08,"4a44680c2969744c8dc1bb431f9fb0a5cbc5451e","[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 2]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,2,3275.3256597222 +"https://github.com/openkim/kim-api",2011-04-25 13:14:25,"31ff71cc67a2c2f5b48fa97e4e99908e07238a3d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 23, 35, 31, 4, 13, 17, 36, 24, 0, 128, 14, 34, 25, 9, 2, 12, 3, 8, 1, 9, 3, 1]","[0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 1, 2, 3, 0, 11, 3, 3, 0, 1, 0, 0, 1, 2, 0, 2, 0, 1]",1,4,7,0,4210.4546527778 +"https://github.com/petere/plsh.git",2005-05-25 19:13:38,"fa01cd0a81a8c8bd7717c0de37c20b9401348b89","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3969.9145023148 +"https://github.com/mate-desktop/atril.git",2011-11-09 21:17:43,"f6ce926719943751cf65cacde7fae050593eb2d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 3, 0, 1, 2, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4392.8799768519 +"https://github.com/resurrecting-open-source-projects/openrdate",2019-09-22 14:41:50,"72726609622bc094a56023a03991634c048ddf5a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,876.4736111111 +"https://github.com/thlorenz/inline-source-map.git",2013-03-07 03:30:36,"f689a0d3fbff63392330ccc48c8a36fef527c0ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3126.5302314815 +"https://github.com/knu/ruby-unf_ext",2010-08-18 12:56:44,"fb233dd3bf580293d2d1555eb7431fac61c37f00","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4837.9721180556 +"https://gitlab.com/accounts-sso/libsignon-glib.git",2010-04-01 12:32:37,"f868f33bbc36d0a013f7f5367f813833f0a79c69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 24, 14, 6, 9, 4, 10, 0, 0, 9, 0, 16, 2, 0, 0, 0, 3, 0, 8, 5, 6, 0, 3, 8, 0, 1]","[0, 1, 6, 1, 1, 0, 1, 2, 0, 0, 1, 0, 3, 1, 0, 0, 0, 1, 0, 2, 1, 1, 0, 1, 2, 0, 0]",1,6,6,0,4303.8991666667 +"https://github.com/brunonova/drmips",2013-09-13 19:15:09,"b6b2b066062bcdd92dbaab542a14d6b6d96dcf7c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 6, 10, 7, 0, 0, 4, 2, 9, 12, 0, 5, 6, 4, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3165.66125 +"https://github.com/ygrek/extunix.git",2010-09-06 15:19:41,"ac39e0dff1852237be9c7d86729ab883a4b27c68","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 6, 0, 7, 3, 9, 0, 2, 2, 3, 3, 2, 0, 4, 6, 0, 0, 1, 1, 0, 0, 2, 1, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,4849.8496064815 +"https://github.com/libjpeg-turbo/libjpeg-turbo",2015-07-29 20:18:11,"2cbeb8abd92d5ad8a1bd415b51b3816213b15f31","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 11, 0, 5, 2, 0, 8, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 1, 6, 6, 0, 1]","[6, 0, 3, 0, 2, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",1,0,5,0,5541.3943171296 +"https://github.com/savonet/ocaml-shine.git",2012-07-24 22:43:42,"2986d44d1db304d99fde51b4790ce256b5c3faeb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3549.8277199074 +"https://github.com/ubuntu-mate/mate-window-applets.git",2018-01-18 23:06:09,"f7300c3f63ee3901b9186fce1d148bdc6c5c0701","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1140.5334375 +"https://github.com/prometheus/haproxy_exporter",2013-01-31 15:33:03,"553d344dddd00a54dfae06e744c726e3c73fca29","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0,3672.0941203704 +"https://github.com/kilobyte/kbtin",2006-06-15 10:51:13,"dd7e723be5c825616140ddc4b9af38669484d3d0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5761.0344212963 +"https://github.com/czerwonk/bird_exporter",2016-11-26 20:07:27,"c01a89080a0d3ea0049ec6bcee14a74ff26662aa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 10, 1, 0, 0, 0, 0, 3, 1, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 9, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,1,0,2542.4624768519 +"https://github.com/mmlabs-mindmaze/xdffileio.git",2010-04-22 15:33:38,"c52d7dcb72c7045fd44752b87ffd786e40c6ed61","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 6, 3, 0, 2, 1, 0, 0, 0, 2, 0, 1, 4, 4, 6, 2, 3, 0, 0, 0, 0, 0, 1, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3980.6902777778 +"https://github.com/jseidl/GoldenEye",2012-10-22 06:18:59,"904e6842e02a0a1a35b5e1b5348d1edf9f7e664b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3012.1110532407 +"https://github.com/gambit/gambit",2007-08-25 18:39:50,"1b67821c3d1d424b2eeb13bb5cc5cca84bd5df69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 8, 0, 3, 1, 0, 0, 0, 1, 1, 12, 8, 0, 0, 8, 9, 0, 1, 6, 2, 4, 1, 16, 12, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5777.7291203704 +"https://github.com/sionescu/libfixposix.git",2010-07-02 20:02:12,"e42fd953dd05301f9a1f72a7a56ffaa4e48e5e03","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 46, 31, 11, 0, 0, 0, 4, 10, 4, 0, 0, 7, 9, 36, 13, 0, 0, 0, 1, 1, 2, 10, 50, 1]","[0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0,4611.074537037 +"https://github.com/apjanke/ronn-ng",2009-11-05 19:48:25,"a774cc7ff4bd0f31945e6209614bc5f593a5d983","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 16, 5, 20, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 5, 0, 8, 32, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0,5091.8833101852 +"https://github.com/friendly/vcdExtra.git",2017-09-29 13:49:38,"9de1be819d21a8960ee94710219f32a57931bd05","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,5383.4657523148 +"https://github.com/free-wheeling/freewheeling",2007-01-03 22:39:41,"5bf4c275a3dec39410ee130a0d90384be3ef6388","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 10, 0, 11, 2, 2, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5218.8730671296 +"https://github.com/sebastianbergmann/global-state",2014-08-22 05:34:43,"6eb098b277d17d216e87783bd7d0037ad7bdcc72","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 6, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3396.3039351852 +"https://gitlab.freedesktop.org/libfprint/libfprint",2007-10-08 16:16:13,"7d3612d9f6ebc5ecbdc400acbb97333c7bb402c9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 8, 16, 14, 0, 22, 7, 4, 3, 0, 0, 2, 0, 0, 0, 0, 2, 0, 10, 3, 4, 6, 1, 8, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0,5757.163287037 +"https://gitlab.com/ericvsmith/toposort",2014-02-10 15:14:53,"ca86084b919df654c030905cb45438bdddf963e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3306.3456134259 +"https://github.com/kohler/lcdf-typetools.git",1999-06-29 17:05:42,"3c52d200c00ab0411fc066918e7a2fb5d5f8fc7e","[4, 0, 5, 16, 1, 2, 0, 2, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 5, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5649.3697337963 +"https://github.com/janlelis/paint.git",2011-06-29 13:39:35,"6951dff8b9a3a92adcdccbe71096019130a181ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4285.910474537 +"https://github.com/RichiH/vcsh",2011-05-22 22:36:53,"3ad6e99bcaf043ad9d6df0c1bd0376dc78ec31d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 10, 0, 14, 30, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 0]",1,2,3,0,4529.0101851852 +"https://github.com/iovisor/bcc.git",2015-05-03 15:33:53,"c3c4fc196a22950ee019e3144dc7b992718bc7c0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 0, 16, 12, 57, 23, 9, 9, 13, 9, 7, 25, 34, 29, 25, 31, 30, 46, 24, 42, 7, 8, 14, 8, 0, 1]","[3, 2, 0, 8, 5, 26, 9, 4, 3, 4, 3, 2, 11, 12, 12, 9, 12, 11, 17, 11, 14, 3, 3, 6, 4, 0, 0]",2,9,19,0,3150.8884143519 +"https://github.com/jeinzi/thunar-dropbox.git",2015-03-07 14:39:19,"97bd634e141fd23f8b667e5c1db45314d08a7a60","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,3052.1741319445 +"https://0xacab.org/schleuder/schleuder.git",2014-07-11 19:14:56,"43cd6a45f45a76afd6fda2855b3f1d080668b736","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 10, 0, 0, 0, 6, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",1,1,2,0,3437.0275462963 +"https://github.com/kstateome/django-cas",2012-05-02 13:55:50,"771b540bb081f82d27a436a4f56e077247339c7f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 4, 11, 5, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 5, 2, 0, 0, 0, 0]",1,2,1,0,2792.0546875 +"https://github.com/skk-dev/skktools",2000-03-12 12:17:40,"47d70ef264083de2ca8e786b5f52ca7d175d0bb5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 24, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4603.9943402778 +"https://github.com/jabberd2/jabberd2",2006-04-16 20:42:32,"4e058ee0b010abd2eab53f5ddd13ba5dca2c354a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 17, 33, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3913.9184490741 +"https://github.com/worldforge/eris",2001-08-04 18:15:03,"e8138a0933056814a1ed385b842eb7c841bb1bc0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 2, 3, 0, 0, 1, 1, 2, 0, 4, 4, 0, 1, 1, 5, 5, 1, 3, 3, 3, 0, 8, 5, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,5633.2405092593 +"https://github.com/LeaVerou/prism.git",2012-08-30 14:35:09,"56b64c049e31bf7c1ab543b222c7d3915f69e2f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 28, 6, 56, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0]","[1, 0, 5, 0, 0, 0, 1, 0, 0, 0, 12, 1, 2, 2, 0, 0, 0, 2, 0, 0, 0, 5, 3, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",4,0,6,1,3977.7420486111 +"https://github.com/pothosware/SoapySDR.git",2014-10-04 19:52:17,"864d008314dfb5c06412ef7507cb36a0d765a4b5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[56, 6, 4, 1, 19, 1, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 16, 26, 3, 2, 2, 1, 8, 1]","[3, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 1, 0, 0, 0, 1, 0]",1,1,0,0,3219.8508912037 +"https://github.com/Unidata/netcdf4-python",2006-09-11 02:58:40,"c28845017f61655a03f0d6b736c57814b705ee2b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 40, 55, 23, 17, 13, 1, 0, 0, 0, 8, 0, 0, 5, 0, 0, 2, 0, 0, 3, 28, 2, 17, 40, 11, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5780.898587963 +"https://git.eyrie.org/git/perl/net-duo.git",2014-06-11 23:19:07,"1629668e58c1abf4cdcd8f21c81532114607a408","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2033.875625 +"https://github.com/guessit-io/guessit.git",2015-10-03 09:35:21,"dab80bd200fd90ab83bc156789ca80c516e7fa0c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 10, 48, 22, 49, 21, 19, 14, 19, 3, 0, 0, 1, 0, 0, 25, 18, 16, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2993.2388078704 +"https://github.com/mathiasbynens/regenerate-unicode-properties",2016-05-29 11:55:46,"353d8d3491851e9059119e71328574ba1aa43834","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2664.7656597222 +"https://github.com/jeromerobert/hmat-oss.git",2014-11-21 17:27:34,"bfbb095b97f9bb27283094e23bb859ab6f9cc33a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 19, 5, 0, 5, 4, 10, 5, 5, 0, 7, 8, 5, 25, 5, 0, 17, 8, 10, 1, 5, 6, 1, 0, 11, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,10,0,3261.6730555556 +"https://github.com/SecureAuthCorp/impacket.git",2003-10-27 17:46:03,"f9882d7bc39547c63ee12714ebe93bfbf72818a1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 3, 0, 3, 2, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5583.002974537 +"https://github.com/savonet/ocaml-ladspa.git",2008-10-15 17:30:33,"1d119b1cf472972d65671ad44fb325a0a6bccad3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4935.8736458333 +"https://github.com/joliss/jquery-ui-rails",2012-02-18 14:26:23,"e82836a35366c63c58fb97b1e3ca02572df29636","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 18]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 3, 1, 0, 0, 0, 1, 0, 5, 2, 4, 0, 2, 0, 6, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4080.9697453704 +"https://github.com/airspy/airspyone_host.git",2014-02-08 21:43:05,"0a40841fb2baba3fb33c2f0e1b45e55f5ef34a98","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 1, 2, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,2,0,3592.9147685185 +"https://github.com/jasondavies/science.js.git",2011-07-09 11:51:46,"96af5328a672fa670a3852cb68a23de3758551d4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2725.1817592593 +"https://github.com/coturn/coturn",2014-04-20 21:10:18,"702b29bc22da6b6e441ed86ea059cbced5b123ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 12, 4, 2, 2, 15, 8, 2, 4, 9, 2, 20, 14, 13, 5, 1, 6, 7, 7, 10, 4, 28, 23, 18, 16, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3518.6321412037 +"https://github.com/abishekvashok/cmatrix.git",2017-06-23 09:04:49,"476808fe193cecc0d8086923c2c57c21793810f4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 1, 2, 1, 1, 0, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 3, 0, 0, 0]",1,1,6,0,2359.866400463 +"https://invent.kde.org/pim/akonadi-contacts",2016-08-05 00:53:03,"f577501874f64133a5d69ef2a150bde3e007bd2e","[84, 78, 3, 28, 2, 10, 10, 3, 3, 4, 1, 1, 5, 3, 12, 11, 0, 0, 2, 2, 10, 2, 0, 1, 2, 2, 1]","[1, 3, 0, 1, 0, 0, 3, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 16, 4, 5, 3, 4, 2, 1, 1, 2, 0, 1, 2, 1, 2, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0]","[1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,5566.4750578704 +"https://github.com/vasi/pixz.git",2010-01-13 06:04:56,"519963676415d412ca271d1967b7e200552f2297","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 19, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5100.8172569445 +"https://github.com/yamldb/yaml_db",2008-06-11 09:22:07,"aa4dec4f2da53e749ee29b89e063e7668b790313","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 1, 0, 3, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4943.5546759259 +"https://github.com/df7cb/sdate",2004-10-16 15:28:11,"175a4c17cbf9a01dd5df3f3a8cf91f6caca9ff26","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5170.3786689815 +"https://github.com/cpina/qdacco.git",2007-05-01 12:27:20,"ef5ec370662f1a21d6ee781af5d82df357b0b208","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5691.2413541667 +"https://github.com/lostisland/faraday_middleware",2010-06-28 20:12:17,"7d083d0d810dd50ad93dee46ab4e4f67110756e8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 11, 17, 1, 17, 12, 2, 6, 5, 0, 0, 3, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,4563.5818981482 +"https://git.launchpad.net/safe-rm",2008-06-20 10:52:21,"c815649e93b76114f6f933bd87d4f015d9802ceb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5109.717962963 +"https://github.com/Mimino666/langdetect",2014-05-12 15:44:46,"d04908e56ac9a53532bf337653b6027426ccdd70","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2551.6624884259 +"https://github.com/linuxmint/xapp.git",2016-08-22 11:58:31,"c48674027c110544f3ea78594e2d71a5c807d0b6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 12, 0, 2, 1, 0, 4, 3, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,4,0,2659.1398032407 +"https://github.com/Parchive/par2cmdline.git",2003-05-08 08:05:26,"856eed8a736e78ffbaba7a8f56c3f37c2fd74de1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 49, 1, 3, 1, 1, 0, 0, 8, 0, 3, 1, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4198.3890972222 +"https://github.com/lxqt/lxqt-sudo.git",2016-09-06 20:29:46,"1f7faa65b46e9596f6925f5188b9d542152e6461","[0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3089.1817824074 +"https://github.com/PyFilesystem/pyfilesystem2",2016-10-14 19:18:24,"b32e0ec1fbebe933af54ebe209d7fb67ef057b13","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 36, 5, 11, 8, 14, 25, 29, 4, 0, 0, 0, 2, 10, 1, 9, 4, 1, 4, 12, 2, 7, 6, 9, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 1, 0, 2, 1, 0, 0, 0]",1,3,5,0,2194.8289236111 +"https://github.com/zapier/django-rest-hooks",2013-09-05 03:12:12,"7c91a1babfec38266d9850741590a7354adcdb73","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2693.6027777778 +"https://github.com/kevin1024/pytest-httpbin",2014-05-17 20:43:32,"61dc9550227ba22365bd9211dae778121a633f2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 36, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3280.7402662037 +"https://github.com/backuppc/backuppc-xs.git",2016-05-16 11:00:35,"15d88112eaf531ec25fc89287074ea0cb1826f38","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1496.301400463 +"https://github.com/websocket-client/websocket-client",2010-12-28 06:42:43,"eadcbf7e891b88e7e7e24ca5bbf0a7df3988dbb3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 8, 0, 0, 0, 0, 0, 0, 2, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,4734.9677083333 +"https://github.com/jonschlinkert/snapdragon.git",2015-05-11 00:16:00,"912e5a945d3b0f5cb03ac9380eb42ef2915ee263","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 18, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2160.5059722222 +"https://github.com/justinmc/react-audio-player.git",2016-03-13 06:39:34,"c6ccc406057aa7fb207cfc7af9558cc2e02bf580","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 4, 2, 2, 0, 5, 2, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,2489.7878125 +"https://github.com/composer/semver",2015-07-15 18:54:52,"0ce26349ac7e579342d88e6a79ad12fe10bf8083","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 17, 0, 0, 1, 4, 0, 1, 3, 0, 0, 1, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,1,4,1,2969.0927777778 +"https://github.com/jordansissel/xdotool.git",2007-06-23 07:35:14,"3eec05af0c6d2adc05ed2d2f3f0c6df38779b3db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 6, 3, 5, 1, 0, 11, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5532.0414351852 +"https://github.com/AppImageCommunity/libappimage.git",2018-08-23 10:13:41,"ae0258ab484c1259facc8fd85aaa8c7857c3e155","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 19, 2, 0, 0, 2, 5, 8, 4, 16, 4, 1, 9, 18, 30, 25, 18, 1, 41, 38, 13, 23, 66, 43, 19, 1]","[0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 5, 0, 0, 0, 1, 0, 2, 1, 4, 0, 0, 1, 6, 0]",1,3,4,0,1789.5842476852 +"https://github.com/libkml/libkml.git",2008-03-21 19:05:14,"dc6b3f40ba93cfa45a1a2f4d3dcb3d14f0e46ac7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 3, 0, 0, 0, 25, 5, 5, 0, 17, 0, 1, 16, 15, 8, 0, 7, 28, 40, 1, 2, 9, 3, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3335.9697453704 +"https://github.com/google/googletest.git",2008-07-03 22:38:12,"d201456903f3ecae1f7794edfab0d5678e642265","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 2, 5, 4, 0, 1, 1, 0, 2, 7, 1, 1, 2, 2, 1, 0, 1, 1, 4, 12, 3, 12, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,5640.1267708333 +"https://github.com/pydata/patsy",2011-02-10 00:53:10,"cc233f8ed080a33ff2488c7a2104a40377e55f11","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4676.8131944445 +"https://github.com/jbenden/mod_clamav.git",2013-10-14 16:40:21,"2c2921bb0b4c7be102e2eecaed8d9bbf235e7585","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 7, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0,3704.0200810185 +"https://github.com/ros/rospack.git",2017-09-26 14:08:40,"7c60b5fa956320671ee80be4bc00a148a393049e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 1, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,3438.9073958333 +"https://github.com/rsnapshot/rsnapshot.git",2003-08-28 20:27:21,"dff5bf2cb6fe84bbc800aa9ac05e8192ff7e5c90","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 30, 3, 0, 0, 0, 0, 3, 10, 39, 31, 19, 6, 0, 0, 34, 60, 35, 29, 5, 34, 14, 6, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5724.6217361111 +"https://gitlab.freedesktop.org/xdg/xdg-utils",2006-03-21 20:27:09,"76e2c9cf157606f73b297f9a3dbd53125fc82510","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 14, 3, 2, 3, 3, 0, 1, 0, 1, 12, 18, 24, 3, 3, 10, 18, 32, 47, 24, 18, 1, 7, 5, 25, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,5592.548287037 +"https://github.com/cleishm/libneo4j-client",2016-01-05 19:43:50,"414937b0d6b44e5260dd07f2a8cec94d5f14766b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 29, 7, 5, 13, 2, 8, 0, 0, 6, 1, 0, 0, 3, 1, 3, 0, 4, 1, 4, 0, 3, 19, 12, 26, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0,1826.3064351852 +"https://github.com/Haivision/srt.git",2017-04-21 22:42:56,"bdeb5d24336f001a0e3d38894eb89af192c0d2d1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 2, 7, 3, 4, 2, 19, 28, 9, 5, 1, 7, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 7, 1]","[5, 1, 0, 4, 1, 0, 1, 3, 6, 4, 1, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",2,4,18,0,2427.4407523148 +"https://github.com/zeromq/czmq.git",2011-03-22 10:46:41,"e282512d60e3a3d3101ea7b5ca479640ad09e1d0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 25, 27, 11, 2, 5, 0, 0, 1, 6, 17, 20, 15, 2, 2, 0, 5, 5, 0, 1, 5, 0, 0, 8, 1, 0, 1]","[1, 1, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,4540.4409027778 +"https://gitlab.gnome.org/GNOME/libxml2.git",1998-07-24 19:24:09,"01791d57d650e546a915522e57c079157a5bb395","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 4, 2, 0, 0, 2, 0, 7, 3, 4, 2, 4, 8, 3, 3, 2, 1, 0, 3, 0, 1, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0,5790.1762037037 +"https://github.com/dejan/espeak-ruby/issues/new",2009-01-04 01:50:15,"e2c0de1cc8f4fed11acaca34b26e6bf67b4cf135","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2746.3319791667 +"https://github.com/phpmyadmin/motranslator",2016-02-22 15:18:06,"a5c55e4dc5e790acdd1600b97245b2acd051494d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[117, 7, 2, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,2762.9628356482 +"https://github.com/CristianHenzel/ClipIt.git",2010-11-05 21:37:05,"866aa76e3d3f6b13c8a80610221141e15f85146b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3780.8276736111 +"https://github.com/nodejs/string_decoder.git",2014-01-17 19:49:56,"713f66cf29a8ccaffb9ec9650dd5b15949418e7b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2072.5483449074 +"https://github.com/include-what-you-use/include-what-you-use",2011-02-04 22:28:15,"dee92b5e0acf7188d4e5bb3db6dec833a6d1ff2b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 6, 5, 24, 3, 26, 0, 10, 10, 23, 1, 58, 27, 6, 2, 19, 2, 3, 3, 0, 1, 4, 1, 16, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4692.8704050926 +"https://github.com/daradib/sidedoor",2016-01-01 04:54:20,"d563809bb9733b226a64255db3350114b8597da2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1283.144525463 +"https://github.com/systemd/casync",2017-01-13 15:08:52,"6c2bc6503fea90ca819b2fa134954f401361eaae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 5, 70, 2, 10, 17, 5, 2, 0, 0, 0, 14, 0, 10, 4, 4, 22, 3, 56, 23, 1, 18, 39, 5, 14, 0, 1]","[1, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0]",2,1,11,0,2466.7584606482 +"https://github.com/jquery/qunit.git",2010-11-27 15:45:17,"f7dab0d9dbc06e1c417b668c229fdb4c31168fce","[0, 0, 0, 0, 0, 0, 12, 9, 16, 0, 0, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 14, 0, 3, 6, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[5, 7, 0, 2, 2, 4, 5, 0, 0, 0, 0, 4, 0, 7, 2, 3, 2, 0, 0, 2, 1, 0, 2, 2, 3, 1, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",6,0,5,1,5676.0677430556 +"https://github.com/ukui/ukui-menu",2017-01-20 06:25:15,"d7332072a067a7dc65cc7922a7073e7f8ddc0ca4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 5, 4, 2, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,2046.8180787037 +"https://github.com/OpenSCAP/scap-workbench.git",2010-03-18 09:36:26,"ab4ad172be70d5e7e4d52505a73984eeab472174","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 8, 3, 0, 6, 11, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",3,1,4,0,4660.2892824074 +"https://github.com/luke-jr/libbase58",2014-08-17 11:52:36,"d761ab64017b7f93c6ad8ec1edc5225eda9b3433","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 4, 2, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,2238.1648148148 +"https://github.com/i18next/i18next",2011-12-16 12:52:21,"38f88dc7a55c925ec90e0bdfb918eb574f92d8ad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 7, 11, 4, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 8, 1, 0, 3, 2, 3, 1]","[1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,7,0,4381.3880439815 +"https://github.com/mathiasbynens/unicode-tr51",2014-09-28 10:16:34,"c9e905a0f13301f9ae8550d22defb2f87f3a5aec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1619.1367939815 +"https://github.com/Oblomov/clinfo",2013-06-06 11:18:34,"aebb58cb9330d64f7f5a814089cba9b952d1a070","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3809.3789236111 +"https://github.com/bfirsh/django-ordered-model.git",2010-01-24 14:36:33,"1814f6fee0deb7dd3c9908714612914559b3e5d8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5015.3152430556 +"https://github.com/datalad/datalad",2013-07-30 04:33:49,"dadf69727c889d2b637b9c641ec7441e0181b446","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 1, 13, 4, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 5, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3855.2531018519 +"https://github.com/freelan-developers/freelan",2011-09-21 13:11:48,"ca4bb1fb8abbdb52bd9f35e61a605055914d7650","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 1, 0, 0, 0, 0, 3, 33, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 21, 26, 0, 4, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3106.2727893519 +"https://github.com/libwww-perl/HTTP-Message.git",1995-06-11 23:29:42,"fda3177554bec566170bbe94fc5c48bbdc1a7c80","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 14, 74, 32, 35, 2, 60, 21, 32, 15, 60, 71, 10, 2, 1, 0, 6, 0, 3, 4, 0, 1, 2, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5655.1268518519 +"https://gitlab.gnome.org/GNOME/gcab",2017-12-14 13:11:42,"1da391c3f762ff2413c688e1cc02515269fd155f","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 1, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3919.5894328704 +"https://github.com/jobovy/galpy.git",2011-09-18 16:16:49,"bae798f2d46a63aa0fe34ce19419f121aa77ee19","[15, 27, 7, 34, 18, 1, 0, 0, 0, 0, 0, 0, 6, 2, 3, 2, 0, 1, 6, 0, 0, 7, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 17, 161, 106, 77, 19, 25, 1, 11, 1, 0, 7, 0, 6, 3, 4, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4901.3716550926 +"https://github.com/twilio/twilio-python",2009-09-15 05:59:23,"2ce43ff021ef2f462dcd243b0a9312bf3befdc07","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5203.3486689815 +"https://github.com/Castaglia/proftpd-mod_tar.git",2011-10-20 16:55:53,"f9ff5f1670f2d06b524a726861ad21744c7ffd7f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4180.9053935185 +"https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript",2017-04-15 12:17:04,"248cbf0f63b899d0422667e56ad0db603df9b5a3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1977.9928009259 +"https://github.com/airspy/airspyhf.git",2017-07-08 09:55:34,"5254669c546f0acbc4b0288946188c37dc532527","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2334.5221527778 +"https://github.com/igraph/python-igraph",2015-07-24 21:14:30,"2b1d18a02adba76b930fa6b72c3b5e2bf292b282","[6, 2, 8, 0, 0, 17, 1, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 4, 12, 2, 2, 2, 0, 0, 3, 4, 1]","[3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 6, 11, 0, 0, 2, 0, 1, 1]","[1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",2,0,6,0,5787.0935416667 +"https://github.com/smarty-php/smarty-lexer.git",2014-12-15 18:07:19,"4862b3af01d6db6794f9207e72e077709b1c605c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2967.1062731482 +"https://gitlab.com/accounts-sso/libaccounts-qt.git",2010-03-08 12:41:43,"1e7eee8e1e13daedcd62d16c1adcdf67fd1dc280","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 3, 1, 9, 7, 2, 0, 4, 0, 5, 0, 5, 6, 0, 6, 0, 4, 0, 0, 0, 3, 3, 0, 0]","[1, 0, 0, 0, 1, 0, 3, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0]",1,5,8,0,4531.1744560185 +"https://gitlab.gnome.org/GNOME/gnome-contacts.git",2011-05-05 15:02:17,"1a6482b8a3d9a3176b21ab875ab255633103a18d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 22, 14, 8, 16, 16, 45, 38, 27, 7, 5, 3, 6, 7, 22, 57, 76, 69, 47, 81, 27, 3, 3, 8, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,80,0,4604.2285532407 +"https://github.com/apache/trafficserver",2009-10-10 00:06:30,"e5628fa25197a0e438c2edfffb17a626e0983c8c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 4, 7, 6, 3, 68, 5, 16, 6, 6, 0, 2, 2, 4, 4, 26, 29, 27, 17, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,5180.0140046296 +"https://github.com/lxqt/qterminal.git",2010-09-11 08:50:10,"e5102869800e48fd94c81a51f318031b5d1b064b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 5, 0, 1, 4, 2, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4827.1334143519 +"https://github.com/doctrine/sql-formatter.git",2012-04-30 06:33:11,"b676c13ae9bb3eef5620cde54556a96fe61bfbf5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 1, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,4125.6360300926 +"https://github.com/clojure/core.cache",2011-11-23 02:00:48,"2715844f5e0ec10d4ea83047a084d540058a25eb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,4284.5170138889 +"https://github.com/npat-efault/picocom",2010-05-28 00:17:52,"464e25056f19ce1c486e35ad969d8b5928915d4d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2876.49875 +"https://github.com/andrewrk/libgroove",2013-09-09 01:53:53,"4a41ac68da7b09bd2d834eb2b97c0d8be5669d1d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 37, 3, 5, 5, 5, 31, 43, 10, 10, 40, 4, 0, 0, 0, 0, 0, 0, 1, 1, 4, 6, 3, 6, 0, 1, 1]","[0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3739.9100810185 +"https://github.com/kelektiv/node-uuid",2010-12-28 19:06:46,"fba452bc2417d85848682ecf6281ae9290a66af1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0,4670.2036805556 +"https://github.com/royhills/arp-scan",2006-06-07 10:24:11,"a747b34a50d86a2340fa8753ecafd72c2509a9e0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 11, 18, 9, 7, 2, 10, 2, 0, 0, 0, 1, 4, 0, 0, 1, 1, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5689.2689583333 +"https://github.com/direnv/direnv-deb",2014-04-05 17:34:54,"1c31b5dd4a4a95ac5b8461a123b3905d7d169fec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 6, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3256.5212847222 +"https://github.com/otsaloma/gaupol",2005-07-24 01:06:50,"0fce5e809e71e91bc1e122193077c624803f40e1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 24, 23, 17, 26, 9, 14, 5, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 6, 11, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,0,0,5574.4414699074 +"https://github.com/prometheus-community/postgres_exporter",2015-08-24 17:28:41,"2a08787a90840a27d10ec519005ff92148055cd1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0,3027.0144328704 +"https://github.com/df7cb/pg_filedump.git",2011-01-18 01:33:27,"8446d97d7240687cdbf18d5ca65916bf18bac30e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4622.5029861111 +"https://invent.kde.org/plasma/khotkeys.git",2000-07-19 16:50:09,"8effb2095b2004ec3238513a1b55ac3d6ac0e969","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5783.4645138889 +"https://github.com/pagekite/PyPagekite",2010-11-06 10:43:28,"a096b25b945ab9587878d6da336eba643aef2b83","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 44, 10, 7, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 0, 9, 14, 27, 24, 47, 82, 2, 18, 10, 2, 6, 13, 3, 13, 22, 8, 0, 5, 11, 6, 14, 0, 21, 1]","[0, 0, 0, 1, 0, 7, 3, 9, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0,4048.006875 +"https://github.com/gap-packages/toric.git",2016-12-28 15:18:16,"569b9f9cda82232db43170de55d27b9d61e3cb1c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 12, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0,3029.62 +"https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git",2014-06-11 16:19:34,"7dfc9bbce77b22bed5a3fe39350236835bc2c98a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3262.6136111111 +"https://github.com/lipnitsk/libcue",2004-06-24 23:32:16,"38b43d9b56a6b70c82ec94bb30ceba356c3e2e35","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 1, 0, 1, 1, 42, 11, 27, 5, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5295.1366435185 +"https://github.com/savonet/ocaml-gstreamer.git",2009-06-04 18:54:09,"c05510914886cc0b2d9e429b99ed8053b7736f2b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5244.7535532407 +"https://github.com/mathiasbynens/node-unicode-data.git",2013-08-25 14:20:29,"7fe712d5de658f8d846324cf77e779d24aa40f51","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 6, 0, 2, 0, 0, 0, 0, 1, 0, 0, 8, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3658.0537962963 +"https://github.com/prometheus-community/bind_exporter",2015-08-20 22:09:14,"fe439e3daedc3d50ccb48ba2e82c099a3951f927","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,1,2,0,2946.8200115741 +"https://github.com/moneta-rb/moneta",2009-02-12 06:56:10,"3cbb15dbe3ea92e53366339b521dbdc7cb08f074","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 7, 0, 0, 0, 0, 0, 9, 8, 1, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,9,0,5182.1595023148 +"https://github.com/brandon-rhodes/logging_tree.git",2013-10-29 19:18:42,"1f1959dad5c3497e2e3b94e80ea7a06dc683da16","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3349.1260532407 +"https://github.com/zeroc-ice/ice-debian-packaging.git",2016-05-16 15:14:17,"b6b4ce77bd2cc831c5ac4ca7927aa0f8c3645396","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 11, 0, 86, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 0, 1, 7, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,4,0,2730.2990046296 +"https://github.com/jd-boyd/python-lzo",2011-09-15 15:11:10,"2901b79af6df54d19050a65835e4af54e759ed8c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4282.0784259259 +"https://github.com/troglobit/inadyn",2010-10-16 11:58:39,"1f53ed875c207061781a481e07b8866a780792f9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 2, 18, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4734.4166203704 +"https://github.com/colmap/colmap",2016-04-07 17:25:53,"fe8f82aee9829c6c828158da2695e2d87a977f74","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 12, 18, 5, 16, 12, 11, 0, 8, 3, 11, 5, 0, 3, 8, 6, 19, 52, 18, 31, 4, 46, 12, 16, 3, 9, 1]","[1, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,9,0,2802.2067824074 +"https://gitlab.com/ixion/ixion.git",2010-03-14 01:20:44,"43747fea3ca218d60d69d03dec75ead225e70bea","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 1, 11, 0, 49, 8, 8, 7, 11, 8, 9, 15, 0, 70, 16, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4997.0195601852 +"https://github.com/grazzolini/chkboot",2013-11-26 08:27:16,"e41d82c11edadade492861be233e681345d76ed6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,1967.5233564815 +"https://gitlab.com/accounts-sso/signon-plugin-oauth2.git",2015-09-11 14:37:22,"547aa29eae8310fea499060cad3169e3cee4272b","[0, 0, 0, 0, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1,3669.9502199074 +"https://github.com/rpkilby/django-rest-framework-guardian.git",2018-06-22 22:24:37,"ff1979c3f90addcc9653ec4ba0fa19ef3b8fe7b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,626.7550231481 +"https://github.com/nadoka/nadoka",2004-05-01 09:42:10,"56de781877070d3afaa8f6cdafeb48cb503eb6fc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 0, 0, 1, 0, 0, 0, 4, 25, 11, 20, 4, 2, 4, 7, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4550.0664351852 +"https://github.com/thestk/rtmidi.git",2016-10-13 12:35:50,"4487feb46001524debbd7f3de7e9ce87b13dd7b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,1,1,3632.2693287037 +"https://github.com/amnong/easywebdav",2012-03-12 11:32:41,"6d2a01a16c9ba8edd0702edc983f67036e8cfab2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,813.3765625 +"https://github.com/man-pages-zh/manpages-zh",2008-02-14 06:27:15,"f7dfef511be2f6fbf3889306a45d67346a07c027","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 23, 20, 0, 5, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,5615.6429976852 +"https://gitlab.gnome.org/GNOME/accerciser",2007-03-12 20:41:02,"b72aa74a514f71fcfe400c0bdb746fa00575174c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 6, 12, 15, 33, 15, 5, 15, 22, 11, 12, 8, 4, 10, 5, 7, 9, 2, 11, 15, 8, 11, 10, 9, 21, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,41,0,5770.6592939815 +"https://github.com/nelhage/reptyr",2011-01-22 01:13:02,"e30d4ad0a9d5a522e7b20d319f49f2276502ad8f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 2, 0, 3, 4, 2, 2, 0, 0, 0, 0, 8, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4619.4708680556 +"https://github.com/jvinet/knock.git",2011-07-05 17:58:55,"2c5648d9df79c48b7b7e2faa22199517bbe86a84","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3585.1200578704 +"https://github.com/przemoc/metastore",2007-05-18 20:06:20,"ebf55d9ad7681ecf39bea5c5919119c0ad4fb423","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5431.9336689815 +"https://github.com/tpope/vim-pathogen.git",2011-07-24 21:35:26,"72586074e5d3b4c32cfc9638bae61b1130670f59","[0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 8, 5, 4, 0, 0, 2, 1, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0,5052.6545717593 +"https://github.com/bestiejs/punycode.js",2011-11-11 13:36:59,"23367ea579970867b55a4957b49dc0295b188bfb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 6, 0, 0, 0, 8, 1, 0, 3, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4371.2037384259 +"https://github.com/luakit/luakit",2010-05-04 09:48:24,"d35cd37ea2ca77adfc691a699ea5dd1e36280d14","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4157.7710763889 +"https://github.com/rsyslog/rsyslog-doc",2007-03-13 08:26:18,"f0d08887b857fce1fe95a68d29eb7a07cd527d7c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5603.1068634259 +"https://github.com/jmschrei/pomegranate.git",2014-11-24 08:03:43,"e9d7596ce3264e340272acebb223e37cdeea1c23","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 1, 0, 10, 0, 2, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 1, 2, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,3275.6750347222 +"https://github.com/statgen/libStatGen",2010-10-20 16:52:09,"78c2accf9c3b0b662e5ce2417d8cf35557fb3f80","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 3, 9, 5, 6, 3, 4, 0, 0, 1, 0, 1, 7, 1, 4, 2, 2, 5, 2, 6, 7, 6, 13, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 3, 5, 1, 0, 0]",2,2,5,0,3791.9891319445 +"https://github.com/bitletorg/weupnp.git",2013-04-26 00:39:58,"a7a8863abcaf7dbadef5344b691ec65095152d3b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,896.40375 +"https://github.com/osmcode/osmcoastline.git",2012-03-07 14:39:48,"eebf1f569df1aaa97e5591fb976efa47ad9a6911","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 12, 34, 0, 18, 13, 17, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4116.9983680556 +"https://github.com/nahi/httpclient",2003-01-11 01:27:50,"e302e0021d5bb5b2e612ed055909203b2d540e55","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 9, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4669.1735648148 +"https://github.com/fog/fog-rackspace",2016-02-16 19:55:42,"dda9454750d616a6fd65b4d1b3e9f99120eff82d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 4, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1479.8924537037 +"https://github.com/ocaml/dune.git",2016-12-02 13:54:32,"cdcd7e907f949fae66a0e57e569c7e0d46f40c3b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 12, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 1, 1, 2, 1, 1, 3, 1, 0, 4, 50, 117, 54, 39, 24, 24, 11, 10, 12, 27, 18, 24, 52, 20, 70, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]",2,2,20,0,2601.2655208333 +"https://github.com/jarun/bcal.git",2016-09-21 17:49:39,"816bdefd80d8577521593e1e5746bb961366f562","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 0, 17, 3, 0, 0, 0, 1, 0, 0, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,2530.8116435185 +"https://github.com/pagekite/PySocksipyChain.git",2011-06-12 19:52:37,"0b88c236f75b1d1a417573de16a42b3050777eff","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 8, 0, 8, 1, 7, 27, 1, 3, 3, 1, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3262.1183564815 +"https://github.com/csound/manual.git",2014-03-24 13:43:52,"4f094f3576820afe02a4ef29c7efe8edc6ef10e6","[4, 2, 8, 14, 0, 7, 5, 0, 0, 0, 0, 0, 1, 2, 8, 10, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[1, 0, 2, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 6, 7, 7, 4, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,3,3903.8218171296 +"https://github.com/kamorin/DHCPig",2012-03-13 03:01:01,"6a422b6dff431986068bd1d4bf83967c16ca40e2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 9, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,1930.9329398148 +"https://github.com/puppetlabs/gettext-setup-gem",2016-03-01 00:33:21,"806156e06df96092ac93632597f7632b0131a38f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 5, 0, 0, 1, 1, 0, 0, 0, 0, 2, 1, 0, 5, 0, 0, 1, 0, 2, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0,2424.9263310185 +"https://github.com/ropensci/webmockr.git",2014-11-15 16:30:52,"7fe42252da25357dd4a16f58e3cb21ac1eebce84","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3289.3273726852 +"https://gitlab.gnome.org/GNOME/balsa",1998-03-05 18:10:18,"6daf6408273c095f1cb7be80c9910f32a9767bba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 8, 24, 15, 6, 16, 17, 30, 64, 10, 0, 27, 16, 8, 5, 1, 0, 16, 42, 32, 23, 54, 51, 29, 104, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,19,0,5766.8402083333 +"https://github.com/mapnik/python-mapnik.git",2005-02-18 18:14:43,"9f6324dd6e8799f4e721171f84a7c468b82ced2b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 2, 0, 6, 5, 8, 4, 1, 2, 1, 0, 0, 0, 0, 0, 12, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5494.8782638889 +"https://github.com/phaag/nfdump",2015-08-09 12:12:03,"3cd8a326873dde82d3f0315ddd1f48c7e1f70f51","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 2, 1, 0, 2, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]",1,1,4,0,3040.3677314815 +"https://github.com/kbandla/dpkt",2012-06-06 18:42:25,"8ac2695ecf2add43fdb545bd98522f13302fc163","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3886.9183680556 +"https://github.com/henrythasler/simple-image-reducer",2010-12-11 11:58:13,"cb8c23b232220e94d67bfa3aa2717a9c9efdc729","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3392.7195833333 +"https://github.com/igraph/igraph.git",2005-09-06 21:26:56,"e93f04e1f4a660b605d1626154182681c0ea5c3e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 1, 2, 3, 6, 1, 0, 0, 1, 5, 6, 1, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 11, 2, 4, 3, 4, 2, 6, 5, 2, 1, 1, 5, 2, 1, 0, 4, 8, 10, 6, 9, 6, 5, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",0,1,1,0,5787.0887037037 +"https://github.com/qix-/node-error-ex.git",2015-08-25 21:13:29,"8b6ab032809e480b2a2eda5107e29866af3c4f78","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,1448.5513425926 +"https://github.com/google/gopacket.git",2012-11-21 00:26:12,"2ceda0fba98db30a02a733b9bfe942dfa7e6cffc","[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[9, 36, 28, 55, 27, 9, 20, 22, 6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 9, 1]","[1, 2, 3, 3, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1,3976.8553587963 +"https://github.com/jquery/sizzle.git",2008-08-24 21:30:09,"4257b603e8b0dc3010111dda0807ec41a07d8f56","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 2, 0, 13, 10, 0, 0, 0, 0, 4, 15, 12, 2, 13, 20, 16, 20, 0, 3, 20, 16, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,1,5491.7580787037 +"https://github.com/rolandshoemaker/CommonMark-py",2014-09-14 06:32:37,"abf50406ad2a182a490fced7bb717a0a613aa79a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[102, 91, 17, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,472.4580902778 +"https://github.com/explosion/murmurhash",2016-03-13 22:02:05,"4681f35259643a6278e2ee02d3b5e676d9d32b81","[0, 0, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 6, 6, 2, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0]","[1, 4, 0, 1, 5, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2,3382.167962963 +"https://github.com/kilobyte/3270font",2012-09-23 15:36:01,"fb0ed0c2cddcabc323d83f87acef12e0b55bb9fb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 4, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,3596.6082060185 +"https://github.com/expressjs/vhost.git",2014-03-05 06:31:08,"d6102e0b5baf2dcb9fc7e34161c770a6e0533c0b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3246.905150463 +"https://github.com/linuxdeepin/deepin-picker",2017-10-10 15:18:24,"74b6369a2c9506b4d062bb89029fc97a2c5982dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 1, 0, 27, 0, 2, 2, 0, 1, 1, 1, 0, 2, 0, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[3, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,10,0,2197.4726851852 +"https://github.com/phase1geo/Minder.git",2017-12-23 18:54:43,"aec617998c1467f5951fde2e0fe21a85293d8680","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 2, 7, 9, 3, 2, 12, 12, 8, 12, 22, 13, 16, 15, 15, 11, 20, 10, 31, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,1,0,2148.0431712963 +"git://git.lttng.org/userspace-rcu.git",2009-05-08 15:26:27,"6991f61a6a02d95a4275bcc90aa9bb7037a9e69e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 39, 1, 9, 2, 0, 3, 0, 4, 3, 2, 3, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 13, 7, 10, 28, 43, 12, 8, 2, 0, 1, 0, 0, 0, 0, 0, 2, 2, 28, 38, 48, 33, 7, 9, 2, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,5,0,5386.5968865741 +"https://github.com/typester/Test-RedisServer.git",2012-07-30 08:37:26,"85bbf4cb8aa30bfe93f1d98b9a5f64b5f42bee14","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 6, 0, 7, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3497.317025463 +"https://github.com/yaml/pyyaml.git",2006-02-25 16:08:26,"466963525e6e65ee94b37f54da0d4448ac04f7ad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 1, 6, 2, 3, 3, 11, 5, 1, 7, 5, 6, 0, 0, 1, 3, 2, 3, 1, 1, 0, 2, 0, 3, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5656.1894444445 +"https://github.com/fudge-py/fudge",2009-02-01 23:17:41,"e07229ed33f04d9a99dd966f191caf3c1d56c413","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 11, 0, 0, 0, 0, 0, 1, 1, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 2, 0, 0, 3, 50, 74, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,3423.9785069445 +"https://github.com/hakaishi/nobleNote",2012-08-13 14:44:46,"84fee555633b60d02c2cffa4e6c698b36a5301a3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 48, 43, 31, 25, 33, 6, 0, 3, 0, 1, 0, 5, 10, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 30, 25, 8, 14, 27, 16, 14, 12, 13, 20, 10, 9, 8, 11, 9, 9, 4, 2, 1, 0, 0, 2, 0, 0, 2, 0]","[0, 2, 2, 0, 2, 1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,2,4167.6854282407 +"https://github.com/eavgerinos/pkg-pick",2015-03-15 00:31:54,"e5b58d299c7163bee8a7b4014782e2829d11fcea","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1591.7380671296 +"https://gitlab.gnome.org/GNOME/folks",2010-04-02 21:43:08,"4d71ef433b3427036bab270203988cf6463313be","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 12, 14, 0, 0, 7, 5, 4, 8, 2, 5, 36, 42, 28, 59, 9, 9, 25, 26, 22, 28, 18, 24, 13, 12, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,4953.6632407407 +"https://github.com/johanmattssonm/xmlbird.git",2015-05-26 18:51:07,"1b857ff10c5c00714e553671c074870aa9b2e1a0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 6, 8, 0, 11, 12, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,3,0,3048.2602777778 +"https://github.com/linuxdeepin/deepin-movie-reborn.git",2017-07-28 08:29:14,"71c75afb5006682eb1a35e5dfd94e91e09edc049","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 2, 9, 6, 8, 14, 10, 14, 13, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 32, 68, 60, 0, 66, 78, 76, 72, 2, 36, 58, 20, 14, 10, 26, 18, 9, 29, 33, 17, 7, 6, 3, 4, 1, 0]","[2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 0, 1, 1, 0, 1, 0, 0]",3,2,8,0,2456.1088657408 +"https://github.com/DarwinAwardWinner/with-simulated-input.git",2017-07-20 19:29:22,"6f338aeaedc9a4f5cd3d2dbee9742ceb01a66728","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 11, 0, 3, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1593.3461921296 +"https://github.com/gruntjs/grunt-cli.git",2012-11-01 18:40:39,"95e3b9f85daa3ca4799be9cf0b503429c83a5a4d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 0, 5, 8, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3126.2931944445 +"https://github.com/jackaudio/jack1.git",2002-05-16 01:34:51,"e1ad1100f7ace35e9e9eb5a6e1333f766726f672","[0, 8, 7, 5, 10, 4, 0, 0, 0, 0, 4, 4, 3, 15, 9, 18, 8, 2, 4, 0, 5, 4, 3, 3, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 11, 0, 5, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 8, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0,5288.1344444445 +"https://github.com/usit-gd/zabbix-cli",2014-10-09 08:47:12,"d3878d14400b9208cee290f88c1a2baefe5ebbc6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 34, 14, 7, 6, 7, 4, 1, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 12, 0, 2, 0]","[0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,3,5,0,3337.0107407408 +"https://github.com/r0x0r/pywebview",2014-11-20 11:38:04,"3c54672ea368bdda26c623767dcffb4176a1a72b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3307.0006597222 +"https://github.com/tudo-r/BatchJobs.git",2013-11-08 11:27:16,"7dc68bb4be52941f3c9c7c31ce6101bb66abe29b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3055.3365162037 +"https://github.com/suntong/dbab.git",2013-12-02 03:17:17,"51ff5b84b9797ac1973b1f2c8125a9a37fa81f57","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3490.7212037037 +"https://github.com/thp/wavbreaker.git",2003-02-05 01:40:48,"89afdc553880dabd890a6d44ad42db371145969b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 1, 3, 6, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 8, 1, 0, 1, 4, 4, 2, 0, 2, 4, 0, 0, 0, 0, 7, 0, 1, 10, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5680.2477546296 +"https://github.com/davesteele/cloudprint-service",2013-04-24 02:49:49,"6e4e751ff62fb19d34455a71b9e1022931515bd2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 8, 11, 2, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0]",2,1,0,0,3095.4250115741 +"https://gitlab.com/cryptsetup/cryptsetup",2008-03-22 08:23:35,"7dc7b90a9b37626d933771a932b26bcd6a5d0ba6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5746.1947222222 +"https://github.com/Pulse-Eight/libcec.git",2011-09-28 22:53:52,"abbca718e0f6b5a20170561beeacafa0b5852500","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 39, 23, 10, 83, 47, 64, 14, 45, 54, 19, 11, 23, 27, 11, 23, 26, 22, 38, 101, 41, 41, 11, 21, 18, 22, 1]","[5, 4, 1, 0, 3, 2, 3, 1, 0, 1, 2, 0, 0, 2, 1, 2, 0, 3, 1, 0, 2, 1, 2, 0, 0, 1, 0]",1,2,12,0,3960.8179282408 +"https://github.com/js-cli/fined",2016-05-27 23:42:36,"cb99d51b73ec4d588594320bab41b6019ad78c6c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,1982.8433680556 +"https://invent.kde.org/plasma/kde-gtk-config.git",2011-01-11 14:03:34,"d83eb539fe0b004a3a1ced8935006497b0b7898a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 0, 4, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 0, 0, 6, 0, 1, 2, 3, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,2,0,4730.9115509259 +"https://github.com/spesmilo/electrum.git",2011-11-04 17:00:37,"6db1a31e58ee15c448448139e7d3a9e72b14268f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 34, 21, 26, 50, 45, 29, 7, 0, 23, 22, 1, 21, 49, 71, 31, 1, 0, 34, 72, 28, 43, 24, 7, 0, 24, 1]","[3, 5, 2, 4, 7, 8, 2, 0, 0, 3, 2, 0, 1, 6, 1, 8, 0, 0, 7, 17, 0, 1, 0, 2, 0, 2, 0]",1,4,8,0,4420.9696643519 +"https://github.com/ncbi/ncbi-vdb",2014-09-24 20:06:14,"68e800e420b7dcb6bab154ea9296f087091a9a03","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 51, 47, 44, 25, 47, 13, 20, 23, 14, 24, 21, 17, 6, 0, 5, 14, 25, 28, 7, 9, 5, 0, 0, 0, 0, 1]","[0, 8, 11, 9, 6, 6, 2, 4, 5, 0, 5, 2, 1, 1, 0, 1, 4, 4, 3, 1, 0, 1, 0, 0, 0, 0, 0]",1,12,18,0,3367.922349537 +"https://github.com/SciRuby/rb-gsl/issues/new",2011-12-31 01:20:32,"1539ae2818c50eacb01cda80b06de12035b7a394","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 2, 6, 6, 9, 7, 0, 3, 15, 14, 0, 5, 7, 3, 9, 2, 2, 4, 2, 6, 2, 4, 2, 19, 21, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0]",2,3,5,0,2746.3319791667 +"https://github.com/costales/gufw.git",2019-10-30 18:57:39,"9869db431cc942b2cef7e959655073c16d74e072","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1462.9175578704 +"https://github.com/RDFLib/rdflib-jsonld",2012-02-03 19:44:38,"ff496514a606ae9f3caba4c63d69a7ebe8d14bbe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3605.0071180556 +"https://github.com/swanandp/acts_as_list",2007-09-10 04:23:59,"e1ed2aac46ad6edff5b16329c38a351a62bc2a81","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4913.7026157407 +"https://github.com/rfjakob/earlyoom",2014-01-28 23:16:37,"98d19981639a3685d631214b2c2c5e97f609f12a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3559.2982523148 +"https://github.com/marioroy/mce-perl.git",2015-08-22 04:46:52,"b8b5ac01611dd437fe3912f95378c7621440b995","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 6, 1, 0, 0, 9, 19, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2944.7772337963 +"https://github.com/dell/libsmbios",2007-05-15 20:00:18,"547a4d4c6f2ebf5132ab6dd978a30716869b8598","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 32, 1, 0, 0, 3, 9, 0, 0, 0, 0, 0, 5, 1, 9, 2, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0]",1,2,1,0,5712.8510532408 +"https://github.com/FreeRDP/FreeRDP",2011-06-30 19:12:51,"f6723028dc8d8722743d8d7dfa233ce298d55b1c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[80, 119, 25, 53, 41, 87, 86, 135, 71, 90, 34, 44, 82, 30, 19, 67, 54, 25, 14, 26, 47, 52, 26, 44, 47, 16, 1]","[10, 25, 4, 11, 6, 14, 16, 24, 11, 20, 5, 13, 10, 5, 2, 25, 18, 8, 3, 5, 12, 14, 8, 10, 16, 7, 0]",1,16,44,0,4547.9750347222 +"https://gitlab.gnome.org/GNOME/pango",2000-01-13 04:12:07,"282fb5fc9f9d01c4d933a6eb6bee6ae9f0d512c7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 4, 5, 9, 2, 2, 2, 3, 1, 0, 8, 1, 1, 7, 5, 8, 0, 3, 9, 6, 3, 4, 0, 9, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,9,0,5787.3543287037 +"https://github.com/acoustid/chromaprint",2010-07-24 20:27:20,"bbc0f6354a5f9e9b9637c91290ed1f4fa895849c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 4, 0, 3, 3, 0, 1, 0, 0, 7, 7, 3, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 6, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4607.495162037 +"https://github.com/bobrik/node-mess",2013-05-05 15:03:28,"642188052bc2ddbd0300531d37dacfc6fc470071","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,420.8625578704 +"https://github.com/KhronosGroup/OpenCL-CLHPP",2013-01-25 16:25:29,"5199d186f50f82333bfdb40a2e25e656a4068854","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2856.9625115741 +"https://github.com/hackerschoice/THC-Archive",2018-06-04 04:10:53,"1bf41562f218d9a607f88640fb33bf0775424756","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1834.166099537 +"https://github.com/schrodinger/maeparser.git",2017-05-16 16:09:30,"4138b084534136761d6b105f8ad624f1a43708a8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,2087.1343287037 +"https://gitlab.gnome.org/GNOME/gnome-clocks.git",2012-08-14 20:02:22,"fb4e2ba1d301d81772ea271bc3dfba127069163b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 5, 0, 0, 6, 11, 5, 1, 17, 0, 1, 5, 4, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[111, 73, 83, 24, 18, 57, 8, 6, 2, 1, 2, 1, 7, 21, 15, 25, 10, 11, 10, 7, 11, 5, 5, 3, 11, 12, 1]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,1,85,0,4242.1822685185 +"https://github.com/mtrojnar/osslsigncode.git",2013-02-17 09:16:25,"6aa4280d843a7181acd208e37232734fda9d29c8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 15, 13, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3941.3454282407 +"https://github.com/8bitbubsy/pt2-clone",2019-12-02 11:00:24,"0538878aa43d53593ed4432cc9b06a4b15d4e0d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 1, 0, 0, 1, 0, 1, 4, 2, 5, 0, 0, 0, 0, 1, 0, 1, 1, 1, 3, 1, 3, 3, 1, 1, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,1458.0896180556 +"https://gitlab.gnome.org/GNOME/gnome-mines.git",1997-11-24 22:32:29,"34d45b180e2eeb2890d7f41b4a7af0ddc194befb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 1, 5, 1, 5, 5, 13, 5, 6, 5, 13, 3, 0, 0, 0, 0, 0, 2, 1, 0, 1, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,24,0,5732.1513425926 +"https://github.com/intel/ledmon",2011-01-12 21:48:36,"af8f20626e4e36cdf4bb9955fc65f22fec155580","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4704.5067592593 +"https://github.com/powa-team/powa-archivist",2014-06-13 08:16:37,"b83225398d23d79c4eaf3f3ef15d9a416f8eb9f0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 4, 0, 0, 0, 0, 0, 6, 10, 5, 23, 18, 7, 1, 14, 9, 6, 4, 2, 13, 1, 1, 1, 0, 0, 0, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0,3471.9301967593 +"https://github.com/Codra-Ingenierie-Informatique/guidata",2010-09-01 16:02:03,"713504808eb23fa027e82678afa4700e589063fb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 2, 1, 0, 0, 1, 1, 4, 3, 7, 1, 3, 1, 18, 1, 0, 0, 3, 0, 0, 0, 3, 5, 3, 3, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4839.0752893519 +"https://github.com/ovalhub/pyicu.git",2015-04-16 01:00:41,"fa65937c59ddbf3b16e5ccb3823a34874703c9f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2184.9113078704 +"https://github.com/aws/aws-xray-sdk-python",2017-09-18 17:17:30,"1a5fab22378612cc424093c35352a55a5b374b64","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 2, 3, 0, 0, 2, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 6, 3, 2, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0,2264.9942939815 +"https://github.com/Bioconductor/GenomicAlignments.git",2019-04-19 20:38:17,"eed5642b7a1ef41667f49adbebd72a40db946b2a","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 4, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,3637.7668287037 +"https://github.com/donnemartin/gitsome",2016-05-07 09:18:42,"438d0b36614d67167a55fc033058071acd00a0f8","[133, 55, 6, 1, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 19, 49, 98, 40, 111, 74, 128, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[82, 31, 65, 15, 7, 1, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 2, 1, 3, 1]","[7, 9, 9, 7, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,2,16,0,1294.2226388889 +"https://github.com/juliangruber/brace-expansion.git",2013-10-13 12:56:58,"9a5bef783fad507aed02242ce726f89640bf42d1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3650.0062615741 +"https://github.com/Exa-Networks/exabgp",2009-09-03 22:12:05,"5490f7baf5981279e2360d88c735570bc9f72532","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 0, 0, 0, 0, 0, 0, 1, 25, 22, 18, 6, 16, 8, 4, 0, 0, 2, 2, 24, 5, 35, 20, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5211.7322222222 +"https://github.com/sidekiq-cron/sidekiq-cron",2013-08-25 10:59:23,"9264b851d5369fc51dbc468e06a2b3413c9dc600","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 4, 0, 6, 0, 0, 0, 7, 0, 0, 3, 0, 5, 5, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0]","[0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,8,0,3762.2361805556 +"https://github.com/python-babel/flask-babel",2010-05-29 14:13:19,"7061764f327c945ed4f2c725cd7b39de5d3083e5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4873.4565625 +"https://github.com/openSUSE/hwinfo",1999-12-10 14:36:22,"641c91e978cb831adaf7a033685eda6e02494960","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 2, 0, 3, 1, 13, 13, 8, 6, 10, 13, 9, 7, 0, 2, 2, 1, 1, 1, 0, 0, 0, 3, 1, 3, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5630.0100347222 +"https://github.com/googleapis/signet",2010-09-16 00:16:25,"b610c1d2b70d11ec7154cdb5fa54439a0fd2626e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 5, 1, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 7, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,2,0,4807.4255671296 +"https://github.com/unixabg/remaster-iso",2019-12-15 23:09:40,"3fe7e7498f11adc01efbeaccacea8d14ec967990","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 21, 2, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,2,0,251.8044791667 +"https://github.com/yrro/command-t",2010-07-14 13:52:37,"371322ec48d27973e560340c96f068e60363681c","[0, 0, 0, 0, 0, 0, 79, 59, 0, 15, 30, 6, 3, 3, 0, 6, 5, 9, 0, 0, 1, 1, 0, 0, 0, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 1, 4, 0, 7, 4, 0, 1, 4, 0, 0, 0, 23, 0, 0, 0, 8, 0, 0, 8, 1, 1, 0, 1, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,3,0,4589.5430092593 +"https://github.com/boynux/squid-exporter",2017-07-08 18:02:29,"51c3383cf5393879a7986065263f2f0502d37a40","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2307.5272222222 +"https://github.com/knockout/knockout.git",2010-07-05 08:07:12,"14e4df51ed5753a6e00687e7a22ce88827413cd5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 5, 3, 4, 0, 13, 5, 2, 1, 4, 2, 3, 2, 0, 13, 4, 10, 4, 0, 2, 0, 6, 3, 3, 0, 9, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]",1,1,3,0,4081.7972685185 +"https://github.com/skvadrik/re2c",2003-12-13 04:58:19,"bcf633273c9b17c1985df17b526dab97c1bd9395","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 3, 0, 1, 7, 0, 0, 0, 0, 3, 10, 0, 3, 0, 1, 11, 2, 0, 9, 2, 6, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5784.0503703704 +"https://github.com/schweikert/postgrey.git",2004-05-20 20:02:00,"d9a95964e474d9e6c3eef97fc56b657967faaf1e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 7, 3, 13, 10, 10, 12, 1, 0, 0, 0, 3, 0, 0, 3, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5469.9499074074 +"https://github.com/PapirusDevelopmentTeam/adapta-kde.git",2017-09-13 07:13:56,"d1fb57cce445ce30eeeb3d7d2136c8f6f95d4837","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[72, 25, 3, 0, 0, 3, 0, 2, 1, 0, 3, 2, 1, 3, 0, 0, 4, 1, 4, 0, 0, 1, 0, 1, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,636.9053819444 +"https://github.com/Toilal/rebulk",2015-09-08 05:06:45,"4b1141dd2dd04f1bc2172e3d87c96d4dd3509adf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 11, 11, 9, 14, 22, 21, 15, 17, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 9, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,3019.4120833333 +"https://github.com/jclehner/nmrpflash",2016-01-25 14:09:00,"cce5d7553a5e390ec554135075315d7d39dde31a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 61, 58, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2833.1074768519 +"https://github.com/mininet/mininet",2009-12-10 08:21:26,"95d9a374b205b2a4be7a244710533e291fa4cb6f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 24, 2, 21, 5, 0, 2, 8, 15, 4, 6, 17, 43, 51, 36, 13, 3, 43, 0, 14, 3, 3, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,5029.9877777778 +"https://github.com/8bitbubsy/ft2-clone",2019-12-02 10:59:23,"eb17e10e6684c9486165badf5e739557ed01a5b0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 2, 1, 0, 0, 1, 0, 5, 2, 3, 0, 0, 2, 4, 5, 0, 4, 3, 1, 5, 6, 0, 1, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,2,1,0,1461.1673958333 +"https://gitlab.freedesktop.org/beignet/beignet.git",2012-08-10 23:14:34,"5173febb3d88b6c38709d390c3b30c79442afd7b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[343, 0, 0, 0, 0, 13, 0, 5, 21, 0, 2, 1, 38, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,10,0,2200.3459027778 +"https://github.com/rstudio/crosstalk.git",2016-06-15 22:21:25,"c24cd67217a90f69cb41cabe0be79d855da188fc","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 4, 0, 0, 0, 5, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 18, 4, 8, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",0,1,0,0,2973.0628472222 +"https://github.com/tidyverse/tidyr.git",2014-06-10 14:24:05,"c5b5a2e922c4d8105635fc8b08ead6d38b6085d4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 0, 0, 0, 0, 7, 6, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 11, 0]","[4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0,3434.3552777778 +"https://github.com/varnish/varnish-modules.git",2016-03-04 12:02:17,"d592a0882d9db2903fdd6f7f665e37ad13e3e415","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 9, 0, 2, 3, 3, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 21, 12, 0, 0, 0, 9, 3, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,2,4,0,2832.355162037 +"https://github.com/gnuradio/volk",2010-12-07 23:50:28,"fe945d586a74849d30a05b05f151b581836293fc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 14, 1, 0, 3, 14, 13, 8, 3, 0, 1, 0, 1, 4, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 1, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0,4752.915 +"https://github.com/epam/nfstrace",2014-02-19 15:49:52,"849c13795e79676aa3bc7a43722b08571b15da27","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2137.7810300926 +"https://github.com/LibreCat/Catmandu-RDF.git",2013-09-05 09:39:00,"daf72cc4c52270f2c0cb31c5d4f3fc1b41559ae3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 3, 1, 0, 7, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3436.1034722222 +"https://github.com/guzzle/psr7",2015-02-25 04:17:44,"604ca0bee7c13b5b61f5230666d29b6f65049321","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 11, 0, 11, 5, 0, 5, 2, 3, 0, 0, 9, 0, 8, 0, 5, 0, 7, 2, 0, 0, 0, 0, 4, 5, 1, 0]","[0, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 2, 0, 0]",1,3,13,0,3203.6582291667 +"https://github.com/fail2ban/fail2ban",2005-07-06 23:10:19,"a996ce2c1bd5b73be39fd3518876fb9d421ada8a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[80, 24, 19, 29, 33, 9, 7, 0, 8, 26, 3, 1, 9, 12, 9, 23, 5, 1, 0, 6, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,5786.4154976852 +"https://github.com/artemsen/pipewalker",2018-03-15 08:42:56,"c5c9635c542b6a5e73f05623c4d1f74f8b4ca36a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2088.9552662037 +"https://github.com/kumina/postfix_exporter",2017-02-17 15:04:32,"307deac3ed291fce9a0003f4cd1b88e3b763d81e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2274.256712963 +"https://github.com/shadowsocks/simple-obfs.git",2016-12-31 12:20:41,"057aa8717d2263e0e188b6df572b946d9784eb4b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 12, 3, 7, 1, 2, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0]","[0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,13,0,958.8196412037 +"https://github.com/mbleigh/seed-fu",2008-04-19 22:05:49,"e5be60e28a046a3fdb56c6c9f6db30391cea8df2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 3, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3639.382974537 +"https://github.com/Castaglia/proftpd-mod_case.git",2011-10-20 17:02:05,"88260ff5e55447ab4c3a74c68ab0c705ab05fd61","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4180.9304050926 +"https://bitbucket.org/sshguard/sshguard.git",2009-04-23 21:23:12,"e000f7732c23106a8581a20d777b6de2c16856f5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 8, 2, 10, 0, 0, 3, 2, 2, 2, 0, 5, 3, 6, 6, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5304.903900463 +"https://github.com/jfelchner/ruby-progressbar/issues/new",2009-02-16 21:40:59,"f24e17a803b41c0e012254415b846157a0a5e157","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,2746.3319791667 +"https://github.com/rofirrim/eiciel",2011-11-26 19:26:39,"5c2ad3f1dc8a376c8d00aa6f0775d39be88675dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4391.8161689815 +"https://github.com/systemd-cron/systemd-cron.git",2013-05-27 19:58:51,"77adcc7a746becdebdaf4ce6ea2cd6a9d140b020","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 4, 2, 2, 6, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3852.6322916667 +"https://github.com/X0rg/CPU-X.git",2014-09-21 14:20:11,"8a32ecf022b7b3e989076d2cf37e002eb4d3f2cf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2770.4909606482 +"https://github.com/matthiasbock/dymo-cups-drivers",2011-11-08 23:34:48,"aac3cb64a5503fe84a705f22612eb471804e80e2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4079.6409837963 +"https://github.com/dmgerman/ninka",2011-01-21 15:27:35,"da0fd994d2c96876ffe86cb177e5b8ee8a037078","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0,4166.3812268519 +"https://gitlab.gnome.org/GNOME/gnome-calculator.git",2002-06-05 16:59:19,"5c8747dc9ad8ecd1ee59bc69eaa736ad140124a0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5770.7198148148 +"https://github.com/Bioconductor/DelayedArray.git",2019-03-28 15:43:01,"a86b94533eed73c41790883d1178dfbd824ac4f8","[5, 1, 0, 3, 5, 8, 0, 0, 0, 8, 12, 1, 2, 1, 1, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1,2510.2796296296 +"https://github.com/minimistjs/minimist.git",2022-10-16 20:40:18,"5368ca4147e974138a54cc0dc4cea8f756546b70","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 5, 2, 4, 0, 0, 0, 0, 0, 4, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,1,3791.1307175926 +"https://github.com/jashkenas/coffeescript",2009-12-17 04:10:03,"733a76fdba669da434fd524616f058c62ed78222","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[112, 280, 160, 56, 30, 33, 27, 40, 120, 66, 62, 135, 50, 33, 55, 21, 16, 12, 22, 19, 13, 10, 6, 20, 1, 30, 1]","[0, 12, 0, 0, 0, 1, 3, 4, 1, 3, 2, 14, 6, 2, 2, 3, 1, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0]",1,7,22,0,5027.7445833333 +"https://github.com/perl5-dbi/DBD-ODBC.git",2004-02-19 15:22:36,"02429bdeef171d991fb4f75a924863edb8f7937e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4357.0500347222 +"https://gitlab.gnome.org/GNOME/mm-common.git",2009-08-04 21:40:45,"c50cd3befea539761a8960d4dfca8bef684694ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 21, 16, 12, 23, 10, 15, 2, 1, 5, 1, 0, 0, 2, 0, 1, 0, 3, 3, 0, 10, 2, 5, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5241.5175925926 +"https://gitlab.gnome.org/GNOME/gjs.git",2008-10-10 21:37:39,"c94cbf18983fa5cb47fcfd118b8ff94d71b52361","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 33, 8, 7, 29, 16, 1, 9, 2, 3, 0, 0, 4, 0, 6, 8, 2, 1, 10, 13, 2, 0, 3, 9, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,16,0,5531.0093865741 +"https://github.com/rytilahti/python-miio.git",2017-03-05 17:49:25,"a30f9d978bcb5a3726b5d349c9331d7b7c6c8323","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 4, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 14, 4, 5, 2, 6, 0, 5, 5, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,2467.2539236111 +"https://github.com/webcomics/dosage",2012-06-20 19:58:13,"f91fb80a39edb4d484e85106da2f6f607dd64e84","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 1, 44, 0, 0, 0, 7, 3, 8, 4, 14, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4186.6960185185 +"https://github.com/attr-encrypted/encryptor",2009-01-07 02:55:29,"164e870a19264005f4e8e8606f9c95c329818287","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2635.9583564815 +"https://github.com/dascandy/hippomocks",2014-10-06 22:41:26,"cccba75eb4668a6a0ca177e731e26968e26c0c69","[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0]",2,0,3,0,3806.1184837963 +"https://github.com/martinpitt/python-dbusmock",2012-09-28 11:50:52,"16f22ab98ff0291bbcef619166003d1837afd9ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 6, 0, 0, 0, 11, 22, 1, 4, 0, 0, 5, 0, 0, 2, 4, 7, 0, 2, 0, 0, 0, 0, 2, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,2,4,0,4100.7724189815 +"https://github.com/symfony/polyfill",2015-10-22 13:35:50,"0475f40830470f42e1cd93d0fbdb89ae4362e94b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 2, 0, 1, 0, 5, 0, 2, 3, 3, 3, 2, 0, 3, 2, 5, 5, 1, 1, 5, 0, 0, 2, 0]","[5, 2, 0, 0, 1, 0, 0, 0, 3, 0, 1, 1, 1, 2, 1, 0, 1, 1, 3, 2, 1, 0, 1, 0, 0, 1, 0]",1,2,18,0,2902.2220949074 +"https://github.com/jupyter/jupyter_core",2015-03-25 22:45:05,"b5e1ec6abbade8e33bad403a496fa493b9e37815","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 11, 6, 1, 4, 4, 0, 5, 6, 6, 0, 25, 8, 7, 6, 8, 0, 0, 0, 12, 1, 3, 0, 9, 6, 0]","[0, 0, 1, 3, 0, 1, 2, 0, 2, 1, 2, 0, 5, 3, 1, 3, 3, 0, 0, 0, 4, 0, 2, 0, 4, 1, 0]",1,4,8,0,3175.9166550926 +"https://github.com/hashcat/princeprocessor.git",2015-01-07 13:35:53,"9b7e8e6fb4262d340e522e08411b7a8302161bc9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 38, 23, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 13, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,3216.9043981482 +"https://github.com/gosa-project/gosa-plugins-mailaddress",2015-10-30 10:56:42,"31501f583b11522368613e5c2df7761840df36f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 25, 2, 0, 1, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2274.6763657408 +"https://github.com/luvit/luv",2013-08-24 16:30:19,"79646fe06bdf5140bce7cd9d5c5fa2503db6622d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]","[16, 13, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,0,1,0,4034.9445949074 +"https://github.com/pagekit/vue-resource",2015-05-25 11:44:13,"16496eec5894e41ad8ea0df1df2b9765a1a3119d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 4, 1, 0, 3, 7, 11, 1, 5, 0, 12, 2, 6, 0, 3, 1, 0, 4, 20, 2, 2, 5, 5, 0, 4, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0]",1,2,9,0,2754.4118518519 +"https://github.com/clbr/radeontop.git",2012-07-07 20:23:19,"dec3ce7f72953b30900b1e54b8809fb7db87fff7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3881.8500231482 +"https://github.com/k0lter/pmailq",2007-11-26 22:12:41,"db00de6d5f124c1ae597b00e122e31e1e50e7688","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3215.8993634259 +"https://github.com/jeroen/openssl.git",2014-11-28 22:05:58,"0338d2769914d62a3de09ef7e8d7ca158cf61e65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 11, 6, 4, 1, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 6, 0, 0, 1, 5, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,3340.7487152778 +"https://github.com/rails/rails-dom-testing",2013-09-27 19:57:01,"22d0020cfb43a7d66428cb3c195bbadac45cf416","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0,3596.7865625 +"https://github.com/cromerc/opensysusers.git",2017-06-16 01:55:07,"abf31fb801182306170f377125cb49b20dd76f69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,1929.9289236111 +"https://github.com/festvox/flite.git",2017-10-21 13:55:35,"e7e4868ad7a65eb6ed2966dd5048c4bfeb14f23f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 4, 2, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 1, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,1668.0555208333 +"https://invent.kde.org/kdevelop/kdevelop.git",1999-01-09 13:16:08,"f12757c0f4c72b06e9dd77b096250c6f04d7cae1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 13, 20, 10, 20, 20, 20, 20, 7, 80, 73, 22, 30, 15, 19, 11, 14, 13, 32, 52, 49, 99, 29, 14, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,14,0,5786.496412037 +"https://github.com/opencollab/arpack-ng.git",2011-10-23 20:13:59,"b5c045f358d6a231b44776797044c9ba0c67a4d9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 3, 3, 3, 0, 7, 0, 3, 3, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,4374.6474884259 +"https://github.com/mariocasciaro/object-path",2013-09-20 00:58:52,"4aa70b081a17a8061b47138a1376808900598adb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 3, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3395.5928125 +"https://github.com/digininja/CeWL.git",2016-04-22 12:09:53,"949ad99420054396b5e69d9335fef6749ec2c1f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,2751.2389351852 +"https://github.com/jarun/pdd.git",2017-07-15 16:12:47,"67c7c0fb28c41fa2e419ddc29bd282b49a916634","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 2, 0, 2, 0, 1, 2, 0, 4, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2233.8472337963 +"https://github.com/bdrung/ionit",2018-08-16 15:27:50,"39ab86d1d6773b53f7cb4fb61053c1cb527c254a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,2,0,1307.9435069445 +"https://github.com/private-face/jquery.fullscreen",2012-01-15 12:57:04,"7b8496cf046d4d33a0a9b42ebd7d0953cbc78ad8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,928.6241898148 +"https://github.com/markdown-it/markdown-it",2014-09-02 12:11:34,"c8be724b3f7ca21ccfd51e9f2359f52a2dc9289e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3.7407291667 +"https://github.com/savonet/ocaml-ogg.git",2008-10-15 17:30:33,"e9875ea3feb04c82821f2b4b4ea7da8dc04ac0e9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5318.8518402778 +"https://github.com/br101/horst.git",2007-10-05 03:30:31,"a4fce333b3d93a7d89625cd95c7856daa952a35f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 2, 17, 24, 34, 31, 5, 0, 4, 2, 39, 18, 0, 5, 0, 2, 11, 0, 0, 0, 14, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0,5016.2119675926 +"https://github.com/kangguru/rack-google-analytics",2009-12-26 19:31:29,"2a940c2c7004b40af6c4406a19345ab1a0745b52","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,1720.5543634259 +"https://github.com/Linaro/pkg-lavapdu",2014-01-13 10:02:28,"6ab1ca0485662e7eebf047e409fda37a9b5984c7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1898.0415972222 +"https://github.com/timothycrosley/hug.git",2015-07-17 04:01:57,"823750de93f9505eb534063ffdb14548003bb42f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 34, 61, 112, 42, 3, 2, 77, 27, 0, 44, 12, 18, 1, 8, 78, 39, 40, 24, 18, 0, 12, 0, 0, 0, 5, 1]","[0, 14, 14, 26, 14, 1, 0, 14, 6, 0, 11, 0, 5, 0, 3, 25, 11, 12, 8, 7, 0, 4, 0, 0, 0, 1, 0]",2,3,11,0,2905.4028935185 +"https://github.com/rails/coffee-rails",2011-06-29 19:24:30,"d9b1790e6de393bc4120c2f1537238e265936bc9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 1, 0, 12, 2, 4, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]","[2, 0, 0, 0, 0, 0, 3, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,2,2,0,3619.3450231482 +"https://github.com/linuxmint/muffin.git",2012-01-11 17:11:49,"a9a1fdbb3ded8581df23b105019d4d67148b7571","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 26, 0, 7, 1, 1, 16, 0, 0, 147, 0, 2, 0, 3, 0, 0, 2, 2, 0, 13, 3, 4, 0, 0, 1]","[0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 1]",1,2,62,0,4329.8599421296 +"https://github.com/openpreserve/jpylyzer.git",2014-02-14 18:58:43,"583e36e1cae8f64b7376b00cf46b2e2ccea34f85","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3586.5846064815 +"https://gitlab.xfce.org/panel-plugins/xfce4-indicator-plugin",2009-05-15 12:57:09,"ac4fe3fd7608567165e08aeb76311651adf3ddbc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 17, 6, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5088.8702777778 +"https://github.com/gnu-octave/statistics",2018-01-07 16:51:00,"8ed5087296b9d228d4d35796d84b9f1544f0b5f9","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 6, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 6, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5730.789537037 +"https://github.com/hughsie/appstream-glib",2014-03-12 15:54:17,"32cb5d554937b62f2e6e630afc7cb7dea0c5d725","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 30, 4, 6, 11, 27, 6, 13, 10, 14, 11, 7, 9, 65, 44, 41, 29, 44, 8, 21, 22, 23, 16, 3, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3530.064537037 +"https://github.com/NeoRaider/fastd.git",2012-02-25 17:20:10,"d86a948a67c44ca1c484cfbe30261f1bf61c59ab","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 13, 2, 0, 39, 39, 4, 14, 7, 5, 0, 7, 2, 1, 17, 3, 1, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4199.101087963 +"https://github.com/geopython/OWSLib.git",2006-04-05 03:33:34,"87b755b45b0e7e33151eaefed42ef53135764b67","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5660.1285069445 +"https://github.com/lloyd/JSONSelect",2011-05-08 12:29:33,"9f26f74734cf5092139d1e58de4cfc1d6cb4f6ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 53, 46, 22, 5, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 3, 4, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,984.9768287037 +"https://gitlab.gnome.org/GNOME/atomix.git",2001-11-10 18:05:21,"0dd87725e7b0fb644fbd5a6f499672d93fa5dae7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 29, 11, 14, 2, 0, 0, 0, 2, 14, 3, 0, 7, 6, 9, 6, 0, 2, 0, 1, 3, 1, 6, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0,5678.1426851852 +"https://gitlab.gnome.org/GNOME/libgweather.git",2007-11-22 23:17:12,"32e0353d86ffc2df26b19608a680b19cfa3cc04f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 4, 19, 16, 3, 6, 12, 11, 14, 14, 9, 21, 2, 0, 1, 18, 11, 12, 3, 6, 3, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,68,0,5779.3689236111 +"https://github.com/NanoComp/harminv",2000-06-06 02:13:46,"6e6447cfbc3785485d4d09e285c26b1bda693152","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2906.4731712963 +"https://gitlab.com/yamanq/xdrawchem",2016-11-25 17:15:19,"383d07eb6972dee28f1c430246e0d1e2d03dfd61","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 2, 3, 2, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,1560.5482638889 +"https://github.com/glfw/glfw.git",2009-09-29 21:10:27,"027af59fc5ec6cdcf9885302a2c44cb85cbd41e6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5186.8680555556 +"https://github.com/scottkosty/vit.git",2013-06-15 15:36:01,"9671b6fdf5e79d3b251c27f9acbf706d97c7e94e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 4, 0, 0, 0, 8, 3, 0, 0, 7, 0, 11, 2, 3, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3775.4418171296 +"https://github.com/openlink/virtuoso-opensource",2006-04-11 17:56:16,"e5eaf9fce2f7ebe2cb2ad01f092abc53d81680bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 49, 18, 0, 0, 31, 74, 69, 14, 0, 56, 8, 0, 75, 65, 50, 81, 25, 26, 15, 12, 13, 0, 32, 0, 33, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5789.1263310185 +"https://github.com/rtomayko/posix-spawn",2011-02-27 03:45:02,"b0a8a5406ca5dbe1029ef44a16829d857c285491","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[143, 10, 4, 2, 0, 5, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3425.5233101852 +"https://github.com/zsh-users/zsh-autosuggestions.git",2013-10-26 16:05:17,"5595bcde18041a1be3ce3791bf88f13d44524848","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,3602.9922106482 +"https://github.com/mytbk/fqterm",2014-04-04 14:33:30,"c4b028ad53f7b362a864de24828d7cc39ff67b0a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 2, 3, 11, 1, 5, 1, 3, 7, 1, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,3515.765625 +"https://github.com/fargiolas/gnome-mastermind",2007-04-19 11:32:55,"e950ffef03f3b7cd39ca0548a9610f6f882be311","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 4, 5, 15, 24, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5420.9395486111 +"https://github.com/dell/dkms",2007-05-17 03:46:05,"3c79d2e7f7b25135ce7edac2fd294bc5b0ddc637","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12, 10, 5, 0, 0, 4, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,5777.8746412037 +"https://github.com/petkaantonov/bluebird.git",2013-09-02 13:31:08,"9105389549d31333f4ba34050cf12e23fcbcd3bf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 59, 27, 49, 55, 86, 61, 55, 23, 27, 24, 26, 59, 41, 2, 0, 10, 0, 13, 9, 10, 19, 32, 9, 8, 19, 1]","[0, 3, 0, 2, 7, 11, 12, 5, 0, 1, 0, 0, 0, 4, 0, 0, 1, 0, 2, 4, 3, 4, 9, 2, 2, 2, 0]",1,1,21,0,3418.3106597222 +"https://github.com/hfst/hfst-ospell.git",2010-07-08 15:15:40,"d92e82c407aa53cbdadaef23bcb06e7adf13d45f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 35, 1, 0, 1, 3, 0, 0, 0, 0, 3, 0, 0, 4, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4745.7576967593 +"https://github.com/italiangrid/voms",2013-06-06 08:38:54,"675a95cee2871ffd9372d6a11fa7d6086569aace","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 34, 9, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 1, 5, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,3,4,0,3745.5262731482 +"https://github.com/evgeni/hdapsd.git",2008-12-13 21:11:33,"01cd513f6da5fc715345e719e57c4e8ad727a529","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 6, 21, 24, 0, 0, 0, 0, 0, 0, 9, 10, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2619.5010416667 +"https://github.com/DonyorM/weresync.git",2016-11-05 04:52:09,"d8e61eafa964b3e987c274bf6b1a0e86fbe674d5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 11, 3, 2, 3, 7, 6, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 2, 1]","[0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0,2224.0163194445 +"https://github.com/theory/class-meta.git",2002-04-27 22:02:40,"a2b9a9d099dc1209fce236bb6375fbeeffce312c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 5, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2689.2590856482 +"https://github.com/libical/libical",2014-06-28 19:30:53,"c363e524f603b4dbeb5bbde5971e7d1c9b26b206","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 1, 0, 0, 2, 1, 2, 5, 11, 9, 15, 4, 4, 1, 2, 6, 7, 7, 2, 5, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",1,1,2,0,3453.0738773148 +"https://github.com/openscenegraph/OpenSceneGraph.git",2001-01-10 16:32:10,"70208ebc0616d0045c99f93062476ca210a45efd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5356.9920138889 +"https://github.com/python-social-auth/social-app-django.git",2012-12-12 16:08:43,"3de99ca0a4bbda43681e8c6a54d56e31ad5011d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 9, 14, 0, 0, 0, 2, 0, 0, 12, 43, 6, 3, 98, 40, 46, 18, 0, 16, 0, 0, 3, 12, 0, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,6,0,4020.1488541667 +"https://gitlab.com/coringao/runescape",2017-10-23 15:21:18,"437d27d749a599bc43ac2d6629e58618efc95867","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,910.2960648148 +"https://github.com/sparklemotion/mechanize.git",2006-03-17 16:20:16,"f98e25450ac2985e82ea5372e234c8420b17798d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 11, 7, 4, 2, 0, 0, 2, 1, 0, 1, 0, 1, 0, 1, 0, 3, 2, 2, 4, 4, 1, 1, 13, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5735.6054513889 +"https://github.com/FasterXML/jackson-core",2011-12-23 02:06:25,"e0f0754dae9c76af0c2b060bddf373d5cc0b5102","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 0, 11, 3, 3, 0, 2, 4, 0, 4, 1, 7, 10, 1, 0, 3, 4, 2, 0, 5, 1, 0, 2, 1, 0, 1]","[0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,4373.9794328704 +"https://github.com/sanger-pathogens/ariba",2015-02-11 10:13:07,"5ececb712a24a40dc15434ec5552df404ad059c7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 35, 0, 0, 0, 34, 2, 21, 0, 7, 0, 0, 4, 0, 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 1]","[4, 8, 0, 0, 0, 8, 0, 5, 0, 3, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,6,6,0,3026.1963541667 +"https://github.com/expressjs/parseurl.git",2014-03-08 02:08:39,"4b5325e98df62bf2c96979f7b1bd8ef936923f64","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 14, 2, 0, 0, 5, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3251.1265972222 +"https://github.com/timchen119/tpm2-initramfs-tool",2019-05-09 07:01:43,"e5fef65f14459cba7c092ff65c65b0ec96dd0b33","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0,486.0112962963 +"https://github.com/holylobster/nuntius-linux.git",2015-03-01 11:18:14,"a0c673379b65c2512cea6a213bfeb1c2642bce0b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 25, 22, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 5, 1, 0, 0]","[2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,11,0,1285.1505324074 +"https://github.com/sleuthkit/sleuthkit",2008-09-28 22:52:48,"3a78df5c010fde1b12ecec914bf4caa549565e55","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 8, 1, 10, 0, 6, 2, 2, 2, 0, 0, 0, 8, 0, 6, 2, 0, 12, 4, 0, 1, 1, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5541.6815740741 +"https://github.com/broadinstitute/barclay.git",2016-10-26 22:06:45,"fd6bc2d906b2ea9fd812de0d1aee89067bb334d0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 0, 2, 1, 3, 6, 0, 3, 5, 3, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 1, 3, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,2356.7614351852 +"https://github.com/milkytracker/MilkyTracker",2008-01-05 19:45:46,"0836c4318800e81795a17e209c406ea380ce90f6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 28, 11, 5, 6, 6, 31, 8, 2, 5, 5, 8, 6, 16, 12, 4, 5, 4, 1, 2, 2, 11, 5, 2, 9, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5764.1453472222 +"https://github.com/httprb/http.rb",2011-10-06 04:27:56,"919b248ec4ecfedbb9c387b6e5c54f53a37f964e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 9, 0, 17, 0, 39, 2, 1, 8, 10, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0]",1,2,5,0,4428.9060416667 +"https://github.com/tox-dev/py-filelock",2014-02-23 00:28:10,"2157efb8b57666699fcf15bf03c3771c1571279c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3582.474849537 +"https://github.com/potassco/clasp",2014-11-12 09:00:51,"e00dcf9b974a4c168382ef2ac58dea28a42fd883","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 5, 3, 5, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3296.9262847222 +"https://github.com/sphinx-contrib/restbuilder.git",2013-08-25 13:39:20,"152f7615ca0794ee9d290072a3989bd1419d0667","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2987.8306828704 +"https://github.com/candlepin/python-iniparse",2004-10-03 22:47:52,"fc4d966d9b98d09f929ec6847672b3548928bcdb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 1, 0, 0, 0, 0, 0, 0, 0, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5579.4078587963 +"https://github.com/redis/hiredis-py.git",2011-01-27 10:03:32,"f0e0a6f225a7ea1128cf91362f415a7f365a58a7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4704.1113541667 +"https://github.com/erniebrodeur/ruby-beautify",2011-12-27 17:29:56,"67f0d1c6ac43d1f0fa70b2b42a1517cbb79749ca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 1, 6, 7, 2, 0, 0, 0, 0, 0, 2, 0, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,5,0,2708.0809837963 +"https://github.com/robdimarco/omniauth_crowd",2011-03-18 04:12:16,"69ff6afa9dc1f87d1345e4f539991e84f566f874","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3405.9749189815 +"https://github.com/lsyncd/lsyncd",2008-08-06 13:04:01,"814c133e8210ed7e1ab991b703a30f6845a366bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 15, 4, 0, 2, 11, 3, 0, 11, 0, 10, 5, 0, 1, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5322.0234027778 +"https://github.com/ubuntubudgie/faba-icon-theme",2014-04-28 19:58:40,"38742752c3e35d36c43399a5d9534a3185dcba77","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 3, 5, 0, 0, 2, 11, 3, 1, 0, 8, 7, 2, 0, 1, 0, 2, 2, 55, 43, 12, 64, 0, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1592.9366782407 +"https://invent.kde.org/plasma/kactivitymanagerd.git",2012-01-07 13:22:31,"569ce24fd19eeb7b414c1d6f6a36201492b54517","[5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 7, 7, 6, 0, 1, 1, 5, 8, 1, 2, 11, 17, 15, 15, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 3, 0, 0, 0]","[8, 10, 17, 16, 12, 4, 4, 1, 20, 27, 6, 10, 5, 2, 9, 8, 3, 7, 13, 5, 7, 4, 3, 4, 3, 4, 0]","[1, 0, 2, 5, 0, 0, 0, 0, 2, 3, 0, 1, 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]",9,2,10,2,4610.6253472222 +"https://github.com/JPEWdev/icecream-sundae",2018-04-10 14:09:46,"ae8088e311bf53569d315d7b99c9ef51d726ce40","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 16, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,638.2833796296 +"https://github.com/ComplianceAsCode/content",2011-06-08 22:45:05,"540a78f26191a69651a167d256b5af47fd3eb983","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 22, 6, 0, 9, 7, 5, 2, 15, 6, 20, 26, 24, 5, 8, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 2, 2, 4, 0, 0, 2, 0]",1,3,2,0,4572.6881365741 +"https://github.com/metlov/cycle.git",2022-10-13 17:10:36,"da824ed3edf328558634c3ab8dceeeb7dc58d1a7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,229.9525347222 +"https://github.com/nikic/PHP-Parser",2011-04-18 17:02:30,"aea5e433490c399a2763c9e3830cca88466bba68","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 17, 30, 2, 0, 4, 4, 1, 5, 0, 0, 13, 24, 5, 0, 2, 1, 0, 9, 7, 0, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4619.1675115741 +"https://github.com/df7cb/newpid",2013-01-21 21:43:44,"3d4adca89aab7f1bbc06f9971280b62b83c262fc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2886.7799652778 +"https://github.com/silverjuke/silverjuke.git",2015-04-02 10:06:06,"648b51c1c59965ebb37ab5b76d9845784d6c8bbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 21, 21, 40, 3, 13, 8, 20, 36, 11, 2, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 5, 0, 1, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,1877.2067592593 +"https://github.com/openSUSE/open-build-service",2006-02-21 15:31:42,"97561db8664eaf86a1e4c7b77d5fb5d5bff6681e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 8, 21, 55, 6, 3, 8, 10, 18, 25, 0, 10, 19, 13, 15, 17, 3, 3, 0, 0, 0, 5, 5, 14, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,5787.9764699074 +"https://github.com/NanoComp/h5utils.git",1999-11-22 01:24:59,"e7daaee3dcd9a6fd2a2fcc67db83c50ce6467f63","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 2, 0, 0, 10, 0, 1, 5, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5379.8304166667 +"https://github.com/puppetlabs/puppetlabs-xinetd",2010-06-24 22:49:51,"cb1323333b8734f35b90cee20b6a8a420f3fd885","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4771.0705671296 +"https://gitlab.gnome.org/GNOME/d-feet.git",2007-12-05 01:05:53,"9264d63b0c7aca3e2c3253e172e05a01c2772f33","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 3, 0, 4, 5, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 5, 1, 0, 13, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5731.9359953704 +"https://github.com/alecthomas/voluptuous",2010-07-15 09:55:52,"465e102b51935ae7cc17150223522ae843907ef8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4900.0540740741 +"https://github.com/iris-edu/libmseed",2012-02-28 21:25:12,"9dcd8aeccefe71ee0ae8cca9eccea10aa7d29d8b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4208.8788194445 +"https://github.com/maxmind/geoip-api-perl.git",2002-11-21 06:15:12,"fc2089cd8b49bb040d0287be0e3e73ed63e16e85","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4739.8765162037 +"https://github.com/TooTallNate/ansi.js.git",2012-01-25 17:18:32,"005293c2f24c9b194b22ff111ec0cf4b0503ad80","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[41, 2, 2, 0, 0, 3, 17, 10, 2, 5, 5, 0, 0, 16, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2003.1949884259 +"https://github.com/KJ7LNW/xnec2c.git",2008-02-26 01:38:42,"7be8f3299cfecf403cf9d42db6548e0a090e2b26","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5761.7881944445 +"https://github.com/thestk/stk",2009-03-25 02:41:14,"6485746ee95310999a895fcbac123794d79b320d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5255.6332986111 +"https://github.com/ldx/python-iptables",2010-10-28 15:20:20,"35053c97beea510acdb14198b9c3b8e38b2e68dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4469.2364236111 +"https://github.com/ThomasHabets/simple-tpm-pk11",2013-11-20 21:21:05,"f187ea9501aa6b6fb642a57162e2071795b73019","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 22, 13, 5, 9, 7, 4, 0, 0, 0, 0, 1, 11, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,5,0,3536.4266898148 +"https://github.com/theory/params-callbackrequest.git",2003-08-14 02:05:46,"b09f6f951006e5b7b7d103441c4d81e47e2aa152","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 14, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1199.2313657407 +"https://gitlab.com/gpernot/wfrench.git",2018-09-07 09:10:28,"afdcf27aba78d8dcc6b5fcce25b6a35647b2972c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,809.9374189815 +"https://github.com/linux-can/can-utils.git",2015-09-04 09:16:17,"0e3ff3b3157e456d4b6343f5d4b42ef692bce538","[1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0,5750.4572916667 +"https://gitlab.com/compiz/compiz-bcop.git",2007-03-05 17:40:18,"040c0a7ebbdd057cc3d5a950053fd4f7fa5a1927","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 11, 7, 0, 19, 4, 5, 5, 3, 0, 0, 2, 4, 3, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,5,0,4421.7565509259 +"https://github.com/jarun/buku.git",2015-11-01 19:53:18,"ac9d15f8ba53a168c3be4444915f96ede496e06c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 71, 0, 0, 0, 2, 19, 4, 0, 0, 0, 1, 0, 1, 2, 0, 6, 3, 10, 39, 49, 6, 39, 10, 55, 44, 1]","[0, 5, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 0, 2, 2, 0, 1, 0]",1,2,3,0,2958.7046527778 +"https://github.com/IndigoUnited/node-cross-spawn-async.git",2015-07-01 20:53:25,"b3ffca525bdcd5bf2aaec4433795b7c3efd91cd2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 9, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0]",1,1,3,0,674.7693981481 +"https://github.com/LibreCat/Catmandu-SRU.git",2012-10-05 07:42:48,"775630f1a6562d38748f277baf095697deee154b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3182.483275463 +"https://github.com/garrigue/labltk.git",2013-09-09 19:13:04,"7e916f946c528e7e5e86ae69a0a2a396f8134a71","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3339.1637268519 +"https://github.com/Feh/nocache",2012-02-05 19:48:34,"0aa836ce640c57b7f42715ca033f0c4cbab4de49","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3331.9030902778 +"https://github.com/Icinga/icinga2",2012-03-28 11:24:49,"e11994038dc0a70331da06b7e293838752f3cbaf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 7, 12, 43, 19, 25, 25, 21, 35, 17, 12, 45, 38, 48, 47, 58, 19, 9, 28, 15, 11, 2, 11, 12, 38, 50, 1]","[1, 0, 1, 0, 1, 0, 1, 1, 2, 1, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0]",1,2,1,0,4277.2438310185 +"https://github.com/jopt-simple/jopt-simple.git",2011-04-07 21:27:14,"0fa4b9559363774578653537d06137089e067ef8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 7, 0, 2, 0, 4, 0, 0, 1, 0, 8, 1, 0, 3, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3771.2237962963 +"https://github.com/mrkkrp/zzz-to-char.git",2015-08-31 17:39:27,"2737056ce316587c1564b8ca92b51f325807867a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3016.8861805556 +"https://github.com/mathiasbynens/jsesc",2013-06-05 09:59:59,"8adba331b01c4d26ba95addfe2c19af5dfd9af91","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 17, 0, 22, 0, 0, 0, 41, 7, 2, 7, 0, 0, 0, 0, 0, 0, 0, 2, 0, 8, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2702.1588310185 +"https://github.com/prometheus/snmp_exporter",2015-02-22 23:23:29,"e56dc41bb0ba5182f0ffe89db33f60815ade8fd0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 2, 17, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3213.7672916667 +"https://github.com/tdiary/tdiary-core",2002-02-27 02:12:31,"1b8b693d8c6b8fa0c00de21033b5db2791fcc04a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 11, 8, 6, 8, 5, 4, 7, 2, 0, 4, 15, 4, 6, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,5778.2061689815 +"https://github.com/docker/libkv.git",2015-05-12 00:23:55,"712d8e164370fac1e82572101c12034f9254d456","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 15, 14, 20, 18, 4, 3, 4, 0, 2, 5, 1, 4, 10, 3, 4, 1, 1, 9, 12, 9, 18, 4, 0, 0, 1, 0]","[2, 1, 2, 5, 7, 1, 1, 2, 0, 1, 2, 1, 2, 4, 2, 1, 0, 1, 3, 6, 3, 9, 2, 0, 0, 1, 0]",1,5,16,0,2411.621412037 +"https://github.com/RubyCrypto/rbnacl",2012-12-01 10:38:20,"48f4a4a2e851fc8ebb4a89890ffc6b580e31c4c3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 12, 6, 0, 0, 50, 52, 52, 41, 16, 10, 39, 20, 0, 0, 0, 7, 2, 0, 0, 0, 0, 2, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 6, 1, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,5,0,3765.2138425926 +"https://gitlab.gnome.org/GNOME/gitg.git",2008-06-23 22:04:20,"11fc353c7beabe456723fe46ce0683c36b3bc070","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5649.9738541667 +"https://github.com/opensdmx/rsdmx.git",2013-06-12 13:18:24,"70096807ae47556f1531a09bd3d154d8f535a0b7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3728.8602314815 +"https://gitlab.com/libidn/libidn2",2011-01-04 13:39:09,"38f7c8da184d89b9dc318a72da53094cbfa1b82e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[72, 4, 0, 5, 0, 0, 0, 14, 41, 9, 8, 41, 18, 1, 0, 5, 0, 21, 0, 7, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4708.2527662037 +"https://github.com/phpDocumentor/ReflectionCommon",2015-05-31 09:52:59,"48ccd76e21889fa83b6b3f857b01e30f296b6779","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 4, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0,2836.5084606482 +"https://github.com/reduz/zytrax",2018-05-05 18:23:55,"ea2498ec4b2842d654f5f6bcebf82b2cde7b3392","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,931.1719907407 +"https://github.com/nhorman/dropwatch",2009-03-03 14:24:46,"bdfc66cb503c0f2076a41bd46184d4aafd751838","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 6, 12, 1, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5326.1496296296 +"https://github.com/scravy/node-macaddress",2015-03-30 18:18:15,"5f5275c3e3d58a5862fbfac036471c880165546f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,2961.7712268519 +"https://github.com/theyamo/CheeseCutter",2013-11-02 19:26:21,"a9de00fb1286ffc5a7c68f0610b472e0e6348a13","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 25, 1, 3, 26, 17, 4, 0, 4, 0, 0, 0, 5, 0, 0, 0, 4, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2936.8167824074 +"https://github.com/ahcm/ffindex.git",2011-08-24 09:46:11,"4825aca7c9f87279429261e35cfbdf20b7122908","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 1, 0, 0, 0, 0, 0, 7, 2, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,4107.5377777778 +"https://github.com/jaymzh/pius.git",2009-02-05 21:36:34,"b74512b06d65b9667af4844262f33dff8a78a2b6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 1, 0, 0, 4, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5108.0161458333 +"https://github.com/jrowen/rhandsontable.git",2015-03-05 02:31:12,"a3c145bc09b60cab8507a1c4c4e86003cbeb15ca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 9, 0, 0, 19, 36, 5, 1, 1, 0, 0, 0, 0, 0, 14, 19, 2, 0, 7, 0, 1, 21, 16, 12, 8, 6, 1]","[2, 0, 0, 0, 3, 6, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 0, 2, 1, 1, 0, 0, 0]",1,3,5,0,2472.1080902778 +"https://github.com/mati75/openbox-menu.git",2013-11-01 17:17:55,"916daef843e14fff0bbf9fee1f4975ac062c027b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2669.041875 +"https://github.com/developit/preact.git",2015-09-11 02:43:47,"e9f1a5645ef7d10ba05c601b94d70e4e4d0bd57f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 4, 0, 9, 8, 1, 4, 6, 4, 2, 16, 0, 5, 3, 0, 6, 1, 2, 16, 37, 17, 10, 52, 6, 18, 1]","[0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 6, 0, 2, 0]",1,2,8,0,3016.8271064815 +"https://github.com/theseer/Autoload",2012-12-24 00:17:04,"87084d6f47e365baf6b84ea0a470249e1818b39a","[0, 0, 0, 0, 7, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 17, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5109.8970949074 +"https://gitlab.com/rastersoft/devedeng",2014-08-05 23:04:14,"b5f18da964c7078d5cfe1bab1c710e8c9c80db01","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 9, 14, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 3, 17, 0, 0, 1, 1, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3052.8983333333 +"https://github.com/flask-restful/flask-restful",2012-10-17 04:07:16,"a4465e3e9cc4c30e7f53e0b908f734a42ed32da4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 5, 7, 2, 6, 7, 14, 2, 1, 5, 3, 1, 1, 0, 0, 0, 4, 8, 0, 6, 8, 9, 30, 0, 1]","[6, 0, 0, 1, 2, 1, 2, 1, 6, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 4, 0, 2, 1, 2, 3, 0, 0]",2,5,15,0,3867.9860763889 +"https://github.com/ocaml/camlp4.git",1995-09-03 15:22:54,"59cf50795583b4308a541ab85bd636ddfc9042ce","[0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 4, 2, 8, 18, 1, 0, 22, 36, 26, 47, 0, 22, 0, 24, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 19, 9, 21, 18, 5, 14, 22, 30, 41, 17, 15, 29, 23, 21, 33, 4, 13, 19, 0, 0, 9, 2, 18, 23, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5404.4002199074 +"https://github.com/unclechu/node-deep-extend.git",2011-08-18 16:59:20,"209173ae6d899450fda5eb9ca5646694b99a1dfd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2469.0779513889 +"https://github.com/kilobyte/ndctl",2015-06-17 00:20:23,"ff8e15231e0f98355f4becc80e1c21e2c39c45b3","[2, 3, 7, 10, 11, 1, 5, 0, 0, 10, 18, 0, 1, 12, 4, 3, 2, 17, 12, 0, 6, 6, 0, 4, 1, 2, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 0, 2, 0, 5, 2, 0, 0, 4, 3, 0, 13, 1, 0, 0, 0, 12, 0, 0, 7, 1, 2, 1, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,3210.1365509259 +"https://github.com/Dragon2fly/xlrd3.git",2007-01-28 16:02:30,"b9c962e12e5c704bec71c071864ad33beb113e7a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4601.1105092593 +"https://github.com/micromatch/parse-glob",2015-02-07 21:16:25,"4f7b0c9de00890771a8fb30a0ac5ed066da2eb6a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 0, 4, 5, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1589.2864351852 +"https://gitlab.gnome.org/GNOME/gdk-pixbuf",1997-11-24 22:37:52,"9508b76bd2401b6b9e289b5c8ec9fc0e08909283","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 21, 17, 32, 16, 31, 19, 35, 33, 41, 22, 21, 46, 46, 40, 100, 38, 28, 35, 29, 18, 7, 24, 13, 14, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,46,0,5703.8827199074 +"https://github.com/RoelofBerg/limereg.git",2014-08-03 19:52:04,"83ed5ec5759cca0b5a0811c03d77e4a1c810ff70","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1172.0418171296 +"https://github.com/lunarmodules/luaexpat",2011-06-01 21:14:25,"1d90f50de803cbbf40bf0f0ef310bc106a79f270","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4256.8331365741 +"https://github.com/kodi-pvr/pvr.dvbviewer.git",2015-02-24 16:21:01,"34205049a29a27655523edfb4f5e9f2e4d2c18e0","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 5, 2, 1, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 3, 1, 1, 0]","[0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",8,6,7,0,4026.1822916667 +"https://github.com/jonschlinkert/extend-shallow",2014-10-06 08:36:58,"13b67acca68028bddf985339aa4b6288e1ab4357","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1170.6065046296 +"https://github.com/Javanaise/mrboom-libretro",2017-01-21 13:48:30,"090ae05d4adc2689622093a985405fd79f3b6cd4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 35, 4, 16, 12, 4, 2, 1, 0, 1, 1, 28, 19, 4, 3, 0, 2, 2, 0, 3, 5, 3, 1, 7, 7, 5, 1]","[1, 4, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]",1,3,11,0,2489.0620833333 +"https://github.com/ntop/nDPI.git",2015-04-19 05:21:14,"7fa4694dadf869d1de2baa99383308a163902f8f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 3, 11, 32, 4, 4, 3, 20, 12, 14, 11, 33, 6, 5, 2, 1, 5, 7, 5, 0, 0, 5, 2, 10, 11, 1]","[0, 0, 0, 0, 6, 2, 0, 0, 3, 2, 3, 3, 3, 1, 2, 0, 0, 1, 2, 2, 0, 0, 1, 0, 2, 2, 0]",0,7,24,0,3148.9571990741 +"https://github.com/martinpitt/umockdev",2012-07-20 04:01:51,"ffa9d25ff0d49219b4c2efe109e85ee6ea29fac2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4165.2300925926 +"https://github.com/Bioconductor/IRanges.git",2019-04-19 19:19:05,"98f3a42261f936b8afc078cc1444f215f98a3816","[3, 3, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 2, 2, 2, 3, 2, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 1, 1, 0, 0, 0, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5556.7386458333 +"https://github.com/jashkenas/backbone",2010-09-30 19:48:05,"8a960b479859d343a6c734eb1a5817a2ff6c2b52","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[52, 80, 52, 35, 14, 30, 13, 10, 14, 12, 10, 17, 3, 3, 4, 3, 2, 2, 20, 5, 0, 3, 0, 0, 8, 0, 0]","[8, 8, 8, 6, 2, 0, 1, 0, 1, 2, 2, 2, 0, 0, 2, 1, 0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 0]",1,6,30,0,4697.0951736111 +"https://github.com/catchorg/Catch2.git",2010-11-09 23:24:00,"d80260001bdc4811b5c63604041e3139fb80ecd4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 1, 5, 0, 6, 1, 14, 17, 11, 11, 4, 11, 6, 2, 9, 7, 0, 21, 10, 9, 5, 9, 2, 10, 4, 0, 1]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4779.0219907407 +"https://github.com/mariuz/flamerobin",2004-11-22 11:34:42,"8153b493d66ee7aae55e7b34e0d7bddacf4999ef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 1, 1, 2, 0, 6, 2, 1, 4, 13, 5, 0, 6, 18, 21, 21, 14, 3, 2, 2, 21, 3, 0, 2, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5771.7548032407 +"https://github.com/jnordberg/coffeeify.git",2015-11-20 21:39:33,"ae21668b56151270f8aff4b9df0243cfa996dce9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1705.9137731482 +"https://github.com/cubiq/iscroll",2010-12-03 19:20:11,"20a64d1ba6bf1f9219043d8ef3541c0abbc93e5c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 4, 4, 2, 0, 1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2222.4944791667 +"https://github.com/hoytech/vmtouch",2012-01-25 02:49:00,"a302136106c0be1401aedd5040ce0cebec0c8bc8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 0, 11, 2, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]",1,2,4,0,4266.5434837963 +"https://github.com/maxmind/geoipupdate",2013-10-16 14:54:45,"850f8d389d884453187294b4d1a9bf5837bda6af","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 47, 27, 5, 14, 13, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 5, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 10, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0]",3,3,3,0,3751.8112615741 +"https://github.com/TheLocehiliosan/yadm",2016-09-07 03:18:34,"d7a037e46945504a906f359a094f6b0b48bb2792","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1719.5473611111 +"https://github.com/dyne/Tomb",2010-08-22 13:04:19,"f8ed58afc3bd69e3e4285ca2db219d465f59b369","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 9, 15, 9, 47, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]",1,2,1,0,4854.5203472222 +"https://github.com/jquery/jquery-mousewheel",2008-10-16 01:35:05,"02de3f0becd8d4a4989c68b5113a6380a009e630","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5390.8646296296 +"https://github.com/FasterXML/jackson-dataformat-yaml.git",2012-03-30 23:15:45,"54fb6330f9cc5d0a1c156ec70916fdc45e68edf8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 1, 1, 4, 3, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 1, 3, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,2,0,2094.1709722222 +"https://github.com/sebastianbergmann/object-enumerator",2016-01-28 06:33:39,"ba2412bf427b0ed536aded24be510a1216529af9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2872.2632523148 +"https://github.com/mongodb/motor",2013-01-11 21:34:44,"e85a13c1492b6f9f86e67ba93ff9fb425988bdd5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 38, 47, 6, 24, 7, 29, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,3986.9431365741 +"https://github.com/psf/black.git",2018-03-14 19:55:32,"e74117f172e29e8a980e2c9de929ad50d3769150","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 41, 30, 17, 19, 34, 5, 24, 18, 30, 13, 36, 33, 13, 3, 3, 1, 0, 2, 0, 0, 0, 20, 12, 0, 2, 1]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,52,0,2098.4397453704 +"https://github.com/kevin1024/vcrpy",2012-05-31 06:52:26,"431e385ded95a6f5c80e90ae20f78e927eb96f0a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,4215.4541898148 +"https://github.com/guillaumechereau/goxel.git",2015-10-05 01:07:00,"6fcfb08a1d6329fc4958682a608002c92e1fe127","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 32, 39, 11, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 43, 24, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2988.2858564815 +"https://github.com/androguard/androguard",2011-11-04 13:43:27,"00e8cdcedda79618c1678b5f4599d1e8e41ab736","[6, 13, 3, 2, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 9, 10, 10, 6, 7, 4, 1, 0, 3, 4, 2, 4, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 2, 4, 3, 0, 1, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, 11, 10, 6, 1, 1, 3, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,4421.1416203704 +"https://gitlab.gnome.org/GNOME/almanah",2008-05-24 20:41:01,"80a18bb6e14b0cf6ff109f5b464756a3622c109b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 0, 4, 4, 13, 0, 7, 1, 2, 1, 0, 2, 0, 2, 0, 1, 1, 2, 1, 5, 5, 7, 3, 0, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0,5624.9012152778 +"https://github.com/gosa-project/gosa-core",2005-05-12 06:44:40,"e299f0ca47a924516f2afbe4e922f2418b75315c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 208, 119, 41, 111, 76, 99, 22, 21, 22, 47, 45, 39, 77, 36, 62, 45, 44, 39, 34, 52, 75, 59, 73, 101, 96, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0,5676.7658217593 +"https://github.com/ekenberg/quotatool",2012-02-18 13:03:42,"56e93c9c1db7d006de45fecc4d8da397074a7743","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4244.0694097222 +"https://github.com/spyder-ide/qtawesome",2015-03-04 15:51:56,"04bf55003043a79c3426631a381734f174cff306","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 23, 10, 4, 4, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3206.9787152778 +"https://github.com/parklab/nozzle.git",2013-01-02 17:41:50,"33893468ec28a3725d9944307e72b8c69c05a5f7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 6, 0, 3, 2, 0, 0, 0, 1, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,926.0286111111 +"https://github.com/opencog/link-grammar.git",2005-02-15 13:55:43,"3fad47e76bf79595a23563765bb7e22b76214ae3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 1, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,5603.4488194445 +"https://github.com/redis-store/redis-actionpack",2011-11-17 14:24:24,"06b2969585eec2ae2fee0b0853b4b07ade33b3e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3755.356412037 +"https://github.com/CafeOBJ/cafeobj",2012-10-20 02:31:46,"2a775ab17e357e22e2c39694567e47d62d9e301e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3212.0939699074 +"https://github.com/git-ftp/git-ftp",2010-02-06 20:58:44,"1ebe9f2bae4246203ca5cafa0a2b57b31886634c","[0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 7, 0, 0, 0, 0, 12, 8, 18, 11, 1, 2, 0, 0, 7, 35, 2, 2, 1, 9, 1, 2, 2, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,0,4532.203599537 +"https://github.com/phpseclib/phpseclib.git",2012-06-10 09:27:23,"592652cdb55251e88119f47c0c66b69b5abbca3a","[1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 6, 3, 2, 0, 0, 1, 5, 3, 2, 0, 4, 0, 1, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[9, 3, 3, 3, 0, 0, 4, 2, 2, 2, 7, 3, 4, 1, 4, 6, 5, 18, 5, 5, 2, 16, 2, 0, 0, 0, 1]","[2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 4, 1, 0, 0, 0, 0]",3,2,4,1,5749.2331828704 +"https://github.com/mathiasbynens/unicode-property-aliases-ecmascript",2017-04-15 08:37:46,"e6ff1b29ca86bf2d13068d98761325795bf6915d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1978.1429398148 +"https://github.com/topepo/caret.git",2014-05-16 15:52:30,"9399a05ac5df8797e1803a749bf360282fc0ceb4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 3, 0, 0, 0, 4, 7, 12, 12, 12, 26, 6, 14, 3, 0, 9, 0, 3, 45, 8, 2, 0, 4, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0]",1,3,4,0,3231.0891319445 +"https://github.com/Yelp/elastalert.git",2015-02-19 23:03:11,"249e48bac66f1f6948819d8bf6320aab3fcf71a0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 13, 22, 19, 11, 11, 8, 17, 4, 3, 10, 24, 3, 23, 41, 18, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 5, 8, 4, 5, 3, 2, 5, 2, 0, 2, 6, 0, 6, 15, 5, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,9,18,0,2822.0809490741 +"https://github.com/worldforge/mercator",2003-01-14 17:38:05,"7bf24d23ce43813253964b0761cdf3391eedacac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 4, 1, 2, 3, 0, 0, 0, 2, 4, 1, 0, 3, 2, 0, 0, 1, 2, 1, 8, 2, 14, 3, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5633.2390393519 +"https://github.com/flareteam/flare-game",2011-06-04 03:02:11,"2866148a6da4e8d9c309423a843de005a27847fb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 28, 22, 17, 27, 9, 15, 13, 5, 0, 0, 3, 0, 0, 1, 2, 1, 0, 1, 0, 10, 24, 11, 8, 47, 28, 1]","[10, 13, 6, 5, 9, 4, 11, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 6, 2, 21, 10, 1]",1,10,16,0,4548.8245023148 +"https://github.com/intel/bmap-tools",2012-11-28 15:38:33,"dd39da9f80a1c7a48f6b9300da46634771adac87","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 24, 43, 32, 65, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 2, 41, 9, 0, 8, 7, 9, 0, 0, 0, 5, 10, 0, 6, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0,4042.2103240741 +"https://github.com/suds-community/suds.git",2014-01-16 11:11:33,"670f3c50b0eceee10c8e7573f8a94b1964ed66fe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 44, 12, 29, 28, 30, 34, 1, 0, 5, 0, 0, 0, 0, 20, 2, 16, 21, 23, 9, 1, 18, 4, 23, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3431.6421990741 +"https://github.com/ropensci/ritis.git",2011-11-02 04:53:20,"21fe5e6128ed8d94086a99cc3adc79d3d439e2ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3983.0266666667 +"https://github.com/geopython/pycsw.git",2010-12-02 22:31:14,"505ed69283389370ce483a6d53ffd0a62ca37adf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 2, 2, 3, 3, 3, 8, 12, 13, 26, 4, 3, 9, 14, 30, 36, 10, 19, 4, 8, 4, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4758.6263425926 +"https://github.com/treasure-data/serverengine.git",2013-06-02 00:02:53,"1a67016a80ebec92f81f35a5ca3c1fcea1366fa5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 7, 2, 5, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 11, 7, 3, 3, 0, 7, 6, 2, 0, 1, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0,3572.2404166667 +"https://github.com/winchen/engauge_debian",2013-05-12 11:58:48,"b0af36a071782e44d9ec6dcac09560562fa4a828","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 0, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,1,0,0,3059.1429976852 +"https://github.com/qix-/node-is-arrayish",2015-08-25 17:07:39,"0a6d011135dd6242ef91eb06e3e2260d50ed3112","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0,1162.9688194445 +"https://github.com/deeptools/deeptools_intervals",2016-03-09 17:04:03,"e7b246b65638dba58c8c533430348cc82f685daf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 13, 1, 10, 10, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 17, 0, 11, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,1246.0450694445 +"https://github.com/fabiangreffrath/crispy-doom.git",2005-07-23 16:54:24,"bbe2bfe4df3709bee31ef3eeac45fd3be7f72671","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 10, 1, 1, 10, 30, 11, 17, 18, 22, 28, 23, 4, 4, 0, 1, 0, 0, 0, 0, 0, 5, 22, 38, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4757.0878587963 +"https://github.com/babelouest/yder",2020-03-13 00:41:13,"e25ba4c119c3bbdcb35700e6689fd8d643478b4c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1282.873275463 +"https://github.com/CoderPuppy/os-browserify",2012-12-22 01:55:47,"8228d3210ae642695ab7ad4ad86adbdae50f03d2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1580.0713425926 +"https://github.com/e2tools/e2tools",2007-12-14 15:08:25,"6749719af90afe9544db14bdd8e2742926f1439c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1196.5083217593 +"https://github.com/irstlm-team/irstlm.git",2015-07-17 14:13:05,"10fc63648584c4f94c4cb29fb0aed8540e736dc1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 7, 15, 0, 6, 0, 0, 24, 13, 16, 4, 20, 1, 8, 10, 5, 38, 5, 1, 13, 12, 0, 2, 1, 0, 2, 1]","[0, 0, 1, 0, 2, 0, 0, 10, 3, 3, 0, 0, 0, 0, 0, 0, 9, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0]",1,2,3,0,1268.8947337963 +"https://codeberg.org/grisha/gumbo-parser.git",2013-08-09 18:25:49,"101726c50e172e45be6002c51b85e45f27f0c2c6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 22, 7, 0, 14, 6, 7, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 9, 1, 0, 5, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,18,0,3698.9385069445 +"https://github.com/cleishm/libcypher-parser",2016-03-30 01:49:38,"dc452e8e0d765a5c68a4a1b37eeaa55a2295f721","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 4, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2052.1131134259 +"https://github.com/magit/magit-popup.git",2017-11-20 18:18:00,"cacc3c8191e5545e9c798a990b8dfe4f875a88ee","[0, 0, 1, 0, 2, 1, 1, 0, 0, 2, 0, 1, 0, 1, 0, 1, 4, 0, 0, 8, 1, 10, 0, 0, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 2, 3, 1, 0, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,0,3610.5775925926 +"https://github.com/ocaml-community/zed.git",2012-10-16 21:57:06,"eb2e05d3f886962fd54a77783725346e3b1ac789","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4544.7564699074 +"https://github.com/Bioconductor/BiocParallel",2012-11-15 00:51:06,"8bc770675e658778ba4fb0f714ec07b62d472e4d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3995.750625 +"https://github.com/rockdaboot/libpsl.git",2014-03-20 15:38:32,"a06ac3334358a28a887f96452830efc953b75342","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 18, 1, 19, 6, 3, 0, 3, 0, 10, 16, 42, 27, 14, 11, 10, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 3, 9, 0, 2, 2, 2, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]",0,4,4,0,3466.4462268519 +"https://github.com/s3tools/s3cmd",2007-01-19 03:38:04,"f8f436e569a7b7741809273e689b2f6c4fb48d1e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 13, 0, 4, 5, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5763.7318981482 +"https://github.com/amplab/snap.git",2012-07-14 19:06:01,"e11dd78a7c84b44375509e87c0859d0d4321d202","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 4, 0, 22, 32, 0, 4, 4, 2, 6, 9, 8, 7, 1, 3, 1, 0, 0, 0, 10, 2, 12, 3, 0, 0, 0]","[0, 0, 0, 0, 4, 9, 0, 1, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0]",1,3,7,0,3911.3341898148 +"https://gitlab.gnome.org/GNOME/json-glib.git",2007-09-20 19:35:49,"c5bfb22f964b8f1feecdc8fb29d8a74b36861d32","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 28, 10, 20, 0, 6, 0, 18, 17, 0, 0, 0, 0, 9, 0, 0, 0, 0, 7, 0, 0, 0, 0, 42, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5734.4554861111 +"https://github.com/Castaglia/proftpd-mod_counter",2011-10-20 17:03:41,"7a21e9ce85c04fb4a80f838abdd0f48da2d6eab1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4182.156412037 +"https://github.com/r-lib/processx.git",2016-08-19 08:04:52,"e7d053a96d145a36244c08b74fa0029201d19067","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 0, 16, 11, 1, 2, 1, 0, 0, 0, 0, 0, 0, 21, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2669.6444791667 +"https://github.com/zealdocs/zeal",2013-01-20 01:49:25,"422bcfe23f9a4c097e9ab490cc152570d2c7a6b6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 8, 4, 3, 0, 0, 4, 12, 9, 9, 0, 0, 3, 3, 0, 3, 1, 2, 2, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3980.9958680556 +"https://github.com/lessthanoptimal/ejml",2010-04-07 11:12:20,"769224e5c3c4e9bb742ed166fb614fbff4df19ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 3, 0, 7, 5, 7, 6, 5, 7, 6, 3, 0, 2, 0, 0, 1, 4, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5141.1358564815 +"https://github.com/endrazine/wcc.git",2016-08-09 06:54:37,"dbb0ff186d2a2af7930f5bab7b8dfb44f706f90f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,2370.6538888889 +"https://gitlab.gnome.org/GNOME/gnome-dictionary",2005-12-16 17:27:58,"84bec038841753c5eb7a0a3cb2fccb0db5401759","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 8, 9, 5, 12, 7, 3, 6, 1, 7, 1, 2, 1, 1, 1, 2, 0, 2, 3, 0, 2, 0, 0, 0, 0, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0,5362.0621990741 +"https://github.com/editorconfig/editorconfig-core-c.git",2011-10-22 16:49:51,"45142061d9afb09a66c300f72c6daee7a22f3a27","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 40, 23, 19, 13, 42, 30, 6, 0, 18, 10, 3, 1, 17, 5, 7, 1, 7, 0, 4, 2, 0, 7, 0, 1, 0, 0]","[2, 3, 0, 0, 1, 2, 1, 0, 0, 2, 1, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,4345.1404861111 +"https://github.com/redis/hiredis-rb.git",2010-09-21 18:36:21,"6ea8cac4fcfaac2da428e034b410fff2a037129e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 0, 0, 6, 42, 0, 0, 0, 2, 0, 0, 0, 0, 11, 1, 24, 0, 15, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4451.3495601852 +"https://github.com/baldurk/renderdoc.git",2014-02-27 16:02:07,"787c80c1fe63375a00f67a8106439f4308fa367d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 8, 0, 5, 37, 6, 35, 28, 17, 6, 20, 6, 21, 22, 33, 26, 41, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,4,0,3576.9787268519 +"https://github.com/ejeschke/ginga.git",2017-07-13 17:57:08,"d5378a1ce16a2adc41183bf36d5d8ea66233663b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 10, 12, 25, 5, 5, 4, 7, 5, 9, 4, 3, 57, 12, 17, 4, 4, 11, 6, 10, 4, 25, 5, 2, 4, 1]","[0, 1, 3, 0, 5, 0, 1, 0, 1, 0, 0, 1, 1, 4, 3, 3, 0, 1, 3, 1, 2, 0, 4, 0, 0, 0, 0]",1,1,3,0,4188.9224189815 +"https://github.com/puppetlabs/puppetlabs-firewall",2011-05-09 15:55:19,"bff53bdbc03ad416e3f23d7ad943ebdffb3bd999","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 21, 7, 3, 1, 6, 0, 0, 1, 0, 12, 1, 1, 0, 6, 0, 0, 0, 5, 6, 12, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 2, 3, 6, 0, 0]",1,3,4,0,4586.8520833333 +"https://github.com/kilobyte/compsize",2017-09-04 14:52:51,"4854f0cc171b404aa2c5bc1a0806a8784c53690d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[69, 2, 2, 0, 0, 4, 0, 0, 0, 0, 1, 0, 2, 0, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,2,0,1814.0231481482 +"https://github.com/google/pybadges.git",2018-06-27 20:29:57,"2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,1932.0270833333 +"https://github.com/patrys/httmock",2013-03-19 23:35:34,"a24f76f0bf963bc9a6d4d6c1117c5b771dc3478d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 4, 3, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]",1,1,5,0,2779.5170601852 +"https://github.com/FFTW/fftw3.git",2002-06-02 18:42:32,"9a85d188479075e3f6d1de0d33c35008578e5b97","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 53, 38, 2, 19, 30, 42, 70, 68, 35, 36, 29, 43, 24, 36, 66, 18, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5716.0486458333 +"https://github.com/r-lib/httr.git",2012-03-29 00:13:32,"e6e39d0f26de7997831c851de9718dc81b714bcf","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 0, 0, 0, 14, 26, 0, 0, 0, 0, 2, 4, 0, 0, 11, 8, 8, 0, 0, 2, 0, 0, 1, 4, 0, 3, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,4372.2388425926 +"https://github.com/bear/parsedatetime",2012-09-12 06:44:45,"536d16e4b6ec69713e6c3e80282a8a30026b943f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0, 0, 0, 0, 4, 0, 2, 2, 0, 0, 0, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 1, 0, 0]",1,1,5,0,3739.2471990741 +"https://invent.kde.org/plasma/drkonqi.git",2014-03-30 23:31:46,"da27b276789a213775f1d1fdba20e5ca91430af2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 69, 31, 42, 31, 107, 62, 39, 67, 82, 61, 130, 74, 62, 57, 38, 32, 37, 61, 64, 48, 128, 32, 16, 49, 74, 1]","[1, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 1, 0, 0, 1, 13, 4, 1, 3, 3, 1, 7, 1, 0, 1, 3, 0]",1,10,48,0,3544.1127662037 +"https://github.com/yob/pdf-reader",2007-07-28 04:07:52,"525ff7dcad98fbd1d4b3f1e0fad7d0819e466843","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 3, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5741.4093981482 +"https://github.com/micheleg/dash-to-dock.git",2012-12-04 22:53:13,"bf392734c5bce8e1ff39ace49cd955b5b5ad8454","[10, 10, 11, 0, 7, 18, 21, 26, 14, 10, 17, 5, 3, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 9, 1, 4, 9, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,5,0,4172.0530092593 +"https://github.com/kaminari/kaminari",2011-02-05 13:32:10,"4db3397b4d962076bca6dd047ed15627e1f9f67d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[86, 62, 42, 6, 0, 0, 0, 0, 0, 4, 38, 21, 13, 1, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,22,0,4634.2992476852 +"https://github.com/lxqt/lxqt-policykit.git",2016-06-25 20:58:42,"29e3b8988a8cfb3075726fb85e6a6bda964cfe16","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4324.8308449074 +"https://github.com/p12tic/cppreference-doc-debian",2012-06-21 15:38:46,"ceb829eb9ceaa12ad8a8222024bf5cd228eae193","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3405.6815740741 +"https://github.com/highlightjs/highlight.js",2011-05-17 04:53:37,"a0fa0063d9ff0633ae44b6fa53626982bc923f21","[0, 0, 3, 1, 0, 0, 0, 0, 1, 12, 16, 9, 1, 1, 6, 0, 26, 0, 0, 0, 0, 0, 40, 34, 2, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 1]","[11, 0, 1, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 6, 5, 5, 0, 0, 0, 0, 0, 1, 1, 1]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,1,3,5773.3725694445 +"https://github.com/storaged-project/libblockdev",2014-05-20 16:48:14,"621fa65c3599963f0ea5fad8e12201758e7c532e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 18, 27, 20, 34, 20, 19, 6, 9, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 5, 0, 1, 10, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3535.6746296296 +"https://github.com/cocagne/pysrp",2010-12-01 14:44:20,"f649a03c1be597a4da12ee4d503043b153fe084b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4536.7902777778 +"https://github.com/spyder-ide/qtpy",2015-02-28 12:26:05,"5a7e8ab3a5a0c147b7d96865bdcdcec386410673","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3201.4270949074 +"https://github.com/sabnzbd/sabyenc.git",2016-09-19 08:04:11,"24da3863c7e1f553c473d7f83511f7904246c329","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2872.8934606482 +"https://github.com/gsakkis/pytrie",2016-12-04 23:36:11,"2e7cbcc95933da2220636dd52b9fd644e7f411cf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4036.1710763889 +"https://github.com/daqana/dqrng.git",2018-04-18 16:43:40,"fe72301878616d33480e84f5f27e95954afc5293","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 12, 7, 0, 0, 6, 10, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 10, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2053.1736342593 +"https://gitlab.dune-project.org/core/dune-common",2003-10-30 17:03:38,"59f6e9106e69c012d6bf4a004f43bf09d4349887","[9, 10, 0, 1, 8, 7, 0, 2, 3, 3, 8, 4, 6, 11, 0, 9, 15, 2, 1, 13, 4, 6, 4, 13, 19, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 11, 9, 7, 16, 2, 5, 0, 0, 0, 13, 8, 3, 16, 10, 0, 0, 27, 12, 15, 9, 13, 0, 0, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5758.7812037037 +"https://github.com/Unidata/netcdf-cxx4.git",2013-11-22 21:39:15,"08fea74fbd3188f47e9afca3cd6c8129f48fdb45","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 1, 22, 5, 1, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,1,4438.9411805556 +"https://github.com/mattp-/Plack-Middleware-CSRFBlock",2010-08-06 17:22:55,"730602f795629880e86a03fa3b4dd6edb1405c8d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1436.9725347222 +"https://github.com/libimobiledevice/libplist.git",2008-07-31 06:50:39,"47d60e2b9f8ddec18107cee21e046cd4df50fdef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 20, 14, 24, 30, 0, 1, 1, 1, 3, 1, 0, 10, 3, 0, 1, 3, 8, 3, 10, 0, 0, 6, 7, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,5,0,5614.0678125 +"https://github.com/kiwix/libkiwix.git",2017-01-02 14:57:01,"12b6a50dbaa506d09fd459d8f290d7a7468e9715","[4, 0, 0, 0, 0, 2, 0, 0, 3, 1, 0, 0, 5, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 2]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 3, 6, 8, 2, 2, 0, 3, 0, 1, 1, 5, 5, 17, 1, 1, 3, 0, 0, 2, 4, 0, 0, 4, 0, 2, 1]","[2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 5, 1, 0, 2, 0, 0, 1, 2, 0, 0, 2, 0, 1, 0]",6,0,3,2,5139.8432407407 +"https://github.com/sebastinas/yafc.git",2000-09-14 14:05:22,"a84420664457ac7e240b47085bb9370604b37221","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 4, 14, 32, 20, 0, 2, 1, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4536.1716550926 +"https://github.com/premailer/premailer",2009-11-27 22:38:19,"9c3c44407de4225e276bd12900a9356851f562e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 16, 4, 2, 1, 4, 0, 0, 0, 0, 0, 0, 7, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,5001.0799884259 +"https://github.com/SebWouters/CheMPS2",2013-12-11 15:34:46,"f438ab9cfa955b2652a3de2935e26eefd1e59fcc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3010.6861342593 +"https://github.com/jshttp/content-disposition.git",2014-09-19 04:59:07,"5ab443630137b8adfa5b030d9375d00ae5fcf286","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2639.7443518519 +"https://github.com/resurrecting-open-source-projects/stress",2021-09-18 21:35:36,"3b075d8c26d9a99dc90e7e2a31595f79c1a87f0e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,489.8052893519 +"https://github.com/linuxdeepin/deepin-notifications",2013-01-15 06:48:29,"14f0ed9a3a7fceff12aef2ad8c78beba38ba4385","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2025.0469791667 +"https://github.com/linuxhw/hw-probe",2015-11-29 17:34:57,"942d3c4a9efb3018708b0cf57f07fb283d3b4e45","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2812.8207638889 +"https://github.com/carlhuda/bundler",1998-01-16 12:13:05,"3db12e8b236ac8f88db8eb4690d10e4a3b8dbcd4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4417.961099537 +"https://salsa.debian.org/debian/github-backup",2012-01-26 04:02:23,"ba6fea838a31433a406d745de103f923aa5f3b27","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 0, 2, 1, 2, 0, 6, 5, 1, 0, 0, 0, 4, 1, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3299.6675694445 +"https://github.com/glv2/bruteforce-luks",2014-06-19 19:16:54,"871ea2caa89c489ddcbc01d5619f08f59ebca7ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1977.6153125 +"https://github.com/ua-parser/uap-core.git",2014-02-17 15:00:07,"ec27337e6f8417e8db9b0c88f84ecf7c81e5466b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3378.7186458333 +"https://invent.kde.org/pim/akonadi-mime",2016-08-05 00:53:51,"af762b9230dda02adc2995f807718f3b2687eeea","[3, 4, 0, 0, 0, 2, 4, 2, 2, 4, 0, 1, 3, 2, 0, 2, 0, 0, 2, 0, 7, 1, 1, 0, 2, 0, 1]","[1, 3, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 0, 1, 2, 0, 0, 1, 1, 2, 0, 2, 2, 1, 2, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5764.8335069445 +"https://github.com/mati75/volumeicon-debian.git",2011-09-17 19:05:29,"521fa2d1502d30e3ec0f84dc9af61350a814afba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4377.0106597222 +"https://github.com/jelmer/python-fastimport",2008-02-14 06:28:42,"99e4fa2de15cecf1d27e8dcff850c7d6d641578a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 11, 1, 8, 10, 4, 1, 0, 0, 0, 0, 2, 4, 2, 0, 9, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,6,0,5680.5950578704 +"https://github.com/flameshot-org/flameshot.git",2017-05-10 20:02:21,"294ee7c5a2881d2944dbf55ebf9a4c03b653c029","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 31, 18, 12, 10, 13, 0, 5, 10, 2, 16, 19, 5, 9, 5, 0, 0, 0, 1, 10, 1, 1, 0, 4, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0]",2,3,3,0,2393.0218055556 +"https://gitlab.dune-project.org/core/dune-geometry",2011-10-04 09:31:17,"b5dd922abbdb4ab0ee477093be8c6bc60a5e9d24","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 2, 1, 6, 9, 2, 1, 0, 0, 0, 0, 0, 1, 0, 4, 2, 2, 2, 4, 0, 0, 0, 2, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0,4564.4760185185 +"https://github.com/apache/activemq",2005-12-12 17:53:59,"40a7d3b6ac35d2ecb34e85fc3403d2e48e33874e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 72, 99, 77, 48, 12, 28, 34, 36, 75, 58, 122, 108, 63, 55, 62, 35, 32, 31, 45, 38, 11, 11, 17, 43, 54, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,15,0,5739.1228356482 +"https://github.com/vifm/vifm.git",2009-01-21 23:30:11,"6317a2a89b20fb102475fb049e12b3b450d29a27","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5419.5621875 +"https://github.com/Mottie/tablesorter.git",2011-06-22 23:19:27,"466b3a5860771d7e71089924ce62e68ab79e1cb5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 3, 2, 1, 0, 5, 0, 0, 4, 3, 2, 0, 2, 3, 1, 1, 1, 0, 0, 0, 2, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4550.6609606482 +"https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git",2011-03-18 16:16:49,"c78e1210a07e83ba0fc2ad1c474f226ecad211e5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4544.6493055556 +"https://github.com/ForensicArtifacts/artifacts.git",2017-05-13 18:10:10,"cdae777f69398b3610ad62d9de3c2eabb5861fd6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[311, 7, 0, 0, 0, 3, 1, 2, 3, 0, 2, 1, 4, 1, 1, 0, 1, 0, 1, 0, 0, 3, 0, 1, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,41,0,3293.8335763889 +"https://github.com/brummer10/gxtuner",2016-07-26 05:13:59,"7ea73de958ba02475defd79be0b4802d3d25c920","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1914.1892013889 +"https://github.com/glyph/Automat",2014-08-21 09:38:59,"a3aa905d647c1fceea2e9697d3e0c1f68ec2fc50","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 20, 11, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 17, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,1,0,3398.9362384259 +"https://github.com/captin411/ofxclient",2012-08-22 06:03:10,"ea9fdd8baf64c06fba9390b2bf64c23f2754d226","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2154.9641203704 +"https://github.com/gerbv/gerbv.git",2001-08-30 20:26:42,"a5bdb870a25cdec127ef7c31321e5bab3352bafa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 0, 0, 0, 1, 2, 9, 14, 9, 4, 4, 6, 18, 14, 2, 0, 12, 1, 0, 0, 2, 4, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5724.3901851852 +"https://github.com/broadinstitute/gatk-native-bindings",2016-05-03 19:43:54,"45cb71b9cf40637e302c9df073ff989458f4245b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,505.8018981481 +"https://github.com/uriparser/uriparser.git",2018-01-07 03:02:23,"f0e3992d4de003f6c8b8ffcdfc615abb52bcef16","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,1,1,0,5735.8655324074 +"https://github.com/emcrisostomo/fswatch.git",2009-06-25 21:34:41,"e7e5f4a51840a6acda61e531bac36c98ee9eb19f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4816.5607060185 +"https://github.com/intridea/omniauth-openid",2010-04-10 01:30:16,"c625919b74f91930ad4bc7bd95a3f80ecdda8103","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 2, 0, 2, 8, 0, 1, 1, 0, 2, 0, 0, 4, 2, 0, 0, 0, 0, 0, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,4,0,4671.7113888889 +"https://git.samba.org/nss_wrapper.git",2013-05-15 12:13:50,"bf21dbfc808c5e54c6b11c3525d07149f57d6cf2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 3, 9, 0, 4, 33, 3, 9, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3737.9026273148 +"https://github.com/pgul/binkd",2001-01-10 11:34:57,"45986b77161a366ea3d258a01dad442d3d21d81e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 3, 0, 0, 1, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5661.947349537 +"https://github.com/voxpupuli/hiera-eyaml",2013-06-25 19:54:10,"ed535fe2b83972545c037045c304f7a672954d0f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 23, 14, 4, 13, 12, 0, 0, 6, 1, 13, 4, 0, 0, 0, 1, 0, 1, 38, 13, 21, 2, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 11, 2, 4, 1, 0, 0, 0]",2,6,11,0,3753.1260185185 +"https://github.com/TACC/Lmod",2011-02-15 23:34:37,"26f005e487ea4535134d228314479f2c27858541","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 11, 8, 0, 11, 4, 3, 7, 1, 3, 0, 1, 0, 4, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4671.9454398148 +"https://github.com/brianmario/yajl-ruby",2009-04-20 18:18:31,"9f6ec766d3f857138388ee6d512f02ba2d41718b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0,4761.9604282407 +"https://github.com/lxqt/lxqt-openssh-askpass.git",2012-06-21 09:24:56,"da388021307340ac3ad9ce1362407280a7a1a44c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4154.121712963 +"https://github.com/Iotic-Labs/py-ubjson",2015-08-16 11:21:14,"53b9f1f942b4a88be80043bd94a0f6399e0200de","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 4, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 1, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2987.1609027778 +"https://github.com/mde/utilities.git",2012-07-29 02:26:27,"c8bca758db8b84546ebd4b1c95ef7e59dc98932c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 19, 13, 6, 7, 7, 0, 1, 3, 7, 12, 2, 0, 0, 7, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0,3873.0201388889 +"https://github.com/worldforge/libwfut",2005-11-27 16:36:00,"35752d7962ed1ee2146d7ab96bbe677fe85c4467","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5568.6978240741 +"https://github.com/thlorenz/convert-source-map",2013-03-13 12:22:33,"c0d4ff0f395d7d0adf9a2de76a0ed37aa1f7280a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3505.4009953704 +"https://github.com/markov2/perl5-XML-Compile-WSDL11",2018-05-10 22:43:36,"ae6493b83472e25d3d6a0431f63a353ea6f71eed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1204.3164351852 +"https://github.com/shellinabox/shellinabox",2008-12-29 23:57:07,"aab20f5ed00104c8bc9d12d362085634ff64dead","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 7, 5, 7, 2, 2, 4, 8, 4, 0, 2, 13, 14, 7, 3, 2, 2, 1, 0, 0, 4, 0, 0, 0, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3681.1884027778 +"https://github.com/SELinuxProject/setools.git",2014-07-08 18:28:55,"39505d0295b3fa533fb364aa83a338d762609e0a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 3, 5, 0, 0, 3, 0, 0, 0, 2, 1, 4, 6, 0, 8, 50, 16, 2, 2, 16, 0, 6, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3445.0147569445 +"https://github.com/lxqt/qps.git",2014-05-13 14:50:52,"ad2c4ab44143c3628a827d767ff1961780c25ad9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3468.9271990741 +"https://github.com/suyusung/arm.git",2016-08-20 13:12:31,"7b4e5c66578e3803b10606b0f8223948da0c577a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2199.2741898148 +"https://github.com/SIPp/sipp.git",2006-06-05 20:07:17,"3d805744e39370c7a31c1d04e815551810da2dba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 1, 1, 3, 2, 0, 0, 0, 4, 3, 2, 3, 2, 5, 3, 7, 1, 3, 6, 6, 22, 1, 2, 14, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5712.8757986111 +"https://github.com/gruns/icecream.git",2018-02-13 19:09:23,"1e3faff72720c8dd4f9c368173b8e3b704e7ccda","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 10, 3, 6, 7, 3, 4, 4, 2, 1, 0, 0, 1, 2, 1, 0, 2, 5, 6, 2, 2, 5, 1, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0,1755.1249305556 +"https://github.com/NVIDIA/egl-wayland.git",2017-01-18 05:21:01,"743d702fac0feb02d52ff34deadecb32284f18ea","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2464.5272800926 +"https://github.com/DarwinAwardWinner/ido-completing-read-plus.git",2011-09-05 05:00:34,"2457964bd535ad3d72914b6268d4ca5d1b4a632a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 6, 7, 4, 10, 8, 0, 0, 0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3558.9051736111 +"https://github.com/armed/gulp-flatten",2014-01-11 12:46:46,"f86b9c4d95a8d6356f8750a5aa7614950f6698b6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3247.6037152778 +"https://github.com/dragotin/kraft.git",2006-07-18 07:32:20,"52e295c10dbcd00a452246463c80b8adc4c8fe6e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3993.7869328704 +"https://github.com/tecnickcom/TCPDF",2009-03-24 18:37:18,"342de0004d1327912956b4adb7eb8b8eb63d2a36","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 7, 8, 5, 1, 2, 4, 1, 1, 1, 3, 0, 0, 2, 2, 2, 1, 1, 1, 1, 6, 4, 5, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5278.8556481482 +"https://github.com/OlafvdSpek/ctemplate.git",2007-03-21 23:06:14,"de4182841733f4e848e6fadddc6f447f5057db8e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5604.6906481482 +"https://github.com/bluca/stlink",2011-01-14 08:54:52,"27b50a3df817492716d21cf8ec91bcf074e2a479","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 1, 0, 1, 2, 0, 0, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 1]",1,1,5,0,4380.0284722222 +"https://github.com/AccelerationNet/cl-csv",2011-08-11 19:19:12,"85bab2f386ad747b619e4e481ae7b4e434551755","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 6, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 5, 0, 0, 0, 6, 0, 0, 6, 0, 2, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 1, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,4,0,3373.8361342593 +"https://github.com/jonschlinkert/window-size",2014-02-15 03:42:03,"0899b3e71b0740a024bd9d8bb702c91f8af7dcc8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1623.6925347222 +"https://github.com/mmottl/ocaml-makefile.git",2006-05-01 22:28:02,"9a26a6deb9eb4391e87a12224148d242b7705725","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1922.9826967593 +"https://github.com/rstudio/shiny.git",2012-06-20 18:49:15,"75ee6791b172f10040f2d031683229bf81916b9e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 9, 3, 28, 119, 83, 7, 9, 15, 5, 16, 3, 5, 6, 0, 1, 0, 0, 23, 10, 6, 10, 13, 6, 0, 11, 1]","[0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0]",1,3,5,0,4194.575162037 +"https://salsa.debian.org/iso-codes-team/iso-codes",2004-02-22 18:58:06,"3330c3350522315d1ee77a616a1b771746363408","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 5, 9, 29, 31, 10, 30, 4, 11, 5, 2, 23, 11, 5, 6, 19, 8, 5, 1, 2, 4, 17, 10, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,15,0,5771.8388541667 +"https://github.com/voxpupuli/librarian-puppet.git",2012-05-30 10:49:47,"51a2e0ed67aed3fb443ac6407d6fc690d91a7630","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 16, 5, 4, 0, 0, 9, 0, 1, 14, 5, 4, 6, 1, 0, 0, 1, 1, 8, 1, 1, 1, 0, 0, 9, 0, 1]","[0, 3, 2, 0, 0, 0, 0, 0, 0, 3, 1, 0, 3, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 1, 0, 1]",1,5,12,0,4114.1364930556 +"https://github.com/BioPP/bpp-popgen",2022-12-05 09:05:00,"c8328c02c044e919756b4bf96d3266c5d8bba6b2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,0,0,0,5514.9573032407 +"https://github.com/digint/btrbk-packaging",2015-07-20 13:46:37,"0cd777b99020b32b94220777a38b5d961f192fcd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2807.8996064815 +"https://github.com/honza/vim-snippets.git",2011-06-20 22:49:54,"a96f674eed23e4e25c065a0935b2fe4f104d47ec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 3, 7, 1, 4, 0, 14, 3, 4, 1, 5, 2, 2, 1, 0, 5, 8, 5, 2, 2, 0, 0, 9, 5, 4, 0, 1]","[5, 2, 1, 0, 2, 0, 6, 1, 2, 0, 2, 1, 1, 0, 0, 1, 2, 3, 1, 1, 0, 0, 3, 3, 2, 0, 0]",2,4,28,0,4556.7717708333 +"https://github.com/ncarrier/discus.git",2019-12-23 07:39:46,"44f48b1a0e6e1e526becaa3c5289a5b702e34b78","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 19, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,1119.0192592593 +"https://github.com/LanguageMachines/timbl.git",2015-11-23 13:48:35,"da8ea56b901aa4ffb97ab502674fbace64f716fd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2913.2087384259 +"https://github.com/andreas-kupries/critcl",2011-09-23 05:37:51,"fcd6493f014dba7b8ac1c6d51189499be3db811b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[20, 7, 2, 6, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 13, 0, 0, 0, 3, 1, 5, 2, 0]","[3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",1,1,0,1,5635.5840046296 +"https://github.com/Dav1dde/glad.git",2013-08-04 12:16:17,"baf22f5efa99a98762b9ac11bfac8b7b883bf57d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3530.1536458333 +"https://github.com/savonet/ocaml-flac.git",2010-05-26 16:18:47,"489ba02e80e0484a77e043f4b04726f25bb08634","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 9, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4915.2796990741 +"https://gitlab.com/compiz/simple-ccsm.git",2007-09-26 15:50:46,"44485e2da13831c48d07a019a1d36c5abd2e6f0c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 10, 0, 3, 2, 0, 0, 0, 0, 1, 0, 0, 5, 3, 0, 5, 0, 1, 0, 5, 2, 2, 0, 5, 0, 1, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,2,0,5483.6726851852 +"https://github.com/originell/jpype.git",2012-07-31 09:41:07,"19eb92edc0ff70510a3078cd832c77ce996e6ba4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4153.0550347222 +"https://github.com/tatsuhiro-t/wslay",2011-12-20 16:11:45,"2d004e3fe7bcc6de66e913da0194558145488467","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2229.7935185185 +"https://github.com/meskarune/i3lock-fancy",2016-03-27 15:12:21,"628551a1c49501fd77a9f22b8b23810fba4987c8","[0, 0, 3, 0, 0, 0, 0, 5, 14, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[26, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,1,2,2712.43375 +"https://github.com/operatornormal/classified-ads",2014-12-26 20:35:52,"0506b56bab7e6b98c50ac769b5530a4d1d8a7bd9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 9, 3, 6, 3, 5, 0, 4, 4, 9, 9, 9, 6, 0, 5, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,3053.9196180556 +"https://github.com/Ozzyboshi/guake-indicator",2014-05-04 11:10:02,"3f701fc55e3d28927b2ed50e39f2e6e33c5a396a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,2489.1411226852 +"https://github.com/potatosalad/erlang-jose.git",2015-07-27 22:40:21,"a7746ecd4950f85a393136e449a91dac62b5c429","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 17, 8, 11, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 0, 2, 8, 0]","[0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0,3054.6266782407 +"https://github.com/porridge/ydpdict",2005-10-01 09:40:45,"762ffed3d6acd33e85337dbdd1dc5372dd2d2fbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5724.9537731482 +"https://github.com/tidyverse/hms",2016-03-31 10:26:47,"f97b4c95b67965419bf540d736af169a8fae9d27","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[54, 5, 12, 1, 17, 0, 0, 17, 0, 2, 7, 8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0]","[20, 2, 4, 0, 4, 0, 0, 4, 0, 0, 3, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,3,3,0,2747.6862152778 +"https://github.com/sacerdot/ocaml-http.git",2006-02-02 18:57:10,"6588ba292425d32cd2bec878bc8c3651a5673bd4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3570.2121180556 +"https://github.com/processone/pkix.git",2018-09-24 15:27:32,"9b21a00cf640ef4510d8d71c9d17d51ec6378335","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 1, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,1315.7862615741 +"https://git.samba.org/pam_wrapper.git",2015-12-10 12:31:14,"8f6ecbb5a1427fe94ad75872bfbee1c72a54d0bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[67, 0, 0, 0, 22, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,2892.2168518519 +"https://github.com/skorokithakis/shortuuid.git",2011-01-08 14:44:52,"57ad5d63571a03c1d53dff31d86e0bc3a4d4851a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4431.3497800926 +"https://github.com/faye/websocket-driver-ruby",2011-11-22 01:43:51,"9bcbcd6ef911135f60c6bc5513c616c88d42d3bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 6, 0, 23, 9, 0, 20, 19, 0, 1, 0, 12, 1, 2, 14, 9, 6, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4307.7232523148 +"https://github.com/hvesalai/emacs-scala-mode",2012-10-06 17:19:36,"6f1b748d7240deb30e5921a61646237f025f18f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 30, 29, 6, 6, 5, 1, 3, 0, 0, 0, 0, 3, 0, 0, 0, 2, 3, 3, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 1, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",1,2,9,0,3670.9045486111 +"https://github.com/felixdoerre/primus_vk",2018-09-07 23:39:55,"56766d1c44d2dd37d82fbf19484c83f336d3e5cf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 8, 10, 16, 8, 2, 0, 2, 0, 0, 2, 0, 0, 0, 1, 6, 4, 0, 4, 3, 0, 0, 0, 3, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 1, 0, 0, 0, 0, 1, 0]",1,2,4,0,1911.529537037 +"https://github.com/svgpp/svgpp.git",2014-02-18 19:23:21,"be4d3da76b77aae3ff4f2e34786d8a3e2f13a185","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 5, 4, 4, 2, 3, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0,3480.6248726852 +"https://github.com/nix-community/acpi_call.git",2010-06-29 15:31:48,"009f34b45ffb3f001e3f0f5e27f4b15b0f4eb333","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4711.2498958333 +"https://github.com/libimobiledevice/usbmuxd",2009-05-04 23:40:40,"102e8ff46e5491c8d1a5928b34f058c88e55d065","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 12, 0, 1, 3, 4, 1, 0, 1, 0, 0, 19, 8, 12, 14, 13, 2, 2, 0, 2, 1, 7, 0, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,5280.2443287037 +"https://github.com/ropensci/crul.git",2016-10-28 23:15:38,"8fe79db23336b9eef5e6542daca7fe5e131e3430","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 15, 1, 0, 1, 0, 8, 13, 2, 4, 3, 4, 3, 1, 1, 9, 6, 0, 0, 1, 9, 7, 8, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,2,0,0,2488.6026967593 +"https://github.com/stevegrubb/libcap-ng",2017-06-20 11:10:28,"cd7f2f4918c90dcf5b0aa52a7ffd7860b7ba6288","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2330.4456365741 +"https://salsa.debian.org/jcc/zram-tools.git",2014-03-09 14:31:01,"7ae71cc80f5f9ebff223bf0791f57e66170126a3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2430.0253703704 +"https://github.com/Castaglia/proftpd-mod_msg",2018-04-11 13:39:20,"17f0a0bee7359135d13d12d94ab41bcfb376cd22","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1530.1719212963 +"https://github.com/wjoye/tktable",2016-10-17 15:22:52,"7fde2daeed593684120d75de07598154f3ddaf2c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[39, 22, 8, 3, 11, 0, 0, 0, 0, 34, 31, 63, 56, 0, 78, 42, 7, 2, 4, 5, 28, 18, 18, 21, 4, 1, 1]","[15, 6, 1, 0, 3, 0, 0, 0, 0, 4, 5, 10, 2, 0, 20, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]",1,0,1,1,2301.1677546296 +"https://github.com/npm/nopt",2011-03-30 02:32:09,"1b1237c7d5525660d6df76e2b88047b1035fc12a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4635.8365972222 +"https://github.com/tianon/gosu.git",2014-09-22 22:28:51,"ff3214d67b1de4caa64fcb82a120e9128a9e8f86","[0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 5, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3461.2298611111 +"https://github.com/g0hl1n/xprintidle",2014-02-26 11:45:16,"a89754dd4555923ebf791b5991b8b424cbc7543f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3448.9179861111 +"https://github.com/flori/tins.git",2009-10-29 00:54:37,"84171acc770baf1a4c3df3881eb7861bdf2e892b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5186.4477893519 +"https://github.com/prometheus/alertmanager",2013-07-16 15:09:56,"f59d8fb2fcbcb0c566266e4dac83d3c7c729a978","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 16, 9, 5, 9, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,3799.9337268519 +"https://github.com/silnrsi/font-eeyek.git",2019-12-02 13:32:03,"3fe3db96d6ecf16f42036b51f1f2ad8d9ce26097","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1465.3906018519 +"https://github.com/cmrd-senya/markdown-it-html5-embed",2015-09-17 20:56:26,"bc2ff4f1134ebfc60f5bffab0e2d5f495f9df897","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,2489.0705555556 +"https://github.com/naelstrof/slop",2013-09-08 20:39:42,"7f72447efeb1da71c39db9bf6c5b333e045c6466","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 9, 1, 0, 2, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3674.1057638889 +"https://github.com/Gnonthgol/sosi2osm.git",2013-10-06 22:02:25,"66a912bea3603afe46a37f8f831a696d43ab6d03","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,3689.8328125 +"https://github.com/ros/genpy.git",2011-10-12 01:07:08,"bf29133ae2666b5997e206dedc1f4e341cf23d65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 3, 0, 3, 5, 1, 0, 2, 5, 0, 8, 15, 7, 11, 0, 0, 1, 10, 2, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,10,0,4178.1003472222 +"https://github.com/r-lib/gtable.git",2015-06-22 13:17:56,"5b5630708decf04b38d7a52e00c0b1dca1a5ab52","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1,4252.7226967593 +"https://github.com/resurrecting-open-source-projects/outguess",2018-11-08 23:11:58,"e665afa4ea8513bdb155c0f5cded3a8330ff341a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1029.0813888889 +"https://github.com/palinek/nm-tray.git",2015-10-08 14:08:02,"04b94f9df6167c43a4d9e191c8f74ee9ade44eca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2973.3749074074 +"https://invent.kde.org/pim/grantleetheme",2016-08-05 00:49:40,"73bd97b75d76e06fe758e590ddeaa778f03c994f","[0, 1, 0, 0, 0, 1, 1, 0, 7, 6, 0, 2, 0, 1, 0, 2, 0, 0, 2, 0, 14, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 3, 0, 1, 1, 1, 0, 2, 1, 1, 0, 1, 2, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,0,1,2926.047974537 +"https://github.com/michipili/bsdowl",2008-03-14 10:07:55,"c43a3649cfa131d1cb753bb976f277bca1e455af","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 2, 0, 7, 22, 1, 27, 12, 0, 5, 6, 1, 1, 0, 0, 0, 14, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3910.6843055556 +"https://github.com/mpld3/mplexporter",2014-02-14 23:23:32,"37df028da95b6d90cf042f19e86a5033e7ad780c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 34, 16, 12, 4, 21, 0, 0, 1, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0]","[4, 5, 4, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0]",2,6,7,0,3220.5932523148 +"http://github.com/voloko/twitter-stream/issues/new",2009-10-09 09:54:44,"11ce705f70adfbc51a5c426d3616d2901adff761","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,2746.3319791667 +"https://gitlab.gnome.org/GNOME/at-spi2-atk.git",2001-07-25 18:26:40,"9bf98cd378e1572019a743bb4bf18e896b4fcd1d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 9, 23, 1, 9, 0, 3, 2, 5, 7, 0, 3, 1, 1, 7, 18, 10, 8, 41, 6, 2, 2, 6, 18, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0,5197.2038541667 +"https://github.com/selectize/selectize.js",2012-09-01 01:02:00,"5abfb2298cc243417dfd68788596520c809a9d2c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4120.8884143519 +"https://github.com/rails/sprockets.git",2009-02-09 22:15:39,"225b17f7ee1926d6e9b63a4e2cddbcd2e534ba01","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3278.0454050926 +"https://github.com/doctrine/data-fixtures",2010-09-20 22:24:15,"4a860e98d5c03205cef55ba0d4049436e4d319d7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,4832.8952662037 +"https://github.com/Winetricks/winetricks",2015-03-29 21:53:54,"c047d61f89406682b19edbda5007c739912e2007","[0, 6, 0, 0, 1, 0, 0, 3, 5, 7, 6, 1, 0, 0, 0, 8, 0, 0, 4, 1, 3, 0, 0, 1, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[24, 1, 13, 1, 2, 0, 1, 0, 0, 0, 0, 0, 4, 15, 24, 5, 11, 9, 4, 14, 0, 2, 0, 10, 0, 3, 1]","[3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 1, 3, 4, 3, 2, 0, 0, 0, 3, 0, 1, 1]",11,2,11,1,3196.4553472222 +"https://github.com/exodist/Term-Table.git",2016-12-19 07:01:11,"27010fb24f19791b5ea859430c2c10846328f935","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2498.9135185185 +"https://github.com/metaodi/osmapi.git",2014-01-01 11:32:49,"55893a643fc3257a988ebf9c593c5007bec8a76f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 26, 0, 4, 0, 0, 0, 0, 6, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0]",2,1,1,0,3568.7783796296 +"https://github.com/ietf-tools/xml2rfc.git",2010-01-18 13:34:25,"5f1f8b9ced72dea365b98717219bbeadc86cce74","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 0, 0, 0, 0, 0, 5, 0, 6, 17, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5078.4323148148 +"https://gitlab.com/oath-toolkit/oath-toolkit",2009-11-24 13:36:33,"479af86e6cde18cdf8da80ae0fc65e5d7ad3adf7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 44, 13, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4975.3153125 +"https://github.com/PacificBiosciences/pbcore",2012-08-30 18:58:02,"8aea59a2c96e8c83ee2a75eb3ca704f748dbd113","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 1, 2, 0, 0, 7, 1, 2, 0, 0, 0, 2, 0, 0, 2, 1, 5, 0, 1, 2, 3, 5, 9, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,4123.1293055556 +"https://github.com/ruby-amqp/amqp.git",2008-07-11 23:17:47,"5b2fec58829ecd0fb7c659e8e3b862551e2ed4ee","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 60, 15, 6, 13, 1, 0, 5, 2, 1, 2, 5, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 12, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 1]",1,2,8,0,4994.8880787037 +"https://github.com/Seldaek/monolog",2011-02-17 02:04:58,"2ff85ba4721a1fd3ab5b77cc7e9778945dcf95de","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 8, 0, 0, 7, 2, 21, 3, 1, 13, 3, 32, 3, 0, 6, 0, 4, 1, 9, 8, 2, 8, 0, 4, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 10, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 0, 0]",1,3,12,0,4676.6184375 +"https://github.com/kilobyte/safeclib",2012-06-18 18:50:54,"8379e6f6e74afec9e96eae41853567faec6fb273","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 0, 5, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]",1,1,0,0,3855.424849537 +"https://github.com/ponty/pyvirtualdisplay.git",2011-02-11 11:40:38,"9c7b92f6624c35de8600fff9b0f69640156cbdac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 5, 0, 0, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4649.3207175926 +"https://github.com/emacs-lsp/lsp-mode.git",2016-12-02 17:08:27,"e42e99e026b037c1d29709955273b890be95c9fa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 65, 16, 3, 6, 1, 3, 0, 0, 0, 2, 1, 5, 0, 7, 0, 0, 40, 45, 41, 5, 22, 17, 0, 0, 3, 0]","[0, 1, 2, 0, 0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 3, 5, 5, 0, 4, 4, 0, 0, 1, 0]",1,3,14,0,2556.5827430556 +"https://gitlab.gnome.org/GNOME/libpeas.git",2009-10-23 07:28:39,"a8952b9e7b8bfdc4e5ad32841708492cf0998347","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 23, 0, 7, 0, 0, 16, 9, 7, 1, 4, 0, 2, 1, 0, 1, 8, 2, 1, 1, 2, 2, 0, 0, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,15,0,5163.8972569445 +"https://github.com/mdub/sham_rack",2009-05-03 11:13:40,"fabc0be6c16f3e855e8bbdd655e723ffd7f6537a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 3, 0, 0, 11, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3267.7854166667 +"https://github.com/brendangregg/perf-tools",2014-07-10 19:54:14,"a12c0063e89ed1195752617bd43d8e76de23915e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 46, 29, 14, 0, 1, 0, 0, 4, 6, 5, 2, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 4, 1, 0, 2, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,7,0,2014.1201041667 +"https://github.com/bluemonk/ipaddress/issues/new",2009-08-25 14:23:15,"540023c8ce27954a0ddbcf7cd18064ffbecba70b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2746.3319791667 +"https://github.com/r-lib/roxygen2",2007-06-25 10:38:44,"7733e2079c4652f4df7fdab71b65c6ec38d53685","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5674.9912384259 +"https://github.com/xavierleroy/ocamlagrep",2002-02-01 15:01:56,"79f53a5e3eb55cbc337ed3754a3d3156025eb680","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2115.1310300926 +"https://github.com/hadley/memoise.git",2010-11-11 15:55:32,"eb41e985d9e84d52b64f22834efa1bdaf2cc2605","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1189.1777777778 +"https://github.com/dmeranda/demjson",2012-06-09 00:09:35,"f579ffabbd5026dfe67a61e97d4524c9a171612d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1291.8414699074 +"https://github.com/muquit/grabc.git",2018-04-11 23:08:10,"4be2da1ec8745d51df63e92c149f3d1484a1113f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1019.1824189815 +"https://github.com/linuxmint/cinnamon-session.git",2013-06-02 15:22:34,"ced663aaf4032bf31a3b526143a59c5f2654013f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 2, 2, 4, 1, 0, 2, 5, 2, 0, 2, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,4,0,3830.8484259259 +"https://github.com/pytroll/pyresample",2012-05-14 12:14:03,"a6551fc76eef2d694a3a5ebc52620a61d6538ff0","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,4965.4070138889 +"https://github.com/Xubuntu/lightdm-gtk-greeter.git",2011-11-29 03:06:00,"23b165b78ce4a03d20183edf48f6220a363064b9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 1, 2, 0, 3, 2, 2, 0, 0, 0, 0, 0, 3, 0, 3, 0, 2, 1, 0, 1, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4390.5262384259 +"https://github.com/NetworkConfiguration/dhcpcd.git",2007-11-07 16:05:07,"755a28e47fb28b412e6a8e664d2bceeeeba284f6","[15, 4, 2, 0, 0, 0, 3, 3, 0, 8, 3, 9, 2, 6, 7, 1, 3, 0, 0, 0, 0, 3, 16, 11, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 3, 1, 0, 0, 0, 0, 28, 6, 17, 26, 9, 7, 8, 21, 4, 0, 1, 8, 23, 0, 31, 23, 13, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5784.3856944445 +"https://github.com/dimitri/pgcharts",2014-03-28 21:30:28,"68029d113c985567c052b8e1cdc37f488c37ef86","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 14, 0, 5, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0,2256.897962963 +"https://gitlab.gnome.org/GNOME/glibmm.git",2003-01-07 16:59:16,"78e5bf1313f67e4cbc67fe01a408d27de7383abd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 6, 0, 0, 0, 0, 1, 0, 3, 2, 1, 0, 0, 4, 2, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,7,0,5785.9819097222 +"https://github.com/capistrano/sshkit.git",2012-03-09 16:39:33,"d45ff069dc60cdc288fac09eb12d998c4e608a4a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3961.9651041667 +"https://invent.kde.org/pim/kpkpass",2018-03-16 16:31:06,"92f358bf5411468c8db41f5eb6b89ad4bece35ff","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,2087.7338657408 +"https://github.com/indutny/node-ip",2012-08-15 08:59:28,"bedc9da9ef1dbaaa71524f6952a4f39a57738a84","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",1,2,4,0,3990.2488194445 +"https://github.com/flowgrind/flowgrind",2007-10-24 14:03:30,"7465eea8ef8d0fa3293ba547b592d5897207d39c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 41, 4, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4925.7733564815 +"https://github.com/linuxdeepin/deepin-deb-installer",2018-07-31 05:26:45,"03d4cf7871f710f8c79cf9d691ae23cbc935e303","[7, 6, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 2]","[1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 3, 2, 1, 1, 8, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,1,2369.9382291667 +"https://github.com/fontforge/libspiro.git",2007-10-28 21:46:07,"8bd6222facb17e0aa09532853b34e1f9c400ea3e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4925.1799537037 +"https://github.com/LeoIannacone/apt-venv",2014-05-05 00:19:03,"47d48cd77b79b40a2fc07198b9cdac2f1a4efbd1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1672.1250694445 +"https://invent.kde.org/libraries/libqaccessibilityclient.git",2012-04-05 15:19:45,"c9118022c7a5cb9e21bc9250b53c5c7cbb837022","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 8, 1, 2, 14, 0, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 2, 0, 9, 7, 19, 4, 5, 36, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0,4267.1500810185 +"https://github.com/puppetlabs/puppetdb.git",2011-08-02 17:29:09,"db9e99a0a89b6d32d574c63d1fe70329f9003548","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 5, 0, 2, 14, 5, 17, 0, 20, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 30, 35, 1]","[0, 0, 0, 0, 5, 0, 5, 0, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 8, 11, 0]",1,3,4,0,4517.0981134259 +"https://github.com/roundcube/roundcubemail",2005-09-28 22:28:05,"30233b8dfb7fe5070dfa11b3e6d2015fb50aa769","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 5, 16, 21, 10, 9, 3, 3, 0, 1, 2, 2, 0, 0, 7, 12, 15, 2, 7, 0, 19, 0, 8, 3, 5, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5787.847337963 +"https://github.com/cpants/Module-CPANTS-Analyse.git",2007-04-19 19:13:19,"96975b42736ae4994df64b42bd08216619ad997e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 4, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5647.7312152778 +"https://github.com/bbatsov/solarized-emacs.git",2011-12-03 07:07:57,"f6ca4b7020fc7c9d45dd1cd6ce72cd5a0b2726dd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 1, 13, 22, 3, 9, 0, 5, 0, 1, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 1, 4, 0, 1, 0, 0, 0]",1,2,9,0,4384.0037615741 +"https://github.com/google/double-conversion.git",2012-02-05 17:06:27,"27f3a9897627dcea6bf4d9d2ce576d2b21563502","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4286.6592824074 +"https://github.com/c-amie/analog-ce.git",2019-04-14 09:02:00,"f40c5609272dd8cd2fee934256dde61f9c1b0f4f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,798.2990509259 +"https://github.com/trentm/node-dashdash",2013-02-27 08:07:36,"b1925e052b674c0cafadcef909950b41c865f5b1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 16, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3657.7330671296 +"https://github.com/dunst-project/dunst",2011-09-07 13:43:50,"10d7c3fbab67e27edd20e1f2f6c6b272469fd2ea","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 14, 5, 8, 0, 0, 1, 0, 1, 14, 8, 1, 0, 0, 1, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4447.0045601852 +"https://github.com/savonet/ocaml-opus.git",2021-03-09 02:33:53,"178172af1903a0d520ed29666c14e8e07ed7c013","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3889.1978819445 +"https://github.com/Bioconductor/GenomicRanges.git",2019-04-19 20:21:48,"2626eb2cb23257b9f75e5d8fc638d741ff043962","[0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4977.821712963 +"https://github.com/google/stenographer",2014-10-13 22:20:30,"35b7ec1595265f1cb4b35f910f188cf8a0259916","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 26, 15, 12, 8, 5, 1, 20, 20, 18, 2, 1, 34, 21, 18, 22, 21, 42, 18, 3, 9, 8, 2, 6, 3, 0, 0]","[0, 6, 5, 4, 2, 1, 0, 7, 6, 11, 0, 0, 10, 12, 7, 10, 11, 13, 7, 2, 3, 2, 1, 3, 1, 0, 0]",2,7,6,0,2239.756412037 +"https://github.com/rvaser/bioparser",2016-06-17 08:59:17,"5c6bd4bf36e2558c097eb72717d6d315feba064d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2526.0444675926 +"https://github.com/muammar/mkchromecast.git",2016-03-19 11:59:07,"a05aba58355f706216f05e13e686bd99db2a093e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 25, 40, 11, 77, 22, 77, 46, 80, 14, 20, 23, 57, 30, 20, 28, 13, 14, 4, 4, 4, 34, 19, 7, 5, 17, 1]","[0, 0, 1, 0, 0, 1, 1, 2, 4, 2, 2, 5, 3, 2, 0, 2, 1, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0]",1,2,3,0,2825.8958217593 +"https://github.com/heynemann/preggy",2013-04-12 18:08:53,"7db8ca7203eb0c1efb9b3e94240dc3869d5ba211","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 46, 51, 23, 19, 7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3206.0471759259 +"https://github.com/aresch/rencode.git",2012-12-01 23:04:58,"79f485d54967efa330b30ff94085274db7c5e818","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4103.1734490741 +"https://github.com/jonschlinkert/repeat-element",2015-01-11 23:40:45,"002215cd327b57ceffa9c4a74c1a7ed20cdf8d61","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2277.9809027778 +"https://github.com/jquery-i18n-properties/jquery-i18n-properties.git",2014-06-12 18:44:16,"cbb8300bef6e148753f147643ecc5f64f0e0b34e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2244.4631597222 +"https://github.com/firmafon/ruby-fogbugz",2011-05-21 22:06:01,"535feb371ade7a1eb4e1e093157cc5f796faaf49","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2091.2249884259 +"https://github.com/miquels/liblockfile-debian",2017-01-05 14:04:25,"020bca7898bfd0a173435907f0ad3dce2f00eca5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1484.1868055556 +"https://github.com/hturner/gnm.git",2017-09-02 11:37:39,"e83dbc32b7f6f1d030e516697e1928e911a928de","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5664.8181712963 +"https://github.com/mate-desktop/libmatekbd.git",2011-12-01 23:53:10,"916e2eafe251b44f9d0339282f5d00723899caec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4348.5463657407 +"https://invent.kde.org/sdk/clazy",2015-06-10 16:00:03,"d37732b0a1bd7ce0340b8f06baebb0d3d90dee89","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 7, 11, 0, 4, 0, 0, 17, 48, 37, 29, 12, 29, 10, 9, 6, 15, 38, 21, 38, 16, 34, 34, 18, 33, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,12,0,3105.167037037 +"https://github.com/hunspell/hyphen.git",2010-03-04 12:13:53,"21127cc8493a68d4fe9adbb71377b469b4f2b550","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2824.9621875 +"https://github.com/qix-/node-simple-swizzle",2016-01-20 15:59:41,"cf1677cf0ebc219b3770cabd226362bfbe4b920f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2271.2482060185 +"https://github.com/khenriks/mp3fs.git",2006-08-06 07:39:56,"113db0eef2a9e6f7b4bd955586a07ff14ef5841c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 1, 0, 0, 4, 0, 0, 1, 0, 0, 0, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5444.4987847222 +"https://github.com/pramsey/pgsql-ogr-fdw.git",2014-12-15 22:18:00,"e950361fb1e874b44f0f325c11fc7f22a8871e5f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 0, 6, 12, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3285.0248958333 +"https://github.com/tkellen/node-v8flags.git",2018-12-17 19:41:06,"0e81c66b29dae48b6d6c2db838266e0cff9c6cc0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,10,0,1721.1332407407 +"https://github.com/taem/sxid",2009-09-08 09:23:07,"7415c8937998b81e58b8eb38b99479089434f7a6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,1429.0293865741 +"https://github.com/mbostock/smash.git",2013-03-13 03:06:47,"d49c97e38c23c173ca2a4b0d058ac867a49e4766","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 2, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,1268.6711921296 +"https://github.com/prawnpdf/pdf-core",2014-01-19 17:41:10,"b0fde4e9be829a84a38b8e273b17a998bd30cbf6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 6, 1, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3635.7233912037 +"https://github.com/monocasual/giada.git",2012-11-08 21:08:58,"b5b195799c155b0262cdff098508f1dac62847ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[8, 1, 12, 10, 11, 4, 17, 17, 7, 15, 19, 11, 10, 20, 12, 10, 9, 29, 31, 17, 26, 4, 10, 5, 21, 7, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,0,0,1,4048.8034953704 +"https://invent.kde.org/plasma/xdg-desktop-portal-kde.git",2016-07-13 09:25:32,"295ca79cc0b8d8f704254d06e154929d0d79f1a9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 1, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2709.3837731482 +"https://github.com/matze/pkgconfig",2013-08-08 09:37:11,"f109dbbfc99dfed7ecb3540484e1499fb68097b5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2902.384537037 +"https://github.com/stef/pysodium.git",2013-08-25 21:26:38,"d31211d189e36c53991729243b1abef51420f22b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3761.6783217593 +"https://github.com/mathiasbynens/unicode-property-value-aliases.git",2016-05-21 09:58:38,"4916baf7c95c7d418dadc5478cf6dd6b472cf33b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2643.9666898148 +"https://github.com/dompdf/php-font-lib",2012-11-16 17:16:02,"6cd2f2a4b0e1dd3104295c80864b24fb5ff8934d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 7, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,4545.5076273148 +"https://github.com/curvedns/curvedns.git",2010-10-23 12:41:01,"93abc68e47e52adc99c846dc9b07a4e609128fc4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 2, 0, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3466.7757291667 +"https://github.com/unshiftio/ultron",2014-11-11 13:04:22,"974a17398c7d15fe36b86ffe6cbf62f5d8612e5a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2972.2796527778 +"https://gitlab.com/compiz/libcompizconfig.git",2007-03-13 14:01:52,"54b8baf2a3c54f62c47255c12e02d4631b60eb88","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 29, 8, 1, 0, 49, 31, 14, 13, 8, 1, 3, 15, 29, 5, 3, 19, 5, 0, 1, 28, 14, 16, 9, 16, 3, 0]","[0, 0, 0, 0, 0, 9, 4, 2, 2, 2, 0, 0, 3, 5, 1, 0, 1, 0, 0, 0, 4, 3, 0, 1, 0, 0, 0]",2,4,16,0,5552.2184606482 +"https://github.com/es128/glob-parent",2015-01-12 20:18:06,"b08cbec38731960b35446da9d819824ba35e0c49","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3015.0730902778 +"https://github.com/speed47/spectre-meltdown-checker",2018-01-07 14:00:15,"3b59139e7970bbeca5c8a56ce9f1ac09ed02bfcf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[126, 31, 23, 23, 4, 7, 0, 1, 4, 3, 13, 3, 16, 17, 12, 0, 2, 0, 2, 20, 0, 0, 2, 2, 0, 0, 0]","[28, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,37,0,2139.8867708333 +"https://github.com/amrayn/easyloggingpp.git",2012-09-23 03:41:35,"c7aff6c9823f07f149cbebcc9a4047f8d48aa195","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 28, 14, 2, 0, 4, 24, 9, 24, 9, 1, 1, 0, 0, 10, 31, 39, 23, 15, 10, 0, 0, 40, 23, 20, 1]","[0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 2, 1, 0, 0]",1,4,4,0,3956.1497569445 +"https://salsa.debian.org/ruby-team/ruby-github-api",2016-07-01 12:13:10,"8d56e514802d9bd658b78b07958d045d0c12127d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2392.4012268519 +"https://github.com/gulpjs/glob-stream",2013-07-04 08:29:17,"2c7ffd644cca9791998cdb534444800d52602244","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 2, 10, 8, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0]",1,1,6,0,3628.7153472222 +"https://github.com/d3/d3-dsv",2013-03-08 17:42:16,"656f5ace67cb50a1f157229ee4fca0985469929d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3863.8892013889 +"https://github.com/Backblaze/b2-sdk-python.git",2015-11-16 18:44:35,"4fd290c0d4b4b252c749898a373beaca7d60fbad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 6, 16, 39, 27, 17, 9, 19, 5, 1, 37, 10, 22, 77, 30, 18, 46, 36, 41, 47, 35, 17, 20, 0]","[1, 0, 1, 2, 1, 2, 9, 9, 7, 2, 5, 1, 0, 8, 2, 5, 10, 5, 0, 9, 11, 6, 9, 5, 2, 6, 0]",1,4,14,0,2948.6294907407 +"https://github.com/diff-match-patch-python/diff-match-patch",2018-11-06 02:00:06,"6e065aa329cec6fbd73dd2fef7c72c1dd68d07f2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1729.8804282407 +"https://github.com/watson-developer-cloud/python-sdk.git",2015-10-08 14:09:23,"0fc9e32a0296ba399f216878c305fd83d7f115a9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 24, 9, 5, 6, 0, 15, 0, 4, 1, 0, 0, 0, 10, 3, 5, 6, 8, 10, 5, 0, 12, 5, 16, 2, 4, 1]","[0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,2,3,0,2927.1329976852 +"https://github.com/osmcode/libosmium.git",2013-12-09 17:39:57,"de9553e0ef33098680498e895b1d6bb207f31b0b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 5, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,3645.6736805556 +"https://github.com/keras-team/keras",2015-03-28 00:59:42,"37a1db225420851cc668600c49697d9a2057f098","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 35, 31, 44, 17, 20, 27, 17, 45, 39, 37, 53, 100, 75, 63, 49, 64, 23, 16, 19, 48, 23, 11, 39, 9, 12, 1]","[15, 6, 6, 13, 2, 6, 10, 5, 13, 12, 15, 8, 24, 21, 11, 11, 19, 7, 4, 4, 18, 9, 3, 14, 3, 5, 0]",2,18,87,0,3182.8412268519 +"https://github.com/smarty-gettext/smarty-gettext.git",2004-04-28 18:19:14,"6acf4031afa2502b31c2ae8b6138bc375ebd9ff1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3367.1055439815 +"https://github.com/kjetilk/p5-rdf-ns-curated.git",2015-08-26 21:24:42,"e69829af2e187c6ebd6907ca259ac0870174eed4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2949.064224537 +"https://github.com/pdudaemon/pkg-pdudaemon",2014-01-13 10:02:28,"6ab1ca0485662e7eebf047e409fda37a9b5984c7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1898.0415972222 +"https://github.com/hpjansson/chafa.git",2018-02-25 22:41:01,"0bd2c276903b2dca423c305316ee0a3ac508769f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 42, 14, 30, 23, 25, 19, 4, 12, 33, 2, 2, 18, 11, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 13, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",1,1,4,0,2095.0478819445 +"https://github.com/rzvncj/xCHM.git",2003-07-31 19:01:08,"fb2e99cd6bd4962e9caa1ba5d4061f1b81c0075a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 12, 5, 3, 17, 4, 32, 10, 14, 3, 3, 1, 4, 11, 0, 1, 3, 0, 1, 1, 0, 0, 1, 1, 6, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5664.2862037037 +"https://github.com/kugaevsky/mousetrap-rails",2012-09-22 22:08:58,"554f4d3b6e1d663b49cacb3d8d54083322dbc467","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2627.8625810185 +"https://github.com/PacificBiosciences/pbcopper.git",2016-06-22 23:08:45,"d03084a4062c00bf166fee17bbcc270e1f3d54a8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 1, 0, 0, 0, 0, 0, 0, 7, 0, 3, 3, 4, 12, 0, 0, 2, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 2, 1, 6, 0, 0, 1, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0]",1,4,7,0,2608.9496875 +"https://github.com/sebastianbergmann/comparator",2013-11-05 03:21:42,"5790b7f6dd52309a381747f3bc7247175d8e5afe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 6, 0, 0, 3, 1, 0, 0, 0, 0, 1, 2, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3686.3957291667 +"https://github.com/mishoo/UglifyJS2",2012-08-27 09:29:53,"ce8e8d57c0d346dba9527b7a11b03364ce9ad1bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 28, 17, 15, 35, 42, 19, 5, 7, 24, 10, 4, 5, 4, 1, 3, 0, 7, 3, 6, 2, 5, 7, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 0, 0]",1,2,12,0,3886.0955208333 +"https://github.com/mapbox/leaflet-image",2013-08-09 16:42:15,"f3537f5378af66331cdf8606772a328231ce962c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 11, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0,1265.9471759259 +"https://github.com/voc/voctomix.git",2014-07-28 08:00:25,"b758723fe3266e91d0427c3367d0753a7663a514","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 14, 10, 10, 8, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3329.1224189815 +"https://github.com/crucialfelix/django-ajax-selects",2010-06-06 22:36:35,"bbd9bcdbe34eece934cd1a40515c77f886879384","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4299.0274074074 +"https://github.com/mypaint/mypaint",2005-02-07 22:14:34,"fca719792bae5ade6d0ec8b223fa5fb80822ce25","[8, 5, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 5, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 3, 2, 5, 2, 11, 6, 0, 0, 0, 7, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,5559.7677199074 +"https://github.com/r-lib/svglite.git",2012-11-27 14:32:24,"d7bf5c27ce306e8c14dd2eb4cb7abb3369b8162b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4029.9752546296 +"https://github.com/chrissimpkins/shellescape",2015-05-08 02:07:10,"43251349dfb2b1cc04bc64579729113e7e7667b9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2183.7914583333 +"https://github.com/plotly/plotly.R.git",2013-11-26 02:43:45,"32157e89620d3747121a4f906d865423f9ec00a4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 15, 5, 6, 3, 2, 8, 1, 8, 4, 16, 5, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 0, 1, 0, 2, 1, 6, 2, 5, 0]",2,5,6,0,3638.2152546296 +"https://github.com/opencontainers/runc",2014-02-21 22:56:15,"6415e8becc2c47845cf565b87229b5dbd2fa40ad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 29, 11, 15, 3, 11, 15, 2, 22, 30, 5, 20, 20, 12, 18, 36, 37, 50, 4, 38, 31, 38, 17, 32, 27, 7, 1]","[0, 4, 2, 2, 1, 4, 5, 0, 1, 5, 2, 5, 5, 2, 3, 8, 15, 12, 1, 16, 12, 16, 8, 6, 10, 2, 1]",2,11,47,0,3584.075162037 +"http://space.twc.de/public/git/gst123.git",2009-08-15 08:12:16,"6124e55e68b86f495803bc3257dec8a84ddd6cb6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5110.325474537 +"https://github.com/google/python_portpicker",2015-03-21 01:22:24,"56fceff11bf90f020acd4000568a0a56299f8ffe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3069.1269212963 +"https://github.com/tonsky/FiraCode.git",2014-11-11 19:47:04,"5a65981f5daed5087fee0cc9a5d1832cc91a93e6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3284.7463194445 +"https://github.com/LMMS/lmms.git",2005-09-22 13:49:52,"4c7832a975f9786da873edecb6f917c5b8f98a06","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 2, 3, 2, 1, 2, 0, 0, 1, 4, 7, 7, 0, 1, 4, 1, 19, 6, 5, 2, 7, 7, 7, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5780.812037037 +"https://github.com/containers/conmon",2018-08-10 13:21:44,"04b9fcd670a13899618539011ab82f3efd79565e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0,1950.1181597222 +"https://github.com/jbj/magicrescue",2018-10-14 15:11:58,"2503bc547acd5d42567132d55eac790c69ef5f7e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1064.0338194445 +"https://github.com/ccocchi/rabl-rails/issues/new",2012-02-22 10:42:38,"5930e46ec0899d9d1003ce4b104d2c5f36829f9a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 0, 1, 4, 5, 2, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 9, 16, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,1,0,2746.3319791667 +"https://github.com/r-lib/scales",2010-11-11 15:06:52,"4c5f18e015d757715bcc65c29b1661d853ca0d63","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 11, 0, 0, 0, 0, 20, 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4768.6190740741 +"https://gitlab.gnome.org/GNOME/gvfs.git",2007-09-13 08:26:29,"4bed9f54c2cb8fc1900a881b5cc3e50c804f0b23","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[908, 7, 4, 12, 3, 12, 12, 12, 7, 6, 2, 2, 1, 17, 10, 1, 20, 53, 30, 35, 21, 36, 46, 93, 156, 79, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,74,0,5759.9996180556 +"https://github.com/digitalbazaar/jsonld.js",2011-08-23 03:23:24,"28d5541eaad8811609251352e66788dcc9940802","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 5, 31, 36, 0, 13, 14, 4, 9, 7, 1, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 0, 3, 5, 2, 1, 5, 0, 9, 6, 0, 13, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,4,0,4896.3341319445 +"https://github.com/coreruleset/coreruleset.git",2012-08-02 15:12:09,"f9fa656f69bb368182c7f3c9e8355e0b6dae644c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 20, 10, 6, 1, 1, 0, 5, 3, 1, 0, 1, 2, 0, 5, 0, 0, 0, 2, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,7,0,4151.0876736111 +"https://github.com/kasei/atteanx-endpoint.git",2016-03-23 19:14:05,"4cc8f1e8d170bb669cbd845f3c0a7d6b117412b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,581.8788078704 +"https://github.com/hughsk/is-typedarray",2014-06-01 19:11:41,"a52c5395ea29bc6e8bd0deeeca215214f817f899","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,349.2442476852 +"https://github.com/kodi-pvr/pvr.njoy.git",2015-02-24 16:27:30,"dee3094e07fe4992ed59e6fe715ba38987812084","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 0, 1, 1, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 2, 1, 1, 0]","[0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",5,4,4,0,4095.3650578704 +"https://github.com/neovim/pynvim",2014-05-09 21:51:45,"1d75e8a73c0d76b946285309c0b051f5ca3e2fca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 12, 6, 0, 8, 0, 2, 0, 0, 4, 0, 2, 2, 11, 0, 11, 8, 10, 26, 18, 12, 2, 4, 17, 0, 5, 0]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 1, 1, 1, 5, 0, 2, 1, 2, 8, 0, 1, 0]",1,1,11,0,3504.5291782407 +"https://github.com/pagekite/Colormake",2012-02-18 16:22:23,"7958c2343958c85a2a8736846832df514064b019","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1830.1740162037 +"https://github.com/psb1558/Junicode-font",2019-05-06 14:06:13,"8a3398f1d753e53fc5f1f8f91d7d6ec399bdebd8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1677.9374305556 +"https://github.com/thoughtbot/shoulda-matchers",2007-03-14 18:12:55,"7a4202f9b8fa77318694864af9d1bcfde4084deb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 13, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 6, 0, 0, 3, 12, 0, 4, 2, 2, 6, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5766.0040972222 +"https://github.com/Tom-McDermott/gr-hpsdr",2014-09-29 23:03:21,"9522f87d06c459fc0b53a2f0253ff2795d9d691a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 11, 4, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0,3221.8977430556 +"https://github.com/PierreRaybaut/PythonQwt.git",2015-08-20 14:29:51,"aed9ddfbb84cb2393a95ff0a1ff92d1258fb6305","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1193.9426967593 +"https://github.com/VirusTotal/yara.git",2008-09-26 19:46:09,"4c55513b9f20e6cad96f29bd3d3877f6871db062","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 5, 0, 3, 1, 2, 1, 2, 1, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5553.0082523148 +"https://gitlab.gnome.org/GNOME/gucharmap.git",2002-09-09 18:53:03,"fac0012b349ffaf2b690758aa5953f2ad36906ab","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 13, 0, 77, 18, 19, 0, 25, 26, 15, 24, 10, 21, 5, 14, 27, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0,5722.1845601852 +"https://github.com/nodeca/argparse.git",2012-05-14 15:32:59,"c754849d8b452815db893f20547c70eda59e3949","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 6, 7, 0, 0, 0, 2, 9, 0, 0, 10, 0, 0, 0, 0, 6, 4, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,7,0,3647.7774421296 +"https://gitlab.gnome.org/GNOME/gtksourceview.git",2001-12-06 02:51:13,"5c6e5cbc5512a1cbfad1ca905f21b07065e0defd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 2, 0, 0, 0, 1, 2, 2, 0, 0, 0, 7, 1, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,9,0,5775.0865740741 +"https://github.com/davesteele/sirikali",2016-08-11 00:34:05,"e80b7f7351a3fc5913840f197074a89b31e18e1b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 13, 6, 14, 4, 23, 7, 8, 16, 0, 2, 7, 0, 9, 6, 6, 4, 8, 0, 2, 4, 0, 0, 7, 31, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0,2544.706099537 +"https://github.com/nichtich/RDF-aREF.git",2013-11-28 12:19:42,"94c1087e67782ad8da4f411400ef76966b77b3b2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 3, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2565.8667708333 +"https://github.com/cjcliffe/CubicSDR.git",2014-10-26 16:36:32,"6bb7d344aa700f565b5621035df17b2eb5440c94","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 21, 12, 36, 15, 25, 20, 15, 31, 24, 37, 12, 19, 14, 19, 19, 14, 10, 13, 8, 1, 15, 8, 1, 3, 8, 0]","[0, 1, 2, 6, 3, 2, 1, 2, 4, 3, 6, 1, 6, 4, 5, 2, 4, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0]",1,2,3,0,3287.5204976852 +"https://github.com/solvespace/solvespace/issues/new",2015-07-10 12:59:12,"636b20bfa9fae2a40dba6b1b8c1adecfbfc5a9b9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2746.3319791667 +"https://github.com/ternjs/acorn.git",2012-09-24 10:10:30,"61906485a19579ba5b131778f9c94c5c6228e91a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 15, 6, 12, 0, 1, 7, 1, 7, 1, 0, 0, 0, 4, 2, 4, 15, 1, 6, 2, 5, 3, 4, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0,4089.9737731482 +"https://github.com/jashkenas/underscore.git",2009-10-27 17:26:36,"ef10906b5f82f873960786578565d42d14163771","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 15, 2, 9, 5, 17, 16, 0, 0, 8, 1, 3, 4, 2, 2, 0, 13, 31, 3, 1, 3, 0, 2, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,13,0,5084.8093171296 +"https://github.com/korfuri/django-prometheus",2015-04-05 06:53:05,"2cf8fcc039a4f21f8611ee78067f446f1856d80c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3173.3548148148 +"https://github.com/agateau/yokadi/issues/new",2009-02-03 09:41:14,"b68abca7bf25451a3ee24d62b3d8b4f7d6e9b81b","[1, 0, 25, 21, 10, 4, 7, 16, 1, 0, 0, 1, 1, 7, 22, 6, 8, 35, 0, 20, 0, 1, 10, 11, 7, 15, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[28, 7, 15, 0, 0, 5, 14, 4, 8, 2, 0, 1, 0, 1, 13, 8, 2, 0, 7, 0, 1, 16, 31, 2, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,6,2,2746.3319791667 +"https://github.com/linuxdeepin/deepin-image-viewer",2016-02-24 05:52:33,"c02df4746940d5ccb542c35e1438948aa6da0054","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 6, 3, 5, 4, 11, 9, 10, 10, 7, 15, 11, 19, 27, 14, 28, 38, 48, 39, 26, 38, 27, 49, 29, 41, 46, 1]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 7, 2, 3, 11, 14, 12, 6, 11, 9, 17, 9, 13, 17, 0]",2,2,9,0,2848.197974537 +"https://gitlab.gnome.org/GNOME/baobab.git",2006-04-23 14:28:58,"253a387c66a5c666adb115980580e4aaf54e6f66","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 8, 5, 3, 3, 0, 11, 2, 1, 0, 4, 4, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0,5757.9049537037 +"https://invent.kde.org/plasma/kwin.git",1999-08-19 23:26:42,"311db796c68e520e5b6d28829d6aaa4bfbcd1536","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 6, 0, 1, 3, 24, 20, 18, 22, 14, 10, 8, 4, 2, 4, 2, 6, 0, 1, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,16,0,5787.6912962963 +"https://invent.kde.org/plasma/kdecoration.git",2014-07-18 05:45:21,"e76c6ff9e16a4b1d965d3dbff1a32f8a7e2a5a18","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 30, 5, 6, 18, 0, 0, 14, 3, 5, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,3433.5874884259 +"https://git.osgeo.org/gitea/postgis/postgis.git",2001-06-22 17:39:29,"3cda1194452a9a96a97e97e049c29c7154aa3b8d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 6, 20, 7, 7, 1, 0, 3, 2, 0, 10, 0, 2, 5, 6, 8, 7, 5, 0, 2, 0, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5783.9700115741 +"https://github.com/ricmoo/pyaes.git",2014-05-12 19:53:53,"1fd2a0aee1f43b575b57529026cb3d2e7efd8dcf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 1, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1227.0517476852 +"https://github.com/diafygi/acme-tiny.git",2015-11-26 05:44:00,"7eacef721cb9c7f1c120bff9ff03adb6e5c35b4d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 51, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 11, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,14,0,2161.2252314815 +"https://github.com/p-e-w/maybe",2016-01-24 18:20:36,"abe496afe2d56ebfd1e4dd7681d1c4a7853adea3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 4, 1, 0, 0, 0, 1, 16, 4, 6, 4, 4, 0, 4, 3, 0, 7, 3, 3, 4, 0, 1, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,363.7199652778 +"https://github.com/xelerance/xl2tpd",2005-11-20 02:28:56,"79e3fc3e6352e58cf91a36928c40f80f8631479a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5585.4230671296 +"https://github.com/c-ares/c-ares.git",2003-10-07 21:54:04,"5e847a14bd65383ce65f143c578e120899981fd9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 18, 17, 9, 15, 10, 5, 2, 1, 1, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5778.6172222222 +"https://gitlab.gnome.org/GNOME/gnome-control-center",1998-02-10 21:22:12,"3c03b47392098da82a675d968629c4d62da49619","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 8, 7, 7, 3, 0, 0, 1, 7, 12, 11, 3, 6, 15, 7, 7, 11, 4, 5, 0, 5, 7, 6, 10, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,43,0,5776.2391898148 +"https://github.com/alexdantas/xbomb.debian",2013-05-02 23:54:17,"e7cff2e6dfb5ec22a6dd80d9eb0b2864b69beee8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,472.1825347222 +"https://github.com/librsync/librsync",2000-02-29 04:58:16,"4ddd6df3df0334fc9053e860966b0e91f1b6e1b2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 2, 0, 0, 39, 13, 62, 6, 22, 3, 4, 7, 22, 16, 5, 3, 1, 0, 0, 0, 8, 15, 19, 0, 9, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3224.9778472222 +"https://github.com/theskumar/python-dotenv.git",2013-06-13 15:32:14,"5fc02b7303e8854243970e12564f2433da7a1f7f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3676.0798726852 +"https://github.com/umlaeute/v4l2loopback.git",2009-02-03 10:08:56,"01a209f7c8b3e6a32d1543facc6006d6458b89e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 5, 6, 0, 10, 1, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5406.2159953704 +"https://github.com/lxqt/lxqt-runner.git",2016-09-06 16:21:01,"b86ea09ab0e0ea76737288a50113029221d3a1d7","[0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0,4515.7259722222 +"https://gitlab.freedesktop.org/cairo/cairomm",2005-12-02 13:34:41,"579e53718d29e77486e076d2b3461d986911f050","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 2, 1, 0, 2, 0, 3, 3, 3, 1, 9, 3, 1, 3, 0, 3, 5, 0, 1, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5773.933125 +"https://github.com/JuliaMath/openlibm.git",2011-08-12 19:01:25,"aba7ae910f04f7df13024ba61763eabc2524bcdc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 17, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4334.3510069445 +"https://github.com/zkat/ssri.git",2017-03-23 04:55:28,"6f6a12d82ed2e609d9883126c22b1764a97ed407","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 19, 5, 2, 1, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2084.4809606482 +"https://github.com/biolab-unige/nifti2dicom.git",2012-01-12 15:02:01,"8962e2d5c2a74d508ba08a154c01250c97c05f38","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",0,1,0,0,2963.0766898148 +"https://github.com/brofield/simpleini",2013-09-28 01:13:59,"8d48b8dc83b07b2b24d3ac155a55a02332af9688","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5767.1290509259 +"https://github.com/jtauber/pyuca",2012-06-21 13:34:36,"02e4fd3a6b15e52e5bd7983c6844f587e2a35876","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2863.4539467593 +"https://github.com/mkdocs/mkdocs",2014-01-11 21:06:13,"4fb859db0ffc5d509107ef6bcad21416a0c1a991","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 14, 9, 20, 23, 9, 5, 3, 3, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 3, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,3625.5789583333 +"https://github.com/ropensci/av.git",2018-08-28 12:36:45,"42ef21e3448bcbd1e9e0beda7d60360ef079e2ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 50, 15, 28, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1927.0685763889 +"https://github.com/RDFLib/rdflib.git",2003-12-18 03:34:39,"881fbc392f06ceb7166fd5bb4523f0796d4af363","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 0, 0, 0, 0, 1, 1, 0, 6, 3, 10, 16, 3, 3, 3, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5415.8487731482 +"https://gitlab.xfce.org/panel-plugins/xfce4-pulseaudio-plugin",2014-04-24 22:32:18,"6d5680f733ce6bc1ee6bf60dd6d2e4b427ada70c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3496.0556712963 +"https://gitlab.com/drobilla/jalv.git",2012-04-19 23:42:34,"ad424892b0d45b2c46b6bc503e68e776f092af27","[1, 0, 6, 0, 3, 0, 0, 2, 17, 2, 1, 3, 8, 0, 3, 3, 3, 7, 2, 4, 0, 12, 6, 4, 10, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 2, 1, 2, 1, 1, 0, 0, 0, 7, 3, 0, 5, 10, 4, 9, 4, 0, 5, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4498.9127199074 +"https://github.com/svn-all-fast-export/svn2git.git",2015-04-21 05:58:49,"7522adcf07a42d08faae61bc86b44bef2b00b177","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1,5311.2481365741 +"https://github.com/Unidata/netcdf-c.git",2010-06-03 13:24:43,"18f4bca367140fc05be78287da26a34ebc3d9286","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 22, 25, 8, 17, 1, 4, 17, 10, 7, 7, 11, 8, 2, 4, 4, 16, 11, 8, 0, 2, 4, 8, 4, 7, 1]","[1, 0, 3, 5, 1, 5, 0, 1, 5, 3, 1, 1, 1, 3, 1, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,4942.1828125 +"https://github.com/ocaml-community/sedlex",2003-09-20 17:52:50,"dfe4e5e4a4bf23eba96226aeb28e4c51044c7244","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5659.0575925926 +"https://github.com/drforr/perl6-readline.git",2015-03-28 12:37:46,"cdfda53217b5970a76b7a4e3cf755952a84a8000","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 3, 0, 1, 0, 5, 9, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,1710.4289351852 +"https://github.com/sebastianbergmann/php-token-stream",2009-11-06 09:29:10,"25da2ae9ecc8404036fc542b81272840dde115de","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 7, 9, 1, 0, 1, 3, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4281.2169675926 +"https://github.com/debian-tex/biber",2009-05-20 09:41:04,"3266cab21339dccd1f207d6f9c691f413ca43946","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 40, 3, 30, 32, 24, 14, 4, 26, 18, 5, 0, 0, 1, 0, 0, 0, 0, 0, 21, 47, 26, 7, 1, 6, 3, 0]","[1, 4, 0, 4, 1, 4, 6, 0, 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 1, 1, 1, 0]",2,2,0,0,5232.9484259259 +"https://github.com/transceptor-technology/siridb-server.git",2016-03-30 19:58:40,"f0516f4ce3fdf9bb82a2dd988afcc29067d7141c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 8, 11, 8, 4, 0, 0, 3, 7, 13, 17, 15, 20, 9, 6, 13, 15, 11, 11, 6, 0, 1, 5, 7, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2764.489212963 +"https://github.com/boundary/folsom.git",2011-03-23 23:06:02,"eef9c04d04c297955ff8e73c9c8b73088ae64151","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 21, 0, 12, 20, 0, 0, 0, 7, 6, 5, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1470.0027777778 +"https://github.com/cboursnell/crb-blast",2014-04-29 10:38:12,"10e3d9902ac7157efd110040104a4ff6dfd8d425","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 14, 0, 1, 0, 4, 0, 0, 1, 8, 8, 2, 9, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,1070.1020717593 +"https://github.com/yoriyuki/Camomile.git",2009-06-21 09:28:39,"5bbba627977691f03b6c57c853bcf42256113083","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3699.9040972222 +"https://github.com/pocl/pocl",2011-10-18 17:16:49,"9b92906eda88817a9a7a569d0a062c7ad0f64139","[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 26, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[35, 46, 14, 45, 1, 14, 38, 30, 58, 14, 6, 8, 25, 31, 11, 10, 15, 9, 18, 10, 10, 4, 5, 11, 6, 0, 1]","[5, 10, 5, 8, 0, 2, 11, 6, 12, 2, 2, 2, 7, 9, 1, 2, 3, 2, 2, 1, 2, 0, 0, 2, 3, 0, 1]",2,4,5,0,4689.6507291667 +"https://gitlab.gnome.org/GNOME/gsound.git",2013-03-02 17:55:42,"1fd3bd141467532aabb887903edf81176bd79fcc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 7, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3090.7518865741 +"https://github.com/JJ/perl-mp3-info.git",2007-01-04 21:36:56,"8e03b8bd9a414c83324b41af447a2884f36f2a78","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3267.4327777778 +"https://github.com/linux-rdma/rdma-core",2009-09-16 22:02:40,"e333b8e2463b83cbb77cab87396fa175de683dac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5201.698912037 +"https://github.com/sorich87/bootstrap-tour",2012-07-03 14:03:22,"f8cf8c62981ef84ddc2561f7b2939d1f2a92832e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 22, 4, 1, 0, 11, 1, 1, 14, 0, 0, 0, 0, 2, 4, 1, 1, 9, 2, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 5, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0,4115.3561458333 +"https://github.com/df7cb/postgresql-numeral",2017-04-01 16:31:07,"05846b04a1aa9ac5dc8d4634841ebc0a2863478f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2361.1246527778 +"https://github.com/ncannasse/xml-light.git",2003-06-11 16:51:34,"babf2584ba112b3e29c77683f30f004e45cb862a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3963.0315046296 +"https://github.com/ejwa/gitinspector",2013-07-12 01:50:21,"cae99cb3f7bc944648bb962ddbece2154d5d391a","[0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 3, 0, 9, 5, 0, 1, 14, 6, 6, 0, 7, 6, 8, 18, 20, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 7, 5, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0,3089.9889236111 +"https://github.com/ultrajson/ultrajson",2011-02-27 20:09:37,"f184c5744f1965f3c8d5b68671c6d693fb47d2e6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 6, 18, 0, 4, 0, 2, 1, 0, 0, 0, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0]","[2, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]",1,3,5,0,4669.0428587963 +"https://github.com/getlogbook/logbook.git",2010-07-22 11:22:18,"814be4bb37bd4989d377342aabb45d45ad9a6ef4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0]","[78, 1, 0, 33, 5, 12, 188, 57, 74, 42, 1, 0, 3, 3, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[8, 0, 0, 1, 1, 0, 24, 7, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,5,10,2,4893.8917824074 +"https://github.com/ckeditor/ckeditor4",2012-08-21 15:14:46,"67142516d5ecf595e7efc92c0648eed634390150","[0, 0, 0, 0, 0, 0, 0, 90, 307, 4, 6, 23, 14, 30, 39, 82, 34, 31, 12, 35, 50, 145, 39, 99, 12, 68, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 15, 0, 1, 3, 1, 3, 3, 19, 10, 4, 3, 11, 15, 24, 13, 23, 4, 6, 0]","[20, 35, 36, 19, 9, 9, 14, 44, 68, 38, 46, 105, 107, 34, 3, 42, 24, 40, 12, 12, 0, 13, 8, 0, 34, 171, 1]","[5, 9, 13, 7, 5, 4, 5, 8, 16, 10, 17, 26, 24, 6, 1, 17, 9, 9, 4, 1, 0, 2, 1, 0, 9, 16, 0]",5,0,7,5,4183.8812962963 +"https://github.com/redis-store/redis-store",2009-04-11 10:54:41,"4d0f469dac65fc67b1c209a301b1acf743cfd22e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 31, 22, 1, 3, 5, 3, 6, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5265.7961921296 +"https://github.com/davesteele/comitup",2015-12-08 22:01:54,"cf3dacffa94627c2b7d488eac046a35d20870530","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 4, 7, 2, 0, 18, 13, 13, 24, 12, 0, 1, 4, 7, 3, 0, 7, 1, 1, 0, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2830.0050115741 +"https://github.com/madsen/dist-zilla-plugins-cjm",2010-03-16 01:13:08,"e212bd97ec490a006cfe2544b72d8c48c4a42e31","[0, 5, 0, 15, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 14, 2, 7, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3005.9145833333 +"https://github.com/vsergeev/u-msgpack-python",2013-09-29 14:09:19,"736ee98064b6d9795099cf7ad2eda1d480e58915","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 5, 2, 0, 0, 0, 5, 1, 3, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3518.0095949074 +"https://github.com/sebastianbergmann/phploc",2009-01-22 11:40:31,"51a2e5ec792e0976a2a2dd4a4c215cdd6c82ab2d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 11, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,0,0,5362.0425347222 +"https://github.com/lxqt/lxqt-powermanagement.git",2013-08-06 13:33:32,"d5947e7a94ca4ca308b6202fc72bd415dba1018d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0,4140.6065509259 +"https://github.com/drj11/pypng",2009-03-13 12:18:09,"343323ef1247cb574ed0b5d1bfadfb6d5831f29c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 26, 24, 11, 12, 19, 7, 5, 4, 8, 0, 6, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5144.0196412037 +"https://github.com/quantstack-debian/xtl",2019-09-10 19:24:57,"e05f29436ada10045cedc631ac930babf18a7823","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1473.7952662037 +"https://github.com/isaacs/node-glob.git",2009-11-02 05:03:59,"d3c97e253b520e05a6d979adfa0a67e3f95653c1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5090.5140740741 +"https://github.com/tstack/lnav",2010-02-24 04:35:52,"88889954b85185e4ef335dcb0f38ea70d734389c","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5194.1560648148 +"https://github.com/fstl-app/fstl",2014-03-15 18:51:22,"615d837b3bd6cfc50cc935f97248702551c36219","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,3488.4875231482 +"https://github.com/johndyer/mediaelement.git",2010-07-28 02:35:01,"93d983133804e0b3bbd0dbff03dbef186923455e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 2, 5, 1, 4, 3, 2, 6, 0, 0, 3, 0, 0, 0, 10, 47, 2, 31, 14, 9, 2, 9, 0, 14, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,4,0,4857.3025462963 +"https://github.com/achernya/hesiod",1988-08-07 21:49:56,"e077b257d4b7d04eda76cf3e004bdc1fc745652f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2444.8183564815 +"https://github.com/amueller/word_cloud",2012-11-04 22:57:59,"c8230f32ece9d370879cdf4b6548918d12d7cd23","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,1,4051.6273842593 +"https://github.com/girke-lab/ChemmineR.git",2008-10-14 18:37:39,"812a3d4e656419825b4ee2c8f84a72480538986d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5502.0317476852 +"https://github.com/mongoengine/flask-mongoengine",2011-05-09 15:48:03,"838e3fed96d1e038ddfca3f2902fc2c940d02a5d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 15, 0, 2, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 3, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4513.2838078704 +"https://github.com/Graylog2/gelf-rb",2010-11-02 14:30:59,"421bf4d3f71befc659e68a1e8a7cbf31ac5dfc84","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 32, 18, 26, 11, 5, 0, 0, 7, 8, 0, 7, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 5, 1, 7, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,4546.1701157407 +"https://github.com/eferdman/dehydrated-hook-ddns-tsig.git",2016-11-05 06:50:16,"a596e0c0785d54a7817c232f5095e3d5976df56b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 31, 22, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,613.6095601852 +"https://gitlab.com/onlyjob/writeboost.git",2015-06-12 01:17:35,"0be8b404a9dc52a577395c848a48b56e46327a4a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,765.2965393519 +"https://github.com/seatgeek/fuzzywuzzy",2011-07-08 19:33:26,"7d7e03befa7bf867233ebc214970cdb8267499e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 4, 0, 0, 1, 0, 1, 2, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3716.0564236111 +"https://github.com/clojure/tools.logging.git",2011-03-11 16:12:31,"4ee20655311f532dc9aa8259139bf52318b8b2b9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 0, 0, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,4541.1196180556 +"https://github.com/anvilresearch/json-document.git",2016-02-05 02:27:07,"071ca6aaa37feaf66461d139b01a3ef27d665256","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 13, 5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 24, 2, 10, 31, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0,471.8604513889 +"https://gitlab.gnome.org/GNOME/glade",2001-06-19 03:29:28,"dc4dfdf1884bda41748269b12280aecf4e05409d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 14, 8, 10, 4, 1, 6, 3, 7, 4, 4, 2, 0, 6, 1, 1, 1, 2, 0, 7, 2, 0, 6, 11, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0,5740.6073032407 +"https://github.com/jquery/jquery.git",2006-08-14 02:00:28,"f8402b9a081f0096986d140f809f4d57c6db7834","[0, 0, 0, 0, 0, 11, 4, 5, 2, 1, 0, 1, 2, 11, 1, 6, 13, 32, 12, 5, 24, 13, 5, 13, 2, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 14, 26, 22, 19, 12, 10, 24, 24, 6, 16, 9, 13, 15, 8, 9, 5, 13, 27, 16, 53, 61, 18, 19, 12, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,8,0,5765.4037384259 +"https://github.com/strukturag/libheif.git",2017-12-14 13:45:48,"97f8cd6222a5b69135e9dc1b130e7eb200bb6e6b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 32, 36, 72, 85, 59, 35, 10, 67, 16, 0, 0, 0, 0, 20, 4, 35, 9, 4, 15, 2, 1, 8, 40, 4, 41, 1]","[0, 0, 1, 0, 2, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 4, 1, 1, 0]",1,3,9,0,2185.1827314815 +"https://github.com/voxpupuli/beaker",2010-07-21 17:50:25,"7e2fea573dde4f7e82c2e936a4c020e2d4055e9d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 30, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 0]","[63, 11, 0, 1, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 6, 21, 15, 3, 16, 24, 20, 4, 1, 9, 0, 0]","[11, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",6,4,7,2,4907.9281134259 +"https://github.com/sdgathman/pysrs.git",2017-07-28 03:38:56,"dacb6fc7e1d97235898f229da3e9eb6f20c40ac7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 2, 0, 0, 3, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,5232.0373842593 +"https://github.com/twbs/bootstrap-sass",2011-09-06 19:08:31,"c303d86d57e2fc8b5b9b4e812bc6820649941c71","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4131.8156944445 +"https://github.com/fusioninventory/fusioninventory-agent.git",2007-02-23 14:32:05,"b484b46d5ffa65837123f07963b97782dcd1a8b0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 11, 9, 0, 0, 0, 0, 24, 15, 0, 8, 25, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 8, 13, 17, 4, 7, 3, 8, 0, 0, 0, 0, 5, 1, 24, 6, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5660.8499537037 +"https://github.com/whitequark/ocaml-inotify",2014-01-26 13:46:43,"b93d43a8609027c532ae6ac7e5025bfb5a8f4300","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 1, 0, 4, 11, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3586.2803240741 +"https://github.com/puppetlabs/puppetlabs-ntp.git",2011-02-23 19:05:56,"384ffd957153f65eb4f47b3142d98853c31b4124","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4661.5050231482 +"https://github.com/vmware/pyvmomi",2013-12-13 17:30:30,"c03fac748a4286e65e3739688af71f0e7c775b3f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 3, 0, 0, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 0]",2,3,11,0,3625.6832523148 +"https://github.com/krig/parallax",2009-01-08 21:34:49,"b24af9c96d353160b466f0f6217048ea17a0d014","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 0, 0, 0, 0, 4, 4, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5166.3950231482 +"https://github.com/greenbone/openvas",2005-11-06 20:06:15,"366905e40bfe94314580d76a24c2ab0d79f8e6b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 3, 33, 11, 1, 10, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5785.3184490741 +"https://github.com/prometheus/mysqld_exporter",2015-03-12 12:23:48,"8739b894e3709102ad65bea7068d3e3b989eb920","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 1, 4, 0, 0, 4, 3, 0, 0, 3, 0, 3, 5, 0, 0, 7, 2, 0, 0, 1, 0, 14, 11, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 6, 5, 2, 0]",1,5,15,0,3197.2337268519 +"https://github.com/GoalSmashers/clean-css.git",2011-02-28 18:53:41,"5a1b3a6a414f4df182d1f3557d84b985d364c341","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4686.8824537037 +"https://github.com/mjambon/cppo.git",2019-05-26 23:50:57,"55261fd39d4b0a6eb17ac9e07438f56469e6a01a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1459.7919444445 +"https://github.com/hoelzro/linotify.git",2009-08-03 18:40:39,"fff42a9963648dcbca8082a017e47428a4ccbfd3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2964.3124768519 +"https://github.com/fcitx/fcitx5-gtk",2017-05-12 21:57:29,"4014c205ec1d7f5738052b3928259b43c04feb31","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 3, 0, 9, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2400.241712963 +"https://github.com/ukui/ukui-control-center",2017-02-13 07:07:02,"77c79b8fbad25b7973389134dc4ea8a34d312744","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 14, 9, 4, 7, 0, 0, 3, 2, 1, 1, 0, 0, 11, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,6,0,1921.8410069445 +"https://github.com/ValeevGroup/tiledarray.git",2008-07-30 17:28:00,"6fad665cf56d9416668f3b6447b850d1dd873780","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 8, 25, 5, 0, 0, 0, 0, 0, 1, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5618.1119675926 +"https://github.com/geopandas/geopandas.git",2013-06-27 17:26:35,"c8ba1daf43dd46ad81c60b1e109d2f37289cedd2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 26, 32, 5, 3, 2, 0, 28, 8, 0, 5, 12, 0, 15, 9, 6, 30, 22, 26, 29, 18, 11, 4, 0, 0, 0, 1]","[2, 3, 6, 2, 0, 0, 0, 4, 2, 0, 2, 2, 0, 1, 1, 1, 4, 4, 8, 6, 2, 1, 2, 0, 0, 0, 0]",1,2,9,0,3819.1359490741 +"https://github.com/xtaran/systray-mdstat",2017-01-27 00:22:16,"31d63fb5ddeb3b44a3109c1858484da4e7bc86d7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 4, 3, 0, 5, 9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,1731.2023611111 +"https://github.com/stathissideris/ditaa",2011-04-21 19:59:06,"76981bbd052f8d7b2c07646dd1f2d82989526a1f","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,4647.8960416667 +"https://github.com/jarun/googler.git",2008-10-13 10:17:55,"3f6e257f1c261b1db162a7e21a12302b37bf5b6f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4778.9107060185 +"https://github.com/lamyj/odil",2015-07-16 12:16:22,"f5076a144f10de74fe163338f832cab82276b5f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 10, 10, 0, 1, 2, 1, 6, 0, 0, 3, 9, 9, 5, 6, 2, 9, 18, 15, 2, 15, 26, 24, 40, 34, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0]",2,2,2,0,2678.1739351852 +"https://github.com/state-machines/state_machines-activerecord",2015-01-06 15:29:20,"89c12531e92a34fc2ae939e698c3674345ada033","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 6, 4, 5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 3, 0, 0, 0, 0, 0, 4, 0, 0, 1]","[0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,5,0,3097.0762962963 +"https://github.com/rhinstaller/fwupdate.git",2018-01-11 17:01:14,"6d8b91904b8ea7feb0c78a219ccf3bfe39801c79","[0, 0, 0, 0, 6, 0, 0, 14, 11, 7, 2, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 6, 1, 0, 0, 2, 1, 2, 1, 11, 0, 0, 17, 4, 2, 0, 0, 0, 0, 0, 1, 12, 3, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,5,0,2299.0056365741 +"https://github.com/florimondmanca/djangorestframework-api-key",2018-07-28 08:38:27,"9980141e10b1dfeaaca3a6e0deebd36f5c144e7a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 0, 38, 20, 0, 9, 1, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,1,0,1908.8148263889 +"https://github.com/savonet/ocaml-speex.git",2008-10-15 17:30:33,"0e2c9f30ad0294de86864a77d864fcd183b83688","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5316.9980902778 +"https://github.com/python-tap/tappy",2014-03-08 04:45:53,"a46b12533d9b0e64c1d72737005de1e1357493ef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 11, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3537.627025463 +"https://github.com/kivy/kivy",2010-11-03 21:05:03,"1f2fb6eb41651e4d10cb51c24a24af66be37606d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[129, 8, 1, 7, 5, 3, 39, 4, 9, 58, 73, 29, 120, 26, 29, 38, 33, 13, 21, 23, 53, 12, 78, 55, 26, 22, 1]","[24, 0, 0, 0, 1, 0, 1, 0, 0, 4, 4, 0, 18, 0, 2, 0, 6, 2, 1, 1, 5, 1, 16, 12, 1, 0, 0]",1,6,10,0,4786.8645601852 +"https://github.com/paravoid/gdnsd",2012-02-01 05:59:57,"054157c5ec283835603f46ae84dfb2c3560a60d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 17, 23, 4, 3, 18, 3, 4, 10, 4, 0, 0, 2, 19, 1, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 3, 1]","[8, 5, 2, 0, 0, 3, 1, 1, 2, 0, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,2,0,4241.3566550926 +"https://github.com/ranger/ranger.git",2009-07-20 03:41:26,"426dc8f9b2946bfbbfe62f416b53a8483a14c4ea","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 4, 47, 27, 7, 25, 12, 70, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[56, 12, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 6, 27, 23, 19, 30, 70, 87, 38, 49, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,0,0,5250.5453472222 +"https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git",2016-06-03 14:52:16,"0236ef27e3c8828c51ff5d0910744aaacf234253","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2370.9240625 +"https://github.com/venthur/python-popcon",2017-11-04 14:10:32,"a0776d4ef5577d2a348133a65ffdae0686f08ef4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0,4753.6013657408 +"https://github.com/mapserver/mapcache.git",2011-08-26 10:59:54,"c6c3d5e22f817dc76dd24901a62b2427994b0fe3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[370, 6, 1, 0, 3, 9, 3, 11, 16, 0, 2, 4, 0, 3, 6, 6, 0, 8, 14, 2, 7, 0, 5, 4, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,4429.8413773148 +"https://github.com/openstreetmap/osm2pgsql.git",2008-03-22 17:58:18,"550fc0186cf771133152f641869c44eaa972fc0e","[0, 1, 11, 3, 1, 1, 0, 3, 4, 1, 1, 2, 5, 0, 2, 0, 0, 0, 1, 0, 1, 2, 0, 2, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 5, 1, 7, 0, 0, 2, 4, 1, 3, 4, 0, 0, 8, 1, 6, 2, 1, 1, 0, 4, 3, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,5749.83625 +"https://github.com/SciTools/cartopy.git",2012-08-03 09:35:34,"2084e853bf68cc3a59ab99f0dfcf9a6988cce025","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 5, 9, 0, 24, 26, 13, 37, 23, 28, 13, 17, 12, 15, 1, 37, 10, 4, 0, 0, 5, 1, 8, 6, 1]","[0, 0, 1, 3, 3, 0, 8, 10, 5, 12, 8, 10, 7, 4, 3, 7, 0, 11, 3, 2, 0, 0, 3, 0, 3, 5, 0]",1,6,11,0,4150.5205092593 +"https://github.com/prometheus-community/node-exporter-textfile-collector-scripts",2016-12-22 22:57:14,"4cac164d391d26036c31c199ba7a0fc6bdb2cc6f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,2551.9948032407 +"https://github.com/oauth-xx/oauth-ruby",2007-11-27 06:10:32,"e3cd7146c2ec45c7373cf63843c617ad3e30214b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5341.0796643519 +"https://github.com/Jmgr/actiona",2010-05-10 14:30:03,"76aa581b2fd96485defc5f9302660fe1ab9a1842","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 10, 5, 1, 10, 16, 5, 0, 19, 7, 9, 9, 26, 4, 12, 4, 4, 4, 11, 5, 3, 20, 2, 0, 5, 27, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]",1,2,4,0,4932.3205439815 +"https://gitlab.com/compiz/compiz-plugins-main.git",2015-10-24 17:49:07,"cf96d1fed7d6c1f5d833980395dec78066b8c1f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 0, 0, 3, 0, 0, 5, 0, 0, 0, 1, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,5322.9050925926 +"https://github.com/NICMx/Jool",2011-09-26 17:19:46,"a22eed1df8e7ad97e95f5a8474a712882f6fface","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 15, 17, 14, 5, 11, 58, 36, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[0, 0, 3, 1, 0, 0, 0, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,4435.2104050926 +"https://github.com/martanne/vis",2014-09-13 17:10:07,"da264da19a0f8fccffad699f40be35fd2b82822f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 14, 2, 1, 5, 4, 13, 27, 78, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 44, 14, 1, 5, 21, 4, 0, 1, 0, 0, 0, 0, 2, 5, 11, 19, 25, 4, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,14,0,3439.6246875 +"https://github.com/a2o/snoopy",2015-05-13 13:28:36,"ea5567b728663d2c825a183779b363df52f1271a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[92, 67, 27, 10, 30, 17, 0, 0, 4, 2, 1, 0, 1, 4, 0, 9, 1, 0, 0, 0, 0, 1, 4, 10, 0, 0, 0]","[2, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,3060.3719097222 +"https://github.com/symfony/contracts",2018-07-13 17:06:58,"316e2120250017445eef76c1b9a80ee863f90d6e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 4, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,1906.8477083333 +"https://github.com/Libvisual/libvisual",2007-10-24 21:53:00,"bff24ac0f772b61ec28bcf247ea1edbc0dbeb3c0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5044.5234027778 +"https://github.com/theseer/fDOMDocument",2012-10-28 01:45:20,"bd316b39247ac56c7a59232454e83728358695f4","[0, 0, 0, 0, 1, 8, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 3, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4119.5238310185 +"https://github.com/coin-or/Clp",2002-07-30 19:14:29,"b42534866981c7939cf699bbc719338c76ceda87","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 9, 3, 6, 2, 0, 6, 8, 8, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,5781.2980092593 +"https://github.com/openstack/liberasurecode.git",2014-04-21 06:07:49,"76a551dca73650ac2c429b6946e712fcc7887e2d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 2, 7, 3, 22, 14, 11, 55, 28, 11, 14, 5, 11, 9, 13, 3, 1, 3, 16, 7, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 2, 3, 2, 1, 1, 0, 0, 1, 0, 0, 0]",1,3,4,0,3370.5594560185 +"https://github.com/bbcmicrobit/micropython.git",2015-08-07 11:58:54,"0d5783af12a1c273c4e6c951f5437dd07b708bd5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 1, 0, 14, 20, 12, 12, 11, 6, 16, 18, 12, 12, 11, 9, 17, 0, 2, 1, 1, 2, 6, 23, 7, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]",1,3,20,0,2774.6861111111 +"https://github.com/hboetes/mg.git",2016-01-24 21:16:49,"45b62e7f434fdcd6aa6230f4ddf38c9ca6336b8c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2838.9768518519 +"https://github.com/obriencj/meanwhile.git",2004-06-01 23:24:53,"2c6f8373a3029c94223aa3aa7769f5bcca4f591f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 9, 21, 2, 0, 1, 0, 0, 3, 3, 0, 0, 0, 0, 0, 4, 3, 5, 7, 1, 0, 3, 3, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,352.0019560185 +"https://github.com/RobertBeckebans/RBDOOM-3-BFG",2012-11-26 17:22:41,"a5214f79ef68252f51402006a52deebdee2d803e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 14, 30, 24, 5, 37, 5, 5, 1, 0, 2, 0, 0, 0, 0, 19, 4, 6, 0, 2, 0, 2, 0, 0, 0, 2, 1]","[1, 1, 5, 1, 0, 7, 3, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,6,0,4030.942662037 +"https://github.com/headius/ruby-atomic",2010-06-08 04:01:57,"d94363f8ec73b7eaf2dc9658fdf2cb1b50958494","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1459.8353125 +"https://github.com/madsen/p5-Palm",2009-08-16 05:39:10,"8e24139734ace39082b085a789013dcff774f6da","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2036.3955092593 +"https://github.com/davisp/jiffy.git",2011-04-03 23:27:49,"e8c05b4145e776ef7ee580069843c7794d8eb5c0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3978.8049884259 +"https://github.com/linuxmint/timeshift.git",2013-10-05 05:34:20,"0ff459072bc4dba97438889e36cec47add9c21da","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 18, 10, 6, 14, 6, 0, 4, 2, 0, 0, 6, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3711.4258449074 +"https://github.com/jonathanwin/yagv.git",2012-11-19 00:31:02,"bfbf83f2db342acafd2e0acb7e75b72ed1020728","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0,1848.8749421296 +"https://github.com/google/benchmark",2013-12-20 22:51:56,"01af2bc857f6824594b4a4af2f957fcdfe06e2dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[3, 0, 18, 10, 4, 0, 4, 8, 0, 2, 0, 0, 3, 0, 0, 4, 4, 9, 0, 6, 0, 0, 3, 12, 2, 0, 0]","[0, 0, 2, 2, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 2, 0, 3, 0, 0, 0, 6, 1, 0, 0]",1,3,13,1,3640.5849537037 +"https://github.com/ropensci/RNeXML.git",2013-06-30 16:15:59,"0673d170f6f742f1db06f2d4163ae597d03f47bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 1, 10, 0, 4, 0, 11, 18, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3480.1707407407 +"https://github.com/pyxnat/pyxnat.git",2010-08-17 14:14:17,"9f379eb00d882ea64e165c08407b155e90b2dd8f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 0, 0, 1, 1, 1, 3, 1, 0, 1, 0, 1, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4754.1324652778 +"https://github.com/lepture/python-livereload",2012-05-03 15:53:37,"8ef49f8d576bf33f27bfdbd8ba8031ca1c08bf2d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 2, 0, 5, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4103.8939699074 +"https://github.com/duritong/trocla",2011-07-27 16:43:55,"9146a541ff96b92f4f14c6292307b68dc4673097","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,0,0,4222.9344444445 +"https://github.com/googlei18n/fontmake.git",2015-11-17 00:58:47,"ff8f62e92f06cef4158fb9be327487d45ba047e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 0, 0, 0, 2, 0, 0, 3, 1, 9, 3, 7, 1, 2, 0, 3, 8, 16, 1, 6, 4, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0]",1,2,3,0,2987.8108217593 +"https://gitlab.freedesktop.org/spice/usbredir.git",2011-07-14 14:22:21,"ee954d28286408262c6762a22e5e0871e8baa00b","[0, 0, 0, 17, 0, 17, 12, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 9, 0, 0, 4, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 5, 3, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 7, 5, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4662.795787037 +"https://github.com/python-hyper/hyperlink",2017-03-25 01:22:10,"c6f44153b3a1fe978df0f8ce56a2c5bf43c2b1d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 6, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 12, 57, 27, 8, 0, 6, 0, 0, 2, 1, 0, 31, 19, 17, 10, 20, 7, 0, 3, 2, 6, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 2, 5, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0]",1,2,9,0,1636.1480324074 +"https://github.com/naelstrof/maim.git",2013-09-28 19:40:33,"6f331d847d6fcf3c90638ea0313401cd8d0ffad2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0,3690.030474537 +"https://gitlab.com/sebholt/qastools",2011-11-18 13:10:01,"24efee36df19c8ac2abb9dfbf06ed42a5d09853e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 6, 8, 16, 19, 6, 18, 26, 12, 0, 6, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4413.9091435185 +"https://github.com/XMLTV/xmltv.git",2001-11-02 17:58:03,"89a69bef532f957828549ec299b1692a207de087","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 33, 9, 7, 1, 7, 17, 19, 24, 16, 3, 18, 19, 27, 22, 5, 29, 34, 12, 15, 1, 6, 1, 12, 26, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5729.3252314815 +"https://github.com/spanezz/staticsite",2016-02-28 09:41:40,"f09ff50df8cf78aad0acf708c63e361c8fd1214c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 29, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 3, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2745.0971527778 +"https://github.com/miguelgrinberg/Flask-SocketIO.git",2014-02-09 07:22:50,"63db33d193e651b5df8a0ae305098dbb33832a58","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 10, 3, 2, 2, 5, 2, 2, 1, 0, 8, 0, 3, 2, 3, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,3545.4973032407 +"https://github.com/python-otr/pure-python-otr",2011-11-05 14:32:21,"a53dedfcc6bc6874650d9ecdb0aa59117afa0e35","[3, 0, 7, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 0, 0, 3, 3, 0, 7, 4, 2, 1, 2, 0, 0, 4, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,3956.9618634259 +"https://github.com/gitpython-developers/GitPython",2008-05-07 20:49:48,"33ebe7acec14b25c5f84f35a664803fcab2f7781","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 12, 4, 49, 7, 9, 9, 0, 1, 0, 8, 4, 0, 1, 2, 2, 2, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,8,0,5697.5567361111 +"https://github.com/perfectline/validates_url.git",2010-09-08 12:43:46,"68dc01206cbb0e2a894df120e53d66f40be45f08","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4598.7266782407 +"https://gitlab.com/craftyguy/networkd-dispatcher",2017-01-05 02:56:34,"cb3329178c31105639215b286e7ed5fa9a8bc24c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 17, 2, 26, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,2,0,2215.2071412037 +"https://github.com/Tlf/tlf.git",2009-11-06 12:27:33,"b79ce94a43655f9a4015c6f546cf357f2c6d131d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5111.2798263889 +"https://github.com/CarlFK/voctomix-outcasts.git",2016-04-30 03:01:16,"ce604ea1116133b4cf8c97736d6712c372502de7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 3, 0, 0, 0, 2, 1, 21, 1, 3, 0, 2, 0, 12, 0, 0, 0, 8, 1, 0, 17, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0]",2,3,3,0,2648.5362847222 +"https://gitlab.com/compiz/emerald",2006-09-27 23:27:36,"5636dbda85aecac177418e1c515fecf246d87bb5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 10, 20, 27, 6, 10, 6, 6, 3, 12, 13, 4, 6, 5, 1, 5, 5, 12, 8, 1, 4, 2, 1, 1, 13, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,24,0,5471.9170949074 +"https://github.com/miyagawa/Filesys-Notify-Simple.git",2009-10-21 09:53:08,"cc9452fdc1340bd040e5eca11cba6c1b73a17fbc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4730.4164814815 +"https://github.com/crypto-browserify/sha.js",2013-12-24 12:52:15,"c1cabff65dc811bd9c7e7530aab90db3b1080f04","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[73, 13, 8, 14, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,1546.487037037 +"https://github.com/Grokzen/redis-py-cluster",2013-05-21 06:41:35,"31dd3d2b5f303b4a039cef5c2d46dabce8cc6970","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3217.2146527778 +"https://github.com/the-cavalry/light-locker",2005-04-14 19:59:44,"3270cf30f07ad685d7a38216fd13e735d575072d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 16, 6, 10, 3, 7, 3, 6, 13, 14, 10, 13, 21, 9, 5, 13, 2, 1, 4, 24, 12, 8, 7, 21, 22, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0,4227.1496643519 +"https://github.com/troglobit/smcroute.git",2011-10-09 14:06:57,"1dc25e14ef1ac1154dcb5740ee0857464a694e74","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 14, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 17, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5055.7766087963 +"https://github.com/alexmurray/indicator-sensors.git",2011-04-03 11:15:21,"cd2ceaa0b87255ad58560007192e2a4bee83bbac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 17, 10, 15, 19, 10, 14, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 9, 1, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4448.0518287037 +"https://github.com/htop-dev/htop",2006-03-04 18:16:49,"d6231bab89d634da5564491196b7c478db038505","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 0, 0, 2, 0, 0, 0, 9, 4, 2, 6, 8, 0, 0, 0, 1, 7, 0, 3, 1, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5761.1663425926 +"https://gitlab.gnome.org/GNOME/gnome-notes",2012-08-17 22:16:20,"bdc8b05108e17d25a4e3fed3ea3ef3d768579c42","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 12, 5, 31, 25, 13, 28, 28, 11, 8, 1, 7, 4, 37, 19, 20, 9, 10, 7, 16, 4, 9, 1, 9, 8, 10, 1]","[0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,16,0,4086.3302314815 +"https://github.com/infirit/caja-admin",2014-12-14 12:14:17,"e255f48679f9596c487ab368ecec614f77ff83db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 3, 4, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2910.0051851852 +"https://github.com/openalpr/openalpr",2013-11-09 15:26:02,"b9ab379a2b2f4bdc9d99d508cf9e61da357d47f2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 11, 6, 2, 3, 7, 1, 7, 37, 2, 0, 0, 11, 12, 12, 23, 0, 3, 3, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 6, 1, 0, 0, 3, 1, 3, 0, 0, 0, 0, 2, 0]",2,3,4,0,3147.0406365741 +"https://github.com/jarun/nnn.git",2016-08-20 14:10:14,"66d9e933baef509881aba27cb5f424392c4e01c8","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[28, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,2665.9989814815 +"https://github.com/simi/omniauth-facebook",2011-10-15 07:36:27,"2f871a07cea5a7a8957f7cc9dec6a20332b418b1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4035.1388425926 +"https://github.com/FriendsOfPHP/proxy-manager-lts.git",2013-03-19 09:42:39,"22f469f74232182ee42e37f567b7f42fd65fedf5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 46, 0, 4, 34, 7, 4, 3, 3, 0, 0, 9, 18, 18, 25, 3, 2, 0, 0, 48, 0, 9, 0, 9, 0, 34, 1]","[4, 5, 0, 1, 3, 1, 2, 1, 1, 0, 0, 2, 1, 5, 4, 1, 1, 0, 0, 2, 0, 2, 0, 3, 0, 4, 0]",1,1,6,0,3717.8990509259 +"https://gitlab.dune-project.org/extensions/dune-grid-glue",2009-05-27 15:48:50,"0c2f431f53d044e07bb4b6ea4fe4d4f15d0520db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 6, 4, 48, 11, 18, 19, 12, 9, 3, 0, 9, 40, 27, 9, 12, 40, 9, 18, 2, 3, 1, 4, 7, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4975.9977546296 +"https://github.com/vapier/ncompress.git",2006-09-28 21:15:42,"e7a71c8c58a6ed7fddcdcfd93f30edfacb42755f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4740.1165856482 +"https://github.com/linux-on-mac/mbpfan.git",2012-01-25 15:26:01,"1dfe7d981075569d22ae67ac3e373343b61b099f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4208.3397453704 +"https://github.com/ninja-build/ninja.git",2010-10-24 04:00:12,"c42e512fb56b5e12116a759f5c3e30bf3ad28c0b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 46, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 12, 28, 11, 13, 45, 5, 11, 17, 3, 25, 7, 13, 12, 22, 10, 0, 0, 15, 12, 3, 3, 0, 1, 4, 25, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0]",1,1,13,0,4801.452974537 +"https://github.com/babel/grunt-babel.git",2018-03-19 13:23:05,"628b912e793d06f8f4d7c4caec2bde7116c53cb5","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,3011.4746296296 +"https://gitlab.cern.ch/dmc/gfal2",2012-04-18 15:31:24,"dbb5d22fbb0e7aa5a362f351a07fb3ecb3770203","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 13, 13, 0, 18, 3, 7, 6, 6, 4, 0, 0, 14, 12, 9, 6, 5, 9, 25, 2, 2, 0, 17, 27, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4253.842650463 +"https://github.com/letoh/ocaml-usb.git",2009-10-23 20:55:48,"d42f26d094b1709038d6b0222105d862d03984c4","[3, 2, 4, 4, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,4549.6073263889 +"https://github.com/basho/bitcask.git",2010-04-27 18:21:02,"0a45a771ae96fb5628d9b3c50291470a34b9f77a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 28, 4, 5, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 1, 0]","[13, 19, 28, 2, 4, 9, 1, 10, 6, 6, 4, 3, 1, 4, 7, 7, 1, 0, 1, 0, 0, 9, 2, 5, 0, 2, 0]","[1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,2,4652.9643865741 +"https://github.com/ultrabug/py3status.git",2013-02-19 14:59:13,"e88d2d968cd02e68237af97a4352f421b6088a3f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 3, 8, 4, 0, 10, 13, 9, 5, 0, 1, 0, 0, 0, 0, 0, 8, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,3948.0062615741 +"https://github.com/tych0/xcffib.git",2014-05-18 22:23:31,"66cc1b8b6db248f50acc07fae14c673a2a345ada","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 11, 13, 32, 14, 13, 20, 9, 2, 0, 7, 16, 13, 1, 2, 9, 3, 0, 0, 10, 8, 0, 4, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3466.6135069445 +"https://github.com/survivejs/webpack-merge.git",2015-06-26 10:20:27,"888fd232ab2ea186a6c0a46566b24c7db0629a1d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0, 0, 2, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,4,0,3033.8957060185 +"https://github.com/trezor/trezor-firmware.git",2016-09-27 15:19:47,"a8d5432fd5ba7d2f47a6b76f96abd3d57c7fbb6e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[448, 67, 17, 26, 7, 23, 46, 40, 12, 2, 19, 12, 1, 4, 2, 3, 18, 0, 2, 13, 12, 4, 9, 13, 23, 17, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,7,0,2634.9138425926 +"https://github.com/spaam/svtplay-dl",2011-10-11 18:30:39,"4ae1c73079d97b07201d38ea78012e1d877c2eac","[0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 6, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 10, 3, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 10, 0, 0, 3, 0, 0, 0, 5, 0, 0, 5, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0,4669.1490162037 +"https://github.com/firecat53/urlscan",2009-10-08 20:35:01,"ec9cc4fee60e09ef83cfd726294cf832c47f808f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5177.9480092593 +"https://github.com/bbidulock/blackboxwm",2001-11-30 05:09:48,"85dee0c8029ad9689d21bbddb17645bfdfa49863","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[137, 0, 0, 0, 0, 0, 0, 0, 24, 4, 6, 68, 20, 2, 31, 12, 50, 12, 4, 15, 21, 10, 21, 37, 47, 25, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5638.5930671296 +"https://github.com/grobian/carbon-c-relay.git",2013-12-13 10:43:42,"f223b70f04b261d30521006939e6fdea438792a7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 46, 15, 5, 6, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 1, 13, 31, 15, 16, 14, 11, 11, 26, 17, 25, 12, 4, 17, 0, 0, 4, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3376.0489467593 +"https://github.com/pgpartman/pg_partman.git",2012-09-05 05:07:50,"8326fb03611b2c541e6f31ba18f28b3272eb3805","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 1, 3, 4, 0, 0, 0, 3, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4104.5828356482 +"https://github.com/rizsotto/Bear",2012-10-30 16:14:07,"2d758d3d82f9d2613c1b5d8335b028e2240a665d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 0, 0, 0, 29, 2, 0, 11, 30, 5, 0, 0, 2, 0, 1, 0, 0, 0, 5, 0, 2, 0, 0, 0, 26, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,3987.655787037 +"https://github.com/Qiskit/qiskit-terra",2017-03-03 23:09:31,"8800edbcf1bb8870bd6429eab7c8edc10293e220","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 5, 2, 3, 13, 1, 11, 4, 28, 103, 236, 36, 3, 6, 0, 11, 40, 31, 32, 50, 93, 89, 39, 7, 19, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 85, 14, 2, 1, 0, 0, 4, 9, 3, 7, 17, 26, 19, 4, 8, 5, 0]",2,13,20,0,2477.5348726852 +"https://github.com/scanmem/scanmem.git",2007-12-16 23:03:54,"da4dc9e7d667a2f2f291bbe273db18b272cf37b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5016.3078703704 +"https://github.com/ReFirmLabs/binwalk",2013-11-15 20:45:40,"4001b759711ddb16b73006f4a3ee64ea1d85c2a3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 15, 44, 14, 26, 50, 1, 37, 6, 10, 1, 3, 4, 5, 0, 9, 4, 0, 10, 0, 2, 3, 25, 10, 3, 2, 1]","[3, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,5,0,3364.812650463 +"https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin",2003-10-08 15:04:04,"384fa9f6cb2298efb81215ddc5ec4f085bbe4a73","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5107.4272106482 +"https://github.com/jodal/pykka.git",2010-11-14 23:47:04,"f2366b7915b1ff0a35c93679f3c7e47884c9c2a4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 4, 0, 26, 1, 0, 0, 0, 1, 0, 0, 2, 18, 18, 9, 28, 5, 12, 23, 14, 0, 0, 1, 6, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4770.5155092593 +"https://github.com/webmozart/assert",2015-03-11 12:13:28,"2e101de251958f0c2e04c7d24f219b6172d5c4b2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 6, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,1,0,2641.2433912037 +"https://github.com/nvbn/thefuck.git",2015-04-08 16:15:49,"71f1f4224b267711bd9cc372a2ec69902f423a01","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 154, 72, 32, 45, 46, 18, 30, 9, 12, 7, 14, 20, 19, 62, 72, 21, 10, 21, 32, 33, 41, 5, 0, 1, 4, 1]","[0, 48, 23, 6, 13, 12, 5, 14, 3, 3, 2, 2, 8, 5, 13, 11, 3, 4, 4, 5, 7, 8, 2, 0, 0, 2, 0]",1,5,70,0,3035.1713888889 +"https://github.com/Bumblebee-Project/bbswitch",2011-12-27 18:46:22,"b3214826507fefd74f1b2c708827d01a120820af","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 10, 12, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 3, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,5,0,3680.6305555556 +"https://github.com/linuxmint/cjs.git",2013-07-20 00:45:49,"bcc84c818f2fa94bea1f0fe192e14e4af7c43797","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3771.5652546296 +"https://gitlab.com/sagemath/symmetrica",2020-01-07 15:41:13,"f01a825f0c0098d2472f81e875a8dabb569c6237","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,1219.7343055556 +"https://github.com/codedread/scour.git",2013-10-22 14:02:57,"f3a7507d8246118d16d7fba1e3b924bab65ccfbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2869.1347569445 +"https://github.com/Cacti/cacti",2002-05-18 20:29:57,"eb59dd520f710a827967399984773f133550c132","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 14, 41, 9, 10, 16, 0, 6, 11, 6, 9, 7, 8, 8, 0, 3, 0, 0, 0, 0, 2, 2, 29, 29, 15, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,5785.2001157407 +"https://github.com/bkeepers/dotenv",2012-07-24 03:39:43,"c3568a06b341f1182bd4e8b0d6e58a594cac7966","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 3, 0, 9, 9, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 3, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,9,0,4059.5279976852 +"https://github.com/libimobiledevice/ideviceinstaller.git",2010-01-05 03:52:50,"e0cf27624accbcd49ff628919a2546685e3136d9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4944.7184490741 +"https://github.com/posva/catimg.git",2013-05-26 22:07:32,"64b9d9c03c3b72a945a6a0d86ff323e79458b2a6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3000.6790046296 +"https://github.com/tat/mimetic.git",2014-02-15 12:31:07,"cdf6f48cf94eb10ef3702013e8ac14fe74daa893","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2612.777962963 +"https://github.com/etingof/pyasn1-modules.git",2011-02-17 18:35:16,"8b513895caeda00b34f662bec79238a5bf636383","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3319.6793171296 +"https://github.com/tristanheaven/gtkhash",2011-03-31 20:32:46,"d8fe578bc5268745cfafc060e6c6259baf36ccde","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 3, 1, 4, 2, 0, 1, 6, 2, 1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4558.9808449074 +"https://gitlab.gnome.org/GNOME/pitivi.git",2004-05-01 10:48:55,"509ec404f4e7314ebd027a2c74607582fb71c185","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 48, 11, 1, 5, 10, 18, 17, 30, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 2, 22, 35, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0,5776.5090509259 +"https://github.com/libwww-perl/URI.git",1998-04-10 09:10:26,"28c0706b9fbdfa6cf9ba5da5c4184fc4ec0290d8","[6, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 125, 43, 27, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5620.9042939815 +"https://github.com/thlorenz/proxyquire.git",2012-07-03 23:15:15,"e9b52196c815da54d131b5df5cdbd433c6d6577f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 11, 1, 16, 18, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 0, 0, 0, 0, 4, 5, 33, 0, 13, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0,3798.2810416667 +"https://github.com/mysticatea/eslint-plugin-node.git",2015-11-23 07:09:51,"53a96758e7d16c882cd5b0f3e939b9e1dc6ecaba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 2, 3, 4, 4, 19, 7, 6, 10, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 8, 5, 2, 1]","[0, 0, 0, 0, 0, 0, 4, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2019.6640393519 +"https://github.com/OpenRTX/dmrconfig.git",2018-08-21 06:24:38,"abebad7dbd0ab8338a65bb62ae45c31cb3fe5c99","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 20, 25, 25, 19, 5, 6, 7, 10, 27, 15, 3, 6, 9, 2, 5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 1, 0, 1, 1, 0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,1907.596412037 +"https://github.com/collectiveidea/json_spec",2011-07-08 17:30:11,"8706422f753378ca79f96026d04b5a1fe81f81e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 0, 6, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[1, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0,2153.749525463 +"https://github.com/jackfranklin/gulp-load-plugins",2013-12-04 00:48:12,"e73ae465591211528ece2cbd15cbc224b950e7ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 2, 0, 3, 0, 4, 0, 2, 0, 0, 4, 4, 1, 0, 0, 1, 6, 0, 0, 0, 1, 1, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0,3321.8455787037 +"https://github.com/argerim/select2-rails",2012-05-07 22:32:15,"5fa0d7b6aa07ae5210ab841c1ecc56e72d17334a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 1, 2, 0, 1, 0, 1, 1, 0, 1, 5, 6, 0, 8, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0,3178.7430787037 +"https://github.com/warner/magic-wormhole.git",2015-02-10 08:38:44,"82d8d02445a0d3674aea2bcfb7cc7a75e943bdc6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 20, 6, 1, 18, 10, 5, 1, 19, 2, 0, 7, 0, 0, 0, 1, 0, 0, 11, 1, 0, 0, 2, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,3185.5699884259 +"https://gitlab.gnome.org/GNOME/simple-scan.git",2009-11-13 07:15:15,"659050732d95eed59f5be3037b1b3b024b100840","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 27, 11, 2, 33, 29, 5, 1, 7, 19, 13, 2, 18, 62, 14, 34, 28, 31, 30, 6, 13, 13, 10, 5, 5, 3, 1]","[0, 0, 0, 0, 1, 3, 0, 0, 1, 3, 2, 0, 1, 2, 2, 2, 1, 1, 1, 0, 2, 1, 2, 0, 1, 1, 0]",1,3,6,0,5143.3744791667 +"https://gitlab.com/accounts-sso/libaccounts-glib.git",2009-04-28 10:52:23,"20207243a81a20f61cbdc13e48e00a9957d09a50","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 8, 16, 35, 37, 1, 18, 7, 0, 2, 0, 2, 0, 4, 10, 1, 6, 14, 0, 8, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,5306.098912037 +"https://github.com/resurrecting-open-source-projects/sniffit",2019-09-06 21:48:41,"e1b5d1ab68f3e3cbee02baeec765ae95636553cc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1171.9152430556 +"https://github.com/rstudio/rmarkdown",2014-01-24 16:18:43,"04b435dbe1ddc6e4a050ebb2c17721ebe5241133","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[95, 67, 97, 17, 13, 16, 8, 27, 20, 47, 35, 40, 21, 35, 17, 24, 24, 7, 34, 1, 7, 8, 1, 13, 6, 6, 1]","[1, 7, 9, 0, 1, 1, 1, 0, 0, 6, 5, 6, 3, 9, 1, 4, 4, 3, 3, 0, 0, 1, 0, 3, 1, 3, 0]",2,5,14,0,3609.9971643519 +"https://github.com/dnstap/dnstap-ldns.git",2013-05-11 15:13:49,"3b4eebd2ad4d903cbfa08f1883def67407492563","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2977.0303009259 +"https://github.com/neomutt/neomutt",1998-06-08 09:16:03,"1a5381e07e97fe482c2b3a7c75f99938f0b105d4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5650.5290625 +"https://github.com/JamesHeinrich/getID3",2013-07-30 01:36:20,"7401a6c5a00165a56d5f2b56fada618360d56346","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,1,1,3892.988275463 +"https://github.com/geopython/geolinks.git",2014-05-11 22:28:19,"4fe243f67d67d55b71db60c33bd7c2b648940ff7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3405.8642361111 +"https://github.com/schani/metapixel.git",1999-12-28 14:26:55,"6129962af8cddac5cee5e838ee2457d1f5d0071b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3264.7618171296 +"https://github.com/fnando/browser.git",2010-07-16 17:24:22,"3746499906339a3f8af692eaa719268dbc03d2df","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4214.4159027778 +"https://github.com/resurrecting-open-source-projects/nbtscan",2019-08-19 01:30:25,"26c63155cfcce89d3c32e849b9352e54e3b383dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1167.6364699074 +"https://github.com/ros-infrastructure/rospkg.git",2012-04-05 00:06:38,"621810ed0864f0848dd938588ea77a77952162bc","[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 5, 17, 2, 10, 6, 3, 4, 1, 13, 8, 0, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 2, 0, 1, 0, 0, 2, 1, 0, 0, 1, 0]","[0, 0, 0, 2, 0, 0, 0, 5, 9, 1, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,2,4,2,4295.6529861111 +"https://github.com/sargon/trayer-srg/issues/new",2010-01-26 07:45:41,"3d4a69db156ece98e0bcbe0aecb2436988d4c6b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 1, 0, 0, 0, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2746.3319791667 +"https://github.com/msgpack/msgpack-ruby",2011-08-25 04:58:38,"c605a0af5ad580a0a62434c247633f835f0dd6ef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 1, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4471.1247453704 +"https://github.com/pantherb/setBfree.git",2012-07-12 04:51:17,"e5c05b1a6e2e056b879bfbd7dede002c15f9e6d0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3675.3818055556 +"https://github.com/djs55/ocaml-sha.git",2006-08-17 08:57:13,"c5e6213b67088f57a86d7bbcff77f1b543392ed5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 14, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5351.1972453704 +"https://github.com/workhorsy/py-cpuinfo",2013-11-06 07:12:11,"b7d44a4b1b70e6b8f9468d947cfba805fa157ee9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3300.5731597222 +"https://github.com/eulerto/wal2json.git",2014-02-19 18:34:12,"fc77351e10feb1d6a66ce8e5168326898a5c4be1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3393.2528703704 +"https://github.com/juba/scatterD3.git",2015-06-23 15:20:41,"cb30edc105b2d678e76b3b4e081379a5052a77cb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[27, 12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 4, 42, 20, 0, 7, 0, 0, 3, 23, 28, 8, 1, 5, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 1, 0]",1,0,2,1,3041.2167939815 +"https://android.googlesource.com/platform/libnativehelper",2008-10-21 14:00:00,"ad83f63492fb91e7f8120fb78a01acee5b29c386","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5505.3903587963 +"https://github.com/alexmyczko/modplug-tools",2018-09-03 14:19:31,"2025c218b3cff3a59c81dda7b1ddc013af02c087","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,1743.9280324074 +"https://github.com/OpenSCAP/openscap",2008-11-03 16:58:30,"768d2d13c7b95736738ce2a48db7f2e528c161fe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 1, 16, 14, 7, 6, 7, 7, 4, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0,5510.7205208333 +"https://github.com/nodeca/js-yaml.git",2011-10-03 11:41:35,"d61b9314a38d4a781ef51a486b069d949c46a43e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 13, 71, 105, 103, 6, 11, 4, 17, 28, 19, 3, 0, 1, 0, 0, 0, 0, 3, 4, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 9, 7, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,4,0,3981.0986342593 +"https://github.com/terser/terser",2012-08-27 09:29:53,"ce8e8d57c0d346dba9527b7a11b03364ce9ad1bb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 28, 17, 15, 35, 42, 19, 5, 7, 24, 10, 4, 5, 4, 1, 3, 0, 7, 3, 6, 2, 5, 7, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 0, 0]",1,2,12,0,4211.1498726852 +"https://github.com/pickleshare/pickleshare",2014-01-22 12:12:52,"327a9b7cfce1afa53c6b71282596b5d487d512e0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3583.9321875 +"https://github.com/pysimplesoap/pysimplesoap",2011-12-19 08:49:25,"be3c7770496539c74b258b9ead42327483c00deb","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 17, 3, 2, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 8, 2, 0, 0, 0, 3, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,5,0,4858.2039930556 +"https://github.com/tarantool/tarantool",2010-09-08 13:42:13,"9b8dd7032d05e53ffcbde78d68ed3bd47f1d8081","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 16, 1, 0, 30, 13, 6, 5, 30, 49, 5, 11, 25, 19, 9, 20, 5, 0, 20, 4, 3, 12, 9, 17, 17, 6, 1]","[0, 1, 0, 0, 2, 2, 0, 1, 3, 4, 1, 0, 4, 3, 2, 3, 1, 0, 8, 0, 0, 4, 2, 2, 3, 2, 1]",2,4,7,0,4846.2850231482 +"https://github.com/jonschlinkert/map-visit",2015-07-04 20:27:45,"c42a1faeff7f2b1ca7aba60aac3213178909db73","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,645.0525115741 +"https://github.com/phw/peek.git",2015-12-16 17:14:24,"6a6f563cdd1bbcc9069838ccbc8d67f57e6ab6a5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 16, 44, 14, 0, 4, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0,2556.2171064815 +"https://github.com/skymizer/SkyPat",2014-03-03 08:01:15,"828072875f90a269ce41e3277dabc2d0ba9fd92e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1330.0854513889 +"https://github.com/irontec/sngrep.git",2013-06-20 17:11:33,"d304ecbfe0052f60a55bf00b390fa3d1be992430","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2955.1065856482 +"https://github.com/AlbrechtL/welle.io",2015-11-06 19:02:05,"c81a87028dac810187f09d0a7ab059c45fe9c3a7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 13, 2, 5, 5, 1, 2, 3, 0, 3, 2, 0, 0, 2, 2, 4, 1, 1, 7, 4, 1, 0, 1, 2, 1, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2902.9566203704 +"https://invent.kde.org/plasma/plasma-integration.git",2013-12-20 19:11:24,"2b25d450149445583c0c66da1a090e8cd311d580","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 5, 10, 2, 4, 0, 2, 3, 4, 1, 1, 2, 1, 0, 1, 2, 7, 4, 0, 0, 0, 3, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,16,0,3648.9289236111 +"https://github.com/ocaml/ocaml-re",2011-12-21 22:43:10,"594c50761808dd42a5658e9901dc7d9acd65823e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4365.6594907407 +"https://github.com/PurpleI2P/i2pd",2013-09-01 15:09:28,"bab26a5a14ee7a13014700ced66022a2769c385d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 2, 6, 0, 4, 4, 4, 1, 10, 3, 2, 8, 23, 15, 39, 52, 40, 15, 11, 10, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 10, 12, 13, 4, 2, 0, 0]",1,4,3,0,3747.1315856482 +"https://github.com/libimobiledevice/libimobiledevice.git",2008-07-31 06:50:39,"47d60e2b9f8ddec18107cee21e046cd4df50fdef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 20, 14, 24, 30, 0, 1, 1, 1, 3, 1, 0, 10, 3, 0, 1, 0, 0, 0, 0, 0, 0, 7, 5, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,7,0,5614.0853703704 +"https://github.com/prawnpdf/prawn",2008-04-04 22:43:04,"722604019a24f0961dcff5d65206ded5f8fab778","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 21, 50, 14, 26, 26, 56, 96, 30, 40, 118, 22, 2, 64, 80, 48, 69, 33, 45, 20, 1, 13, 5, 2, 0, 0]","[0, 0, 3, 6, 2, 2, 4, 6, 24, 4, 6, 8, 2, 2, 10, 10, 2, 8, 1, 1, 0, 0, 0, 2, 1, 0, 0]",1,4,16,0,5724.9282986111 +"https://github.com/vim-airline/vim-airline.git",2013-06-30 18:49:56,"25b9d4d48bd8c0a3daf3859998825e2e55562f70","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[95, 65, 21, 45, 30, 63, 59, 95, 87, 82, 29, 30, 44, 22, 4, 2, 4, 3, 4, 2, 2, 0, 5, 10, 6, 6, 1]","[8, 15, 2, 12, 3, 5, 5, 13, 5, 12, 5, 7, 9, 5, 0, 1, 1, 1, 1, 0, 1, 0, 1, 4, 0, 2, 0]",1,4,61,0,3754.6958796296 +"https://github.com/djberg96/pathname2",2010-01-07 01:08:07,"e2e082984e09a6dc695950208b87d7fe54393043","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4825.4280902778 +"https://github.com/IRCAD/sight",2015-07-08 12:14:36,"98c3cc47d3c2a433983374acddc8ceba383ce279","[25, 1, 16, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 5, 0, 0, 0, 0, 0, 0, 12, 9, 4, 0, 0, 11, 5, 0, 11, 29, 0, 0, 25, 2, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,7,1,5195.7820833333 +"https://github.com/languitar/autosuspend.git",2014-10-22 19:30:42,"2bca55e9546ad519d50078537ead6db19145fd94","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3337.5962847222 +"https://github.com/audacity/audacity.git",2010-01-23 19:44:49,"e74978ba776f78158e3e9729d5fda6814358ea3a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 12, 34, 7, 11, 17, 25, 13, 8, 6, 12, 8, 14, 8, 11, 4, 0, 1, 3, 8, 8, 2, 13, 9, 7, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0,5069.8878125 +"https://github.com/definite/ibus-chewing",2008-06-29 07:57:07,"058ff8eec8aa8a7e5e8e7b404f2f47d87456bfaa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 4, 3, 3, 16, 33, 3, 1, 6, 3, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5634.3732407407 +"https://github.com/osmcode/pyosmium.git",2014-09-22 22:07:12,"3e79ea927148eea21b5a3287643663d23e1228f4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 3, 10, 3, 1, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 1, 2, 8, 1, 0, 0, 0, 0, 6, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3345.7311574074 +"https://github.com/icecc/icemon.git",2012-11-09 21:33:19,"8cabea28d321b88ff59569945eb1b89105a86f33","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,1,4527.72 +"https://github.com/libimobiledevice/libusbmuxd.git",2013-09-17 09:00:31,"c45ae1f6b6f53995a5bc99591688102d11ad2148","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 8, 0, 0, 0, 3, 1, 0, 0, 2, 0, 0, 2, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3636.013275463 +"https://github.com/snare/voltron.git",2013-06-25 09:07:17,"8f662a4337c055b78b788b9174b0412edef2b31f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 31, 5, 7, 1, 0, 0, 1, 1, 0, 0, 0, 38, 4, 0, 26, 0, 4, 13, 9, 1, 0, 1, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 4, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0]",1,3,5,0,2775.5086458333 +"https://github.com/npm/node-tar",2011-03-27 22:16:31,"5f603330c6c0c12c9e8ebeaeffe97d6effa040c5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4544.3033449074 +"https://github.com/ubuntu-mate/mate-menu.git",2014-11-01 15:47:58,"c1c57af9c272e2facd748365d8db019b7f547b2d","[7, 0, 6, 2, 0, 0, 1, 0, 0, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 2]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 3, 0, 15, 20, 6, 2, 4, 5, 2, 3, 0, 0, 1, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0]",2,2,5,0,4623.4905902778 +"https://github.com/LedgerHQ/btchip-python.git",2012-12-29 11:52:32,"955445584490905f49123836706791e229b5d237","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3019.8821180556 +"https://github.com/qiime2/q2templates.git",2016-10-11 22:12:10,"941a781b3d244009ce5eb3ac4830343eb905a268","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 6, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,2619.2390393519 +"https://github.com/bgreenlee/pygtail",2011-06-30 05:33:12,"b4368d53165e613b8940f1b3129978366aa7f391","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4147.3947800926 +"https://github.com/mozilla/dryice",2010-11-23 18:16:34,"fab58892da67935c562e04e04d84aba17ecf52a8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 5, 4, 1, 11, 3, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0,1261.6348842593 +"https://github.com/lv2/lilv.git",2006-06-06 20:20:33,"7fd4168fe8581e46f4ee35cc182db6220b6eed04","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 1, 1, 7, 0, 0, 1, 0, 4, 0, 0, 0, 1, 3, 2, 3, 1, 1, 1, 0, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5733.8443518519 +"https://github.com/twogood/unshield.git",2003-08-09 21:25:49,"c3bd2439d2232563d558698527a96c0b92b9e429","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 7, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5774.0918055556 +"https://github.com/Syndace/python-xeddsa",2018-03-05 10:19:29,"31ba06054344d9cc5ed771817dc74908955441ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 10, 3, 1, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,1,0,1709.0088425926 +"https://github.com/Exiv2/exiv2.git",2004-05-08 09:28:18,"4ccdbd7866bebd443c33051e2fdd81b5e4430f91","[0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 14, 12, 23, 16, 7, 6, 25, 21, 11, 20, 0, 0, 2, 2, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 3, 18, 17, 3, 2, 9, 16, 7, 0, 0, 8, 3, 11, 1, 6, 10, 16, 7, 5, 1, 4, 8, 2, 8, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5776.6242708333 +"https://gitlab.com/eztrace/eztrace",2010-05-28 16:24:51,"df65424cc285c93bba30c95af85bd19b2fc5ef0c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 12, 9, 10, 1, 7, 1, 3, 2, 3, 21, 8, 6, 10, 1, 0, 0, 3, 11, 16, 2, 5, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4927.9635185185 +"https://github.com/linuxmint/cinnamon-screensaver.git",2013-01-09 10:41:02,"d5f13c4c086342bc7072af9b223fe5c78d65ceb6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 9, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3984.1461689815 +"https://github.com/Getty/p5-moox-cmd",2014-12-01 14:34:20,"6ce4263438419b33d708e684aa3ea7d6ef2ffa19","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0,2141.9085532407 +"https://github.com/ipython/ipykernel.git",2015-04-09 19:02:45,"8b877ac254ecbd94b3af329380d020566eb9dc6a","[6, 3, 14, 2, 3, 2, 6, 6, 22, 14, 1, 2, 2, 2, 5, 4, 4, 2, 5, 2, 5, 0, 0, 8, 24, 14, 2]","[3, 1, 5, 1, 2, 0, 2, 3, 7, 4, 1, 1, 1, 1, 2, 2, 0, 1, 3, 0, 2, 0, 0, 5, 4, 5, 0]","[10, 11, 4, 2, 6, 0, 4, 2, 2, 0, 0, 0, 2, 11, 4, 5, 4, 4, 2, 7, 2, 9, 3, 8, 1, 6, 0]","[3, 4, 2, 1, 3, 0, 1, 1, 1, 0, 0, 0, 1, 4, 1, 1, 2, 1, 1, 3, 1, 5, 0, 4, 1, 2, 0]",6,1,7,1,5666.2640509259 +"https://github.com/jalvesaq/gconjugue",2016-02-02 18:06:53,"a1a3e23e89ab8eea810faba85e637cc8ee170f6c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2752.1538888889 +"https://github.com/phillipberndt/autorandr.git",2012-06-28 20:30:49,"72bced7aeb2269af9e252b45149af5c350550aec","[0, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4779.7076736111 +"https://github.com/xtaran/unburden-home-dir",2010-10-29 12:37:15,"d0ddb46dd657ec4c6c8386a548704058020fe9ec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 2, 0, 0, 14, 0, 13, 37, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0,4201.5461342593 +"https://github.com/AlDanial/cloc.git",2015-09-07 03:35:11,"4e172cfefe8f498d2a5647b1a3a92105fa2ca30f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 2, 10, 3, 6, 0, 3, 3, 8, 5, 5, 4, 2, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,7,0,3014.5104282407 +"https://github.com/mojotx/xttitle",2016-04-07 03:50:15,"aca2b6c600db6bb02cc5d425cc8b05bfce2c3545","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2181.5912731482 +"https://github.com/cvxopt/cvxopt",2013-02-22 22:14:31,"a2156ed8ffb53468dcd128f02ed37f5715d1fef1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3827.9446875 +"https://github.com/intel/libyami-utils",2016-06-08 06:41:39,"97bcdb04a40732f7de64b7113cfb302bfef7c929","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 16, 1, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 5, 2, 1, 4, 8, 1, 1, 1, 7, 9, 6, 4, 0, 2, 1, 2, 3, 0, 4, 3, 5, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,12,0,3282.9452314815 +"https://github.com/lxqt/qtermwidget.git",2010-09-11 08:50:46,"2d6c2b82b7767e0e9678eddb527b1902c9d593e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 3, 1, 0, 4, 3, 1, 1, 1, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4842.9296180556 +"https://github.com/psemiletov/tea-qt.git",2016-02-11 13:37:43,"e3a87b45f1a413c3dc04cebdf25516c2fb295284","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 2, 0, 0, 1, 0, 0, 1, 0, 4, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 2, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,2860.1480092593 +"https://github.com/schacon/hg-git.git",2009-04-29 01:18:26,"e5a1f52473c95a6ad8d699c81dc15679f982142e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 41, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[32, 40, 22, 10, 18, 14, 3, 12, 8, 11, 2, 2, 9, 11, 6, 2, 1, 0, 0, 0, 0, 3, 1, 2, 5, 3, 1]","[6, 1, 3, 2, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]",2,3,12,1,2615.4964467593 +"https://github.com/pwr/Solaar.git",2011-11-23 20:16:26,"2eb7d66a926b54401d5a635666d8dedf6cedce66","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4403.7316666667 +"https://github.com/NagiosEnterprises/nrpe.git",2001-06-23 17:02:57,"c861650004ac5f6f64b23776a2541bd9186d5daa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5657.7203819445 +"https://github.com/BLAKE2/libb2.git",2015-10-14 12:50:52,"a8b3f1469c2ee79727e1541b2016097350144be7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,2769.1435185185 +"https://github.com/lxqt/lxqt-globalkeys.git",2016-09-07 15:02:57,"3b7485b0e65d28f7786f2c225cba3effd276c464","[0, 2, 0, 1, 0, 0, 0, 1, 0, 5, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0,4146.0372916667 +"https://github.com/eslint/eslint-scope.git",2012-09-12 22:49:05,"654f695085cee8530968743f8b322336ae65995f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 8, 5, 2, 0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 0, 0, 3, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4084.6226157407 +"https://github.com/rails/jquery-rails.git",2010-08-16 19:31:38,"7d6abaeb4a4d73b8c2da412a30ca0a32e716666b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 2, 1, 4, 0, 10, 2, 14, 6, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,4697.0958680556 +"https://github.com/ckeditor/ckbuilder.git",2014-06-04 10:40:13,"db2ec082811a9030bd2711de4ebae5d10adb2b96","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3366.2307291667 +"https://github.com/ansible/ansible-lint",2013-08-14 11:06:35,"fb6e7b5a8783b372bc4fef0c8fac95db625dc446","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3772.1254976852 +"https://gitlab.gnome.org/GNOME/at-spi2-core.git",2001-07-25 18:26:40,"9bf98cd378e1572019a743bb4bf18e896b4fcd1d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 9, 23, 1, 9, 0, 3, 2, 5, 7, 0, 3, 1, 1, 7, 18, 10, 8, 41, 6, 2, 2, 6, 18, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0,5749.2271643519 +"https://github.com/hadley/plyr/issues/new",2010-07-28 13:25:08,"00b6ce26822096650ff1b6c012e570653b496433","[0, 3, 0, 0, 2, 0, 0, 1, 1, 2, 0, 0, 7, 30, 7, 6, 2, 0, 0, 0, 3, 13, 15, 0, 14, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 0, 0, 7, 16, 10, 0, 1, 0, 4, 4, 0, 0, 1, 0, 0, 0, 1, 0, 11, 9, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]",0,0,2,0,2746.3319791667 +"https://github.com/sharplispers/split-sequence",2011-11-01 23:32:53,"fd0ead2da324ae8a7d70c2c85ab521179329d71b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3972.6220023148 +"https://github.com/ojuba-org/othman.git",2010-04-28 15:37:42,"ca54d3c20404bce91158e0743b2b1bb694db43b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4827.9828240741 +"https://github.com/lepture/mistune",2014-02-18 10:12:31,"a2ad36f2b1973cc6800ba982d3cd64be00688154","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 9, 0, 3, 0, 2, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 2, 1, 0, 5, 0, 6, 0, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,3515.8809143519 +"https://github.com/voxpupuli/pypuppetdb",2013-07-29 18:21:06,"57fd270340fb2233100ae90f62c4ec74c11a7e37","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 11, 11, 0, 0, 0, 0, 0, 1, 0, 11, 2, 10, 3, 15, 0, 0, 0, 0, 18, 1, 0, 8, 6, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 1, 5, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 0]",1,2,8,0,3781.8189814815 +"https://github.com/JulienPalard/logtop",2010-07-01 17:05:05,"ba0a8d9b310f8aeefbd226aaca33076d7696a3fa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 4, 4, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3192.2077430556 +"https://gitlab.com/compiz/compizconfig-python.git",2007-04-24 16:08:26,"a78bd02e33c20e48a7e70722cf343965389a4b63","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 11, 9, 6, 0, 2, 4, 11, 1, 3, 3, 1, 0, 0, 7, 1, 3, 7, 5, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,4,6,0,4433.4365046296 +"https://github.com/bobek/pkg-pimd",2010-01-16 13:00:54,"62ca0b4f2bbedb628d998d0238792413c789f4ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0, 26, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4933.0961921296 +"https://github.com/wjoye/tclsignal",2016-05-31 19:42:27,"17f3d03e19b22b3259c968929bea3bb29b70fefa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2449.858275463 +"https://github.com/gcla/termshark.git",2019-04-19 21:27:23,"b6b2c35461d9910710c8ef03f95f21a879240d2b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 2, 5, 1, 0, 3, 8, 18, 11, 1, 12, 0, 0, 2, 1, 0, 16, 13, 0, 0, 0, 6, 52, 35, 14, 20, 1]","[5, 1, 0, 1, 0, 0, 2, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,8,0,1476.2094328704 +"https://github.com/qiime2/q2cli",2016-04-22 22:15:41,"e8327eefe88358dd74f24b4b641f67544d296ee7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[7, 2, 0, 0, 0, 2, 0, 0, 6, 7, 0, 12, 22, 0, 1, 14, 0, 0, 2, 3, 0, 2, 2, 11, 4, 0, 1]","[5, 0, 0, 0, 0, 1, 0, 0, 2, 3, 0, 5, 11, 0, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,9,1,2795.9663773148 +"https://github.com/WebAssembly/wabt",2015-09-07 08:37:41,"970eea40d1cefc254aa36f177bafa18b14800559","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 30, 39, 20, 29, 38, 15, 9, 11, 15, 13, 0, 68, 9, 8, 5, 2, 19, 3, 1, 11, 6, 8, 5, 29, 21, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 3, 0]",1,3,7,0,3027.9831828704 +"https://github.com/vagrant-libvirt/vagrant-libvirt",2013-03-26 23:55:30,"810f0b31b973281bdf70e8b9810f02d2486e9eb8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 6, 2, 1, 7, 9, 5, 0, 0, 0, 4, 0, 0, 0, 2, 0, 1, 5, 0, 4, 1, 0, 1, 9, 3, 1]","[2, 1, 0, 1, 0, 3, 2, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 3, 1, 0]",1,4,10,0,3827.3451388889 +"https://github.com/abraunegg/onedrive.git",2015-09-22 16:31:10,"42f5140f9a899b6da0d0906988a18ce641748b57","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 9, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 1, 0, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0]",1,1,2,0,2997.1442824074 +"https://github.com/storaged-project/udisks",2008-03-05 07:26:32,"70e0bc44ff38d5acb715b9744c88a0290ae385af","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 27, 13, 5, 2, 0, 8, 5, 0, 0, 2, 17, 18, 1, 2, 1, 0, 0, 4, 0, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5742.1701388889 +"https://github.com/beancount/ledger2beancount",2018-03-17 13:59:35,"c635f289d339a71a04362978497428b104911bb9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 87, 15, 8, 12, 3, 7, 15, 8, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2575.2068865741 +"https://github.com/ruby-concurrency/concurrent-ruby.git",2013-07-23 12:18:51,"773583560909b05e0679b872a85aa3118a08a1c5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 41, 20, 31, 23, 8, 7, 3, 0, 0, 33, 54, 7, 3, 22, 27, 4, 1, 2, 3, 0, 0, 0, 4, 3, 7, 1]","[0, 2, 1, 0, 3, 0, 0, 0, 0, 0, 3, 5, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 3, 0]",1,2,5,0,3789.0811458333 +"https://github.com/google/textfsm.git",2015-08-25 03:26:31,"1e2178fe4e6d2075f247c2248b9b2103ab5e2912","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4331.1065625 +"https://github.com/easyrdf/easyrdf.git",2009-09-20 21:05:06,"b434baddcd4ac01a3691de8eae6d2e0a85bf3a3f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 19, 17, 4, 18, 20, 4, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 29, 4, 10, 19, 0, 3, 7, 3, 1, 3, 14, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4424.6065162037 +"https://github.com/kazu-yamamoto/Mew",2013-05-22 02:53:20,"433176e2d2c519089d2ac6c58257de23e0e7a525","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 2, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[1, 0, 2, 4, 7, 5, 3, 3, 0, 0, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 2, 6, 6, 1]","[0, 0, 1, 1, 3, 2, 2, 2, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 1, 2, 3, 0]",1,0,4,0,5007.0253703704 +"https://github.com/kasei/attean.git",2014-08-09 00:30:39,"c7d58a5f2f6a4fa91c5b178c565fcea4b79db3ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 30, 13, 16, 40, 40, 47, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3387.9902314815 +"https://github.com/thumbor/libthumbor",2011-03-30 17:32:47,"ae1e829d3999c032ea5443a815156dc1ac3be8d9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4029.2128125 +"https://github.com/singmann/afex.git",2015-06-29 20:00:57,"628a93ff5047ec30bbaefc46182cd0cec98ebcd6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 0, 0, 5, 3, 0, 4, 0, 0, 0, 0, 2, 0, 1, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,3,3,0,2884.5159027778 +"https://github.com/df7cb/pgsql-asn1oid",2017-09-24 09:30:40,"197f4c3014c0a37588ea9b040d85d30f0671a531","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0,2425.8964351852 +"https://github.com/rthalley/dnspython.git",2005-09-02 05:21:28,"df24d7e7fe18b2a4cd79c35d1c2efbb3e7ee5abc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 0, 1, 3, 2, 3, 0, 5, 1, 5, 0, 0, 0, 0, 1, 8, 2, 3, 1, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5665.3041087963 +"https://github.com/puppetlabs/marionette-collective",2010-05-24 00:09:24,"9bb1671fa7ccfa697d3eec09b045aeae26783ba9","[3, 10, 5, 13, 21, 24, 14, 14, 22, 7, 8, 4, 2, 0, 1, 0, 1, 5, 2, 4, 0, 0, 4, 1, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 13, 4, 18, 1, 2, 0, 0, 2, 7, 0, 22, 10, 0, 5, 17, 8, 6, 0, 3, 5, 1, 0, 4, 12, 1]","[1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,8,0,3620.6848148148 +"https://github.com/jshttp/on-finished",2013-12-20 22:31:58,"6b14841e7463a790520cbf7689f8be54c30b859b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 1, 0, 0, 2, 12, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3350.0634259259 +"https://github.com/haiwen/seafile-client.git",2013-08-05 09:08:07,"c703771bea2366d2cb740c38e020d6a2f207add3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 11, 4, 2, 19, 20, 9, 55, 1, 15, 28, 26, 19, 28, 4, 4, 1, 4, 2, 0, 8, 3, 17, 5, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,10,0,3776.8782638889 +"https://github.com/claviska/jquery-minicolors",2011-11-16 00:01:08,"fe8d5d9c8f0e2c890c64dab08d2bb8213ba6318e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 13, 5, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4034.2342592593 +"https://github.com/prometheus/client_python.git",2015-02-09 23:02:29,"7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 15, 0, 1, 0, 10, 2, 14, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 3, 0, 0, 0, 1]","[0, 7, 0, 0, 0, 4, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,6,0,3206.068599537 +"https://github.com/sebastianbergmann/phpcpd",2009-01-24 16:22:12,"bbbf1324673c4578490c69e4091d1cf3e795078c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 8, 1, 0, 2, 0, 2, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5098.8530902778 +"https://github.com/isaacs/inherits",2011-04-07 00:29:30,"ab68ae67b9a6d17938f5a32e9b123c42220548b5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4576.503912037 +"https://github.com/teamcapybara/xpath.git",2010-07-31 17:01:15,"9e707f514933c903a457e2c96198123c4f8fe9a0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 2, 0, 0, 0, 0, 0, 5, 19, 0, 0, 0, 6, 5, 3, 1, 0, 3, 2, 0, 2, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,8,0,4699.0999421296 +"https://github.com/bk138/gromit-mpx.git",2009-05-14 19:14:15,"11dd8860942c986d1aa2d5b2f0e3beb277c72d08","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5287.5376388889 +"https://github.com/intridea/grape-entity",2013-01-12 21:04:55,"056dd9a7a00e0b6b181d865e0b063f10bbcdf995","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3988.0353587963 +"https://github.com/monitoring-plugins/monitoring-plugins.git",2002-02-28 06:42:51,"44a321cb8a42d6c0ea2d96a1086a17f2134c89cc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 2, 4, 1, 2, 2, 8, 5, 0, 10, 5, 3, 6, 4, 2, 1, 2, 0, 3, 0, 12, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,5784.3225925926 +"https://github.com/nojhan/liquidprompt.git",2012-07-19 12:17:32,"c13e6d795f235afeee4cd38ed5117272dcd5be58","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[26, 20, 33, 93, 62, 4, 2, 5, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 29, 13, 1]","[2, 2, 8, 19, 15, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0]",3,1,14,1,4694.9375347222 +"https://github.com/intel/opencl-clang",2017-10-31 09:11:08,"a979affcb23d22c56a2cae75f17866469f286328","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0,2205.1366319445 +"https://gitlab.dune-project.org/core/dune-istl",2003-10-30 17:03:38,"01ebd69e1934980cc59eb1f4e2953f09fed702fa","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5747.2006712963 +"https://github.com/scop/bash-completion",2002-02-09 08:41:35,"0a5f6136735bfa39998cca584d36e296800244da","[2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 6, 0, 4, 9, 6, 12, 10, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 24, 41, 20, 13, 11, 30, 32, 7, 10, 17, 13, 17, 16, 11, 7, 13, 11, 13, 14, 4, 4, 4, 11, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5698.983125 +"https://github.com/nsntrace/nsntrace",2016-07-15 10:23:05,"aa019a8147f0203dd02415b5c694f5fae583fb5d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 1, 1, 18, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,1665.640150463 +"https://github.com/pdewacht/brlaser",2013-12-27 17:01:43,"fd97eb1258dd178cedaee34ebc44dae2a9ff7835","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3342.2059837963 +"https://github.com/ruby/curses.git",2013-06-30 07:25:20,"7721d8ca2f13f8630b336b267c3124de995c378a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5368.611724537 +"https://github.com/spin83/multi-monitors-add-on.git",2014-12-17 01:30:41,"95b8d8410d6d09d8868d168448812b00946cb3b0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,2247.7516435185 +"https://github.com/bestouff/genext2fs",2001-05-02 18:20:05,"60c7a4672551e6a3d51e5321ddc231bd61d5d690","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0,3682.2901041667 +"https://github.com/drakkar-lig/debootstick",2014-12-12 13:11:56,"6a2efc6e31fa50bc124ad4c99493ff1de8bc3bc4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 0, 10, 4, 15, 6, 1, 2, 4, 7, 9, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3036.0772106482 +"https://github.com/gitpython-developers/smmap",2011-06-08 13:17:35,"03767cc17c6111c4c39cd4dde0517f5415515598","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4570.872037037 +"https://github.com/qxmpp-project/qxmpp.git",2009-06-14 10:54:22,"cb37450aac5fedbc5aa0cd4bc6fb9955d13bc5be","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 4, 6, 3, 1, 0, 0, 0, 8, 3, 5, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5420.5084722222 +"https://github.com/mirage/ocaml-ipaddr.git",2013-07-24 10:35:42,"b977dd104ab2f2e30980f49169acdaeabbfa6a0b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 17, 3, 0, 0, 0, 0, 0, 2, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 2, 30, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0]",1,2,4,0,3725.5192476852 +"https://github.com/home-sweet-gnome/dash-to-panel.git",2016-09-21 00:29:56,"f593c27bae00fce116cc06fb61a944b3e7497c5e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 33, 14, 13, 2, 3, 6, 8, 26, 13, 8, 1, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1]",1,2,8,0,2629.7539467593 +"https://github.com/keepassxreboot/keepassxc.git",2014-04-29 03:09:24,"7c7f0b93ae73785ade3b8016a056023a42a9c3fc","[1, 0, 8, 12, 18, 3, 2, 1, 0, 1, 14, 16, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0, 8, 0, 4, 1]","[0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 36, 2, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,2,4876.4075 +"https://github.com/flavorjones/loofah",2008-12-04 17:07:54,"f1a51db18c23271fdc7c51e61e8f9d457fd7b266","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 8, 0, 1, 0, 1, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 2, 1, 1, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,5476.0333796296 +"https://github.com/todotxt/todo.txt-cli.git",2009-03-06 01:18:07,"7ecda8973b9be28ca57215fd5c6782f173aa1524","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 21, 6, 6, 22, 11, 7, 3, 0, 2, 0, 0, 0, 0, 0, 7, 1, 1, 0, 0, 0, 0, 0, 0, 4, 5, 1]","[4, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0]",1,7,15,0,5276.7438425926 +"https://github.com/aconchillo/guile-json.git",2013-01-26 21:18:26,"c2952206fc911488f1f31811ea0466b258f358e9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 7, 3, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0,3764.8305324074 +"https://github.com/wanderlust/wanderlust",2000-04-03 06:58:14,"d89e13c0af952508f94e7d6807c1634c586b7057","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 10, 15, 15, 2, 51, 30, 15, 18, 8, 27, 16, 14, 13, 24, 14, 12, 8, 5, 4, 22, 40, 10, 20, 16, 27, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0,5747.0710416667 +"https://github.com/fzumstein/nose-random",2015-11-02 12:28:25,"dfcb7fb9ef586aae008f6c76c2dba896586dd7e1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,352.6133101852 +"https://github.com/ubuntu/gnome-shell-extension-appindicator",2013-02-23 16:38:12,"0567ecd18902dcda37f15422ea7675334df52cb7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 15, 1, 6, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 2, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0,3879.4440046296 +"https://github.com/jiixyj/libebur128",2011-01-12 11:14:38,"617f9964274c6f28186cf8f91f3e8b4303263c80","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 28, 40, 15, 9, 45, 22, 3, 7, 5, 9, 2, 12, 18, 17, 0, 0, 0, 7, 0, 0, 0, 0, 1, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0,3690.6439930556 +"https://github.com/processone/erlang-sqlite3.git",2010-10-12 19:25:01,"63ae3cd7334ae11f5f52ad18032d71d3af6aa666","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 12, 3, 2, 8, 24, 6, 15, 17, 5, 3, 0, 5, 5, 6, 0, 0, 2, 3, 0, 0, 1, 2, 0, 3, 0, 1]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5341.557349537 +"https://github.com/fitnr/convertdate",2014-06-24 02:23:29,"8df7d6bc0b6a302232ffe01db3c64f2c887033f4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 6, 13, 9, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2873.5651041667 +"https://github.com/jruby/joni.git",2013-08-01 15:52:36,"cc8cd8daaf29146cb183764ebd97584c8db3ee92","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 4, 2, 0, 0, 0, 0, 0, 1, 3, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1,5683.5945717593 +"https://github.com/iustin/pylibacl",2002-12-23 16:55:31,"50cf05229b7b99e9827ffa93dfc5a07512676c28","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5414.6585300926 +"https://gitlab.com/orcus/orcus",2012-04-04 04:44:13,"74b9ac44144862b35997131f4022e0f4a79bbe68","[7, 1, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 17, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 17, 2, 35, 36, 51, 47, 65, 4, 1, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,6,0,4985.8959837963 +"https://github.com/schaal/bino",2011-09-09 12:23:04,"2774879df7233feca804fd92e2a619d53efea73b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 7, 4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0, 2, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3762.7609490741 +"https://github.com/pdfarranger/pdfarranger",2009-11-10 15:31:17,"7db6876fffcbf6d71d2c83216108d4eb59dc193f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5142.0676967593 +"https://github.com/sporkmonger/uuidtools",2008-09-29 04:33:58,"2b115d1663a7f7440b7d9f856c96b365d49b3164","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4302.5516087963 +"https://github.com/tijsverkoyen/CssToInlineStyles",2010-12-05 14:30:06,"3854223540a58b4eab3e17ba1a2d6644a1d5b907","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4791.6600810185 +"https://github.com/jtesta/ssh-audit.git",2015-12-23 02:56:13,"2ef7e65721dd91aeae5b21e1cc3765b2d1e55e03","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 14, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2897.0719328704 +"https://github.com/greenbone/gvmd",2008-11-11 15:57:28,"ec02a2f9a141eeee8be3d803fa67bfe71d2e6da6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 7, 2, 1, 10, 13, 0, 0, 1, 21, 4, 5, 9, 0, 6, 6, 1, 17, 5, 17, 3, 4, 2, 0, 0, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5510.7235185185 +"https://github.com/CSCsw/ColPack",2014-03-22 21:11:48,"6fed3fdf83c36a19364c358e75575cb51f6200db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1916.7757175926 +"https://github.com/chuckremes/ffi-rzmq",2010-05-06 22:15:03,"ae5e456183bc5c54d5ecb00f255366a1c2b64c34","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 6, 10, 3, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 8, 0, 9, 6, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3424.7133912037 +"https://github.com/toddr/Crypt-OpenSSL-RSA.git",2009-12-10 08:30:41,"a6040a720d98861c3aca2e31f81bf573d88184ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4592.8473842593 +"https://github.com/stephane/libmodbus.git",2005-09-10 09:49:54,"f7cb1f06ce8ddeac709dc7a6f4c4784e7e0ef80d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5746.5321180556 +"https://github.com/cesbit/libcleri.git",2016-05-23 14:21:28,"d8e43a6845898345f9f6114899895195e5774d56","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2711.9692592593 +"https://github.com/Castaglia/proftpd-mod_vroot.git",2012-08-20 18:02:24,"c5c66cdc9457f9f359a130ab7f9a2cdfc3bdbe01","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3875.2868518519 +"https://github.com/nordlicht/nordlicht",2013-02-07 14:53:53,"cbdd2a9f99913492c575e4cfc2e8e12aa914189c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 34, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 23, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,0,0,1854.1766087963 +"https://github.com/pearu/pylibtiff.git",2009-04-22 11:48:53,"e6cc872fbcb18ae5d10f693f05cd5eec92f39bb2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3040.1433796296 +"https://github.com/guilleiguaran/fakeredis.git",2011-02-21 05:50:48,"a5044491e43c85747e68dcb0388eecc254be667b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3981.188900463 +"https://github.com/ukui/ukui-sidebar",2020-01-15 11:40:01,"dc2f910b629506c65f8470b570cd4a1462faffca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 7, 9, 10, 8, 13, 6, 9, 49, 65, 61, 31, 81, 37, 12, 35, 30, 36, 6, 14, 11, 18, 5, 78, 12, 1]","[0, 0, 1, 1, 1, 1, 0, 0, 0, 11, 18, 21, 8, 29, 11, 6, 15, 6, 9, 3, 4, 3, 6, 1, 24, 5, 0]",2,7,26,0,770.8421412037 +"https://github.com/benhoyt/inih",2009-08-20 21:59:32,"4d08274b355a112b9d07f040110a0e9c8ba68aba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5140.4548611111 +"https://github.com/59naga/babel-plugin-add-module-exports",2015-11-10 20:33:50,"9e0628799e766a5eedaadb774cef3d8adb84426b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 2, 1]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,1,2,0,2579.5546180556 +"https://github.com/phpDocumentor/ReflectionDocBlock",2012-04-06 18:15:46,"fea7abe168dfd01d96f61daa4bc27891814b94f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 2, 5, 0, 4, 0, 2, 4, 0, 2, 0, 0, 2, 0, 0, 0, 1, 1, 0, 3, 0]","[0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]",1,2,4,0,4206.5126967593 +"https://github.com/somiaj/fvwm2-debian",2021-06-02 00:27:05,"629cf2e5fbdc1d3ff8b9c28855ae2656a07be11f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,699.9356018519 +"https://github.com/x42/jack_midi_clock",2009-02-21 03:25:34,"3159c50a449d7bfa0d42a2b3d198420bda584b1a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4775.6370949074 +"https://github.com/python/typed_ast.git",2016-04-12 00:38:06,"8a8f8c82abcfee3f06b05764c74f461f65f07682","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 9, 2, 0, 0, 4, 0, 1, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 9, 2, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0,2639.0503009259 +"https://github.com/dbry/WavPack",2006-10-17 06:15:09,"881de9b394fd7f1c4737661d421de6d9d65eea8c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 6, 4, 4, 1, 11, 6, 0, 0, 0, 2, 1, 1, 0, 0, 2, 0, 0, 2, 1, 1, 2, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5719.9072569445 +"https://github.com/seperman/deepdiff.git",2014-09-26 03:21:48,"a018d334bcd0cd1d11544702d565e81fd99ffbb5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,2,0,3349.8121875 +"https://github.com/meetecho/janus-gateway",2014-02-11 15:20:20,"be35facbad6f8727838f8756cbfa5c1e1b2cf4de","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 3, 0, 0, 1, 1, 2, 7, 2, 0, 4, 7, 1, 4, 2, 8, 3, 8, 3, 3, 1, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0,3591.8742708333 +"https://github.com/orocos/orocos-bayesian-filtering",2010-10-26 13:30:25,"a0d76deb89c34bb012c9ffc1096467017dc6946d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0,3625.9026157407 +"https://github.com/JuliaStrings/utf8proc",2014-07-15 19:29:52,"ab9520d18845248ef79ee98e8d671f8eecfec288","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 1, 4, 2, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,7,0,3420.2714930556 +"https://github.com/paragonie/constant_time_encoding",2016-02-03 01:32:50,"fac7f7434099a4882176a47dbcbe126a13f88176","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 12, 1, 2, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2771.7821296296 +"https://github.com/jcdubois/pixelize.git",2019-10-29 17:34:29,"feecfb092b7e3daa967d50278474b0d2480d6f09","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 24, 15, 3, 2, 0, 0, 0, 0, 14, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,802.2084027778 +"https://github.com/jupyter/terminado",2013-08-08 14:03:31,"51946a73c84369c1e35bc78fb599d8d27a237a2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 16, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 2, 1, 4, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0,3771.3957407407 +"https://github.com/pyproj4/pyproj.git",2006-11-26 17:01:09,"1938b0a62319aa24ed6297c1cac4b69b70e073ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 1, 10, 29, 2, 0, 0, 3, 4, 6, 0, 0, 0, 0, 30, 19, 6, 1, 0, 0, 1, 0, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5681.2389236111 +"https://github.com/eea/odfpy",2008-08-18 16:15:43,"fb73e609709027c1e47fb1f4cc6b4411feab75f0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 3, 1, 2, 6, 5, 0, 8, 1, 4, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4744.619375 +"https://github.com/mapbox/millstone",2011-09-26 15:19:31,"bdab004448eee41e1d91a22a832fe28dfb08df24","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 24, 5, 3, 13, 6, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 24, 11, 1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 0, 0, 0, 0, 6, 0, 2, 0]","[0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,2,2,2,4176.2971875 +"https://github.com/jbouse-debian/libesmtp",2010-08-15 20:45:03,"ca5bd0800ef1da234315da4c59716568eb5e6402","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4730.7607986111 +"https://gitlab.gnome.org/GNOME/clutter.git",2005-04-13 19:49:56,"3b342b81b72132902b6bb0185f83de46f764557c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 2, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5312.2263078704 +"https://github.com/libgeos/geos.git",2002-08-30 18:15:07,"87da037e0eac12e1062039a08e74c475aa720b14","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 2, 2, 1, 0, 0, 0, 0, 1, 3, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 0, 0, 0, 1, 1, 1, 5, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 21, 6, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0,5683.0946064815 +"https://github.com/smbolton/whysynth.git",2012-05-20 18:48:11,"f9515f55991e8ad1254715e211b0d44051cb4893","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 10, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2132.1219444445 +"https://github.com/fourdollars/x11-touchscreen-calibrator",2013-08-15 03:01:49,"babf2c3119eb6162bbd5578e8300f4a58da1c3b2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2225.1995717593 +"https://github.com/Swordfish90/cool-retro-term",2013-11-22 10:01:59,"43d374cd79e9f58f8f040a2e1d7e37691d6c95e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 27, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 13, 15, 4, 10, 3, 0, 1, 1, 1, 1]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3050.8032175926 +"https://github.com/raboof/nethogs",2004-08-23 09:48:43,"b4073a4cf51b2ff96885dad1ca659336663065db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 12, 3, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5593.736400463 +"https://github.com/Debian/ratt",2015-08-16 09:51:26,"58be32d7c21b1d3919171aa2966faa7b2ae61f90","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0,2545.9663194445 +"https://github.com/jarun/imgp.git",2016-08-09 06:32:43,"d894019c98fb10315e7b1c5c7934006fb75072c6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[85, 14, 1, 0, 6, 1, 0, 2, 18, 2, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,2588.4491782407 +"https://github.com/curl/curl.git",1999-12-29 14:20:26,"ae1912cb0d494b48d514d937826c9fe83ec96c4d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 7, 9, 1, 15, 2, 21, 9, 0, 22, 7, 30, 11, 7, 9, 0, 1, 0, 3, 5, 17, 22, 20, 20, 25, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5786.9502662037 +"https://github.com/jterrace/pyssim",2012-08-29 19:45:07,"1c4db9ef50181a8603783e55395da9442cada9b5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4069.879375 +"https://github.com/debian-tex/texworks-manual",2016-04-04 02:46:00,"424e53a32564c9c6d68193d0222de31308abf9a5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1933.1899652778 +"https://github.com/trivial-features/trivial-features",2007-07-06 11:17:14,"320426c0b6be8a551727d0809c7158f3e831f581","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 1, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5548.6738657407 +"https://github.com/palortoff/pass-extension-tail",2017-02-18 22:56:23,"f04b40ab50cb62b008c8b948e0ff926ac7c9de70","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1892.8072222222 +"https://github.com/jbfavre/python-protobix",2015-12-08 13:52:00,"b530a94669f1f3eac969db714534d0b60f4d46d4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0]",1,0,2,0,3133.4746064815 +"https://github.com/OISF/suricata-update",2017-11-02 13:09:12,"22e8e68f673604ca0616d025c326ac37b800d2a7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 3, 2, 42, 27, 4, 0, 0, 0, 2, 2, 0, 5, 0, 2, 3, 0, 0, 3, 4, 1, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,2073.1884490741 +"https://github.com/AmatCoder/mednaffe",2013-08-30 08:25:52,"ecb7d46ec97b25f89a7c8d9e9610c79a07c70fe2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 1, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3528.2947337963 +"https://github.com/intel/intel-vaapi-driver.git",2011-08-25 12:27:45,"eefea266a7ca3d5e56ebaccf63beeffce80c526a","[0, 6, 6, 0, 0, 9, 5, 4, 11, 0, 6, 4, 6, 1, 3, 7, 0, 3, 1, 2, 0, 2, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 2, 0, 0, 5, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,1,5083.2222916667 +"https://github.com/rvaser/thread_pool",2017-01-25 09:35:52,"7e9a54ba935287556ec062eff35b699c579552bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1629.2300810185 +"https://github.com/ivancrneto/pymox",2008-06-13 23:00:27,"e30806ab916a83feb79f03c8fb2612f5d2061263","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3025.5165856482 +"https://github.com/maxbachmann/python-Levenshtein",2022-09-27 01:40:50,"883cd341426e846954b6e144f8b40dbdfcc7158a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,378.9515509259 +"https://github.com/hashcat/hashcat.git",2015-12-04 14:47:52,"5065474b4e5ed59add2d5af6e2e9cf3857969fe3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 33, 49, 27, 71, 41, 47, 54, 83, 115, 35, 43, 35, 28, 14, 11, 7, 19, 27, 50, 56, 27, 52, 33, 46, 44, 1]","[12, 3, 2, 5, 21, 10, 12, 21, 28, 16, 7, 4, 7, 9, 5, 3, 1, 7, 1, 4, 10, 3, 7, 8, 7, 2, 0]",2,6,20,0,2915.0251851852 +"https://github.com/davesteele/gnome-gmail",2009-09-07 19:32:04,"eedd7f34f5eeb6e50d23fcbd28c9fc3a377e53b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 17, 4, 0, 2, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 1, 0]",1,3,5,0,5107.0565740741 +"https://github.com/enova/pgl_ddl_deploy.git",2017-05-01 14:03:19,"d3893f8b43af419470da3c412d013e590941cf56","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 8, 0, 0, 2, 0, 18, 10, 10, 0, 0, 0, 2, 6, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,5,0,2403.2563425926 +"https://github.com/landscapeio/dodgy",2013-12-25 12:22:20,"688efd79d37ad19c621f19544acabaa9584223a5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2642.9684259259 +"https://github.com/cffi/cffi.git",2005-06-07 20:29:29,"234abc3fd33688463e6087324529ee3ad3e4908a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 4, 10, 13, 1, 0, 2, 13, 2, 1, 4, 6, 6, 8, 5, 2, 3, 0, 0, 2, 10, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5610.8229166667 +"https://github.com/howardabrams/node-mocks-http",2012-02-18 07:26:28,"78369fba9328c10dc153133311aa88056fee3717","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,4315.2549074074 +"https://github.com/centreon/centreon-clib.git",2018-06-20 13:28:30,"03a786d4a32adcb8ed16a83bc505ace33ab7a8c9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,4179.8511458333 +"https://github.com/mkleehammer/pyodbc.git",2008-10-07 02:07:44,"c3f6b46d8a4f73722439b4755ef5df42adff81d9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 6, 5, 1, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,5503.0789814815 +"https://github.com/rclone/rclone.git",2012-11-18 17:32:31,"e9ae4f89a44b1cac8e83ede1572f15dace692c67","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 16, 2, 0, 3, 6, 5, 4, 8, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4043.6951851852 +"https://github.com/phingofficial/phing",2006-02-05 00:49:20,"4ced988e4b54a099e31f50ca96cf4a3fdaf8aac3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 8, 4, 0, 4, 3, 0, 0, 0, 4, 0, 3, 5, 2, 2, 4, 0, 0, 2, 2, 0, 2, 12, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5770.3881944445 +"https://github.com/mapserver/tinyows.git",2010-05-01 14:53:13,"36b2440d604198ec89992d04789e8d4899bd4f2a","[0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 2, 7, 18, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 4, 34, 0, 11, 4, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 5, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4838.9733680556 +"https://github.com/kodi-pvr/pvr.hdhomerun.git",2015-11-07 01:03:13,"98b0f93088eb516c56dc9ea10f29ffc19ff37aef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 11, 6, 0, 0, 2, 0, 2, 3, 1, 0, 0, 0, 4, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0,2925.247337963 +"https://gitlab.gnome.org/GNOME/gupnp-tools.git",2007-08-23 20:37:16,"4f52351c03e29d431e215ae649e4b8b4fe74d59b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 39, 23, 27, 30, 0, 0, 6, 25, 6, 14, 1, 2, 4, 0, 6, 0, 0, 12, 0, 3, 1, 22, 13, 25, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5784.080162037 +"https://gitlab.dune-project.org/core/dune-localfunctions",2008-10-20 21:03:28,"2f380291ac551cf908a8f5ddd390d9a731f3823f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 27, 0, 0, 6, 6, 3, 0, 3, 0, 4, 0, 3, 0, 0, 1, 2, 10, 7, 5, 5, 1, 4, 1, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,5515.0515046296 +"https://gitlab.com/LibreGames/jumpnbump",2002-02-13 15:52:05,"f3895b3660cd04a815f48450dae2b0e3c0d53279","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 20, 0, 0, 0, 3, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 12, 0, 0, 0, 9, 0, 0, 0, 12, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2024.9723263889 +"https://github.com/shsorbom/kcmsystemd-debian.git",2013-11-18 20:36:20,"a4356040a13297829bb73a1bd8caf270f4110751","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 14, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 13, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,684.1522685185 +"https://github.com/jarib/childprocess.git",2010-10-08 02:44:39,"178f4f1a4be9530d9a6b89e27c6f5a6c72e689fe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 21, 0, 0, 4, 1, 1, 2, 0, 4, 10, 1, 0, 1, 0, 0, 0, 10, 5, 0, 5, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4814.2096527778 +"https://github.com/state-machines/state_machines-activemodel",2014-04-29 20:59:30,"c78bba29d6a42cd5bc3fad578fa51dbd664d512e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3348.8396643519 +"https://github.com/ben-eb/colormin",2015-02-10 12:54:54,"a9194c86fb017f3b4a4d397564b82fee6816033f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2228.6048148148 +"https://github.com/OSGeo/PROJ.git",1999-03-18 16:34:52,"565a4bd035b9d4a83955808efef20f1d8dfa24cf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5782.0658101852 +"https://github.com/mllg/checkmate.git",2013-12-27 23:42:35,"eddb0f2ccec899d986ad27960872d55b62559762","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 5, 1, 4, 2, 0, 3, 10, 0, 3, 1, 14, 13, 7, 21, 11, 2, 0, 40, 14, 5, 28, 39, 13, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0]",2,2,3,0,3631.5784722222 +"https://github.com/keltia/dmarc-cat.git",2018-02-24 22:01:02,"9a3ef8d9efe9a980ed8842c923005bc74966b097","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 0, 0, 5, 3, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[5, 0, 0, 0, 0, 2, 3, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,1521.7803009259 +"https://github.com/syncthing/syncthing-gtk",2014-08-06 22:32:49,"d1e9e7e26b72a63b7f5f7b6b8dc0980710ed4daa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 26, 9, 3, 4, 9, 10, 14, 25, 10, 4, 0, 39, 33, 23, 68, 14, 24, 11, 4, 0, 23, 28, 30, 17, 15, 1]","[5, 2, 0, 1, 0, 0, 1, 2, 3, 0, 1, 0, 4, 3, 6, 13, 2, 2, 2, 0, 0, 2, 7, 3, 5, 3, 0]",2,5,11,0,2902.7344097222 +"https://github.com/libreswan/libreswan.git",2005-11-02 17:27:49,"6a3b72d55d831a275934773b40228809d9101eb2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 29, 60, 114, 21, 35, 3, 20, 0, 6, 10, 11, 4, 2, 2, 0, 3, 0, 9, 25, 21, 15, 12, 5, 1, 5, 1]","[1, 1, 4, 8, 4, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 4, 2, 1, 1, 0, 1, 0]",1,6,10,0,5780.1473263889 +"https://github.com/pyutilib/pyutilib",2010-02-12 03:23:53,"e7770cdb03801e3bf6144fd6eb79bec0eb4696ca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 3, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3833.6739467593 +"https://github.com/stewartsmith/libeatmydata.git",2007-11-27 04:46:08,"ec724d61613f431035fd2eaad8e8119f2e75e86e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5640.2884027778 +"https://codeberg.org/freedroid/freedroid-src.git",2007-11-28 14:50:01,"f1bdc9d1444db1823565adbf54b49af1e6083522","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 29, 45, 1, 2, 4, 2, 18, 31, 42, 7, 16, 7, 43, 0, 6, 1, 68, 54, 23, 29, 80, 91, 73, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,5650.9641203704 +"https://github.com/Yoshimi/yoshimi.git",2010-10-16 14:04:39,"45f9406c6b66b5f89cf2fb28b8c9badc59e9563b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 1, 2, 0, 0, 1, 2, 0, 1, 6, 5, 2, 0, 0, 0, 0, 0, 1, 1, 4, 3, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4804.103599537 +"https://github.com/pikepdf/pikepdf.git",2016-03-15 02:54:09,"e04dff53f90fa8e044c0fa6d1c352d7f4d336155","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 6, 4, 0, 0, 1, 1, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,2,0,2830.6889467593 +"https://github.com/13-37-org/infnoise.git",2014-09-28 09:39:20,"778d162f6f5703d68bbf2fc3eb5c6811c2146320","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 10, 20, 24, 12, 22, 10, 6, 5, 7, 5, 2, 3, 0, 2, 1, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,4,0,3061.3638078704 +"https://github.com/gssapi/gss-ntlmssp",2013-07-19 12:31:49,"978dc0d44b3ab9c0a80f3ec7b9dd95939f2b6181","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 11, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 9, 16, 0, 0, 0, 0, 2, 0, 0, 9, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3594.9212152778 +"https://github.com/Nuand/bladeRF.git",2013-02-19 04:11:39,"ce7d8a7ab2a13dd8a2ea6412e5e022073be82369","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 26, 13, 9, 0, 38, 4, 41, 22, 38, 28, 23, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0]",1,2,12,0,3942.8006481482 +"https://github.com/adah1972/libunibreak.git",2008-04-20 04:45:51,"bb5bb69fac0feb47fc7e06f3a432a1e3fbe7668c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 1, 3, 3, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5748.0207407407 +"https://github.com/conformal/spectrwm",2013-06-12 17:06:54,"be49c0e89319cc03b7119bac2604744bcdd26775","[0, 3, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 7, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 1, 2, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 4, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5428.7537962963 +"https://github.com/thp/pyotherside",2011-05-30 18:47:21,"1b0963a2d4702e0fff5885b21b5695a0d39edd83","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4575.2678703704 +"https://github.com/libgit2/libgit2.git",2010-11-06 23:31:08,"4b7483a285024937df9623c3543390e717e2338a","[0, 0, 0, 43, 7, 0, 0, 0, 3, 6, 0, 0, 2, 10, 0, 0, 0, 1, 2, 5, 0, 4, 0, 0, 10, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 9, 21, 15, 28, 14, 21, 2, 10, 8, 6, 9, 24, 20, 7, 9, 63, 2, 26, 36, 62, 48, 15, 17, 7, 10, 1]","[0, 0, 0, 1, 1, 1, 4, 0, 2, 0, 1, 0, 2, 5, 0, 0, 0, 0, 0, 0, 3, 2, 2, 7, 0, 6, 0]",5,4,25,0,5520.8953703704 +"https://github.com/nanomsg/nanomsg.git",2012-10-10 08:29:58,"62914b92d0d973bc5b1d6b692c3846bbf940fdc6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 26, 26, 14, 7, 16, 54, 36, 20, 5, 19, 27, 32, 22, 17, 33, 30, 14, 37, 28, 9, 28, 30, 29, 13, 6, 1]","[0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,8,0,4082.3897569445 +"https://github.com/nsf/termbox.git",2008-09-14 17:38:36,"c2a1bc8df8abc5c3e8a4050aaad8fd3383d6ea90","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4364.2203935185 +"https://code.ungleich.ch/ungleich-public/cdist",2010-09-19 12:36:20,"db178edafceec800f2b60dec1e0d99de684e3836","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 23, 0, 0, 0, 9, 8, 3, 0, 0, 12, 0, 0, 0, 0, 0, 32, 8, 1, 82, 34, 94, 213, 59, 114, 211, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 14, 1, 9, 9, 0]",1,4,5,0,4573.4811226852 +"https://github.com/yarrick/iodine.git",2006-06-23 08:54:47,"b320f6de5689bf2b5115aaf5c8b0fb40f5b56feb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 43, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 2, 0, 0, 1, 0, 11, 16, 4, 0, 3, 0, 0, 0, 0, 0, 0, 1, 16, 1, 7, 0, 0, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5593.1268634259 +"https://github.com/silnrsi/font-abyssinica",2019-03-18 22:44:32,"c2ae244b01c71b2b0ea69c19a2f6044746e6ced8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 10, 13, 12, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,1729.8640509259 +"https://github.com/iem-projects/ambix.git",2016-05-10 13:16:51,"c30730388b1ec188a24b1b7b3f82105a914d59e5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 5, 0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,2332.8963194445 +"https://github.com/confluentinc/confluent-kafka-python.git",2016-04-14 09:35:43,"7e04f4e3c2249bb4a3e73877719c1f50cb387d2f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 5, 8, 3, 10, 3, 0, 2, 0, 0, 0, 6, 0, 4, 3, 12, 0, 6, 0, 1, 3, 0, 0, 0, 1, 1]","[0, 0, 0, 1, 1, 3, 1, 0, 1, 0, 0, 0, 1, 0, 1, 2, 5, 0, 2, 0, 0, 2, 0, 0, 0, 0, 1]",1,4,12,0,2799.9781365741 +"https://github.com/MightyCreak/diffuse.git",2015-11-21 17:57:32,"ba7f8868fc20ca1582a5ab1927be5f6009a61c40","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2779.0936226852 +"https://github.com/jfhbrook/pyee",2011-07-16 23:23:07,"f525bbbdf2aeaa5fab4b919fd6dd4ca79282f70c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4518.1167361111 +"https://github.com/ekg/tabixpp.git",2011-05-18 13:44:58,"778e5c37c1b51aaf3832e82ee6cace27c6a50375","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4263.7660069445 +"https://github.com/olive-editor/olive",2018-06-24 22:47:00,"5c1b4cd479fda29ef7ad74e194d71f8a11d58aa6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 12, 4, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 15, 11, 21, 13, 10, 12, 15, 13, 15, 8, 10, 8, 9, 14, 29, 18, 9, 28, 26, 52, 45, 35, 14, 10, 35, 1]","[0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 6, 3, 2, 0, 1, 7, 0]",1,2,9,0,1943.7612384259 +"https://github.com/twekkel/htpdate",2021-11-28 15:42:10,"143364b71549f4b4c4af87795aa97af4174c5730","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 6, 6, 1, 6, 4, 8, 12, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,706.8257407407 +"https://github.com/jklimke/libcitygml.git",2012-10-01 09:32:54,"c9c90ddf610bfa24f7aa113b3d35b9349b046a4e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4063.0042476852 +"https://github.com/umanwizard/libeot.git",2020-01-24 21:16:32,"d6bacde5c96e4803b289449bd7f3ae87c2686018","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3660.8458101852 +"https://github.com/GoogleCloudPlatform/cloudsql-proxy.git",2015-09-13 00:17:18,"1053c4361dffaa5654eb58308094af9d11414f1d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,3012.7314930556 +"https://github.com/gpodder/podcastparser.git",2013-04-13 08:50:06,"019d60d3406d9e0c5c23be668ff078593264cdcf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3885.4088657407 +"https://github.com/django-treebeard/django-treebeard.git",2008-09-23 08:36:54,"2c5ca017b592d5ac723fa7d595317d7b6e401836","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 18, 7, 0, 2, 0, 6, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5493.911400463 +"https://github.com/memtest86plus/memtest86plus.git",2022-02-12 00:48:34,"c1bc395b4cd72fbc47d40751d3ba2d2c9815a540","[0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 15, 2, 0, 6, 0, 5, 25, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 14, 14, 11, 0, 19, 9, 12, 10, 23, 8, 11, 5, 19, 11, 2, 8, 0, 8, 0, 0, 8, 5, 6, 2, 0, 1]","[0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0,663.5358564815 +"https://github.com/eproxus/meck.git",2010-05-03 18:21:39,"539cbc883cf9c25f80759bc945418de57b29d775","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 7, 10, 1, 1, 4, 1, 0, 2, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,4901.9858333333 +"https://github.com/GNOME/msitools",2012-12-07 10:45:54,"e64ed93d4859a1b95b40e70256fff5945500d78d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 139, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[51, 0, 0, 0, 124, 64, 28, 6, 28, 7, 2, 3, 2, 1, 1, 3, 3, 13, 8, 2, 0, 0, 6, 3, 0, 1, 0]","[15, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,19,1,4016.1692361111 +"git://git.alsa-project.org/alsa-ucm-conf.git",2019-07-31 17:38:52,"77499a280888411f9e057b8b535dce3767211c49","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 73, 16, 0, 0, 2, 0, 11, 18, 1, 18, 11, 6, 0, 0, 0, 1, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0,1552.9167013889 +"https://github.com/FirefighterBlu3/python-pam",2014-08-03 16:54:37,"dbe2a9354181695b1e611e4e2bbdf340e8558cfe","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2926.9394907408 +"https://github.com/bobtfish/text-markdown.git",2006-08-29 20:22:05,"899f2fdaed605b0d4c71308a7dd77c67ad03210b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2874.5088194445 +"https://github.com/qwinff/qwinff",2011-10-16 05:43:11,"ce672687941f7fa9576ed7c1a8e8a28c2cd784c6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 29, 15, 41, 45, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[28, 9, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2,3333.9424189815 +"https://github.com/pear/Auth_SASL.git",2017-03-07 14:05:20,"afe4424ea2621ba6eb707b9d1085beebbfde6027","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,5614.3564699074 +"https://github.com/micahflee/torbrowser-launcher",2013-02-07 04:31:03,"a0fc944f2a3efea7d082b0b031e522cf96ec93f2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 36, 14, 11, 0, 0, 0, 5, 19, 12, 1, 8, 1, 1, 4, 0, 2, 0, 5, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0,3941.4624421296 +"https://github.com/skoblov-lab/genetic",2016-08-05 20:52:17,"c58c4486b061009cadcf772a0dbb36d87ac92bd3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1118.9616550926 +"https://github.com/un33k/django-ipware",2013-04-24 22:47:22,"dc9663c84fdb99096acdde4414a5ae6867960c3f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3876.7555324074 +"https://github.com/google/yapf.git",2015-03-18 20:36:07,"7d623455f45435ad351514dfd4abd064cac61aab","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 50, 51, 21, 32, 18, 16, 0, 3, 5, 3, 0, 6, 2, 5, 10, 9, 3, 6, 1, 1, 0, 4, 0, 11, 12, 1]","[4, 2, 8, 5, 12, 5, 1, 0, 0, 1, 1, 0, 3, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,3,19,0,3193.809224537 +"https://github.com/danieljprice/giza",2012-08-28 07:37:27,"906974b367d6176e9c58c32de5734917c3a6d7ad","[0, 16, 0, 5, 0, 0, 0, 0, 0, 4, 1, 11, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4755.9934837963 +"https://github.com/mvz/ruby-gir-ffi",2009-11-09 10:49:30,"d45997839d9c5433ef85fd045527f7832a4913db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 1, 0, 3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 8, 17, 8, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5437.5734375 +"https://github.com/KhronosGroup/OpenCL-Headers",2018-05-14 21:08:28,"de26592167b9fdea503885e40e8755393c56523d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,1,3748.1729398148 +"https://github.com/hzeller/gmrender-resurrect.git",2012-10-07 22:36:08,"be559dc7b23c32452d7721cc825b60f29240e95d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 34, 8, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3933.2407407407 +"https://github.com/chibisov/drf-extensions.git",2013-07-25 07:05:09,"16c4f5f0c18f8cd132ce6825d7bf1285d0fd50bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3758.3081018519 +"https://github.com/pure-data/deken",2015-04-24 07:10:02,"d2ca75d5bf8b7e82022450a1623d53c6f063e66f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 15, 19, 2, 14, 27, 34, 34, 29, 13, 14, 36, 3, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1]","[0, 0, 1, 0, 0, 0, 5, 7, 3, 1, 1, 5, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,3,4,0,3169.7776041667 +"https://github.com/cmusphinx/pocketsphinx",2006-06-05 03:56:31,"f739f5646c599dc63242cf5f3972aff40a3b3048","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 3, 7, 8, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 13, 8, 7, 22, 7, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5652.4787847222 +"https://github.com/johnkerl/miller.git",2015-05-03 23:00:37,"63cf4c42628ea859edb0745679589b9550055f9f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 34, 28, 27, 36, 14, 17, 5, 0, 13, 22, 34, 12, 6, 20, 49, 104, 97, 69, 74, 89, 61, 90, 56, 43, 45, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 6, 3, 11, 6, 2, 1, 0, 0, 0, 0]",1,2,12,0,3146.11875 +"https://github.com/storaged-project/libbytesize",2015-10-09 10:39:52,"fa2251d6e94a45a6c3bbbeabe9f9057c5765ce76","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2946.1484143519 +"https://github.com/libxsmm/libxsmm",2016-03-30 07:32:40,"61f09f3ea170c18700d95685a68dee17207c7a33","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2814.5005324074 +"https://github.com/readthedocs/recommonmark.git",2013-08-25 14:45:13,"21d5fab2ba53e357dc70e5ee8f139e5808001af3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2822.8469328704 +"https://github.com/LibreCat/Catmandu.git",2010-08-27 08:54:49,"9292a8b9b6693f44846fad00a400c045ae7a51f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 40, 14, 0, 0, 0, 0, 0, 7, 5, 13, 25, 11, 16, 27, 10, 10, 0, 6, 17, 8, 11, 4, 6, 2, 3, 1]","[0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 5, 0, 0, 0, 0, 5, 2, 2, 1, 0, 2, 0, 0]",2,2,2,0,4871.9356018519 +"https://github.com/puppetlabs/puppetlabs-postgresql.git",2012-04-19 22:37:18,"01c9cbeb7c3bd5c7bd067c5d7438df7d34027fbc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 2, 0, 1, 5, 1, 6, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 0, 1, 0, 4, 0]",1,2,10,0,4242.2840046296 +"https://github.com/google/fscrypt",2016-10-26 22:21:47,"331800d9bacecdcaca3518d7ffe000600b35cef2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2602.2166782407 +"https://github.com/az143/glimpse",2014-09-26 18:50:21,"f938dd150035f8887d53d3a76e04c5ea5151d0f6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3292.5989583333 +"https://github.com/evanw/node-source-map-support.git",2013-01-18 07:56:20,"c50758519f67ee47cc5e1ff7a17c543bc3242eed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 4, 2, 1, 0, 0, 0, 0, 4, 2, 2, 0, 0, 0, 0, 3, 0, 4, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]",1,1,6,0,3692.3183101852 +"https://github.com/lv2/sratom.git",2012-04-18 00:49:05,"c27d12eec50db41f1d0ffca8385891060e35338e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 11, 2, 4, 5, 1, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 6, 7, 0, 2, 0, 5, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4263.558912037 +"https://github.com/GauiStori/PyQwt3D",2016-10-22 13:41:37,"21958f37a351bd376fcbd70be19d71a202bf2acd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1540.4164930556 +"https://github.com/Masterminds/html5-php",2013-04-02 21:40:53,"42db622a7f8409571808f215081e64a22af41e2d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 68, 28, 17, 25, 1, 10, 11, 16, 3, 16, 5, 18, 0, 1, 1, 0, 0, 3, 0, 1, 0, 0, 7, 0, 7, 1]","[0, 3, 3, 2, 3, 0, 2, 0, 1, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0,3846.3884953704 +"https://github.com/yetist/lunar-date",2007-11-21 06:57:40,"003a59b9a33ef46a03d35d93d08989721b0a171d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 6, 3, 14, 0, 4, 3, 4, 1, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,5400.1525115741 +"https://github.com/linuxdeepin/deepin-music",2012-02-14 02:16:55,"0354725532139c397a1d0c3fb1f8b26c5da3f564","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 8, 5, 1, 6, 8, 14, 35, 11, 1, 10, 5, 1, 2, 3, 16, 25, 37, 28, 40, 37, 1, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,1,0,4315.2377893519 +"https://github.com/f-secure-foundry/tenshi",2014-09-30 20:11:24,"2e3cacd27e768e9428de650e62c6b1d5ce611b55","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3173.5105787037 +"https://salsa.debian.org/ruby-team/ruby-github-markup",2013-06-08 22:28:31,"12bdf2ffb8d10d094a3d14feab5804baf5b31a7f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3514.5048263889 +"https://github.com/brianmario/charlock_holmes",2011-08-23 23:04:06,"6e122a2ed484b00ff7eddff4fa48dabb87330a7b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 13, 10, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3398.8280902778 +"https://gitlab.gnome.org/GNOME/gnome-desktop.git",1998-02-10 21:22:19,"e745360fddfa92ae76b058dfa106918b83660350","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 1, 6, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 6, 16, 8, 8, 3, 0, 0, 2, 7, 12, 28, 6, 13, 19, 15, 8, 13, 5, 7, 1, 5, 7, 7, 14, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,39,0,5774.5479398148 +"https://github.com/kilobyte/memkind",2014-03-18 21:52:23,"274517603636f6b3ae838a2cecfcb5e8e719e4dd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[81, 67, 63, 14, 61, 16, 18, 15, 0, 1, 31, 11, 0, 11, 21, 19, 99, 26, 9, 8, 24, 10, 17, 27, 49, 1, 1]","[2, 2, 10, 0, 4, 1, 2, 1, 0, 0, 0, 1, 0, 1, 2, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,3,5,0,3438.6727199074 +"https://github.com/linuxdeepin/deepin-terminal.git",2019-05-17 09:07:10,"bf70075598c5fde4628153ff7f61e541e090c7e7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 7, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 1, 4, 1, 2, 5, 5, 2, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0,1696.4612037037 +"https://gitlab.gnome.org/GNOME/phodav.git",2014-01-22 20:32:10,"34b1885abe273b0b7a8bb62deca55d5b313eebb1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 10, 4, 0, 5, 2, 1, 1, 7, 4, 3, 20, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,7,0,3558.8712731482 +"https://github.com/vimalloc/flask-jwt-simple.git",2017-08-24 21:07:22,"ffadaf578fe6f40198a50f1067d9ccb425013366","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,1518.8651041667 +"https://github.com/breakfastquay/rubberband.git",2007-12-10 16:29:52,"a94f3f33577bf9d71166392febbfdf3cace6f1c8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2, 14, 5, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5683.900474537 +"https://github.com/MagicStack/httptools.git",2016-04-25 16:36:56,"cf864d941e4aede4231f79fcfe75b971ff79d16d","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2908.9019444445 +"https://github.com/mdbtools/mdbtools",2000-02-12 23:51:37,"30ab45dc35dbbb2ee349d2553ce4dda52729f317","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 5, 7, 17, 8, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4863.4037152778 +"https://github.com/tcolar/wmfrog",2013-09-06 03:54:54,"d0732d71873fe4ef6c421b343d79f17f8b9bf0ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4191.3952777778 +"https://github.com/lunarmodules/say.git",2012-09-06 20:01:32,"f25d51b206d382579cfe5d9499bd2008f720ca6c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[1, 1, 2, 2, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,3,4008.0407638889 +"https://github.com/kazu-yamamoto/pgpdump.git",2010-02-19 06:15:01,"0e639f7a17bd5e1bf3a2d9263005e77cd51f03ce","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4538.9134143519 +"https://github.com/processone/stun.git",2015-12-11 17:38:11,"7cd78019d7058e483a2ce5cc5074d85650802180","[0, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 8, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,2,1,3846.8886574074 +"https://github.com/rncbc/synthv1.git",2012-09-02 00:45:35,"a7892c4917b3aedf11b8f55399cb7384928ffaf2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 3, 2, 0, 1, 3, 4, 8, 12, 1, 8, 0, 14, 7, 4, 1, 1, 2, 3, 5, 4, 4, 5, 4, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4117.1360763889 +"https://github.com/Eqonomize/eqonomize.git",2016-06-13 11:31:26,"0b10002f8937c472c71768066791f304b6ad1a0c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 19, 18, 10, 0, 0, 0, 0, 10, 2, 6, 3, 6, 4, 1, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2736.8790046296 +"https://gitlab.freedesktop.org/mobile-broadband/libmbim.git",2013-08-14 13:37:31,"675542eff661caa733977d93051ada49b56e4c8f","[0, 0, 0, 0, 0, 0, 0, 10, 0, 37, 0, 0, 0, 34, 5, 10, 12, 14, 47, 0, 0, 1, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,4,0,3987.9549652778 +"https://github.com/exaexa/apulse-debian",2014-09-14 21:43:53,"ca9a34ff4907a1d3dfa7115b0c70a897a8b68368","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 3, 0, 0, 5, 1, 0, 4, 3, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2693.7106712963 +"https://github.com/jeancroy/fuzzaldrin-plus",2015-09-24 00:31:54,"d45eb8cb58ef179eb07e09e39a0598fee415d770","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 0, 1, 1, 7, 0, 2, 1, 0, 11, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0,751.1080902778 +"https://github.com/cseed/arachne-pnr.git",2015-05-27 08:13:45,"1f461be75fbdb0fd958f7531358820f6f0edd2e1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 3, 13, 21, 2, 0, 17, 1, 1, 9, 23, 13, 3, 0, 2, 3, 2, 0, 0, 3, 22, 6, 0, 0, 0, 1]","[1, 0, 2, 3, 1, 0, 0, 3, 0, 0, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,3,7,0,1523.5826388889 +"https://github.com/keis/base58",2015-04-07 09:18:25,"c16c7e60746eec885562e4c6778bd2f66c920b5e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0,3504.7240046296 +"https://github.com/Rykian/clockwork",2010-05-11 22:31:04,"596af5c614f9660d946a9b72339323e46a6699c4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4663.0759143519 +"https://github.com/eikenb/terminal-colors",2014-06-29 05:28:18,"5ad3cfbc293cc506a0de418d3b90eba58a05c75e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4692.3352777778 +"https://invent.kde.org/system/wacomtablet",2011-03-26 13:10:02,"2b1999d8621c5524021008ec7b1b28ccd8b91527","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 21, 1, 0, 0, 2, 1, 2, 2, 7, 0, 1, 2, 0, 1, 1, 1, 1, 0, 0, 1, 0, 3, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,4647.5475925926 +"https://github.com/ai/autoprefixer-rails/issues/new",2013-04-04 21:58:36,"b114dbd0c3482deef902d6e7d3ee876d9abd850d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 7, 6, 6, 4, 3, 7, 8, 3, 8, 15, 7, 10, 3, 15, 4, 14, 10, 3, 0, 6, 7, 5, 3, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,2746.3319791667 +"https://github.com/fordfrog/apgdiff",2012-09-16 00:31:55,"f855af56a7a97c1bade9508dd226a15b1d027640","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4911.7404398148 +"https://github.com/smuellerDD/jitterentropy-rngd",2017-05-18 22:41:01,"dd8e82657489be6e35a050db377108c6491b2ead","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2267.9794675926 +"https://github.com/htacg/tidy-html5",2011-11-17 02:58:38,"ff7a980d9de76329cd2c38fadeac9b7565de0b0f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 4, 4, 9, 9, 7, 7, 11, 3, 5, 0, 3, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0,3722.5229050926 +"https://github.com/syohex/emacs-git-messenger.git",2013-05-16 08:16:13,"de3096daeed4ac950851af441185b7b9d0653b9c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 15, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3062.6 +"https://github.com/ramnathv/htmlwidgets.git",2014-07-17 20:40:13,"9b39806e6dfb3105cd875aa7103190ba2c3f98ab","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 8, 46, 22, 2, 1, 0, 3, 2, 0, 0, 0, 0, 0, 2, 2, 2, 25, 8, 47, 37, 1, 0, 0, 0, 5, 1]","[0, 1, 10, 6, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 1, 0, 5, 2, 7, 11, 0, 0, 0, 0, 1, 0]",1,4,8,0,3428.7835185185 +"https://github.com/alif-type/amiri.git",2008-10-31 18:50:55,"cf68ff6a95082bc98c943792ac31abe857381b79","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5474.3578935185 +"https://github.com/savonet/ocaml-theora.git",2008-10-15 17:30:33,"0bb0ceba43dcab886d8e81c7c346a1f27c671e97","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5316.9970717593 +"https://github.com/kornelski/pngquant.git",2011-12-26 21:31:04,"74f5b43759234f741cb72aadb2a4a89cf0b112f9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0,4325.0383333333 +"https://github.com/AFLplusplus/AFLplusplus.git",2019-05-28 14:40:24,"f367728c4435670caf2e9cc5acad257e7766cc65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 8, 6, 11, 15, 22, 30, 28, 20, 13, 17, 4, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 0, 1, 2, 4, 3, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,5,17,0,1658.7534375 +"https://github.com/BioPP/bpp-core",2021-10-05 09:29:29,"fca2cd9cc7e41d044d226588e1c7861f656d8a96","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[8, 0, 0, 0, 1, 2, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,0,2,1,4797.1825925926 +"https://github.com/lucc/khard",2014-09-22 22:57:49,"3371cc01c7fbace1e6fe247db1137c5080164407","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 1, 1, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3364.3432523148 +"https://github.com/CDrummond/cantata",2011-11-27 15:24:05,"cb159b27533d31a18dfd3d0a9324517f96da2652","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[73, 100, 41, 64, 12, 50, 7, 71, 41, 35, 85, 54, 70, 83, 58, 29, 50, 41, 38, 23, 48, 29, 30, 19, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3748.1966782408 +"https://github.com/knowthelist/knowthelist",2014-05-16 16:45:33,"288e15aca63d0a4333982c8f304d0c5b372d6049","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 8, 20, 19, 11, 8, 20, 19, 11, 5, 16, 23, 7, 0, 19, 15, 13, 17, 15, 8, 4, 3, 0, 6, 3, 0, 0]","[1, 0, 2, 2, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 2, 1, 1, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0]",0,3,5,0,1682.080625 +"https://github.com/brack3t/django-braces.git",2012-03-02 20:16:29,"1f054d280ee2cbdf5c57bc6967d51ce960036371","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 13, 1, 0, 1, 0, 1, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0,4108.7193865741 +"https://github.com/gbarr/perl-Convert-ASN1.git",2000-05-03 12:24:42,"cdea6b4e90d89c945a4e7cc15697d63402c26856","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5538.4047453704 +"https://github.com/resurrecting-open-source-projects/scrot",2019-02-12 16:28:27,"3250e195fe7aab38b6ea09a45718280ff0301e3b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 31, 7, 5, 0, 2, 10, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 1, 0, 0]",1,2,5,0,1711.9000347222 +"https://github.com/trapexit/mergerfs",2014-03-24 15:43:21,"2b78be18f4fb39e4f72bd3019aa352acc5e7ede3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 3, 4, 12, 2, 2, 2, 4, 0, 1, 0, 1, 3, 1, 1, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3539.2512962963 +"https://github.com/libsndfile/sndfile-tools.git",2007-10-08 12:23:55,"ab4c9ce664f0e03fc31762513289aeb3b7540e9a","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 12, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5283.239212963 +"https://github.com/solnic/virtus.git",2011-04-02 16:10:47,"1c16bae504ea1065ec35b5db1d3fc0d43242eb3d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 6, 7, 33, 57, 0, 18, 27, 43, 25, 79, 67, 20, 7, 2, 7, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,3718.9197800926 +"https://github.com/intridea/multi_json",2010-06-13 17:09:59,"518c21ab299c500527491e6c049ab2229e22a805","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3679.9527430556 +"https://github.com/alexdalitz/dnsruby.git",2007-09-21 09:19:24,"b2777fbc25bbfee396b2a730c0b33a5a368dbc9a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 6, 15, 1, 2, 0, 5, 3, 4, 0, 0, 1, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5594.1314467593 +"https://github.com/jacktasia/dumb-jump.git",2015-11-18 21:29:17,"cc622b011afcb4f5bfd5ede579dd80009dfc1dad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 3, 5, 18, 30, 26, 19, 26, 8, 22, 12, 13, 12, 17, 8, 8, 12, 12, 8, 6, 4, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 2, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,6,0,2796.8254398148 +"https://github.com/pdepend/pdepend",2017-11-20 11:43:56,"64abe82fd651216a4c8f1d5555193e91f8c00ec8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 34, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 1]","[5, 9, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,1,1,5780.3265625 +"https://github.com/nixxcode/amsynth.git",2002-03-16 19:25:22,"1944e598363acc1ec39f69aa03dfe5f9e4d269fb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 0, 0, 3, 2, 0, 0, 4, 0, 0, 7, 23, 2, 0, 3, 2, 1, 4, 1, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5332.9271990741 +"https://github.com/jpadilla/pyjwt.git",2011-02-24 20:28:20,"ab8821fefa1c481ece410305d03a1f21c0b4a207","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0,4675.8973263889 +"https://github.com/h2o/h2o",2011-01-13 17:12:45,"f8769784e5469cfa0fd497030832364c3927c804","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 6, 1, 7, 0, 3, 19, 1, 0, 0, 1, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4716.5859490741 +"https://github.com/datawraith/ascii85gem",2009-02-17 17:02:48,"d3aaea468cfc5e320dbc601979603c19d6759385","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5104.9701851852 +"https://github.com/jonschlinkert/mixin-deep.git",2014-09-22 15:41:27,"5a058ff68c208e13ee9e55f9f7b4ce79f307536a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1736.2018171296 +"https://github.com/lxqt/lxqt-admin.git",2016-05-31 21:12:16,"0f9ab3a1d618222472526e3fb13efb2bcf7bdc2e","[0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 5, 2, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0,3455.4298611111 +"https://github.com/tpm2-software/tpm2-abrmd.git",2016-04-01 19:26:39,"80379fdf6a330900f566dec6b809f510d3dc26bd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 13, 10, 10, 6, 2, 20, 14, 6, 19, 6, 5, 0, 0, 0, 1, 4, 7, 0, 8, 6, 0, 0, 7, 2, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2473.8150231482 +"https://github.com/Intel-HLS/GKL.git",2016-05-16 14:15:10,"849a03755557798ac1351a9b5c3648fc7ca281ea","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 7, 0, 27, 10, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 8, 0, 37, 2, 1]","[3, 4, 3, 0, 14, 4, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0]",1,4,3,0,2649.0462268519 +"https://github.com/isaacs/pseudomap",2015-11-27 22:13:43,"821316ef5b2c53f4d6d40bfb21301f74fd0c21a3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2873.803599537 +"https://github.com/jammus/lastfm-node",2010-09-13 20:43:05,"24bcc1ced77ba8edec1eeecb30b0a11c6192429b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 2, 2, 10, 5, 6, 0, 24, 3, 4, 1, 0, 0, 0, 0, 0, 0, 16, 5, 0, 0, 0, 0, 0, 12, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4644.4506018519 +"https://gitlab.com/accounts-sso/telepathy-accounts-signon.git",2012-12-06 03:00:15,"99d19de22b9f2371c4ee1f47d1eb735943475c6b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,1,0,2553.5604166667 +"https://github.com/tweepy/tweepy.git",2009-07-05 19:24:56,"04709fb6e5cb73060a962e85099ae704ce7bad45","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 5, 2, 26, 36, 32, 7, 3, 4, 4, 13, 11, 14, 0, 37, 0, 7, 21, 3, 5, 1, 5, 34, 6, 0, 4, 1]","[0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,2,9,0,5164.9313194445 +"https://github.com/rra/pgp-sign",1998-11-26 05:00:12,"41c7a4a8d0d17ee8f00ea7a8995f5801e86a4bdf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2555.0956134259 +"https://gitlab.gnome.org/GNOME/gnome-music",2012-07-29 10:35:21,"12f63a47ecbbfd23b0a7300359fdb5f732a32eaf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 11, 22, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 2, 0, 0, 2, 4, 1, 0, 1, 2, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,11,0,4153.4241898148 +"https://gitlab.freedesktop.org/libinput/libinput",2013-11-12 21:37:20,"bd4db1c2a21fddd9b1135a41c5adaff3db0f8b3a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 2, 0, 19, 12, 20, 0, 9, 15, 14, 28, 10, 13, 7, 10, 8, 1, 0, 31, 5, 6, 11, 2, 18, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0,5537.9313078704 +"https://github.com/linuxdeepin/deepin-menu.git",2013-11-11 15:57:59,"51ccf3f74f478c5695bb3f7f0018d30c1f17f781","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[18, 38, 18, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,1,2256.3108333333 +"https://gitlab.gnome.org/GNOME/libgudev",2015-05-15 09:42:30,"7042a0a7fae9a3b76ef02e9532b0353515e53249","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,3057.7906828704 +"https://github.com/jupyter/nbformat",2015-04-09 01:46:25,"0762fbc4bbb2150944ed23b70dde4c23b30dc489","[4, 1, 0, 34, 7, 1, 5, 2, 6, 3, 1, 0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 5, 10, 9, 2]","[2, 1, 0, 2, 3, 0, 1, 2, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0]","[3, 2, 0, 0, 4, 2, 4, 0, 2, 0, 2, 0, 4, 2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0,4953.7747106482 +"https://gitlab.gnome.org/World/lollypop.git",2014-10-02 15:53:35,"d28a5d4c58bd19341c2891726eafd6d1444eda2d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[61, 111, 44, 111, 62, 19, 3, 119, 26, 22, 27, 13, 2, 25, 36, 10, 117, 12, 4, 71, 59, 61, 31, 75, 47, 40, 1]","[0, 0, 5, 0, 1, 2, 0, 3, 0, 2, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]",1,1,2,0,3225.2413541667 +"https://github.com/messageformat/Jed.git",2012-01-16 08:23:06,"e036859005c009a8df7b3867584713a23ef84bab","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1857.5029166667 +"https://github.com/shimmerproject/Bluebird",2011-02-18 18:46:53,"98b0f4b57a1c8939c77c03a4cc66d2392c4c487c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 6, 11, 3, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,2956.8580092593 +"https://github.com/coleifer/wtf-peewee",2011-09-01 15:21:04,"205377acdc2313dbad5d154dd2794fd360535f30","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 1, 2, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4437.0799652778 +"https://github.com/isaacs/once.git",2012-08-14 07:25:06,"139a136bd478b623850879140d8fec96147e7a3f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4074.419212963 +"https://gitlab.gnome.org/GNOME/gnome-disk-utility.git",2007-05-08 04:20:39,"2c46760544b4f6336ea94267b957fb729845d7c9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5743.8050694445 +"https://github.com/alols/xcape",2012-03-31 21:02:17,"7a396a4fac640638f02ec9b68c0f3bbe61e6f367","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0,2160.4542361111 +"https://github.com/kilobyte/ipmctl",2018-05-15 00:00:06,"ea2872684563c6e9be4d09080f993a8d3bb6169a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 29, 23, 32, 18, 15, 0, 47, 0, 1, 58, 32, 31, 22, 17, 6, 16, 18, 11, 0, 0, 47, 0, 32, 12, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,16,0,1854.5950810185 +"https://github.com/caml-pkcs11/caml-crush",2013-12-18 16:38:50,"bf1ced5628bfefbd3cb4ec69cbb745fb039a7f0b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 0, 2, 0, 0, 0, 5, 3, 3, 6, 4, 0, 7, 0, 0, 18, 1, 0, 0, 0, 6, 0, 1, 3, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3062.2642708333 +"https://github.com/latchset/custodia.git",2016-12-09 16:39:22,"e5332c993ac318fb262ac5819c60a757ac5342be","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 7, 8, 6, 10, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2105.2031134259 +"https://github.com/dsully/perl-crypt-cracklib.git",2010-07-20 21:00:26,"2358018e31adb576b9f4eec686d30d38df8ca6d3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1122.6671643519 +"https://github.com/ximion/appstream-generator",2016-02-21 22:21:32,"8951ab113ddfaf633ae1b93e3c3d7a38cbf27f69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 17, 7, 13, 35, 29, 4, 23, 35, 13, 2, 0, 17, 17, 1, 5, 0, 0, 3, 1, 4, 4, 22, 15, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,2,5,0,2846.9885185185 +"https://github.com/jupyter/jupyter_console",2015-04-09 21:58:56,"01911a59496d49002da76d73c83a00fd735f63e4","[3, 1, 0, 0, 5, 4, 0, 2, 2, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 2, 0, 0, 0, 10, 2, 10, 2]","[1, 1, 0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 0]","[1, 0, 1, 0, 2, 0, 2, 0, 5, 0, 0, 7, 2, 10, 0, 0, 0, 5, 0, 2, 10, 0, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 1, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0]",5,0,4,0,4679.6520833333 +"https://github.com/bucciarati/mpc123",2006-08-05 00:15:03,"7a414ec6e35b1e34dac506aea0bbb9ecd79d8160","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4095.7045717593 +"https://github.com/timvideos/HDMI2USB-mode-switch.git",2015-09-19 16:03:36,"e3c7c14f0120f3d40301dd5f92ca1e3fe4ceb1fa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,1539.4512152778 +"https://github.com/hamcrest/hamcrest-php.git",2011-08-30 16:28:24,"ece5e9b731efb036f7afd84155b18bd03442f829","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4488.7726157407 +"https://github.com/rails/arel",2007-12-30 19:35:44,"960bbcb3ce4a82cf4f031d1c6682ce4c1a04474d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 20, 7, 4, 1, 4, 11, 8, 2, 4, 12, 10, 0, 0, 17, 17, 0, 8, 17, 22, 12, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3724.6690277778 +"https://gitlab.gnome.org/gnome/gdm.git",1999-04-18 22:08:08,"48dfb0c6fc683eb0512074448bc4418ad8241e40","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 1, 0, 1, 0, 1, 0, 0, 1, 0, 2, 3, 4, 1, 9, 2, 2, 9, 2, 1, 8, 11, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,30,0,5764.0323842593 +"https://github.com/Pingus/pingus",2000-02-04 23:45:08,"0e80a5966856474f38235783f7928c69e76ea26b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 25, 9, 21, 20, 29, 6, 0, 0, 44, 10, 4, 22, 13, 5, 25, 10, 7, 38, 33, 32, 5, 17, 1, 0, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5009.1183796296 +"https://github.com/etingof/pysmi",2015-04-11 11:04:27,"ad7337ad5452804f959a1e60b2f9d5d8cd396e44","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 41, 14, 23, 11, 13, 1, 5, 1, 0, 3, 7, 9, 2, 0, 0, 2, 0, 1, 0, 0, 4, 0, 1, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1806.3306018519 +"https://github.com/admesh/python-admesh",2014-07-15 11:41:30,"0490492bbc466c08f272dd205ab9a1eeb36fd25a","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 7, 2, 0, 0, 0, 2, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1607.8702662037 +"https://github.com/schismtracker/schismtracker",2003-07-08 23:57:56,"6389808e2c266a5779a517c54bacb13bcc875919","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4666.6107291667 +"https://github.com/Xastir/Xastir.git",2002-02-02 03:19:52,"fa09e5594e8cc377bde8c290c38656a527321aa0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 20, 4, 6, 33, 12, 8, 26, 32, 52, 35, 49, 30, 30, 14, 10, 8, 39, 22, 36, 23, 15, 25, 40, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,7,0,5658.7705902778 +"https://github.com/tianon/cgroupfs-mount",2014-03-21 18:42:30,"eb97f747608968cc2c29a6dedf882705c6e02f57","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 10, 0, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2931.2437847222 +"https://github.com/onetrueawk/awk",2012-12-22 15:35:39,"87b94932e6f12ad16e9fc1af1a7b5b66ae9381e2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3992.553125 +"https://github.com/stumpwm/stumpwm.git",2003-09-13 21:01:16,"f56ea9b506cae8819fcd5295ff8bc3afc1da1905","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 1, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5783.5813078704 +"https://gitlab.gnome.org/GNOME/gnome-characters.git",2013-02-22 21:53:06,"2c33b8a6a428cb19acc48983a07a060391067589","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3895.2511805556 +"https://github.com/katajakasa/SDL_kitchensink",2016-01-04 02:33:59,"537ca31915603d7ed47ab4374a74058e340125c7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 38, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2883.83625 +"https://github.com/mate-desktop/marco.git",2011-12-02 02:52:01,"28a029a4990d2a84f9d6a0b890eba812ea503998","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,4,0,4344.2543981482 +"https://github.com/epinna/weevely3.git",2014-09-27 18:11:21,"032c061aea19fb302ae5254e438809045e41c0b3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[86, 41, 68, 27, 37, 19, 9, 6, 17, 3, 32, 0, 16, 0, 2, 34, 0, 0, 1, 2, 0, 0, 2, 0, 0, 15, 0]","[3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3185.5150578704 +"https://invent.kde.org/education/labplot.git",2008-03-03 10:50:16,"558afdbe9a38caee295e44fdb3f2e9e916c8aef8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 7, 1, 2, 4, 2, 0, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5763.6766435185 +"https://github.com/purcell/ibuffer-projectile.git",2014-12-29 20:50:36,"c736a211cf7a0d4b3cccec8687ba22aac66b1725","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3152.3891087963 +"https://github.com/OpenShot/libopenshot.git",2011-10-11 13:44:27,"161e8923afad20bae00fcdcea571af3d67301b8d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 8, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4380.4663773148 +"https://github.com/miguelgrinberg/python-engineio.git",2015-06-22 01:59:54,"4303b86e4f363e746957e6adecea303089e90f70","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 3, 1, 0, 2, 2, 2, 12, 5, 8, 2, 0, 3, 0, 2, 4, 2, 0, 2, 0, 3, 0, 3, 4, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,2,0,3095.8040625 +"https://github.com/icholy/ttygif.git",2010-08-22 17:16:14,"c4fd0f2bc69dba852526df3610f98d867ba5ab24","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3670.9607175926 +"https://github.com/luceneplusplus/LucenePlusPlus.git",2010-08-19 22:24:58,"2b1d647d73d9abe6b6b49d88c5cb2e4beb9eaf4c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 16, 3, 5, 3, 1, 1, 2, 9, 5, 3, 0, 0, 0, 0, 3, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4584.7652314815 +"https://github.com/pydanny/cached-property.git",2014-05-17 22:42:43,"7161ec8bf07e46aa08216e494a29d0428b7d988b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3487.9884837963 +"https://github.com/mqttjs/mqtt-packet",2014-07-26 12:57:10,"5efacaf07b8b241a88dbeba2ab56ccc520041463","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 2, 7, 15, 3, 4, 0, 0, 0, 0, 8, 0, 0, 6, 6, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0,3391.8497337963 +"https://github.com/lmj/lparallel",2011-10-22 14:48:24,"520441ad620764be3b68c688c3cdd483cda1831b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 10, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 3, 4, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2019.918599537 +"https://github.com/pgRouting/pgrouting.git",2007-05-15 05:05:03,"c7cbee6df17006494d85d5685c3a01a794b09e4b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 3, 0, 0, 1, 0, 0, 0, 0, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5779.2725 +"https://gitlab.xfce.org/panel-plugins/xfce4-xkb-plugin",2004-05-23 08:44:20,"198131826b14b4a8de6a8b8b7e5fc28a7221aad6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5629.9386805556 +"https://github.com/koehlma/pygtkspellcheck",2012-04-10 23:17:02,"d23125349868e391d43bc8fb8588f11892b3ef7d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 1, 31, 16, 21, 1, 5, 6, 24, 21, 0, 5, 3, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0,4478.3301851852 +"https://github.com/shoheik/Graph-D3.git",2013-04-13 02:17:23,"1a98dea29dde821f079e7a1b732261101bc6ee83","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1331.9675925926 +"https://github.com/dglent/meteo-qt.git",2014-10-18 07:50:09,"b02b276391baecd48fc51f7247659794799b3637","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 38, 8, 27, 2, 3, 2, 1, 2, 19, 1, 0, 3, 0, 1, 4, 0, 4, 0, 0, 0, 0, 0, 2, 9, 1]","[2, 0, 8, 3, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,7,0,3275.9305092593 +"https://github.com/darkk/redsocks.git",2008-08-18 20:27:14,"a1f4ccddd03d1c895e8804efb7fe7b3d974eddad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4174.7984027778 +"https://github.com/pydata/xarray",2013-09-30 17:21:10,"f6202cb597237e5ad78904771bcbc03e01f39b27","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 42, 11, 38, 50, 21, 6, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 12, 15, 4, 4, 10, 0]",2,4,5,0,3725.9331481482 +"https://github.com/johang/btfs",2015-07-26 08:37:22,"5f3f0c0d444679d9e1b378a9040fe251fa0486e6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 3, 0]",2,1,4,0,2774.3356481482 +"https://gitlab.com/larswirzenius/vmdb2.git",2017-02-26 16:13:54,"544805adcb8244e6bbe72befec09d69c627debf9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 16, 0, 11, 22, 0, 9, 0, 0, 0, 9, 11, 0, 16, 4, 11, 0, 0, 0, 3, 0, 11, 0, 0, 7, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2442.9266666667 +"https://github.com/mudge/re2.git",2010-07-24 13:49:13,"3f654a4dfc7bdcb18a421e20a8f0f5af918eb035","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 10, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4891.9840277778 +"https://github.com/JRaspass/Cache-Memcached-Fast.git",2007-12-06 10:07:27,"c05b1a429bb86babd602bafa99eeffad32ed9138","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[130, 73, 21, 1, 35, 53, 38, 3, 3, 2, 0, 2, 11, 14, 0, 0, 3, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5347.5680324074 +"https://github.com/intel/hyperscan.git",2015-10-19 22:13:35,"904e436f11ed1197a1192b421ab7278975dce169","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 18, 0, 32, 5, 0, 14, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,2738.472962963 +"https://gitlab.gnome.org/tuxor1337/hidetopbar",2012-11-22 18:20:39,"62d39377dd7a081d8948ebb45f860b7c9a314793","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 4, 0, 3, 5, 0, 0, 0, 0, 1, 13, 0, 2, 3, 1, 2, 0, 0, 0, 5, 1, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]",1,3,4,0,3843.6346064815 +"https://github.com/dosfstools/dosfstools.git",2013-01-23 11:46:45,"ba6774ae1dd5199a733dfaeaf438dff095284de7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[101, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 1, 20, 1, 2, 0, 0, 2, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,30,0,3911.4083101852 +"https://github.com/txt2tags/txt2tags.git",2019-12-17 21:59:46,"2aadebd414dd85b67f2c0a9f7f7d6032ce661c6d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5549.6046296296 +"https://github.com/topfunky/gruff",2008-03-11 22:10:13,"b5788a43b0d9714ed2e53dfa138d41c22ea4649c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5638.6255555556 +"https://github.com/01org/libyami.git",2013-09-09 16:52:04,"0964cbafc01ee529b7fa53013170cc61c4e81fb6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 0, 14]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0,3727.7229398148 +"https://github.com/Xaviju/inkscape-open-symbols",2015-02-25 23:17:06,"cec5fd2fd20e3ff2fdf616170fe8ca4cdeaafea6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,7,0,2971.3217939815 +"https://github.com/Debian/debiman.git",2017-01-06 15:11:22,"46fd41016de5adf921326141eb7c1a047b997478","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 75, 31, 27, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 4, 4, 1, 1, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2469.6214583333 +"https://github.com/tbird20d/grabserial",2013-12-16 23:09:47,"02077ab2a63beabcbd7114998b808aaf90362d1a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,0,3634.0012152778 +"https://github.com/google/jimfs.git",2013-09-08 05:09:27,"b12009d0b8ecf6725d50cf9226fd232c0aff12c8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 11, 4, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0]","[32, 29, 16, 17, 19, 27, 14, 14, 9, 5, 0, 0, 9, 9, 2, 0, 0, 0, 0, 12, 7, 2, 2, 0, 5, 0, 1]","[0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0]",1,1,1,1,3771.606712963 +"https://github.com/williamh/espeakup",2008-07-28 06:23:43,"4e3bbdb0b02eb1f12c087909e6437a31a9c60d7b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 3, 14, 0, 7, 5, 0, 0, 5, 5, 7, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4725.7581134259 +"https://github.com/rrthomas/mmv.git",2022-02-27 23:07:44,"90026621b4cbabc4b29c112a515d50825a8a0500","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,971.7580902778 +"https://github.com/puppetlabs/clj-kitchensink.git",2013-10-28 23:10:22,"ba53c060312bbc36fdc4003d2f413a78ece53bbc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 13, 9, 20, 6, 3, 1, 8, 4, 0, 15, 0, 1, 5, 7, 2, 12, 5, 0, 5, 0, 0, 6, 0, 14, 5, 0]","[0, 6, 3, 8, 3, 0, 0, 2, 1, 0, 3, 0, 0, 2, 1, 2, 2, 2, 0, 1, 0, 0, 1, 0, 3, 2, 0]",1,5,12,0,3697.8495138889 +"https://github.com/thoughtbot/factory_girl.git",2010-06-09 15:42:48,"dd737af03e6f626403c87aeae516940bf80535c9","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 1, 0, 1, 0, 6, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,2,0,4913.9169675926 +"https://git.launchpad.net/gmult",2008-04-15 05:23:34,"f13a4f8e618894ee4c0d6d28c1aa89f992870bd7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 0, 0, 0, 0, 0, 8, 8, 0, 12, 4, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0,5492.3224652778 +"https://gitlab.com/camlspotter/camlimages.git",2010-05-03 14:37:01,"79f2d677749f292d3f022789d87c67e225399fab","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 8, 5, 0, 0, 2, 0, 0, 0, 3, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4968.0932638889 +"https://github.com/edmonds/ifupdown-multi",2013-09-18 01:32:53,"e715f53c3d9f9ee91b8a56b1ba124018c0f8246e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2598.1821759259 +"https://github.com/DaveGamble/cJSON.git",2011-08-22 04:43:38,"fc0df31a18b6acdcd01a4507060287097a50b4f4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4334.9435300926 +"https://github.com/felixge/node-dirty.git",2010-01-12 15:17:51,"bf46237bf9d63019287e1d4395a61c9823e9d078","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 5, 0, 0, 0, 0, 14, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4940.3282175926 +"https://github.com/edenhill/kcat",2014-03-30 08:58:25,"b81469f12dd3f06d5f0e3eb98b2cb75d1fb6a731","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3514.9895486111 +"https://github.com/flot/flot",2007-12-03 19:54:22,"87390ae7fe343764d30203d233992427afdd4dc6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 14, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5632.0385300926 +"https://github.com/squizlabs/PHP_CodeSniffer",2011-11-03 22:18:45,"6f41fcd0ded363336e238815d3d826ded137bd44","[0, 1, 0, 0, 0, 1, 0, 0, 0, 4, 1, 0, 1, 3, 0, 0, 0, 0, 4, 4, 1, 0, 3, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 6, 13, 6, 0, 1, 2, 0, 0, 13, 1, 8, 1, 5, 3, 8, 0, 1, 3, 0, 9, 0, 4, 3, 3, 4, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 1, 0, 0, 0]",0,1,10,0,5773.4666666667 +"https://github.com/csound/csound_pd",2018-01-19 13:20:22,"5082f5035b94af58dd4a8cf1ab17609b3b46fcf3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1,5151.5544791667 +"https://github.com/anthon38/gmailfeed.git",2014-12-20 14:59:18,"f2a730ff98b25ce293c078b1232ffac78de96ab2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 1, 4, 1, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2727.0607638889 +"https://github.com/supermihi/pytaglib",2011-08-26 23:23:48,"2ef173461952c04285409697e34fb31609353451","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4465.748599537 +"https://github.com/strengejacke/sjlabelled",2017-05-30 19:24:32,"ea313d08a9b43e09d532599f06df43c240e0474e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 1, 2, 1, 1, 0, 0, 0, 2, 0, 0, 1, 0, 2, 3, 1, 4, 4, 1, 0, 0, 11, 1, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,0,0,1972.0379861111 +"https://gitlab.com/yawning/obfs4.git",2014-05-09 10:23:58,"ef38b844f9989dff25f553b583aeafc411dd100e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 15, 16, 5, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 5, 5, 7, 3, 0, 2, 2, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3442.9295833333 +"https://github.com/chocolate-doom/chocolate-doom.git",2005-07-23 16:54:24,"bbe2bfe4df3709bee31ef3eeac45fd3be7f72671","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 10, 1, 1, 10, 30, 11, 17, 18, 22, 28, 23, 4, 4, 0, 1, 0, 0, 0, 0, 0, 5, 22, 38, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5606.8747569445 +"https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb",2013-07-24 14:45:26,"0c3338a30dfb35d19ef26d3b36e087f5b4ad1388","[13, 28, 25, 25, 99, 147, 103, 43, 38, 35, 20, 29, 25, 16, 0, 11, 21, 41, 30, 16, 26, 19, 23, 17, 10, 27, 2]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 18, 0, 1, 9, 10, 6, 14, 11, 4, 3, 7, 8, 5, 5, 4, 9, 11, 10, 9, 14, 0, 0, 0, 20, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2,4046.8698842593 +"https://github.com/mfontanini/libtins.git",2013-01-28 20:57:43,"2a1a28c3fbb42ff3d5198da11493b7f779045ab0","[7, 14, 7, 11, 3, 9, 5, 0, 0, 10, 5, 9, 0, 0, 0, 0, 22, 12, 8, 1, 0, 0, 0, 0, 5, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 6, 8, 3, 3, 11, 22, 15, 3, 0, 0, 3, 12, 5, 1, 1, 0, 1, 2, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,0,2,0,4422.9672569445 +"https://github.com/cherti/mailexporter",2015-08-08 17:34:58,"d86c5f6f8feb2f13064ec6e2bd1073d3411de168","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 2, 0, 3, 15, 2, 1, 0, 0, 0, 2, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,2367.3820486111 +"https://github.com/3rd-Eden/FlashPolicyFileServer",2011-05-31 21:58:54,"70d9bd6243f68e1fcfae5203aa5c741cd5803f82","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0,2142.8337037037 +"https://github.com/rcsb/mmtf-java.git",2016-03-18 13:30:29,"148b2f20524f4b91b95eaaa50211d1d0be42b84a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[57, 62, 65, 62, 43, 8, 2, 4, 5, 29, 29, 1, 10, 2, 0, 12, 0, 0, 0, 11, 11, 13, 0, 13, 0, 4, 0]","[3, 12, 3, 2, 5, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 3, 0, 1, 0, 1, 0]",1,3,4,1,2412.8476967593 +"https://github.com/iustin/mt-st",2015-05-16 15:26:03,"fcb4fbe0d1dd49ccda6b7421f007b5b41c0ef4d1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0,3093.7365972222 +"https://gitlab.gnome.org/GNOME/polari.git",2017-11-02 02:44:44,"7df628dde8115871dfa6da9446e00da93dc303cc","[1, 3, 0, 4, 1, 1, 8, 3, 0, 3, 8, 12, 3, 4, 28, 8, 9, 6, 9, 10, 2, 6, 1, 1, 7, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 19, 6, 1, 4, 15, 2, 1, 0, 1, 1, 2, 2, 13, 2, 13, 16, 9, 6, 5, 3, 0, 1, 1, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",15,0,13,0,3769.3740625 +"https://github.com/stan-dev/rstan",2013-05-23 01:47:02,"9a7b769ac7de9361846019ff20fe34ab763cf803","[1, 22, 13, 8, 2, 6, 3, 5, 4, 4, 9, 6, 2, 6, 31, 17, 5, 1, 7, 13, 20, 15, 4, 9, 6, 6, 2]","[0, 11, 9, 4, 2, 5, 0, 3, 2, 4, 5, 4, 0, 2, 17, 9, 1, 1, 3, 10, 13, 7, 1, 6, 2, 4, 0]","[38, 9, 6, 22, 5, 1, 10, 1, 3, 6, 4, 1, 1, 7, 2, 4, 7, 5, 1, 0, 15, 4, 9, 0, 0, 0, 0]","[10, 4, 0, 5, 2, 0, 1, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 1, 1, 0, 0, 0, 0]",8,2,3,5,4456.9383680556 +"https://github.com/Keruspe/GPaste",2011-01-18 20:42:01,"9c4dd7c0b60875bc023e26a4873385cbf43e3f3e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 52, 51, 19, 47, 22, 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 25, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4709.6430092593 +"https://github.com/jawnsy/Math-Random-ISAAC-XS.git",2009-04-07 00:25:30,"86bf601b0d955086395a7f02a9761f910fc66acf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 12, 1, 2, 7, 0, 0, 1, 2, 0, 0, 0, 0, 0, 8, 3, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2412.8853703704 +"https://github.com/nichtich/Catmandu-Importer-getJSON.git",2014-01-21 10:58:10,"843b72f4170286ebd040edaa205073acf066ae5d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2053.8504513889 +"https://github.com/mrash/fwknop.git",2008-11-28 00:57:59,"0cdcbddf0d9f4dba786296288aa8f5c84ef3e413","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 1, 7, 16, 2, 0, 0, 11, 7, 6, 4, 2, 2, 1, 3, 1, 1, 0, 2, 2, 0, 3, 1, 2, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5311.0505324074 +"https://gitlab.freedesktop.org/hadess/iio-sensor-proxy",2014-07-09 13:57:16,"1e8ef1a116556604d6c60eaaf8ed634ef54f0e2b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,3422.2842361111 +"https://github.com/williamh/speechd-up.git",2004-01-22 21:30:03,"d519a2abb5d069c503e14b4e9dfc1a5498d5b9f7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1059.3273726852 +"https://github.com/libpwquality/libpwquality.git",2011-09-16 17:02:43,"e745294c1839de3b0886c6cbe5d8601c56dd3dcf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 4, 0, 0, 0, 2, 9, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4429.9063773148 +"https://github.com/hughsie/libjcat.git",2020-02-27 18:10:10,"f6003d8a7bda4f361282db617ccaf795f304920b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 6, 0, 2, 7, 2, 5, 2, 2, 0, 0, 0, 1, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,1373.0888425926 +"https://github.com/P-H-C/phc-winner-argon2",2015-10-04 08:25:27,"72d0a2dc2a98e04aa52634b53fbb234ae6cd09d8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 58, 46, 52, 59, 12, 3, 8, 12, 5, 0, 7, 6, 11, 16, 19, 12, 11, 6, 33, 6, 8, 13, 5, 8, 6, 1]","[0, 3, 1, 1, 13, 5, 0, 1, 1, 0, 0, 1, 3, 5, 7, 6, 4, 3, 2, 3, 3, 2, 6, 0, 1, 3, 1]",1,7,32,0,2090.9970833333 +"https://github.com/kodi-pvr/pvr.iptvsimple.git",2015-02-24 16:23:03,"5f3455eb613052d33d9958a6a78a9524b6357aaa","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 3, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 2, 17, 2, 0, 3, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 2, 1, 1, 0]","[0, 3, 1, 5, 1, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",6,4,7,0,3805.7589236111 +"https://github.com/systemd/python-systemd",2012-06-25 23:58:29,"7bcd8598958496d67dada85ab58119a7528b95d3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 13, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3925.6328356482 +"https://github.com/easystats/parameters.git",2019-02-09 04:17:43,"5417f314a36dfee79b133defe48547edd2e203e7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 16, 16, 20, 2, 3, 1, 2, 8, 9, 12, 16, 17, 2, 19, 29, 19, 0, 24, 15, 2, 5, 24, 23, 8, 56, 1]","[5, 4, 4, 2, 1, 0, 0, 1, 0, 2, 1, 1, 3, 0, 2, 2, 2, 0, 2, 4, 1, 0, 2, 5, 1, 7, 0]",1,3,2,0,1766.2581018519 +"https://github.com/webpy/webpy.git",2007-12-24 15:20:02,"dd6e1af5451243b26009cfbea72b9968eec69cf7","[1, 0, 0, 2, 1, 0, 3, 3, 2, 1, 2, 5, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 3, 15, 4, 2, 2, 1, 0, 4, 2, 5, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,5751.592037037 +"https://github.com/nichtich/Pandoc-Elements.git",2014-10-23 19:34:21,"c018b7cf5e1e7960e968d73ad9e05f4a05f76e6f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2600.5557175926 +"https://github.com/jaqx0r/filtergen",2004-06-09 01:40:18,"ab5e8d6ac02352b83eefbf531cd57d882013cd06","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 3, 0, 5, 0, 0, 0, 0, 0, 24, 0, 1, 0, 0, 0, 0, 0, 20, 5, 21, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0]",1,1,1,0,4988.9503125 +"https://github.com/mate-desktop/python-caja.git",2012-01-13 22:18:04,"ca0a8f4d6cc24707bc07c3013bff321e2f0c24fd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4326.7211342593 +"https://github.com/njh/twolame",2005-04-15 01:10:16,"5f3700de03bdf33884411af90275dab92fa11403","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5003.7664467593 +"https://github.com/mate-desktop/caja-actions",2012-03-17 23:09:29,"ac7397db52e1e4ed447bbe0bc7b250570a20b898","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,4195.368599537 +"https://github.com/xmendez/wfuzz.git",2014-10-22 21:23:49,"221fe3e1fbd5a6df8c57b5ac03ec8abfb9277a3b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 10, 10, 6, 1, 0, 0, 1, 0, 0, 0, 0, 1, 6, 8, 13, 14, 8, 0, 9, 4, 12, 3, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0]",2,3,6,0,3000.7348148148 +"https://github.com/PyCQA/pylint-plugin-utils.git",2013-10-05 06:47:06,"aaa393e8a77b8329faff65d7c48b29033d695824","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3719.6033912037 +"https://salsa.debian.org/emacsen-team/magithub",2016-09-16 04:35:12,"9de8c157fce3628b5b15a70a5ccdee592185e37c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[96, 38, 6, 31, 2, 2, 1, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 22, 5, 0, 0, 0, 0]","[4, 7, 1, 3, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,8,0,1074.2872569445 +"https://gitlab.com/compiz/compiz-core.git",2006-02-09 06:03:09,"9959c2b13ded64a5e66359a8097250dc9d87fc1c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 7, 14, 12, 13, 4, 17, 17, 26, 19, 24, 12, 18, 13, 14, 15, 7, 8, 0, 28, 6, 15, 38, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0]",2,2,6,0,5514.1350925926 +"https://gitlab.gnome.org/GNOME/cantarell-fonts.git",2010-11-05 05:42:09,"da84af9ea68dc27b939992888a6859c596db1969","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 20, 0, 1, 0, 0, 0, 7, 9, 0, 3, 5, 4, 4, 32, 3, 0, 20, 1, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,4785.5285185185 +"https://github.com/joewing/jwm",2005-09-05 19:01:43,"fec2cba77c3fd7b03208c176fdc158171358f2ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 14, 2, 7, 13, 3, 10, 3, 25, 16, 0, 0, 0, 0, 0, 4, 6, 26, 0, 0, 10, 1, 0, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5370.4985648148 +"https://github.com/yappo/p5-String-Diff.git",2008-10-23 02:14:41,"605d3e56c68d6ff500d469b414b6926f1213b6ff","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2495.2807060185 +"https://github.com/bneijt/ccbuild.git",2006-07-21 13:22:22,"967b3051e4fe51372514bb68afd64144bfb904ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4764.8878703704 +"https://github.com/gpodder/mygpoclient",2010-01-17 22:01:58,"a5c655881f02f064837fc3b76f054c2674196c6b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 1, 2, 1, 0, 1, 0, 3, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4565.949837963 +"https://github.com/x90skysn3k/brutespray",2017-04-01 02:00:19,"f637ea3fc2f3ff7111c81acb317505608fc66758","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 4, 22, 1, 3, 27, 13, 1, 1, 1, 0, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,4,0,2174.873599537 +"https://github.com/Libvisual/libvisual.git",2007-10-24 21:53:00,"bff24ac0f772b61ec28bcf247ea1edbc0dbeb3c0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5044.5234027778 +"https://github.com/ericflo/django-pagination",2008-05-29 02:32:45,"587bdd45aceb2d66bf91d5ea611d939ace8b9c55","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 1, 0, 1, 0, 7, 1, 0, 1, 0, 2, 0, 5, 2, 0, 1, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,3284.865787037 +"https://github.com/mikeal/tunnel-agent",2013-04-21 11:08:06,"cf2a352a751c4106944444f4c50dfd739dcf312d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1,1464.1568634259 +"https://github.com/Fluidsynth/fluidsynth.git",2003-03-11 16:56:45,"b2a5d37109b7c6fdf8d7496b3e09421e124b875d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 4, 4, 5, 0, 1, 0, 0, 2, 0, 1, 1, 3, 2, 1, 0, 0, 1, 0, 0, 0, 0, 3, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5564.4887152778 +"https://github.com/gosa-project/gosa-plugins-netgroups",2017-12-15 08:09:57,"52ccec02b66b0ae471f722508b2ea52de93802a9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1422.7270023148 +"https://github.com/gvvaughan/lyaml",2013-03-17 12:54:02,"b7d82cff378ff8e3e75e87bc2d94fb6cf74feaeb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3607.2911111111 +"https://gitlab.com/jas/libntlm",2002-10-01 02:36:53,"adcf55e477ba092befff3be9473a90b8080aa769","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 10, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5374.1892592593 +"https://github.com/igrigorik/em-synchrony",2010-03-17 01:45:08,"036e1d5b6caf3d5827ed78ff70ad0419afa487bf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 1, 0, 0, 9, 0, 0, 2, 0, 0, 1, 0, 1, 1, 2, 0, 2, 0, 1, 1, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,6,0,2910.8221180556 +"https://github.com/kitone/subtitleeditor",2008-02-05 13:17:58,"6138789ae55172b7d9de3a96ce54a448844cb3bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 5, 0, 1, 0, 12, 15, 0, 4, 3, 2, 1, 6, 20, 6, 6, 3, 0, 9, 9, 6, 4, 1, 6, 7, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5679.7465856482 +"https://github.com/alexdantas/pacman4console.debian",2013-05-28 18:52:41,"bf527c534188bc38934d62d86343a03da3995b45","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,442.2178819444 +"https://github.com/mvidner/ruby-dbus",2007-02-22 14:49:56,"7685ea7c2966d9949bddac1ffd440d11890e5576","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4746.8070601852 +"https://github.com/trackballs/trackballs.git",2017-04-30 14:37:50,"3744bb64ad2b66019c33521d58b46e6915eba79e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 10, 15, 13, 25, 25, 6, 21, 4, 0, 0, 3, 2, 0, 1, 4, 0, 1, 4, 1, 3, 1, 0, 1, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,2063.1770717593 +"https://github.com/Ranks/emojione",2014-09-01 18:02:43,"4bb99dac1e372e170b7bece1ede669a5070a8f4a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[59, 65, 56, 40, 8, 2, 2, 2, 8, 1, 0, 1, 0, 6, 1, 5, 0, 0, 3, 1, 0, 0, 2, 0, 0, 0, 1]","[6, 14, 10, 9, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1]",2,4,19,1,1788.2746759259 +"https://github.com/weiss/nsca-ng.git",2013-02-08 20:38:00,"c1af9968c9d2a7926b1e412b5cdb898bd68fa938","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 15, 11, 14, 5, 3, 1, 0, 9, 6, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 0, 0, 4, 0, 8, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3817.9714236111 +"https://github.com/major/MySQLTuner-perl",2019-10-01 23:36:56,"53876a69dc533c27dc8f699685243f9d258b54c4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4651.9533217593 +"https://github.com/juliangruber/constants-browserify",2013-07-10 15:37:58,"f9d5f2dd8185e165054c031ca7c6b7b7500e346f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3669.6149189815 +"https://github.com/grobian/html2text",2020-02-24 16:15:40,"c8b579cac0d9d4e45e37fa1702fbd130b98b4305","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 6, 0, 8, 2, 21, 0, 2, 5, 0, 4, 0, 0, 5, 3, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,4,0,1388.0924421296 +"https://github.com/rcairo/rcairo",2004-09-01 15:29:25,"24ef6d4df921c97293e7efd872f977f2967a5d57","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5677.5943055556 +"https://github.com/lxqt/lxqt-panel.git",2016-09-07 16:14:48,"46ecc301febd0a2dae4f96d05912e936cfe3488d","[3, 0, 1, 6, 14, 8, 5, 7, 2, 3, 0, 4, 2, 0, 1, 6, 2, 4, 2, 1, 0, 2, 1, 2, 2, 3, 2]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 1, 1, 0, 1, 0, 2, 3, 0, 1, 1, 5, 0, 1, 1, 3, 0, 5, 1, 3, 0, 2, 0, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,7,0,4797.1699421296 +"https://github.com/Unidata/cftime",2016-11-08 23:54:32,"aea9c66fc24de2aaa57ecd162030ab5dc1e2142c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 10, 19, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,1,1,5698.2503472222 +"https://github.com/ocamllabs/ocaml-ctypes.git",2013-04-30 15:00:09,"d535b614e55fdac6a9565bcac26417b3e3495f49","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 24, 46, 13, 66, 22, 3, 1, 11, 4, 9, 0, 6, 2, 36, 22, 1, 3, 14, 0, 3, 0, 1, 1, 18, 11, 1]","[0, 1, 6, 1, 4, 0, 0, 0, 2, 1, 2, 0, 4, 0, 5, 6, 0, 1, 3, 0, 1, 0, 0, 0, 0, 2, 0]",1,3,6,0,3744.7873032407 +"https://github.com/fent/node-ytdl-core.git",2012-07-16 22:58:43,"e79fdc4c72c55b6c5221032b8ec40186f7154ae9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4096.004525463 +"https://github.com/esheldon/fitsio",2011-09-12 05:39:11,"fb34e1e167accc35af76c8df5ff5190627d1b6ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[75, 61, 19, 24, 16, 2, 3, 2, 0, 3, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1]","[2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4439.4105671296 +"https://github.com/jaap-karssenberg/zim-desktop-wiki.git",2008-09-22 21:46:06,"89cbf169e76d834515cb8a8385654323222ecee0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 3, 2, 1, 0, 2, 4, 7, 5, 1, 4, 3, 2, 1, 1, 1, 1, 3, 1, 2, 0, 1, 4, 4, 5, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",2,1,1,0,5538.0760532407 +"https://github.com/brunoos/luasec",2012-05-30 17:26:40,"0bae6dedd9ee7fc2909149aa1ffebe1ca7a47219","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4110.1133449074 +"https://github.com/rabbitvcs/rabbitvcs.git",2008-06-20 09:20:20,"741959d3f2c711784460a2c64eb3d18cc8a29f90","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5506.5331481482 +"https://github.com/bhollis/maruku",2010-03-03 04:56:07,"77f4a7531ad5dddc03dd9bc5321431c87d6b4793","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3523.0504282407 +"https://github.com/Backblaze/B2_Command_Line_Tool",2015-11-16 18:44:35,"4fd290c0d4b4b252c749898a373beaca7d60fbad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 6, 16, 39, 27, 17, 9, 19, 5, 1, 37, 10, 22, 77, 30, 18, 46, 36, 41, 47, 35, 17, 20, 0]","[1, 0, 1, 2, 1, 2, 9, 9, 7, 2, 5, 1, 0, 8, 2, 5, 10, 5, 0, 9, 11, 6, 9, 5, 2, 6, 0]",1,4,14,0,2942.6175925926 +"https://gitlab.com/ppentchev/feature-check",2018-04-13 07:29:14,"aec200c41b5b3e1f436172a66c322cfbae421a8b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 5, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,1961.6795023148 +"https://github.com/lv2/suil.git",2011-02-22 04:13:05,"b2a6120d19163cdca60565d3c26d71cf95d97230","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 0, 7, 5, 1, 0, 2, 6, 3, 0, 1, 2, 12, 3, 2, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4625.665625 +"https://github.com/Jeija/gtkterm.git",2010-08-13 05:03:25,"917f439c881e4a84a22522e87610bebed17d9598","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 4, 0, 1, 0, 0, 0, 0, 0, 0, 2, 4, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 3, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,4575.4452083333 +"https://github.com/worldforge/wfmath",2001-12-12 22:19:17,"a750140c4fc55d660ef85b9bf6c5a3778c4dc677","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 6, 4, 3, 3, 3, 1, 2, 4, 6, 3, 5, 0, 2, 2, 10, 0, 1, 2, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5506.8696990741 +"https://github.com/github/git-lfs.git",2014-06-02 15:33:03,"d8f780329b64e789553bc8ccccfb993ebc430325","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[296, 18, 1, 31, 0, 0, 0, 32, 15, 46, 11, 10, 0, 9, 14, 16, 19, 25, 19, 1, 8, 11, 0, 0, 0, 0, 0]","[15, 4, 1, 2, 0, 0, 0, 9, 0, 4, 0, 4, 0, 2, 5, 1, 0, 3, 2, 1, 1, 1, 0, 0, 0, 0, 0]",1,2,5,0,3479.3090162037 +"https://github.com/libssh2/libssh2",2004-12-07 21:17:20,"7a5ffc8cee259bbde82ab92515cd8fea2166854b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 11, 12, 12, 12, 3, 13, 1, 2, 6, 5, 1, 1, 0, 3, 6, 5, 2, 0, 0, 2, 9, 8, 4, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5758.7769328704 +"https://github.com/coin-or/CoinUtils",2008-01-07 01:41:56,"e4fa51c9962f3fd7167f2ca962fc5ab0b4ff6c58","[2, 0, 5, 2, 2, 1, 2, 5, 4, 0, 1, 2, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 3, 14, 2, 3, 8, 6, 1, 0, 9, 3, 5, 21, 0, 4, 2, 0, 1, 7, 0, 0, 4, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5778.8880671296 +"https://github.com/theory/pgtap",2008-06-07 00:55:01,"96e44c0062d399baddec6de52a367d23c808febd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 7, 9, 0, 4, 0, 0, 0, 1, 4, 41, 0, 22, 2, 39, 28, 0, 4, 25, 5, 9, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5595.7467476852 +"https://github.com/lxctl/lxctl",2011-07-12 22:39:12,"3b102bbe48d01c4593a56f27ac5a13d2ea781e69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 18, 7, 4, 8, 3, 1, 2, 1, 32, 16, 4, 9, 35, 4, 9, 1, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,8,0,2540.4811342593 +"https://github.com/PracticallyGreen/omniauth-saml.git",2012-02-14 01:56:41,"0eeb956149e98eba8ba23c60d7d6123868e96182","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,4118.1158217593 +"https://github.com/kaelzhang/node-ignore.git",2013-09-01 10:55:04,"9793e5643b5e7a71a004f440820bb6014853ff6d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3728.032349537 +"https://github.com/Sheeprider/BitBucket-api",2012-06-08 16:24:43,"4d2ccc99b9aa4b2ad2a3c0f0258d136adba8aa9d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,2673.0337152778 +"https://github.com/pixel/hexedit.git",2017-02-24 13:08:46,"dbd7b94e4bfee41eaa21b5b407ab01ad6e4501b1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1,5414.7907060185 +"https://github.com/nitrokey/libnitrokey.git",2016-04-13 20:34:27,"92b929f86dc1d1712f515c164e5e77ad21ad8ff6","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0, 13, 0, 4, 4, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 92, 69, 1, 0, 0, 0, 8, 1, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",2,3,3,0,2855.7609722222 +"https://github.com/SpintroniK/libeXaDrums",2017-09-27 21:32:32,"26072a3350e677a4cdea3274e709cb7284453812","[0, 0, 0, 1, 1, 5, 2, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 4, 2, 3, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2888.0486342593 +"https://github.com/savonet/ocaml-ssl.git",2008-10-15 17:30:33,"fe7d257610d6ce9e404c4f0648b64ba1d659a388","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5405.4381828704 +"https://github.com/nichtich/Pandoc-Wrapper.git",2016-10-10 08:32:25,"cfbe5e274897b420ef2155de51ab2a082f8e0047","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 29, 5, 18, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1879.2412037037 +"https://github.com/jeffreykegler/Marpa--R2.git",2011-10-22 02:03:14,"783a9064c10ddd644802c55520206f771dd77a75","[0, 0, 136, 36, 24, 17, 19, 18, 13, 20, 17, 45, 27, 43, 28, 43, 18, 27, 61, 45, 12, 7, 11, 16, 29, 59, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1]","[89, 16, 23, 62, 6, 9, 14, 18, 42, 31, 5, 17, 93, 16, 29, 42, 132, 29, 5, 13, 17, 83, 14, 29, 48, 26, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",1,0,0,1,4342.8049884259 +"https://github.com/doctrine/instantiator",2014-06-13 13:17:26,"01a6505adf922ad9cfe08d8de8469caba37f37ce","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 11, 0, 1, 0, 67, 0, 32, 3, 3, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 2, 0, 2, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,2,5,0,3466.1691666667 +"https://github.com/ugexe/zef.git",2013-07-03 00:12:15,"a6cbe4c00ea995712cc22bb9c2788ca63f4eeecc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 6, 43, 12, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3805.8422569445 +"https://github.com/bluesabre/mugshot",2013-07-25 10:34:56,"316f70846ca08d71f044418f2dd594b27563cbc7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3560.1744907407 +"https://github.com/tmate-io/tmate",2013-02-23 15:15:20,"dc50de782a108d37b94de16e3407e2e8742334ed","[9, 29, 1, 4, 18, 11, 10, 3, 8, 1, 5, 0, 7, 12, 3, 5, 1, 5, 1, 0, 12, 0, 5, 7, 31, 63, 1]","[0, 0, 1, 1, 5, 2, 3, 1, 2, 0, 2, 0, 3, 2, 0, 1, 0, 0, 1, 0, 3, 0, 1, 2, 0, 11, 0]","[13, 17, 24, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 1, 2, 0, 2, 0, 4, 1, 0, 5, 0, 0]","[2, 2, 4, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,2,5291.2387152778 +"https://github.com/libsigcplusplus/libsigcplusplus.git",2003-01-13 18:56:56,"d8019fcd745bbdb383bbaef45dd56dbc64dd1c99","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 6, 17, 3, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 4, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,5770.9372800926 +"https://git.launchpad.net/planetfilter",2015-02-08 10:08:15,"1b805444dfc48f11ad72fb19dd2fbe7ae549929e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 18, 8, 0, 0, 0, 1, 8, 0, 2, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,3983.6158680556 +"https://github.com/fontforge/libuninameslist",2012-08-23 04:25:19,"67ed3ed9d9afcb34077d0337923dbb0d599befe6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5640.1865740741 +"https://gitlab.com/virt-viewer/virt-viewer.git",2007-07-20 19:26:08,"07c89c3f5ef84aaee6faded8b78a07c87ba25d7e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 4, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5755.5009837963 +"https://github.com/wxMaxima-developers/wxmaxima",2005-01-29 10:15:26,"a96b09c95a3d71db9d4632ef177c6e5a282bc67a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 15, 14, 9, 17, 20, 7, 6, 13, 18, 1, 13, 5, 12, 16, 12, 1, 12, 4, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,5772.8908912037 +"https://github.com/jonschlinkert/is-glob",2014-12-18 10:41:22,"69c7e5e18b9ab7306191cc13beecc3939dfba934","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 7, 5, 0, 0, 0, 0, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,2500.3032986111 +"https://github.com/virt-manager/virt-manager",2006-03-29 11:40:14,"bd66e954738af7fec08cf788979757bcbc3450ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 2, 0, 0, 0, 0, 1, 0, 4, 22, 8, 12, 6, 22, 35, 6, 13, 23, 39, 13, 16, 2, 11, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 5, 0, 3, 2, 7, 2, 3, 0, 1, 3, 0]",1,4,3,0,5726.7286574074 +"https://gitlab.gnome.org/gnome/gnome-shell.git",2008-10-31 04:22:44,"4ba985b4844b7efeed1c64276759aa2632b86472","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 25, 18, 30, 6, 8, 6, 1, 4, 4, 16, 9, 16, 11, 11, 19, 1, 13, 4, 5, 4, 12, 4, 14, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,19,0,5520.5215740741 +"https://github.com/lumean/svg-graph2",2009-08-20 19:37:02,"5689c48b5489a934cbbb37d5350f261329f0f008","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5000.5990393519 +"https://github.com/calamares/calamares.git",2014-06-03 20:03:07,"f7f7167f20b16c51ba1028c54c5dad8b0096dc98","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 17, 58, 56, 55, 68, 73, 65, 58, 33, 20, 5, 0, 0, 1, 0, 35, 22, 17, 16, 27, 57, 44, 23, 43, 1]","[0, 0, 0, 0, 2, 1, 1, 0, 0, 2, 6, 5, 1, 0, 0, 1, 0, 0, 1, 1, 2, 1, 7, 4, 1, 4, 0]",1,4,10,0,3478.1256828704 +"https://github.com/darold/pgbadger.git",2012-04-12 16:05:23,"1b880c9f6af20694e3a2b9b5acf99b374310343f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 5, 5, 9, 0, 9, 1, 7, 8, 0, 14, 21, 12, 1, 4, 3, 0, 6, 10, 3, 2, 15, 2, 4, 0, 9, 1]","[0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0]",2,3,11,0,4259.9847222222 +"https://github.com/babel/gulp-babel.git",2018-04-19 20:38:34,"0983ecf0718702b2c647f7c8ffa7ad30c7003a00","[1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0,3018.4431018519 +"https://github.com/google/highwayhash",2016-03-01 14:44:10,"13716d8b48c8380e3e0eb962a9ea2d452182db57","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 2, 3, 3, 0, 1, 1, 2, 1, 4, 0, 0, 0, 4, 5, 3, 0, 0, 0, 0, 3, 1, 0, 0, 0]","[2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,2801.6793634259 +"https://github.com/mbeijen/File-MimeInfo.git",2013-06-03 19:02:41,"1a04ed2322bf4343e9d9fca99ccf94b8bdec0574","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 4, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,3834.7099189815 +"https://github.com/runehaubo/lmerTestR.git",2018-01-17 16:28:44,"f92539f00e825af65bc4abdb57453bf1189a8156","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 15, 11, 2, 4, 11, 14, 9, 5, 12, 4, 0, 0, 14, 10, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,1009.6075115741 +"https://github.com/royriojas/file-entry-cache.git",2015-03-02 05:58:29,"3d5f42bae08d9da814f8efe00c80901b1a98263d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0,3181.5545138889 +"https://github.com/Qucs/ADMS.git",2012-10-03 15:51:12,"a9b65bc15b5711b7082ce27f4c38e288f52d67db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3397.3394444445 +"https://github.com/sbt/launcher.git",2015-03-25 12:40:15,"8e0998a0ce26c7d91c3697e439ec9148a768ea55","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,4995.3282638889 +"https://github.com/libratbag/piper",2016-02-12 01:34:22,"3cd3f4e1a50022c4d44a562c5328c723b654d541","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 24, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2849.4881828704 +"https://github.com/davidcelis/api-pagination.git",2013-06-29 23:36:10,"9498645e36ee4252484d565640c5b00375e36872","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,3040.7300578704 +"https://github.com/httpie/httpie",2012-02-25 12:39:38,"b966efa17d837dc62c23d5f8064e184e22b14c2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 37, 16, 1, 0, 1, 4, 5, 11, 0, 0, 0, 0, 0, 1, 14, 4, 8, 1, 4, 38, 20, 21, 20, 17, 3, 0]","[6, 6, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 0]",1,3,21,0,4259.1971296296 +"https://github.com/mlpack/ensmallen",2018-10-03 02:39:31,"dd847db64195efbfa3471c29a505c336b248c2f0","[5, 10, 5, 11, 4, 2, 9, 3, 4, 6, 5, 8, 4, 7, 3, 4, 0, 5, 0, 0, 0, 0, 3, 1, 2, 2, 2]","[5, 9, 4, 9, 3, 2, 9, 2, 1, 5, 4, 7, 4, 7, 3, 2, 0, 5, 0, 0, 0, 0, 3, 1, 2, 1, 1]","[49, 95, 84, 8, 4, 11, 10, 21, 25, 13, 6, 0, 11, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0]","[1, 14, 10, 1, 0, 2, 2, 2, 8, 5, 2, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,4,2,3267.1139236111 +"https://github.com/GreycLab/CImg.git",2015-05-29 07:59:12,"c3bf53b5a82a886fce05ee7a9eb5e8c1f8a3b7b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 12, 24, 2, 6, 5, 6, 0, 2, 2, 2, 38, 31, 6, 26, 44, 19, 51, 16, 16, 11, 2, 6, 9, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,6,0,3104.3731481482 +"https://github.com/kohler/gifsicle",1998-03-01 21:19:24,"579959b9fa696ce3c288ad6034bd57101a49103d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 9, 12, 7, 6, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5684.8868402778 +"https://github.com/robint99/dock-applet.git",2015-05-04 09:15:58,"052c745e46fffa63105d93b8ecd603e3d9195e87","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 14, 4, 1, 6, 6, 2, 4, 0, 10, 3, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 2, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,2711.5333680556 +"https://github.com/cbm755/octsympy.git",2014-02-24 23:22:37,"f99a9e773e3d54f8d3ea19cc938ab3c7591bd793","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 4, 0, 0, 29, 18, 74, 93, 20, 23, 9, 24, 24, 0, 0, 0, 0, 0, 6, 24, 2, 21, 30, 11, 23, 31, 1]","[0, 0, 0, 0, 0, 1, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,0,0,3532.2309027778 +"https://github.com/casacore/observatories-table.git",2016-11-01 11:18:53,"42b043597dabde67ba1bdc8a9dab77e6ed28c0bf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,766.9570138889 +"https://github.com/fog/fog-libvirt",2015-04-09 07:24:46,"192adc0808d1d30c867f9fdb1a35a57193cc22b9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,3115.7615162037 +"https://gitlab.com/crosswire-bible-society/strongsgreek",2021-01-17 14:48:10,"99f66bb8f8b805c063a5e11bfb118bc799327a69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1035.2977314815 +"https://github.com/linux-man/caja-mediainfo-tab",2018-06-04 22:22:50,"d0db385997b5659a35334db7400ace1832e3dea0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1186.6267013889 +"https://github.com/a-detiste/cruft-ng",2014-10-15 07:41:16,"470a2593775a13e41bc8ce06a510637ba4853d60","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3368.4031018519 +"https://github.com/dirkvdb/ffmpegthumbnailer",2007-02-24 14:13:59,"a5c90b822b22e58ecfa588ca034f12f4abfabfc1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5750.9852893519 +"https://github.com/google/xsecurelock",2014-06-25 18:26:36,"d1041acfbaabe3df0642f3312f9f0148fe819a7a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 4, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3375.8872453704 +"https://gitlab.com/coringao/osmose-emulator",2017-01-11 14:20:12,"0f00f3d37a311a94753fe800222c67a3ba5879f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 14, 1, 0, 0, 0, 7, 0, 9, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1312.3067361111 +"https://github.com/nichtich/RDF-NS.git",2011-10-28 12:54:40,"04a1886057e659f455c734ce557e1c4a87e7a2d1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0,4253.4168518519 +"https://github.com/pinax/pinax-notifications",2009-01-04 08:35:29,"f4d526cb2a61a6830b4782edc4ce991e47e83035","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 7, 2, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0,4781.1870023148 +"https://github.com/requests-cache/requests-cache",2012-04-08 18:42:01,"1e9fc768cea39fda27358ef603cde0956a1f7945","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 2, 0, 30, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4266.3939236111 +"https://gitlab.gnome.org/GNOME/libsecret.git",2011-08-08 15:43:47,"3dfd7aa70f64f4ec13c2684a80771b07a2b5843d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 9, 1, 2, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 16, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4508.8847800926 +"https://github.com/processone/eimp.git",2017-09-11 06:31:58,"3d510421c671ea48807543a1929adb8ee41755d7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 2, 4, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,1694.160462963 +"https://github.com/georgd/EB-Garamond.git",2010-07-02 13:59:44,"d55bd762e7321d349da4421f61aaec40343b9b5d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4689.2650462963 +"https://github.com/estools/escodegen",2012-03-03 15:14:16,"50831c28d2569abd5fd758b51111e7fbe03cdeda","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 3, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 8, 3, 1, 0, 0, 0, 25, 4, 2, 23, 3, 1, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 4, 1, 0, 9, 1, 0, 0, 0]",1,1,8,0,4135.2103472222 +"https://github.com/imacat/Locale-Maketext-Gettext.git",2019-09-09 11:50:18,"db7e22c83b8c1d6da2399170fbf6259abfbd29c0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,519.6569444444 +"https://github.com/ValveSoftware/openvr.git",2015-04-30 02:57:55,"f87667074cabc24f643170069d176dadb390dbb7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3113.7753472222 +"https://github.com/libgit2/pygit2",2010-11-04 20:59:18,"4940678d9f7d1e71a3a77383a9a84b2c40c41daa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4313.8217708333 +"https://github.com/edwardgeorge/virtualenv-clone",2011-03-15 07:20:25,"374e1f086bb63cf1775c39e069f51fa87e276313","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3835.1669675926 +"https://gitlab.gnome.org/GNOME/gnome-packagekit",2007-08-23 14:56:28,"c2686bc79afbfb8a8f0bf29f6c829795ff3a6632","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 15, 14, 19, 19, 26, 43, 68, 38, 41, 29, 30, 11, 9, 10, 2, 1, 5, 45, 25, 3, 15, 17, 8, 4, 15, 1]","[0, 1, 0, 0, 0, 0, 0, 3, 2, 1, 2, 0, 0, 0, 2, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 1, 0]",1,5,17,0,5777.682962963 +"https://github.com/venthur/dotenv-cli",2018-10-14 16:24:18,"d249f5aef19f99095546d918e1f819f3833f01e2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0]",1,2,1,0,1883.5036574074 +"https://github.com/tdiary/tdiary-style-gfm",2013-08-26 04:06:52,"cabb959e8f1ff8bde2fcc74c5b12e89cd78c5256","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 11, 0, 0, 0, 1, 0, 2, 3, 1, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 7, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,2,0,3042.2103356482 +"https://github.com/jorgemanrubia/truncato",2012-11-10 07:30:26,"5054c18e41f658a7f48f82fc9a2c396d346a45f4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 4, 9, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,1,5,0,3523.9293634259 +"https://github.com/ocsigen/js_of_ocaml.git",2010-06-10 14:03:08,"d4457c2f9404b54ed8d89db3283c6b6a0868e42a","[0, 0, 0, 0, 0, 0, 0, 6, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 35, 9, 12, 21, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 16, 22, 3, 4, 3, 15, 12, 2, 5, 0, 0, 1, 1, 0, 0, 0, 3, 3, 3, 7, 5, 2, 4, 4, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,5063.2903472222 +"https://github.com/rails/actionpack-xml_parser",2013-02-20 00:25:33,"4546cb414acd9f05254643df8f83ef846fb3f851","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,1540.6708333333 +"https://github.com/shadowsocks/shadowsocks-libev",2012-10-15 06:55:46,"c420ac9c92046c10d9e6a442fb02ebe77fd3e8fe","[0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 12, 2, 0, 3, 1, 0, 1, 1, 1, 1, 5, 1, 6, 44, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0,3913.8428009259 +"https://github.com/andrewrk/libsoundio.git",2015-06-30 20:49:36,"db713885095ed2efb41770177723da743173259b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 11, 23, 23, 39, 14, 11, 19, 23, 37, 14, 5, 4, 1, 8, 0, 1, 4, 4, 4, 7, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3080.119837963 +"https://gitlab.com/compiz/compiz-plugins-experimental.git",2016-01-10 18:40:53,"d535b1fba51ea919900311f0a48c54744a131842","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 5, 0, 0, 1, 0, 1, 0, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,4636.1669791667 +"https://github.com/deeptools/pyBigWig.git",2015-07-31 12:07:36,"431de3b553e6abed97325705cfe2196206fa147d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 1, 0, 0, 0, 8, 15, 6, 0, 11, 5, 12, 11, 8, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 2, 0, 1, 0]",2,3,4,0,2807.2654282408 +"https://github.com/jwiegley/use-package.git",2012-06-17 09:40:25,"7ee0fcd0a09c2934e77bf5702e75ba4acba4299c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]",1,1,2,0,3965.7776851852 +"https://github.com/ros-planning/navigation_msgs",2015-03-16 19:20:17,"a2a42c0486f4caa3f430d0db0d539aaa82a089b5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4055.7909027778 +"https://github.com/hlandau/acmetool",2015-11-15 01:56:58,"bc1de30d582786f0882b9d6c07f755e88c93e77c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 7, 10, 4, 4, 0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,2727.716875 +"https://github.com/chrender/fizmo-ncursesw",2010-11-19 10:20:24,"f5f64c9e91bf5670153e9b1271def3bf5422624f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 14, 5, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 1, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4851.4142708333 +"https://github.com/netty/netty",2012-03-12 04:13:41,"91463cad47f792a594f221e6e782b6fe0ff2504a","[0, 0, 1, 0, 15, 11, 3, 8, 8, 0, 16, 9, 39, 10, 0, 1, 2, 10, 7, 2, 22, 6, 3, 5, 33, 16, 1]","[0, 0, 0, 0, 1, 2, 0, 2, 1, 0, 1, 1, 4, 3, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 2, 0]","[9, 12, 24, 12, 19, 25, 36, 40, 18, 50, 24, 39, 23, 21, 19, 11, 21, 13, 11, 13, 13, 13, 20, 21, 29, 13, 1]","[1, 0, 2, 0, 2, 0, 4, 1, 3, 4, 1, 2, 2, 3, 3, 1, 1, 2, 1, 2, 1, 4, 4, 3, 3, 1, 0]",8,3,10,4,5605.2634027778 +"https://github.com/dh4/cen64-qt-debian",2015-10-28 14:23:02,"4d91978bfdf4b6fd5ae442138a6a81a8e2911172","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1637.4857986111 +"https://github.com/karlkleinpaste/biblesync.git",2014-05-11 13:46:39,"25d9b2458a44c8a28c541ccb1ed383ff947f126e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 0, 1, 4, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,2205.1738773148 +"https://github.com/zeromq/pyzmq.git",2010-02-11 22:04:41,"08c4dbb82205f6dbb3e3e1c024a10741bdc632d3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 11, 6, 0, 17, 32, 2, 0, 0, 4, 12, 3, 1, 10, 11, 1, 1, 0, 0, 0, 15, 0, 0, 0, 1, 0, 0]","[0, 1, 1, 0, 2, 2, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",1,3,6,0,5044.3949189815 +"https://github.com/mikaelgrev/miglayout",2015-06-04 05:51:27,"fadfb3e9e1a88e2d0019536ec6f7a22e7ba952ff","[0, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 3, 1, 0, 0]","[8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",3,1,1,0,3114.6859375 +"https://github.com/Unidata/netcdf-fortran.git",2011-08-17 19:07:39,"e2473fe98a1d4fd915c3b79da911691370a67c2d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 1, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4488.0650115741 +"https://github.com/20kly/20kly.git",2011-08-27 03:10:24,"83e667532c14d1ca504b44445278009fa6ab361d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4073.732349537 +"https://github.com/whm/libnet-ldapapi-perl",2016-08-14 07:54:20,"fc4d04018c3a527bb9e43f2fdec959f85270fc74","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,2319.3761458333 +"https://github.com/rails/rails-html-sanitizer",2013-09-25 00:53:23,"94145e1c6c3140b30235d1667a11b51de807f650","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 2, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 12, 5, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 0]",1,3,4,0,3530.5188078704 +"https://github.com/pear/text_password.git",2016-01-31 17:00:25,"d5dc9698780768d2ab3ede2ff330c9031194a1d0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0,3427.7869097222 +"https://github.com/droe/sslsplit",2012-04-13 12:47:30,"4cfdef405a15c4449d502516cbf82d09a5fc636a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 16, 14, 0, 14, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 7, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4093.9351851852 +"https://github.com/Maproom/qmapshack.git",2019-04-02 18:00:37,"1543a81b363f85fb44143257fd0ed606bbbab928","[5, 3, 1, 1, 6, 2, 1, 12, 6, 12, 6, 10, 6, 0, 14, 13, 7, 18, 7, 3, 15, 14, 3, 12, 16, 11, 2]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 4, 2, 1, 3, 1, 0, 2, 4, 0, 2, 3, 2, 1]","[32, 15, 18, 8, 3, 8, 1, 1, 11, 13, 2, 6, 11, 1, 20, 28, 16, 22, 13, 13, 14, 9, 2, 23, 0, 15, 1]","[4, 1, 5, 1, 0, 1, 0, 0, 2, 1, 0, 2, 2, 0, 5, 3, 2, 3, 3, 2, 1, 3, 0, 1, 0, 0, 0]",3,2,11,1,1715.6550115741 +"https://github.com/ocaml/caml-mode.git",1997-02-23 16:23:00,"bf4ed0f926f3181a06b93396b2c59662da1e2711","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5551.4899884259 +"https://github.com/vouillon/coinst",2013-10-21 12:22:28,"7333a3a2bda701ae1996aa4ccaeaad0c3ee51036","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 4, 15, 0, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 6, 0, 3, 7, 6, 1, 0, 0, 0, 2, 13, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,3,3,0,2037.998599537 +"https://github.com/Sigil-Ebook/Sigil.git",2009-08-06 19:45:20,"7f76ce802f21592586e910286bf9754c05e9f32d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[27, 12, 8, 17, 23, 15, 4, 7, 16, 16, 2, 2, 1, 7, 1, 21, 6, 32, 7, 11, 20, 1, 0, 0, 4, 1, 1]","[0, 0, 2, 2, 5, 3, 0, 0, 1, 2, 0, 0, 0, 1, 0, 4, 0, 3, 1, 2, 3, 0, 0, 0, 0, 0, 0]",2,1,2,2,5247.6955787037 +"https://github.com/strengejacke/ggeffects.git",2017-06-01 05:54:13,"5548d7dd9482e2cf140cf3ff6fab4c60d16f6a15","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 6, 7, 3, 2, 1, 1, 3, 5, 9, 0, 3, 2, 0, 1, 4, 1, 2, 3, 2, 2, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2388.1511805556 +"https://github.com/iputils/iputils.git",2014-04-18 14:26:30,"7238279fabe59be9417da1a41d5208d19ff66d72","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0,5645.1556828704 +"https://github.com/nicotine-plus/nicotine-plus",2006-07-06 18:15:15,"b8fa28b5dd27eafd44f2734ea9cb495a3cdf2e07","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 2, 0, 4, 1, 16, 5, 4, 10, 22, 7, 6, 4, 14, 20, 5, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5780.241412037 +"https://github.com/jeanparpaillon/averell",2014-09-10 11:55:16,"a0eaa13414cebe978a30f36bbc7eb83aa1c2f0ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,585.8797453704 +"https://github.com/e2guardian/e2guardian",2013-08-13 15:26:58,"b8056eb74e839386ae6dd836ff662f9b787d94f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 16, 9, 2, 8, 0, 2, 2, 2, 8, 4, 0, 5, 11, 7, 2, 0, 1, 0, 0, 0, 1, 3, 0, 6, 0, 1]","[0, 1, 0, 0, 2, 0, 1, 0, 1, 2, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,4,7,0,3743.8510416667 +"https://github.com/grml/grml-debootstrap",2014-04-19 00:13:15,"bba7c1961b43afcbe30097fc3fbbf6c53c57b1ac","[1, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 0, 4, 0, 0, 2, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 21, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5733.8188541667 +"https://github.com/cbrnr/sigviewer.git",2010-03-03 18:49:47,"446ca9ffb1d7036a20e27984826728e0d1b26d69","[0, 0, 0, 0, 1, 2, 0, 1, 0, 3, 7, 1, 3, 6, 0, 3, 0, 0, 0, 1, 3, 2, 2, 0, 8, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 9, 6, 8, 9, 14, 7, 14, 18, 28, 7, 8, 17, 3, 18, 10, 3, 5, 8, 25, 13, 26, 12, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5107.7777777778 +"https://github.com/gjwgit/wajig",2010-07-11 09:24:15,"9cbf240e2a5ddd34c7f28b1c94f51465dea5c633","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 3, 0, 9, 9, 21, 0, 44, 44, 49, 26, 19, 14, 16, 0, 14, 2, 0, 3, 2, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,4746.4752546296 +"https://gitlab.gnome.org/GNOME/gnome-autoar",2021-04-26 12:58:10,"8a42884242d4e43beec0038c70eda0d882335267","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 10, 0, 0, 1, 23, 0, 1, 0, 0, 0, 5, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 4, 1, 0, 1, 0, 0, 1, 1, 0, 0, 10, 11, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0,3764.8923726852 +"https://github.com/cyu/rack-cors",2010-06-03 01:21:19,"8b1b6ed6c2f192db4b6df108f136d3cb4a22b8ec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4892.2220601852 +"https://github.com/node-modules/address.git",2013-07-30 15:09:20,"73accf56995c0fadf862f5ef2e7fe1b479b5afd0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3756.5830208333 +"https://github.com/AzureAD/azure-activedirectory-library-for-python.git",2015-05-05 16:43:25,"9f4cbe19ee8be03f65cb59911897d697975286a0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 10, 0, 6, 7, 11, 25, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 2, 4, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 2, 5, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]",1,4,7,0,2979.6132060185 +"https://github.com/robert7/nixnote2",2012-07-08 19:37:14,"9cc08b2e1d8454253f33b6ec16664ceff6154a89","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 4, 1, 0, 0, 0, 2, 14, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4104.4428587963 +"https://github.com/explosion/thinc.git",2014-11-18 05:27:50,"82c85d13409c7fb53875df53ca34f3d18c674234","[0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 18, 1, 18, 6, 4, 6, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[11, 11, 3, 4, 11, 10, 48, 7, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,3455.0176388889 +"https://github.com/jonnenauha/prometheus_varnish_exporter.git",2016-02-19 22:19:28,"efc5b2816348c0eed10f43f251a96db191145b9d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,2552.1847337963 +"https://git.samba.org/socket_wrapper.git",2013-02-07 15:58:18,"237c6e951a8268afeaa288d8ddf0c79da32f6fd1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 0, 0, 4, 24, 11, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3793.8187615741 +"https://github.com/ruby-concurrency/thread_safe",2012-04-26 00:00:11,"bb5003d7ff799fccd5e184eec8fc823a894d5d9d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 16, 11, 1, 0, 0, 0, 8, 0, 3, 16, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,1914.5871759259 +"https://github.com/dankogai/p5-encode.git",2007-11-18 10:16:11,"8106c01862a9143868b9e90b62eb5c908c0cc291","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,5752.78 +"https://github.com/foutaise/texttable",2015-11-16 09:54:06,"df2b72868fd903b9520267185a298bb7c1555ad7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,2877.9837384259 +"https://github.com/asweigart/pyperclip",2011-06-15 01:12:32,"a97030079fd47d274f1f439dc932d0f2c7ac2e72","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3772.0925925926 +"https://github.com/FeralInteractive/gamemode",2018-03-05 17:32:01,"c459c0507698aa4f8863c201bba283093b3b00b5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 7, 0, 1, 19, 0, 14, 3, 6, 13, 4, 0, 4, 0, 3, 5, 5, 3, 4, 5, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,15,0,2107.9380555556 +"https://github.com/eonpatapon/gnome-shell-extension-caffeine",2012-06-07 18:38:27,"91a1ef27f107281b594e57eaedfadec354afe4b1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4204.8561111111 +"https://github.com/freifunk-gluon/ecdsautils",2012-12-07 01:00:20,"10314fbda5fd7f882c9ec846e97e2b486c0ee233","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 5, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3436.625625 +"https://github.com/AprilRobotics/apriltag.git",2018-09-18 19:25:09,"0844f5e489c13c1bda8679d17cc934ed2c58515d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 1, 1, 1, 6, 1, 4, 0, 0, 5, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,1,4,0,1884.0502083333 +"https://github.com/lastpass/lastpass-cli",2014-10-22 14:43:10,"0fcb6d26cca644676ea59db34234dc14bbb5f779","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 9, 6, 1, 4, 0, 1, 0, 0, 2, 0, 1, 7, 0, 0, 2, 0, 0, 3, 0, 5, 4, 0, 0, 1, 0, 0]","[10, 3, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,25,0,3306.0089351852 +"https://github.com/RiotGames/buff-extensions",2013-06-17 06:34:54,"9d703c776a40162c0e3e7f555a9ed9e8bb8c3cbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1162.5226851852 +"https://github.com/threerings/openvpn-auth-ldap",2006-07-22 20:01:29,"46042c7cd5796af406ce31e4aa8c8d4f823a0356","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 15, 0, 0, 18, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1866.2952430556 +"https://github.com/Ultimaker/libSavitar.git",2017-02-07 14:52:05,"c8e6eabb188a8f8bd6caa0a57e7e9a833f6d76e9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0,2417.8881481482 +"http://github.com/G-Node/python-neuroshare",2011-03-22 14:02:38,"4319dd124773e7443bf7d8a0d17888c8060ce8e5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0,2028.2039583333 +"https://github.com/kanedo/gzstream.git",2014-05-15 17:43:48,"0e1bad5412bbae32a38cfe56ff22ba37b2180cd9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,1271.8150115741 +"https://github.com/python-bugzilla/python-bugzilla",2007-09-07 15:43:03,"9d245a9748637335439b16ca419d83089e1e2d45","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 29, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 5, 2, 0, 7, 5, 1, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5775.4981712963 +"https://github.com/ribozz/sphinx-argparse",2013-09-04 05:48:46,"461a88a6701486634d9715e5043cd172c2a9a291","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 3, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 5, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0,2938.5171412037 +"https://github.com/silnrsi/grcompiler.git",2006-01-06 20:56:10,"5672dca6ac86e33300e89363481b83b1aac7f22e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 2, 4, 3, 0, 1, 0, 3, 1, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,4870.0000925926 +"https://github.com/disco-stu/pg-rage-terminator-pkg",2015-03-06 13:04:21,"6f5b6ad5c2bf7bca6a1466bf86ea5aa5c731a41b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,3117.2085416667 +"https://github.com/gregwar/fatcat",2013-10-22 08:54:32,"1d189cb8fe0b8b77c82a2c0f42973f60b6d1fbb6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[149, 50, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3248.5118981482 +"https://github.com/USCiLab/cereal",2013-06-26 05:49:32,"c4b8fb092fb0b3f252653000d7e413ce7f4184c5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 26, 28, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,4,0,3631.1027546296 +"https://github.com/x42/harvid.git",2013-01-30 21:40:27,"3beceaa9a72455de2ba2f8eb385886da58a60de8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 30, 56, 50, 18, 13, 7, 14, 2, 20, 4, 0, 2, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3621.9749189815 +"https://github.com/celiao/tmdbsimple",2013-12-05 07:33:36,"779664dca66032e40b34612c0f890c91f1106890","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2973.5930324074 +"https://github.com/tlsa/libcyaml.git",2017-12-17 14:43:22,"a15df3ffcaa0e3ff947bf91eed03ad2ee54770b9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 29, 10, 1, 0, 0, 2, 15, 1, 3, 4, 16, 42, 47, 16, 6, 0, 0, 0, 6, 30, 40, 9, 30, 18, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 7, 3, 2, 0, 0, 0, 2, 6, 4, 3, 6, 3, 1, 0]",1,1,1,0,2058.3318865741 +"https://invent.kde.org/office/ghostwriter",2015-08-22 09:14:37,"fdd6266f00a85891e015b7133fc092dac088546b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 16, 28, 14, 2, 11, 0, 2, 0, 0, 1, 2, 0, 0, 2, 0, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3031.7841435185 +"https://github.com/tari01/caja-rename",2020-10-11 15:10:23,"2ebf9466b1afb35aba891e45560c2454ae730d1e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,1145.7519328704 +"https://github.com/google/gemmlowp",2015-06-25 19:53:04,"75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 13, 1, 0, 10, 11, 13, 6, 2, 15, 6, 28, 22, 20, 2, 15, 17, 2, 0, 4, 2, 5, 3, 0, 5, 0]","[0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 7, 5, 0, 5, 4, 0, 0, 2, 1, 0, 2, 0, 0, 0]",1,7,8,0,3053.0219791667 +"https://github.com/juzzlin/DustRacing2D.git",2010-12-14 00:46:35,"a7c1b89d44cde99b366ea48d92166e4ab617276a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 5, 6, 3, 0, 0, 0, 3, 7, 1, 3, 0, 0, 4, 3, 3, 2, 1, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4428.4226851852 +"https://github.com/jviereck/regjsparser.git",2013-11-03 16:30:09,"759105797353898ba085b122b9981b04555fd11d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 9, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0]",1,2,3,0,3676.996875 +"https://github.com/b20n/bernhard.git",2012-05-02 18:14:36,"536ba39dc6d50ccb9af51c094eef3fa5dd9ef23f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2059.4699652778 +"https://github.com/mysecureshell/mysecureshell",2014-07-29 19:29:15,"a78752bd9563d4b1e0e1b0ea36a2102bd0e4c654","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[11, 9, 12, 7, 7, 4, 3, 7, 3, 9, 3, 0, 10, 1, 2, 1, 7, 2, 4, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,1,2575.5671990741 +"https://github.com/brianmario/escape_utils.git",2010-06-09 04:35:26,"663fd5a8e8205d4a76e5096d32ed618c617a4aa0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 3, 5, 1, 7, 0, 0, 0, 0, 1, 4, 0, 3, 0, 0, 0, 12, 0, 3, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,4731.6076041667 +"https://github.com/ros/kdl_parser",2017-05-04 16:42:04,"3fa7b87abe085a79d1b2fe9d451c2805df3702cd","[0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 1, 4, 2, 2, 0, 0, 0, 0, 2, 4, 0, 0, 0, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,1,0,4840.7517013889 +"https://github.com/aperezdc/signify.git",2014-01-14 13:42:40,"72444343640c443540122bc4d89e39c6b0925ffc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3467.3640972222 +"https://github.com/tinti/pam-encfs",2006-08-05 01:33:30,"40322f8b9548b537c6f13fd91154543b2ae62e85","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2773.2122222222 +"https://github.com/Komzpa/twms.git",2010-03-05 08:20:48,"ce01aed07b66918fcdc9ea03f30fcab1db4678a6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2177.2821875 +"https://github.com/nginxinc/nginx-prometheus-exporter",2018-05-30 13:49:53,"8d90a86cdf4da7bc1ea520ef5701a63780638c13","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 1, 1, 0, 2, 0, 0, 2, 2, 0, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0,2021.3354861111 +"https://github.com/spyder-ide/spyder-kernels",2018-06-18 15:29:36,"31ebaf461cfb3aa6f969ada2c2158d3ae9ca1e65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[54, 9, 0, 5, 12, 0, 22, 30, 25, 13, 4, 14, 12, 25, 3, 15, 5, 8, 16, 0, 0, 0, 5, 0, 0, 0, 0]","[14, 3, 0, 2, 4, 0, 4, 9, 8, 4, 0, 1, 1, 5, 1, 8, 0, 4, 6, 0, 0, 0, 1, 0, 0, 0, 0]",14,3,2,0,1977.064375 +"https://github.com/dimitri/pgextwlist",2011-12-11 13:12:00,"a744db9a793caa41d34669af2c623ea6a8b8c71e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4298.9919444445 +"https://github.com/OpenShot/libopenshot-audio.git",2012-06-15 22:45:27,"c0e605fafed2095208d7daeb37dd50e90499b8d5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4098.0388888889 +"https://github.com/puppetlabs/puppetlabs-apache",2012-06-16 20:34:50,"a79baf6990cc8ef84026aefecc78a8f85b568885","[0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 3, 0, 11, 1, 0, 0, 3, 8, 2, 0, 4, 0, 1, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6, 1, 0, 0, 1, 3, 1, 0, 2, 0, 0, 0, 0, 4, 1]","[6, 2, 6, 2, 2, 7, 4, 52, 25, 19, 2, 0, 0, 0, 7, 6, 3, 4, 0, 4, 9, 5, 0, 2, 0, 6, 0]","[3, 0, 3, 0, 0, 3, 1, 22, 8, 6, 1, 0, 0, 0, 1, 3, 2, 2, 0, 1, 3, 2, 0, 1, 0, 1, 0]",15,6,26,5,4851.4447106482 +"https://github.com/openstreetmap/OSM-binary.git",2011-04-13 20:40:46,"c7dce29491432e150739b852e1e83f69ef46c759","[1, 0, 0, 0, 2, 0, 0, 0, 9, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 13, 7, 11, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,4,3,0,4802.1316898148 +"https://github.com/emancu/toml-rb.git",2013-02-24 16:56:27,"b36b370ee11769cceb53144708b0f87006499fbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 23, 0, 0, 0, 1, 9, 8, 0, 0, 1, 0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0,3791.6442361111 +"https://github.com/c-w/ghp-import.git",2010-02-19 18:59:19,"7b4d23db8fba985289075189cf5e540fb8cb42a3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4494.8705092593 +"https://github.com/wharris/esmre.git",2008-01-28 14:17:08,"8bad5b90e1a70c4d288ab8129c5d55c177d2b007","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 0, 0, 11, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,5681.6213078704 +"https://github.com/jmk-foofus/medusa",2015-05-28 02:50:49,"61b9ed6723ba95e92e04772f22cf2131a8e0ac1f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2618.4448032407 +"https://github.com/matthewdeanmartin/terminaltables",2014-09-02 04:02:49,"df6d28a1974c99ed7adc26cba122fd673f241502","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 11, 2, 0, 0, 0, 1, 0, 6, 2, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]",1,1,1,0,2707.668125 +"https://github.com/r-lib/callr.git",2016-05-13 10:24:23,"32693921097092b5512f76ba6c2e142c55103c79","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2730.1466203704 +"https://github.com/elves/elvish.git",2013-06-16 08:45:22,"6ef2ab157fc0999ae991a2f52ac0a333c5961d20","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 26, 3, 0, 4, 1, 4, 0, 8, 2, 0, 15, 12, 42, 31, 52, 6, 33, 7, 33, 0, 10, 38, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3724.7049768519 +"https://gitlab.xfce.org/panel-plugins/xfce4-timer-plugin.git",2005-12-01 07:49:54,"48ed59f5e84b2d7549b680362ef760a04a06fcf1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 6, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5681.6295833333 +"https://github.com/shekyan/slowhttptest",2015-03-15 03:07:23,"5762f5989c807378acc6fad92cf26c9ab1b646fa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4436.458900463 +"https://github.com/erlware/erlware_commons.git",2011-10-17 02:26:43,"2b320a34a562fcb18243e96b632c9a77c1415a83","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0,4657.9532060185 +"https://github.com/codereader/DarkRadiant.git",2006-03-03 19:46:06,"d6422030a6f53b612a744636fe02f1eaf61894df","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 17, 13, 28, 5, 2, 2, 4, 13, 8, 10, 8, 18, 12, 16, 13, 3, 8, 14, 25, 14, 11, 7, 11, 13, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5740.5205324074 +"https://github.com/asb2m10/jsusfx.git",2014-08-02 06:22:41,"f798c05a36b410c62698569a4555bd0c1a94e074","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,2697.3649768519 +"https://github.com/besser82/libxcrypt.git",2015-05-12 18:10:30,"27fa0cb49d585aff8ea25c380eb43d0679784f58","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2976.0054050926 +"https://github.com/radare/valabind",2009-12-26 11:02:43,"046a0de6f30c1a5c133775e05d4945364babc153","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 11, 10, 2, 7, 0, 4, 4, 1, 8, 13, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0,4839.9819560185 +"https://github.com/r-lib/devtools.git",2010-05-03 04:16:14,"78a3ebaf8da61d1c0175e45a698dfa6f5c45282f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 9, 0, 0, 2, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4932.9859490741 +"https://github.com/spanezz/django-housekeeping.git",2014-05-14 09:53:17,"fe18a0159ca13659d3f79124bf8f3d9dec0c593f","[0, 0, 0, 0, 0, 6, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2311.2066087963 +"https://github.com/pydot/pydot.git",2007-07-09 22:27:24,"c0233c6aae32d11d2dc1e0f836c0bcf8b2fab6d0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4914.8573032407 +"https://github.com/ahmetb/kubectx",2017-03-29 07:30:12,"6de838135f670a66e29e5bd8bf0a66bcf38d9e9a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 3, 0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2319.9031944445 +"https://github.com/tikzit/tikzit.git",2012-01-06 13:44:40,"2ed61cfb3ad3d404b9a44bbb3f4c8083b469ae22","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 19, 5, 7, 6, 1, 0, 1, 2, 7, 0, 1, 0, 0, 5, 0, 8, 1, 0, 14, 3, 0, 9, 0, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,4273.8409027778 +"https://github.com/pgmodeler/pgmodeler.git",2012-08-23 23:59:29,"daa8f9f4729241779ad1318dfed499144dbeb8e9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 12, 4, 5, 5, 3, 16, 30, 5, 23, 30, 4, 18, 25, 9, 13, 26, 10, 19, 27, 19, 25, 25, 30, 13, 24, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 8, 1, 4, 1, 8, 2, 2, 0]",1,4,6,0,4123.8430555556 +"https://github.com/ipython/ipython_genutils",2015-04-08 22:06:03,"6cf40ccc0e77a41d9e4909ff3e8ea1e753b0a69e","[1, 1, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 14, 2]","[0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0]","[8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4920.5252546296 +"https://github.com/jcomellas/getopt",2009-10-13 20:42:55,"6cf2a8c0dd4f0f59d4027435740ce704bc9d08f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5121.0564583333 +"https://github.com/lanmaster53/recon-ng.git",2013-01-22 16:03:18,"70d43147a7c6c82a2850cb668c6d2126f86621a2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 8, 3, 8, 1, 0, 2, 1, 0, 0, 0, 1, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 27, 80, 30, 30, 39, 19, 19, 6, 8, 9, 8, 10, 4, 9, 2, 2, 0, 5, 6, 1, 2, 1, 7, 7, 6, 1]","[10, 9, 31, 8, 10, 15, 10, 7, 2, 3, 5, 3, 1, 0, 2, 0, 0, 0, 1, 3, 0, 1, 0, 1, 2, 0, 0]",1,10,18,0,3226.8799074074 +"https://github.com/bleakgrey/tootle.git",2018-04-14 12:09:06,"30f8348286f4fe690b309409d7c438821710b8b2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 15, 25, 30, 15, 21, 28, 13, 7, 29, 3, 2, 5, 1, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 0, 4, 1, 2, 3, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,11,0,1706.1450925926 +"https://github.com/syncthing/syncthing.git",2013-12-15 10:43:40,"bfe935b5ab3518cac083c9b748715b6aabb50215","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 15, 40, 46, 8, 14, 9, 8, 15, 5, 10, 30, 9, 21, 13, 15, 18, 31, 16, 28, 6, 62, 63, 40, 29, 27, 1]","[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 0, 0, 0, 0, 1, 0, 7, 3, 5, 1, 1, 0]",1,2,14,0,3650.0363310185 +"https://github.com/dgasmith/gau2grid",2017-11-01 19:39:47,"1b4e2291c801156fe9814d3641af63ebbee82499","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 36, 43, 22, 4, 35, 10, 8, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 21, 5, 4, 0, 0, 0]","[0, 5, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0]",2,2,1,0,1166.9793981482 +"https://github.com/ignitionrobotics/ign-cmake.git",2017-09-19 20:05:04,"27d4c7063cbda1614b7b371beb333eefe46b19d0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 24, 26, 14, 13, 32, 10, 17, 10, 13, 37, 25, 10, 8, 1, 45, 69, 19, 2, 10, 11, 0, 6, 0, 0, 7, 1]","[0, 1, 6, 4, 2, 7, 0, 3, 0, 3, 11, 6, 1, 2, 1, 11, 17, 5, 1, 4, 3, 0, 1, 0, 0, 2, 0]",2,10,15,0,2275.0046990741 +"https://github.com/rhinstaller/efivar.git",2012-08-16 18:10:11,"eab7633042b5979582208cca36ce80989fb555e2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3854.9068634259 +"https://github.com/aperezdc/notmuch-addrlookup-c",2014-01-31 14:36:48,"d545ab733466d412d0e20ba6de009372e4a8d7f7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3177.0368287037 +"https://github.com/saz/puppet-memcached",2011-11-20 13:38:05,"3724c499f66b1da82c3ca99a70c12b612ed10d99","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 2, 8, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,4458.983287037 +"https://github.com/venthur/python-debianbts",2015-10-13 08:12:41,"fb8a8039c4ff31eb3f8c3521d17cba0627bdb4cb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 2, 0, 0, 9, 17, 24, 1, 0, 6, 9, 2, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 2, 0, 0, 2, 2, 1, 2, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,1,5257.8413310185 +"https://github.com/json-c/json-c",2007-03-13 08:26:18,"f0d08887b857fce1fe95a68d29eb7a07cd527d7c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5592.2949652778 +"https://gitlab.gnome.org/GNOME/gnome-multi-writer.git",2015-01-02 15:22:18,"2c93f497244581b6d3a113a0c95726834a05af35","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 23, 12, 14, 7, 5, 0, 5, 7, 0, 3, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,23,0,3213.7822685185 +"https://github.com/johanmattssonm/birdfont.git",2012-05-18 07:01:47,"0c5880f197f32b50062a888c07a069409a1b78db","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 7, 0, 0, 0, 0, 0, 9, 15, 11, 13, 29, 15, 21, 31, 27, 32, 18, 8, 4, 0, 16, 15, 7, 6, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0,4158.8272222222 +"https://github.com/Rich-Harris/sourcemap-codec",2015-10-10 04:49:04,"a8698dc52b265fb93c30a922a14263ba94dfa7d4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 4, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,2611.7215972222 +"https://github.com/zeux/pugixml",2014-02-09 00:28:29,"7b41dce85e8f8788027672845fd2867dd9e2b27a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 2, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5448.187962963 +"https://github.com/mobile-shell/mosh",2012-02-05 07:21:37,"da2f481eea0ededfa3e4d256b7e4e00b50164be2","[61, 15, 10, 0, 0, 6, 0, 10, 0, 26, 3, 3, 3, 0, 0, 0, 0, 0, 4, 1, 0, 7, 2, 2, 1, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 22, 18, 12, 63, 48, 47, 30, 16, 36, 77, 31, 16, 8, 16, 18, 1, 0, 6, 1, 0, 0, 1, 10, 6, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,20,0,4605.1291203704 +"https://github.com/LibreCat/Catmandu-Atom.git",2013-06-10 14:22:32,"d094a1c776be12bfecb6f2440c45121839f0dffc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2313.0128472222 +"https://github.com/ioquake/ioq3",2012-01-31 19:41:34,"dbe4ddb10315479fc00086f08e25d968b4b43c49","[16, 7, 1, 7, 0, 10, 10, 3, 6, 0, 2, 1, 6, 3, 1, 3, 2, 2, 8, 1, 1, 0, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 4, 0, 0, 0, 0, 0, 8, 8, 4, 0, 0, 5, 1, 1, 0, 1, 0, 34, 1, 10, 5, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5764.2156828704 +"https://github.com/gildor478/ounit.git",2010-05-24 21:49:19,"bac217e81e7766e52ed0d83ee611d456a563aac3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1284.2142476852 +"https://android.googlesource.com/platform/system/tools/hidl",2016-08-15 21:55:21,"1aa476ba26601828117428c4bdd3367fbf999fec","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 4, 2, 0, 1, 0, 9, 4, 1, 5, 2, 4, 14, 39, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 3, 0]","[43, 16, 29, 153, 91, 85, 198, 117, 57, 95, 110, 126, 107, 81, 36, 59, 78, 97, 104, 15, 93, 128, 61, 60, 70, 75, 1]","[15, 4, 12, 126, 73, 66, 165, 96, 49, 73, 91, 102, 88, 68, 28, 44, 66, 76, 84, 9, 75, 103, 51, 49, 57, 62, 1]",13,2,14,1,2797.1883912037 +"https://github.com/BioPP/bpp-qt",2020-03-15 13:14:10,"9af840add9bf10874a7099de87f455bb2311e84d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5024.8754050926 +"https://gitlab.gnome.org/GNOME/gnome-online-accounts.git",2011-04-19 21:16:00,"118987fabb024253183e381292898f297f2b149b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 24, 2, 10, 20, 28, 1, 10, 1, 9, 4, 0, 1, 2, 0, 0, 0, 0, 4, 23, 14, 11, 19, 4, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,58,0,4620.0965625 +"https://github.com/LibreCat/Catmandu-MARC.git",2012-05-07 06:54:07,"8141e284d8cf520be9fe09ee98a891c7f15c6890","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,2,1,0,4085.0580787037 +"https://gitlab.com/drobilla/fomp.git",2012-08-20 05:16:04,"734a9f490f2f8cb4552c71bfac8fc779f836c436","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4051.6642361111 +"https://github.com/analogdevicesinc/libiio.git",2015-04-02 12:37:04,"bb51a9844c6bf26de2e0f78aa6ed5fcc8cdde064","[0, 0, 2, 9, 7, 8, 5, 8, 9, 11, 2, 0, 1, 1, 9, 1, 3, 3, 7, 2, 8, 12, 8, 51, 14, 10, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[2, 5, 7, 8, 3, 16, 5, 8, 0, 6, 1, 2, 15, 1, 1, 4, 1, 6, 3, 2, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,2,3584.8073032407 +"https://github.com/jlaine/python-netfilter.git",2013-03-05 09:40:15,"10699a37f1930e89d18ad27c1ca99f1fa48e1593","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1238.4928935185 +"https://github.com/TokTok/c-toxcore",2013-06-24 00:12:13,"f8ccb9adb99fc143e11927a461d06da1b3d5bcba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 42, 55, 91, 107, 379, 240, 156, 98, 65, 40, 99, 60, 36, 28, 15, 25, 26, 26, 16, 24, 24, 23, 24, 15, 10, 1]","[8, 1, 12, 29, 32, 137, 89, 42, 32, 16, 12, 25, 21, 8, 3, 5, 7, 5, 6, 5, 8, 5, 6, 8, 4, 2, 0]",1,25,139,0,3824.9777662037 +"https://github.com/iptux-src/iptux",2009-02-13 13:40:43,"2ee00029158ed1c2c3fb405513097278aa1f4a31","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5548.864212963 +"https://github.com/apache/avro",2009-04-09 19:25:42,"9a0bad0604f93cb5733958532c8cc9dac2b605d7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 4, 0, 4, 4, 8, 7, 3, 2, 8, 5, 13, 3, 4, 3, 3, 2, 7, 2, 5, 5, 1, 6, 10, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5362.5630555556 +"https://github.com/rime/brise",2013-02-02 00:35:48,"f71015bac6085b1c380c4197d19568c1e5249059","[1, 4, 1, 2, 4, 5, 0, 2, 0, 1, 7, 5, 0, 0, 0, 3, 2, 1, 1, 5, 3, 2, 2, 8, 5, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 5, 9, 8, 8, 14, 2, 9, 3, 2, 10, 3, 1, 3, 1, 3, 5, 1, 4, 1, 4, 3, 0, 6, 1, 1]","[0, 0, 1, 0, 0, 0, 3, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",0,1,3,1,2544.8862615741 +"https://github.com/linuxdeepin/deepin-icon-theme.git",2014-12-03 09:16:42,"7a059612fb9617121de16f34285c148bff35ac10","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,3289.739837963 +"https://github.com/tmuxinator/tmuxinator",2010-12-08 09:25:22,"91b18206cee141bf3d95f68c5cacfaf2b754ae80","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 16, 4, 0, 0, 1, 2, 0, 0, 6, 0, 2, 3, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",1,1,9,0,4304.3138657407 +"https://github.com/ltsp/ltsp",2019-08-18 17:40:16,"dec892918162be7ff2cb00b509dff1f433dbd50d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 12, 6, 6, 1, 6, 1, 1, 11, 1, 7, 2, 6, 4, 4, 3, 3, 5, 2, 0, 0, 3, 1, 15, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,1481.8791782407 +"https://github.com/lstein/LibIO-Interface-Perl.git",2004-03-26 23:18:31,"fd77c1f62df1d660ff9b6038a7d8c93ca8eab89d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2278.4801041667 +"https://github.com/libratbag/libratbag.git",2015-08-13 01:55:07,"3fefe97451243c486953ac9cef844195ea0bd049","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[83, 165, 71, 41, 107, 12, 2, 17, 43, 46, 20, 0, 10, 2, 4, 17, 3, 15, 4, 0, 0, 4, 0, 0, 0, 14, 1]","[0, 0, 3, 1, 10, 3, 0, 0, 2, 4, 2, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0]",1,3,9,0,3025.6003935185 +"https://github.com/simd-everywhere/simde",2017-03-28 19:14:46,"76e3e25fd0fac7efe63b89ea8c09adfe539749cd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 35, 49, 25, 18, 32, 13, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2452.9409375 +"https://github.com/kilobyte/pmemkv",2017-01-06 03:32:36,"56b72f96038c240012f92ea4ff96880b0aa7528d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 7, 12, 1, 4, 11, 2, 3, 1, 0, 4, 7, 6, 0, 8, 6, 8, 2, 12, 0, 0, 0, 0, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1]",2,1,5,0,2071.5010185185 +"https://github.com/justmoon/node-extend",2012-11-07 20:13:42,"f65c443d4ce3934d6cedcffdf0037a8396c59e03","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1,4212.296400463 +"https://github.com/benningm/mtpolicyd.git",2014-08-29 14:35:17,"9c4c8d717609fe5c95be0ef2fe3b16ad0e707150","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 2, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2186.9926157407 +"https://github.com/hiracy/serverspec-runner",2014-06-15 09:13:52,"746f14d974677a6f6fc1b30504b01be0cc1ca758","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 2, 0, 0, 2, 1, 0, 9, 13, 0, 0, 0, 0, 0, 12, 21, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,3100.2933101852 +"https://github.com/sebastianbergmann/php-code-coverage",2010-04-03 14:35:09,"94388af0c483b94353a81fa1973de8a663a01eb1","[0, 0, 0, 0, 1, 16, 20, 17, 9, 14, 10, 2, 2, 6, 0, 17, 1, 2, 0, 0, 0, 0, 1, 0, 9, 49, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]","[8, 5, 7, 1, 0, 21, 3, 0, 1, 3, 0, 6, 1, 1, 0, 2, 2, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1,5309.6024884259 +"https://gitlab.freedesktop.org/spice/spice-gtk.git",2010-11-23 16:00:17,"d960229a091a7bd5b3ce4a29ae5f5648978af51c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[124, 38, 3, 29, 12, 8, 13, 30, 31, 8, 1, 0, 13, 0, 3, 2, 14, 9, 21, 28, 9, 0, 5, 11, 11, 14, 1]","[0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0]",2,1,7,0,4729.9758564815 +"https://github.com/firehol/iprange.git",2015-11-15 14:42:37,"84a06f67597c2c4926e3649642bc037ed660da3f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 0, 0, 0, 3, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[7, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,4,3,0,1873.7119328704 +"https://github.com/Lawouach/WebSocket-for-Python.git",2011-08-08 20:55:33,"491ba8df12d70661b3e1fbad0e52196a166e1ec5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 20, 20, 2, 5, 1, 14, 5, 3, 0, 0, 0, 2, 1, 0, 2, 0, 0, 9, 0, 1, 2, 0, 0, 0, 6, 1]","[0, 0, 2, 1, 0, 0, 4, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0,4476.5480902778 +"https://github.com/gauteh/lieer",2017-03-05 14:56:38,"45047cd988e95c3c353c2657eaa46df48f9b7eb8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 11, 0, 10, 3, 0, 0, 2, 3, 3, 3, 0, 3, 1, 1, 0, 0, 0, 0, 0, 1, 1, 6, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,2464.2436689815 +"https://github.com/angband/angband",2009-01-22 01:08:05,"f594182282f3cd65a3b29e4fc366ee090bfee171","[0, 1, 0, 1, 0, 0, 0, 0, 3, 24, 8, 2, 0, 0, 0, 0, 6, 4, 0, 0, 0, 28, 5, 30, 11, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 38, 36, 14, 3, 4, 1, 0, 0, 12, 16, 40, 17, 1, 0, 8, 20, 10, 11, 11, 8, 10, 2, 24, 5, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5784.383275463 +"https://github.com/janmojzis/dq.git",2015-01-01 10:30:21,"104cf888c72ea28f4c5e73a841e92c989c7632e2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2922.0256712963 +"https://github.com/ukui/ukui-indicators",2017-01-20 06:23:05,"865546e5830e12445a34b3e27f3a86466dd7304a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 4, 0, 4, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,1239.8214814815 +"https://github.com/antanasbruzas/abGate.git",2017-01-05 16:04:40,"e803054b87ef7dd8a9a5ee2499bd1e9dba8bfec3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,1677.5786226852 +"https://github.com/firewalld/firewalld.git",2013-06-12 10:46:55,"7f9095c745fec8c8db67b4be6dde3c47cc4293e1","[9, 1, 0, 1, 20, 4, 1, 6, 7, 11, 6, 2, 5, 14, 20, 14, 1, 5, 7, 10, 7, 3, 12, 5, 18, 21, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[11, 16, 14, 6, 8, 18, 34, 8, 0, 22, 13, 4, 10, 5, 5, 18, 24, 10, 17, 27, 5, 5, 10, 2, 10, 2, 1]","[0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,2,0,4736.135462963 +"https://github.com/cyrusimap/cyrus-sasl.git",1998-11-16 20:06:36,"6f4b36e25a44e5f9a4627340920b88816507961c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 22, 3, 1, 1, 0, 0, 1, 7, 1, 0, 9, 7, 5, 2, 10, 5, 1, 16, 22, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5510.1634606482 +"https://github.com/sybrenstuvel/python-rsa",2011-07-30 17:58:25,"d94c677a45b981a852f3ea7b1d5ad12ef31e9edf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 23, 18, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0]","[50, 27, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,1,5670.1946296296 +"https://github.com/rncbc/qxgedit.git",2009-07-20 23:04:08,"04f2c0f7acf5ddeb409f6463e015061e91777127","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 9, 8, 6, 6, 15, 18, 12, 9, 13, 1, 0, 0, 0, 1, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5219.9988078704 +"https://github.com/itamae-kitchen/itamae",2013-12-22 06:40:52,"815f39ca717313d3bc94d6e6a500074ea2a89cf7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3570.7650925926 +"https://github.com/LibreCat/Catmandu-FileStore.git",2018-06-25 09:56:55,"5e985d798ebba722483e300fa5f454db170da123","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,1,0,1680.9195138889 +"https://github.com/mmottl/gsl-ocaml.git",2009-07-12 23:43:24,"e326c5d3902f7f617f8d415b82727d133267cd69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3442.6045023148 +"https://github.com/webhippie/gettext_i18n_rails_js",2012-08-20 20:30:00,"d78d6b2df13cd3a5170ec72c0c32c1f538f54204","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,2,1,4076.9871759259 +"https://gerrit.wikimedia.org/r/integration/uprightdiff.git",2015-11-16 04:44:13,"b8b489ea3775fa8c17dc51d361954fc7c1895613","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 6, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1498.113587963 +"https://gitlab.dune-project.org/staging/dune-typetree",2013-08-26 18:33:50,"c276879fa715b2045ef0e9fe9c42a67e6559ebf4","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 5, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[20, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 3, 6, 1, 0, 3, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,6,0,5388.2080555556 +"https://github.com/savoirfairelinux/opendht.git",2014-11-20 06:21:09,"4f81ea2603d1af16a183cd0be82d99cac998dd3e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 6, 35, 13, 1, 4, 2, 3, 3, 3, 2, 0, 4, 8, 3, 5, 6, 9, 15, 14, 2, 12, 4, 3, 1, 4, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",1,1,8,0,3308.8721527778 +"https://invent.kde.org/plasma/plasma-workspace.git",2014-03-30 23:31:46,"da27b276789a213775f1d1fdba20e5ca91430af2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 69, 31, 42, 31, 107, 62, 39, 67, 82, 61, 130, 74, 38, 43, 17, 10, 4, 7, 7, 5, 8, 6, 2, 1, 0, 0]","[1, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,39,0,3546.1462037037 +"https://github.com/sebastianbergmann/php-invoker",2011-03-09 15:22:06,"c171b14f9744a4875fa725be80dd3bc678f35a13","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4657.8966203704 +"https://github.com/qTox/qTox",2014-06-24 20:19:37,"3dd7065378424295c173c6d555de1820b931a937","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[142, 134, 47, 10, 33, 21, 23, 22, 5, 87, 64, 90, 13, 103, 90, 71, 143, 75, 96, 159, 167, 47, 46, 32, 18, 14, 0]","[23, 43, 8, 4, 11, 3, 3, 5, 2, 15, 10, 18, 6, 21, 18, 19, 44, 16, 27, 38, 28, 15, 11, 11, 8, 6, 0]",1,20,71,0,3154.6886689815 +"https://gitlab.com/man-db/man-db.git",2001-04-26 17:31:14,"190b315e1caed82966c31306213aa58ab62abdf8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 6, 17, 3, 6, 1, 4, 4, 13, 8, 4, 3, 1, 1, 3, 0, 6, 3, 7, 3, 2, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5772.9898148148 +"https://github.com/srikanth-lingala/zip4j.git",2019-05-04 12:27:40,"3d40c8c0595b0ee564190a40970dbe3b59cf9f5a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 11, 8, 13, 4, 6, 30, 8, 11, 3, 7, 5, 9, 5, 2, 1, 4, 10, 1, 0, 5, 10, 8, 1, 0, 1]","[0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 0, 1, 3, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0,1425.3305787037 +"https://github.com/voyageur/wmsysmon.git",2017-12-06 12:46:20,"5b62cd9db804a2e7e14cdc4c8a81f475fda15619","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1940.3190625 +"https://github.com/sobolevn/django-split-settings",2013-05-17 06:05:09,"454775cce320386f7466d3866efbffdc3c3d51f9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,3,0,3860.1584027778 +"https://github.com/gpertea/gclib",2015-09-04 19:06:38,"ae32a9ebae00a1827b14ea3d3224a72272590722","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2782.2130555556 +"https://github.com/bzed/debian-ksmtuned",2015-01-30 23:54:12,"c519671361b6ddad2c6d14f2099fd9a27a7091e9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,2027.7201157408 +"https://github.com/tox-dev/tox.git",2010-07-12 10:50:27,"6b669316711207812419a7dc747eb1af157631d9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 4, 2, 27, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[29, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 10, 12, 0, 2, 8, 0, 8, 0, 0, 0, 1, 0, 3, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,1,4934.8446412037 +"https://gitlab.com/fkrull/quark-sphinx-theme",2016-02-24 02:30:30,"b6f260d987e07d755bedb560a96fd2a5fa0f8eb2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 23, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,1866.554224537 +"https://github.com/TomKellyGenetics/vioplot",2016-03-17 04:27:07,"0ebf607f477473327fe4e47644e7aa52205afecf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 32, 0, 0, 4, 0, 1, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,2457.8733912037 +"https://github.com/ImageOptim/libimagequant.git",2011-12-26 21:31:04,"74f5b43759234f741cb72aadb2a4a89cf0b112f9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0,4336.732037037 +"https://github.com/thp/minidb.git",2010-10-30 11:58:42,"bfd84cbe29deaa7a94bf960f329d16a1d4a5659f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4339.2984953704 +"https://github.com/P403n1x87/austin",2018-09-23 00:13:53,"48c142e85d6e08edba82f7ef453cb07783dae911","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 3, 0, 3, 3, 0, 5, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,1837.728599537 +"https://github.com/seb-m/pyinotify.git",2009-11-03 07:48:22,"288efd44da7762dcc6b1ae33328df369491396da","[0, 1, 1, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 5, 0, 0, 1, 1, 1, 1, 3, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 0, 1, 0, 0, 0, 2, 7, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2642.3433796296 +"https://github.com/felixge/node-formidable.git",2019-12-06 07:55:06,"e658324ea5e64a0f7746f58e0331cac0bc873511","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 63, 11, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,1,5,0,4861.6687384259 +"https://github.com/pixelb/crudini",2013-01-26 00:41:41,"fa83e1d2f0d4b01a18c9e8846f01655b42485b39","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3928.4521064815 +"https://github.com/mate-desktop/mate-utils.git",2011-12-14 09:13:54,"ef0467789bfc8406b57ba553e4d59f4d6c3f9be8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0,4329.9789930556 +"https://gitlab.com/arcmenu/ArcMenu.git",2020-09-20 13:26:43,"f65d8a6bed05de3e636f75e14167d032ae247be2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 17, 10, 15, 9, 20, 0, 2, 7, 1, 5, 0, 0, 0, 2, 0, 1, 24, 0, 0, 3, 4, 1, 5, 1, 6, 1]","[2, 5, 3, 5, 2, 4, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0]",2,1,11,0,1176.1198611111 +"https://github.com/tidyverse/lubridate.git",2010-08-31 14:39:53,"0f0bb7d04dfa1486e6c2880beb1bf6403f8d2c40","[0, 1, 1, 8, 3, 5, 7, 3, 2, 21, 5, 0, 0, 0, 1, 17, 0, 0, 0, 5, 18, 12, 0, 17, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0]","[2, 0, 0, 0, 0, 7, 23, 17, 6, 0, 7, 0, 0, 6, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,5324.8468981482 +"https://github.com/google/python-subprocess32",2012-11-16 02:25:39,"ac220bfe4603901bb577116286325cc30217ea25","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2769.8086226852 +"https://github.com/compuphase/minIni",2015-03-13 12:35:09,"d9d04c43be01e673e4daa283f897751ba280bda7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2280.3336342593 +"https://github.com/babelouest/ulfius",2015-11-02 23:15:36,"d8231fc57b4f07ef45ac8b9fd1dbdf5cc0397bee","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 10, 0, 0, 1, 3, 2, 6, 1, 4, 0, 3, 5, 0, 7, 2, 3, 1, 0, 2, 7, 1, 0, 4, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,2934.0478356482 +"https://github.com/volkszaehler/libsml",2011-06-16 10:26:21,"d105cd39b103ba7b73900cd7db89df41a696e3bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 7, 1, 11, 30, 6, 0, 0, 0, 20, 8, 9, 2, 0, 3, 15, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0,4561.3065740741 +"https://github.com/py-pdf/pypdf",2011-12-30 15:04:56,"c59a212a4cda512c184a987312970b464404d17b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 5, 0, 0, 1, 0, 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,4367.5921759259 +"https://github.com/ipython/traitlets.git",2015-04-08 23:33:28,"e722b4788b076c8f7b4b38c4926e49c15cbf4423","[1, 1, 1, 1, 15, 13, 3, 4, 0, 8, 0, 0, 0, 0, 1, 3, 5, 0, 5, 5, 5, 1, 4, 41, 17, 30, 2]","[0, 1, 0, 1, 1, 3, 1, 2, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 0, 0, 2, 13, 4, 10, 0]","[6, 13, 3, 1, 4, 5, 7, 17, 10, 27, 3, 6, 1, 8, 4, 22, 1, 6, 6, 4, 11, 11, 10, 17, 8, 15, 1]","[1, 4, 1, 0, 2, 0, 2, 6, 5, 7, 1, 2, 0, 3, 1, 4, 0, 2, 2, 1, 2, 1, 2, 7, 1, 5, 1]",4,2,6,0,5659.0350347222 +"https://github.com/rails/jbuilder",2011-11-27 14:02:46,"65112058afb52a7a9345f24b8735dcba7df1f871","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 5, 1, 0, 0, 0, 1, 0, 10, 0, 4, 0, 4, 0, 1, 0, 9, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,15,0,4285.4706134259 +"https://github.com/mootools/mootools-core.git",2008-04-21 22:26:49,"d14ac127a614c8f0106a620b735823f7c0b1162e","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2900.1052662037 +"https://github.com/tpm2-software/tpm2-tools",2015-08-21 01:07:28,"d4069d9279a3cd5a10e6919f157f66d625ba1b48","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 1, 2, 2, 0, 0, 0, 2, 3, 1, 3, 4, 8, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 2, 3, 0]",1,1,5,0,3038.5204976852 +"https://github.com/osdlyrics/osdlyrics.git",2009-05-10 08:53:39,"860a8e626d49da8007a57830c03572514cb75bf9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 5, 3, 1, 6, 3, 1, 2, 8, 5, 3, 4, 2, 3, 3, 6, 1, 1, 8, 3, 0, 2, 4, 1, 16, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",2,1,2,0,5185.1183796296 +"https://github.com/n2ygk/aprsdigi.git",2004-02-24 21:34:05,"c6b2a1c45f9881ef04af0cff03736662e697f9ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5178.2461574074 +"https://github.com/gohugoio/hugo.git",2013-07-04 15:26:26,"50a1d6f3f155ab837310e00ffb309a9199773c73","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 9, 9, 27, 51, 27, 12, 26, 2, 16, 6, 11, 30, 2, 4, 16, 11, 11, 6, 3, 4, 10, 6, 2, 10, 1]","[3, 0, 2, 0, 7, 15, 11, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,37,0,3813.722662037 +"https://github.com/x42/libltc",2012-08-13 03:32:44,"3b26fe05b980903959289bf3e09870dfa4a9ae41","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 0, 0, 0, 0, 0, 2, 6, 10, 14, 15, 11, 13, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3674.4912152778 +"https://github.com/sciurus/vagrant-mutate",2013-10-19 19:57:14,"0d1c20d0b66b7b19503e1849010903e00818dda5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 7, 1, 10, 6, 13, 7, 6, 0, 13, 1, 0, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0,1407.9479166667 +"https://github.com/heynemann/pyvows.git",2011-04-18 00:24:51,"a606f0132cb4e4702001d759b296a1388ab22ce1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 71, 16, 8, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 19, 9, 2, 23, 4, 0, 0, 2, 0, 0]","[0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0,4554.9610763889 +"https://github.com/CoreSecurity/pcapy.git",2014-03-13 15:01:03,"c7ae110ade63df9476357a8762ceff7549f990d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1937.2327893519 +"https://github.com/lcdproc/lcdproc",1999-12-09 23:15:14,"2635c3085d0efae33ca91cf89d8d1eceff03dccd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1977.3798148148 +"https://gitlab.com/gnutls/libtasn1",2002-04-05 19:57:55,"c379ce7b913aaaa136c3f3ac4542770068fc2ddc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 4, 0, 2, 0, 8, 7, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5754.7146180556 +"https://github.com/php-fig/link-util",2016-08-04 19:47:59,"08b67e55dbb02e91e88729417acdac0cc871efe1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,1680.1398148148 +"https://github.com/pauldmccarthy/indexed_gzip.git",2016-03-10 23:03:47,"ec713e934be910fa4cde6ac09321bf90bd3d8ef3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 5, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2811.3833101852 +"https://github.com/OpenPrinting/pycups.git",2007-07-05 16:44:04,"165a48029fa26441cc1815eee32a00f2b6910bec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[210, 0, 0, 0, 0, 0, 0, 10, 1, 8, 3, 0, 0, 0, 3, 0, 0, 0, 6, 11, 2, 1, 3, 3, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5524.6673842593 +"https://github.com/rtsisyk/msgpuck",2013-11-12 14:41:41,"9f3a5b33c4329300fd351bd04bc804cf808db279","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1946.1415046296 +"https://github.com/orcasgit/python-fitbit",2012-02-17 18:59:34,"b09fe0bcf65b617f8fd214d3e718e731bc54207c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,2733.1176967593 +"https://invent.kde.org/plasma/breeze-gtk",2015-05-12 10:40:27,"9e43116d311c6271713f87a965c5e446802a3405","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 21, 1, 12, 0, 2, 0, 0, 0, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 1, 4, 0]","[0, 4, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,10,0,3131.2482291667 +"https://github.com/steveire/grantlee.git",2009-05-12 18:29:06,"3569595094a0b2826b260dc9681307cceb5c16ad","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 44, 18, 51, 24, 29, 0, 9, 3, 0, 0, 0, 5, 0, 6, 3, 16, 4, 6, 17, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4939.9756481482 +"https://github.com/jonathanio/update-systemd-resolved",2016-06-14 20:54:19,"208686005394a592827d81f13046a05b0fe2305e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 1, 0, 1, 0, 0, 0, 3, 3, 0, 39, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,4,0,2661.6920949074 +"https://github.com/xmoto/xmoto",2007-02-05 19:58:16,"4bf4d785fa19a4d6d648d33207b33e5531a141be","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 41, 44, 40, 6, 27, 14, 28, 2, 32, 24, 24, 37, 19, 9, 7, 7, 8, 19, 8, 19, 5, 1, 4, 17, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0,5752.6098148148 +"https://github.com/simsong/tcpflow.git",2012-04-01 05:04:40,"3043e4586bb1c977aa02ad7f6c50d259a9185c37","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 2, 0, 0, 0, 3, 1, 0, 0, 3, 2, 4, 7, 0, 5, 5, 6, 2, 2, 8, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]",2,3,6,0,4133.2346875 +"https://github.com/intjelic/python-sfml",2011-02-12 20:54:34,"eebbf987a08ca2a0c1d068be0c4e237ad496e748","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 12, 22, 7, 0, 0, 0, 9, 8, 4, 3, 0, 8, 2, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,3,0,3326.0384143519 +"https://github.com/claytonotey/libsbsms.git",2021-01-18 04:59:55,"d0dfda337a8aee8e33f7da22d66a464d997e4073","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0,571.9734837963 +"https://github.com/webcamoid/webcamoid.git",2012-02-25 15:11:41,"b8ac2286446a2a35bf6a090b1fb00e4706038272","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 1, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 5, 3, 0, 0, 1, 4, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4311.3546990741 +"https://github.com/OpenPrinting/cups-filters",1999-05-14 17:03:06,"cb41960921511ebaa9dac722b53b96708f81c655","[1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 11, 5, 12, 1, 9, 11, 11, 0, 22, 9, 14, 1, 52, 18, 12, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 14, 5, 18, 24, 61, 16, 26, 27, 9, 37, 15, 11, 7, 11, 14, 14, 5, 15, 31, 1, 10, 10, 25, 17, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5780.7735185185 +"https://github.com/linbox-team/givaro",2004-05-12 16:08:24,"ae1e50dc95940d3a1c986344973a10a30040e3b6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 9, 0, 2, 7, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 15, 0, 2, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5710.7340740741 +"https://github.com/inverse-inc/sogo.git",2006-06-15 19:34:10,"f18c764ffad13c8e3dbda85019025b65d71f614d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 12, 29, 5, 0, 35, 54, 27, 49, 37, 39, 30, 59, 33, 46, 38, 96, 56, 68, 49, 59, 19, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0,5788.1129976852 +"https://github.com/moment/moment.git",2011-03-01 02:53:16,"52e2408c33bcedf9907f987b7b95aa7efbfeb7bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 9, 6, 4, 0, 7, 0, 0, 3, 5, 0, 0, 0, 0, 6, 6, 6, 0, 3, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4145.5463541667 +"https://github.com/taem/cd-discid",2009-08-07 05:44:30,"3c31b32079a65133abd0219fd20a6ceb6dc1c8f2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 13, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,2591.0086574074 +"https://github.com/radio-astro-tools/radio_beam",2014-04-11 19:26:05,"67ea938f4d2d8931fe01fa6d915838b02dbba1c7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0,3526.8169791667 +"https://github.com/fkei/JSON.minify",2010-06-22 12:38:49,"807ef4d90048a5f150c10fd8a722ef4758589154","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,3001.0353819445 +"https://github.com/silnrsi/font-andika",2017-06-05 09:29:42,"27cc747e54a6c689a47d4e4d0faacd37abed9052","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 8, 3, 0, 0, 1, 3, 3, 12, 1, 0, 0, 1, 0, 2, 2, 11, 1, 7, 1, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,2361.7046180556 +"https://github.com/shesek/iferr",2014-04-11 16:07:19,"b95cb0010d4aba2eac3363bb505b483a6d8c1e93","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,3291.1148148148 +"https://github.com/prometheus/blackbox_exporter",2015-09-05 17:37:28,"1788a049dcaacbc9b81e44b3d3745a8e2c26df3a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 0, 0, 0, 0, 7, 0, 0, 3, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 0, 0, 3, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0]",1,2,9,0,3018.8387268519 +"https://github.com/iarna/DBIx-Abstract.git",2011-08-18 17:49:16,"4134d4e35ba8f8582855ea2a52d4556cc73cdca7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3028.2298842593 +"https://github.com/mchehab/zbar",2007-02-19 00:37:11,"ae0168b2547dea5136416d9d0c5e90587532d2b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 4, 0, 0, 1, 3, 4, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5577.4200578704 +"https://github.com/ggruen/Chatbot-Eliza",2009-12-10 06:14:13,"aaa0ca11abc686120aaff57627f020f52ba43a31","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2872.7296875 +"https://github.com/ifcquery/ifcplusplus",2018-02-05 11:09:40,"841a5254392b74fa370d43567b35c2da9755d20e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 6, 0, 0, 1, 0, 1, 2, 4, 0, 0, 2, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0]","[7, 6, 1, 8, 1, 11, 0, 0, 0, 0, 0, 2, 7, 5, 4, 1, 0, 1, 9, 0, 0, 0, 1, 0, 0, 4, 0]","[2, 2, 0, 2, 1, 3, 0, 0, 0, 0, 0, 1, 1, 1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1,3159.9779050926 +"https://github.com/sdsykes/fastimage",2009-06-10 13:58:57,"fab2f9939bdf634ed00c0e253890473affefc857","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5223.7173726852 +"https://github.com/lxc/python3-lxc.git",2018-02-14 17:34:35,"8c49ddee6fe467618bc30a26cdde02dd1cd6cb21","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 6, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,1985.8989351852 +"https://github.com/drobilla/sord.git",2011-01-27 19:29:55,"0c67a1bd0cd5f40fe93584a2e3713cb8963d6835","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 15, 2, 5, 12, 3, 8, 6, 0, 0, 2, 23, 6, 5, 12, 25, 0, 2, 1, 1, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4651.0402893519 +"https://github.com/r-lib/testthat.git",2010-08-25 18:30:20,"a83e97fa6ab26528e630f9d7b89828857a675422","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 0, 0, 0, 2, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1,5204.1229861111 +"https://github.com/browserify/browserify-sign",2015-08-13 21:38:24,"dd76c988ce7d1a6ff24e5ea55408d1771aa62380","[0, 0, 0, 19, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 16, 0, 0, 0, 0, 3, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,2,3266.7325578704 +"https://github.com/expressjs/media-typer.git",2014-06-13 19:11:05,"aefafa3ae59574bf8b16c57d529bd1d930106ad9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2488.2450925926 +"https://github.com/alexei/sprintf.js",2013-04-02 17:43:49,"2d3b0f433ae3fd74f0075d4b1627cddeae92e805","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3813.8363078704 +"https://github.com/ropensci/taxize.git",2011-05-19 15:06:16,"667004eac329869099fdccb481138f572576cb69","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 2, 0, 1, 1, 3, 1, 1, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,4557.2839467593 +"https://github.com/keymanapp/keyman",2014-11-01 21:03:05,"a3226706909bb151d454e2c86e2ea4f2aa26f52c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 5, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,1,3329.4431944445 +"https://github.com/plastex/plastex",2004-11-02 15:14:12,"9c40f2ecd5ba8c40bce695ca7e81eaaa7647c6dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 0, 0, 0, 3, 3, 5, 3, 8, 10, 6, 5, 2, 3, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5539.2969907407 +"https://github.com/Nheko-Reborn/nheko.git",2017-04-06 01:03:46,"227a46c32ae02130442a2769475d7a6b217ba455","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 10, 22, 10, 20, 11, 12, 18, 7, 0, 0, 0, 7, 4, 2, 0, 6, 14, 9, 3, 4, 3, 3, 4, 9, 23, 1]","[0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0]",1,2,16,0,2443.2706365741 +"https://github.com/kilobyte/qjoypad",2004-01-08 18:53:25,"7c82c85c713185d67154cf52f4f3701aaf8676da","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4422.6630092593 +"https://github.com/psi-im/psi.git",2007-04-08 08:11:44,"5a8c722526af975db6f3f9b9150d240dbf984ea3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[609, 7, 8, 42, 32, 11, 3, 4, 5, 0, 8, 8, 4, 9, 9, 1, 0, 5, 4, 0, 0, 4, 1, 2, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0,5747.445775463 +"https://github.com/d3/d3-color",2015-06-02 16:48:44,"404caef01faa1edacb3dcdf29a96ec5c3c532ab8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[74, 3, 6, 0, 1, 5, 10, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 3, 2, 0, 4, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3047.9240046296 +"https://github.com/hbons/SparkleShare",2010-04-27 14:35:52,"5951657dbc8280f251fec40423e70f517ea8118f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[85, 38, 32, 51, 21, 16, 64, 93, 18, 51, 21, 22, 40, 57, 37, 31, 14, 35, 14, 31, 8, 10, 16, 33, 2, 20, 1]","[0, 0, 0, 0, 0, 0, 5, 6, 2, 9, 2, 3, 3, 5, 1, 3, 1, 3, 1, 2, 0, 1, 0, 1, 0, 2, 0]",1,3,45,0,4856.867974537 +"https://github.com/siracusa/rose.git",2015-03-17 23:09:18,"6851ef5298e983609d7b71b7896fbcdbba13a281","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5666.5254166667 +"https://github.com/jtzemp/base62.git",2008-10-04 21:54:23,"958c6691e3cd88a3ca101aa8892b77c74d135bd3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1973.6897222222 +"https://github.com/varnish/hitch",2011-06-10 03:13:39,"60084bb62961f295c619d26ae0315b22b4dcaae4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 3, 3, 21, 5, 2, 0, 2, 19, 6, 2, 5, 15, 1, 6, 1, 13, 1, 0, 6, 1, 0, 0, 0, 0, 1]","[3, 0, 1, 0, 2, 2, 0, 0, 0, 5, 3, 0, 1, 2, 0, 0, 0, 6, 0, 0, 3, 0, 0, 0, 0, 0, 1]",2,6,23,0,4466.179224537 +"https://github.com/ktbyers/netmiko",2014-11-28 21:42:52,"87bdbe14668b08177b5f0c887856e36c95f7e6be","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 21, 54, 10, 0, 3, 0, 2, 20, 7, 3, 8, 4, 17, 35, 12, 20, 9, 6, 13, 0, 28, 53, 16, 15, 8, 0]","[0, 3, 8, 0, 0, 1, 0, 0, 4, 1, 0, 1, 1, 4, 8, 2, 1, 0, 0, 0, 0, 1, 5, 3, 2, 0, 0]",1,4,13,0,3283.2779282408 +"https://github.com/awslabs/amazon-ecr-credential-helper",2016-05-21 21:10:06,"34df182b2881796da2a08a01390434a8962ae741","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,2759.7970717593 +"https://github.com/gosa-project/gosa-plugins-pwreset",2015-10-29 14:18:15,"4163e5f5c1fdff4828c8da45dd09cee5bc52bff8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2184.168125 +"https://github.com/Infinidat/munch.git",2010-01-26 03:18:43,"e4f155052194f7d316db5e7c449b76acb58b96c7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4904.2753125 +"https://github.com/XQF/xqf",2000-11-05 20:40:48,"ecdf6d7869c4b9e5690707390c0f0cbdcc7ef54b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 1, 1, 1, 0, 3, 4, 3, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4749.0990509259 +"https://github.com/x42/x42-plugins",2013-05-21 23:33:53,"94b9db87700f43bf4a0d4438e78bbe817b5f81ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3642.2395023148 +"https://github.com/cea-hpc/clustershell",2009-01-20 21:40:55,"c3fa5146abe51435c3912f53727db3ca0f67f165","[0, 0, 1, 0, 0, 0, 0, 0, 0, 10, 8, 1, 6, 0, 0, 0, 0, 3, 8, 0, 1, 0, 0, 0, 6, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 10, 5, 3, 0, 0, 1, 0, 4, 1, 2, 0, 0, 2, 0, 0, 0, 0, 11, 4, 1, 3, 18, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0,5641.4586111111 +"https://github.com/credativ/pg_checksums.git",2018-04-16 10:44:43,"190e8b9301ef5623d8b9173a67c235c54ca70e91","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 3, 2, 1, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 7, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,1977.03125 +"https://gitlab.com/rhendric/puka",2017-09-30 00:34:10,"abed3cdef4a921092b552733305bdd2070663eca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,959.1950115741 +"https://github.com/lxc/lxcfs.git",2014-12-12 12:44:09,"60f73aff3126dc2850a4fb698f911e4279ba46b0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 5, 5, 5, 4, 9, 1, 0, 4, 2, 0, 1, 1, 0, 1, 14, 2, 6, 1, 3, 3, 2, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,4,6,0,3289.0780671296 +"https://github.com/fadecut/fadecut",2011-01-21 12:58:51,"c99da0bfec99a038f58cee7e5c020e46eb9b0bd4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[78, 120, 40, 24, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 18, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,6,0,2792.815474537 +"https://github.com/prehor/amavisd-milter",2005-05-10 21:37:59,"4127f425fbb170317bf14f36240d91b0fe529dcc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 7, 2, 2, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5582.9392824074 +"https://github.com/Wiimm/wiimms-iso-tools",2020-07-23 22:35:40,"41ad6ec89f3a65c39f3f32bfcb25679c518d017c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,764.4320717593 +"https://github.com/libvips/ruby-vips.git",2010-08-05 07:01:37,"6e418e93b11fb0538b29f034c6017b11147207c1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4866.200162037 +"https://github.com/jch/html-pipeline",2012-08-24 19:49:28,"4c064381a184791c49eb7ac3d388b445d4195aa1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 12, 16, 6, 10, 0, 0, 0, 24, 3, 0, 37, 7, 8, 0, 0, 2, 0, 0, 0, 5, 3, 0, 0, 0]","[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 2, 1, 0, 8, 4, 2, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0]",26,5,15,0,4034.7769328704 +"https://github.com/wojtekka/6tunnel",2005-05-08 10:39:22,"5bc8c3b3c2270fdc6e6ec8717e215119738194d9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,2673.0241203704 +"https://github.com/samg/diffy",2010-06-29 03:12:26,"33f33fce0a5ccc085a36c5e5ddf83c4ce9424d18","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 16, 2, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4494.6685763889 +"https://github.com/jryans/timers-browserify",2012-05-26 02:34:11,"94cfa2b49f817237460c6e3807b287162de6f8bd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3168.7872916667 +"https://github.com/dh4/cen64-debian",2015-04-15 20:38:26,"5296a55ee5704611b84fb444575fe59d775a62b7","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1926.2346064815 +"https://github.com/oetiker/SmokePing.git",2005-02-11 20:22:38,"3623e33d0ae10eaeca653e00a3796495dbc0f713","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 12, 7, 9, 0, 0, 0, 0, 4, 0, 0, 0, 8, 2, 4, 9, 0, 0, 0, 0, 4, 0, 0, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5773.8930902778 +"https://github.com/sinatra/sinatra.git",2007-09-11 01:14:00,"208158a7dafa0af88b443be51f9ce985e857ad16","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 4, 9, 22, 1, 0, 15, 0, 0, 0, 41, 34, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 1, 17, 2, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0,5774.2084027778 +"https://github.com/kometbomb/klystrack",2016-08-04 17:10:11,"07073d8286ef5e2524d3a2905dccef983b2ff4dd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 3, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1,3882.7988194445 +"https://github.com/LibreCat/Catmandu-Store-MongoDB.git",2012-05-04 13:27:30,"f8ca7a8743865fe6c1896c64e64cde1294dd2687","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3318.0048263889 +"https://github.com/shibatch/sleef.git",2016-04-24 05:47:06,"87a08c98052caf7ba86391748a938c2534f46a4d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2789.4703935185 +"http://github.com/yarikoptic/vowpal_wabbit",2009-04-29 23:16:59,"89b6cd6a38264153ae425117e09ceff3d4d92b3e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3692.4062037037 +"https://github.com/theturtle32/WebSocket-Node",2011-04-09 10:22:13,"071a49fb506e6e81f7918c0ff6e0b85952e243e9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 2, 25, 0, 0, 0, 0, 0, 2, 0, 9, 0, 4, 0, 43, 0, 4, 19, 18, 11, 2, 2, 0, 0, 4, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,3898.1259490741 +"https://gitlab.gnome.org/GNOME/libgdata.git",2009-01-03 10:02:43,"3ea04f77323acbd85b95d863dd730e2fd8f009ed","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 3, 0, 1, 1, 13, 3, 6, 3, 9, 10, 11, 12, 44, 5, 7, 11, 13, 5, 12, 2, 4, 2, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0,5321.5631944445 +"https://github.com/janmojzis/tinyssh.git",2015-01-01 10:55:33,"97dd9e05f52482e46d660af81547c7c02669c1a2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 21, 13, 2, 29, 6, 17, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3264.9232175926 +"https://github.com/libtom/libtomcrypt",2010-06-16 10:37:53,"b8b6e1ad589e59f0ef442c826a3c96c2a24b9cda","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4891.575775463 +"https://github.com/GostCrypt/linux-crypto.git",2018-10-09 07:13:51,"387b43883b9ee3d1cce06e456d7919da1f4b71f4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 10, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,1726.5372222222 +"https://github.com/r-lib/rlang.git",2014-08-12 15:08:31,"737124817f8f35c8b2c72c86fa0e361950f08e48","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 16, 0, 0, 17, 45, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1]","[1, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,7,0,3372.9181828704 +"https://github.com/hanslub42/rlwrap",2014-02-23 17:32:53,"f3d3ae405f20b0f78681add144735dbfd81f8a6a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[34, 16, 0, 0, 0, 0, 0, 0, 0, 0, 23, 35, 5, 13, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1,3317.1894560185 +"https://gitlab.xfce.org/xfce/xfce4-panel",2002-05-20 14:56:42,"d7074befadf86788e4aa3cc56f451231acf02569","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 4, 4, 12, 0, 8, 1, 4, 9, 4, 9, 1, 0, 0, 8, 7, 26, 36, 11, 10, 1, 9, 0, 20, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0,5779.0596990741 +"https://github.com/OpenHMD/OpenHMD",2013-05-28 15:02:26,"a1662d7816171e7903e3facfbc4edf5698f0bead","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 5, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3515.7873958333 +"https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git",2009-10-13 07:00:10,"a376dd57a19e7f2270b8e77886bb3bc0acd1ea4b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 9, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,1409.5210763889 +"https://github.com/hroptatyr/dateutils",2014-02-03 11:45:20,"9d31f420674b2adae959f50df341a7452d6fabd4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 12, 2, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3585.0248032407 +"https://github.com/gkz/LiveScript",2013-12-07 00:33:58,"05be2735ca7b4b2c6bf1349a0756b43c02cfebb2","[2, 2, 0, 0, 12, 8, 9, 5, 0, 6, 2, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 1, 0, 1, 1, 6, 1]","[1, 1, 0, 0, 1, 1, 4, 0, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0]","[0, 0, 0, 2, 0, 0, 0, 1, 2, 1, 0, 0, 0, 7, 2, 6, 10, 3, 0, 2, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,1,3444.0588194445 +"https://github.com/warner/python-ecdsa.git",2010-04-19 02:10:33,"0fa0573419c4736e34c093131b75109b44b65ac9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4921.8631134259 +"https://github.com/swaywm/swayidle",2019-01-12 14:26:38,"6c78c679257f298b983a44ae41a2d0ce986d8bd7","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 2, 0, 2, 5, 0, 1, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 4, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0]","[7, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,1,9,0,1867.500775463 +"https://github.com/beanstalkd/beaneater",2012-10-11 08:41:41,"1b67c68eae7af0d3dfff42a8bddc869209d2f4d2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 24, 107, 56, 14, 0, 0, 7, 0, 0, 0, 0, 0, 3, 11, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,1,6,0,3900.0326736111 +"https://github.com/jkraemer/mail-gpg",2008-11-22 03:17:14,"e50471eaccdfc457ddad16c74e11353f74b1340a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4267.9559722222 +"https://github.com/Coin3D/pivy",2015-11-11 18:03:11,"b0468aaf4fa7e8f4c0641b0cc64457bdbae6b00d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2942.7228587963 +"https://github.com/flonatel/pipexec.git",2014-03-16 18:34:35,"51012e65db0fbef389132fc3d981c2a917ad1446","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 8, 51, 5, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0,3308.5569560185 +"https://github.com/fangfufu/httpdirfs.git",2018-07-18 15:26:26,"cd097dc4f1a629c1320085efcc5b78d41228d01d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[88, 19, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 2, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,1903.2805324074 +"https://github.com/mvexel/overpass-api-python-wrapper.git",2014-08-24 16:18:09,"fa4ae000535ca71c80cf1828f4a6813b813a8d14","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 0, 0, 1, 8, 1, 12, 6, 5, 0, 1, 1, 8, 3, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 5, 3, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,1,2968.0383449074 +"https://salsa.debian.org/ruby-team/ruby-omniauth-github",2014-04-22 09:41:54,"f03645c9a8298a3e6a8285395983fff62c30675b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3158.4246296296 +"https://github.com/bruce/node-temp",2010-06-01 03:53:18,"269481630fb37310cd7d4798dc852e05a7201cf6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4595.6285416667 +"https://github.com/theseer/phpdox",2011-03-20 13:30:57,"7cd606b0767eeab03d7c5e21a32817fc05fb8d4d","[2, 4, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 6, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 10, 1, 0, 1, 8, 6, 2, 0, 5, 48, 6, 1, 2, 44, 22, 5, 1, 0, 0, 13, 2, 1, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 10, 1, 1, 1, 3, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",3,4,7,0,4604.8372800926 +"https://github.com/laminas/laminas-stdlib",2009-04-28 10:23:49,"933de80315ccd64f5f89dd4cd44bf20d5100579a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5325.6605555556 +"https://github.com/joenoon/url_safe_base64",2008-08-21 18:52:36,"74b507fa63935e6ecb7954fded63e857d0256a65","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1866.2862384259 +"https://github.com/codehelp/perl-cross-debian",2012-11-25 13:36:03,"e60a9d01fe92f93fee1d9482be5268b66ebc0b29","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 12, 0, 0, 10, 9, 0, 0, 5, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,413.1343634259 +"https://github.com/mupen64plus/mupen64plus-core.git",2009-10-02 04:10:43,"4fcb71627ccb49c12c56145474c893660e2afb57","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 10, 15, 6, 8, 6, 20, 11, 17, 5, 19, 4, 6, 10, 7, 4, 4, 0, 0, 4, 3, 9, 0, 5, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0,5146.4908564815 +"https://github.com/wedesoft/aiscm",2013-12-27 13:00:00,"e6592c68e06bb723650dc9360d1a06e173b42087","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 26, 16, 9, 15, 8, 16, 11, 17, 11, 12, 11, 8, 12, 1, 5, 8, 12, 1, 0, 3, 2, 2, 3, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3606.1918865741 +"https://github.com/EttusResearch/uhd",2010-01-08 00:46:00,"67a502ec0fb92b14db5eedf2cff36caacbb0efbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 22, 11, 7, 10, 21, 20, 12, 7, 15, 17, 29, 17, 35, 25, 33, 29, 21, 36, 8, 24, 27, 18, 13, 10, 39, 1]","[1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 1, 2, 5, 2, 5, 5, 4, 4, 1, 2, 2, 4, 4, 0, 3, 0]",1,1,3,0,5060.909212963 +"https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux.git",2015-07-07 22:07:11,"46e8a0b638501ea8559ae254892507d6ae5662ac","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2965.6940277778 +"https://invent.kde.org/plasma/sddm-kcm.git",2013-02-03 13:18:19,"57c770571916c36cf9cce1ee7793e7ebc08f03ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 13, 11, 0, 1, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0,3961.6219212963 +"https://github.com/ardentryst/ardentryst",2014-12-31 01:57:54,"799470bfdee147b4b41eda94e4a508d58a90f018","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3087.7143865741 +"https://github.com/derf/feh.git",2010-02-05 16:52:34,"21c4996c71d76b01a4333ef9905589b3fffa687d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 18, 10, 11, 5, 6, 21, 5, 2, 7, 9, 0, 21, 4, 1, 3, 25, 22, 32, 21, 3, 8, 3, 2, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5050.1499074074 +"https://gitlab.gnome.org/GNOME/tracker-miners",2005-12-14 11:11:14,"3ba8f30898be054c2949c8842cee243ccf39ddee","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 2, 7, 5, 5, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,5786.805474537 +"https://github.com/timothycrosley/isort",2013-09-02 22:22:53,"af493c9bce862bd07537eb09b10c44bc50dbf2fc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 34, 10, 2, 9, 7, 29, 20, 23, 6, 24, 0, 10, 26, 0, 14, 0, 35, 8, 9, 18, 38, 16, 2, 69, 2, 1]","[22, 13, 2, 1, 3, 4, 12, 6, 11, 2, 6, 0, 3, 9, 0, 5, 0, 10, 3, 2, 5, 12, 6, 1, 16, 1, 0]",2,2,15,0,3753.9250578704 +"https://github.com/eclipse-ee4j/eclipselink.git",2013-04-14 20:05:26,"2715b9d400e57fae8454331730945abaf47c7a00","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 20, 7, 20, 21, 23, 24, 26, 22, 32, 20, 14, 17, 14, 17, 12, 7, 17, 17, 21, 9, 22, 20, 8, 2, 6, 1]","[1, 1, 0, 1, 1, 1, 0, 0, 1, 2, 0, 0, 2, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0]",0,1,1,0,5753.9492939815 +"https://github.com/npm/abbrev-js",2010-03-09 21:15:25,"a19cb746c0a21cfd00dcac29f4b98c62b3d2956d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5021.0522106482 +"https://github.com/maxbube/mydumper.git",2009-02-20 21:56:21,"b8104ebad02168495864bdf0ef28e5123ad2f533","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,1,5415.8767013889 +"https://github.com/rstudio/httpuv.git",2013-02-27 00:21:06,"846fae24a957cec16ccbac491f41fc7352a71c8e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 15, 14, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 13, 0, 1, 1, 2, 0, 1, 3, 0, 6, 2, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 12, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,2,4,0,3956.9682986111 +"https://github.com/ledgersmb/PGObject-Type-DateTime.git",2013-11-13 08:43:16,"db77cea7b44695efd6fd1edbca4414ad6da209b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3652.6989467593 +"https://github.com/knxd/knxd",2014-11-25 17:06:28,"41f495fd84f81dbfe1354a8b521adba45ac06d43","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 34, 9, 0, 8, 40, 6, 2, 1, 23, 2, 14, 7, 2, 15, 0, 0, 3, 26, 0, 11, 7, 1, 60, 41, 1]","[0, 0, 1, 3, 0, 3, 4, 2, 0, 1, 4, 0, 3, 0, 1, 5, 0, 0, 1, 0, 0, 0, 1, 1, 4, 4, 0]",1,9,19,0,3234.4639814815 +"https://github.com/pypa/pipenv.git",2017-01-20 00:44:22,"be4b70e646e6232834e9f9917fdc1adde2156f47","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[411, 248, 35, 36, 12, 20, 9, 33, 16, 8, 8, 3, 13, 30, 1, 2, 29, 19, 24, 16, 24, 6, 5, 3, 0, 1, 1]","[31, 30, 3, 6, 2, 4, 2, 3, 3, 2, 1, 0, 2, 6, 0, 1, 6, 5, 2, 5, 4, 1, 1, 0, 0, 0, 0]",1,6,48,0,2511.301400463 +"https://github.com/libsndfile/libsamplerate",2004-01-22 11:16:39,"361a1044c3442b00b92da698bb1cdae6ed8eeb98","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 0, 2, 4, 4, 1, 9, 0, 3, 0, 0, 1, 0, 0, 0, 0, 7, 4, 1, 2, 0, 5, 6, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5747.2226851852 +"https://github.com/sebastianbergmann/php-timer",2010-05-25 11:08:49,"49fb6962c3b82515b918f3d619a1ef6c89176287","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4962.9242824074 +"https://github.com/rocky/Perl-Device-Cdio.git",2006-02-08 05:06:05,"fa70782774fa56bd9e2921b218e2f02f5cebc770","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 7, 30, 2, 5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3711.3743287037 +"https://github.com/phpDocumentor/TypeResolver",2015-06-10 19:17:01,"1c9fdcd72471ff91805eb7427a58c6d89416046f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 6, 3, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[5, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,4,0,3092.0947569445 +"https://github.com/ionos-cloud/netconsole",2018-10-30 16:26:51,"d2a2e037a1fb680ebaf353c2a8f2b76fca110ef6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,558.8093865741 +"https://github.com/resque/redis-namespace",2009-10-13 21:48:51,"a8f5e4bec68a5fec1b82c4e3aa844cb6fc17a487","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 3, 0, 0, 3, 0, 0, 1, 5, 0, 3, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0,5080.3240046296 +"https://github.com/thoughtbot/shoulda-context",2007-03-14 18:12:55,"7a4202f9b8fa77318694864af9d1bcfde4084deb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 13, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 6, 0, 0, 3, 12, 0, 4, 2, 2, 6, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5722.016412037 +"https://github.com/ukui/ukui-settings-daemon",2017-12-12 02:52:40,"e545c66ef3938195eb858ea34ec2b1fab64be9b8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 2, 0, 1, 3, 1, 6, 0, 0, 0, 0, 0, 1, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,1595.2230439815 +"https://github.com/sddm/sddm.git",2013-01-18 00:46:14,"35e2bf71c50df8c695c3b05a7ff7a8ee19b9c86c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 38, 22, 41, 48, 23, 20, 27, 49, 65, 35, 9, 1, 0, 0, 0, 0, 6, 13, 0, 0, 0, 8, 0, 21, 5, 1]","[0, 1, 3, 1, 1, 0, 0, 1, 6, 5, 1, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 4, 2, 0]",1,2,11,0,3975.3783333333 +"https://github.com/altdesktop/playerctl",2014-04-15 08:31:16,"e97f14603b092a47eed18fb7926afc1c82db41bc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 4, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0,2720.5505208333 +"https://github.com/mypaint/libmypaint",2009-10-23 19:34:52,"d061f4ae870692445c4fb190c9ca6c64cb05fd41","[0, 2, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 4, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1,4528.3509259259 +"https://github.com/psi-im/qconf.git",2008-05-30 06:17:35,"cc8132a8d37c68f97201179de9b0befc7389820e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5624.6740740741 +"https://github.com/rspatial/raster.git",2018-07-31 02:08:04,"13872842e0c6feaea00103e1fcf391ecc76962cf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 14, 6, 2, 0, 9, 9, 7, 46, 10, 9, 0, 4, 1, 0, 0, 0, 1, 0, 10, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 2, 1, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0]",1,4,8,0,1952.0897800926 +"https://github.com/evandelisle/showq.git",2011-04-10 18:13:56,"2449bac834a403efa3f54100f3eee3815c45b9d3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4589.6974189815 +"https://anongit.kde.org/kfourinline.git",2000-06-18 14:00:37,"e3fd91a7bba031d77dc5683929bcd2c6c55e23cc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 6, 1, 0, 1, 3, 10, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0,5763.6190972222 +"https://github.com/jmoiron/humanize",2011-10-07 23:49:53,"4267a54777e2ef1c71146d516429c6047a6de983","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3901.5590856482 +"https://github.com/mruby-debian/mruby",2012-04-19 09:11:15,"54ad561098ed353ada70205c39b2c42a2a2eb9e5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[139, 64, 87, 102, 120, 76, 161, 78, 90, 56, 33, 37, 65, 27, 79, 24, 37, 32, 13, 34, 43, 13, 6, 11, 3, 22, 1]","[35, 19, 17, 23, 22, 15, 36, 7, 20, 18, 5, 14, 15, 9, 18, 6, 9, 10, 4, 5, 14, 4, 1, 2, 1, 6, 0]",2,10,56,0,4156.8421527778 +"https://github.com/mika/jenkins-debian-glue",2011-08-06 11:09:15,"a34610068dbc08745c810ea415fa65f43249555c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 11, 1, 1, 3, 0, 0, 1, 1, 0, 0, 1, 19, 17, 23, 4, 1, 1, 0, 1, 4, 3, 10, 0, 3, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4282.4493981482 +"https://github.com/babelouest/glewlwyd",2016-11-27 22:57:35,"ce40297eec802c346753511992b60cc52bb3af9a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 18, 11, 7, 3, 15, 30, 5, 6, 58, 12, 0, 7, 16, 11, 1, 4, 0, 0, 0, 0, 0, 0, 3, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,3,0,2557.2033449074 +"https://github.com/elastic/elasticsearch-ruby",2013-04-30 12:16:06,"e6ae26aabcef0402d463b30e0ebcb062f884d0b6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 27, 0, 0, 0, 2, 87, 7, 0, 0, 0, 12, 0, 0, 0, 0, 0, 6, 1, 1, 13, 8, 5, 0, 22, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3879.9172106482 +"https://github.com/lxqt/lxqt-about.git",2015-11-03 10:23:16,"c6eb938c3476e9110665dc468580ee7740322410","[0, 0, 2, 0, 7, 0, 3, 0, 1, 1, 9, 0, 1, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,3,4149.1641203704 +"https://github.com/hughsie/libxmlb.git",2018-09-18 18:13:06,"513a7fd4006f26ef3fe4c5d9f96e04268d697d35","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 18, 57, 27, 23, 2, 12, 9, 4, 5, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 4, 0, 0, 1, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,1900.0449074074 +"https://github.com/jwbargsten/perl-proc-processtable",2012-10-19 12:55:49,"d65b758be29bf5abf80129b52a8ab743ea057a9d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 11, 10, 0, 0, 2, 1, 3, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 1, 2, 1, 0, 0]",1,2,4,0,3896.7371180556 +"https://github.com/jhawthorn/fzy",2014-07-12 04:48:29,"a83b047f07d2adcc47555a510104910e526d0ce1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 31, 11, 1, 18, 0, 7, 9, 28, 1, 16, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2752.1003125 +"https://github.com/greenbone/gvm-libs",2005-11-06 20:06:15,"c5b2c133f7fc3e016511fbf7f851bf8f2580d249","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5727.8965625 +"https://github.com/frogatto/frogatto.git",2011-06-21 06:50:38,"a66dcc4ecfc1daa8b4f11af99551f92f22b136f9","[15, 16, 60, 43, 48, 46, 44, 22, 32, 24, 44, 18, 28, 46, 26, 32, 82, 47, 46, 64, 20, 15, 29, 24, 32, 66, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 52, 28, 36, 104, 65, 26, 32, 37, 70, 71, 45, 31, 32, 40, 16, 43, 23, 26, 32, 40, 61, 41, 31, 24, 27, 1]","[2, 4, 2, 1, 10, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0]",4,9,17,0,5646.0325115741 +"https://invent.kde.org/network/smb4k.git",2009-10-31 07:43:37,"d7d2b1b413de843254a21dd42abfd52c529f8ccd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 3, 3, 1, 1, 22, 9, 0, 0, 14, 12, 1, 22, 21, 6, 9, 14, 0, 1, 29, 2, 0, 0, 23, 8, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,5158.7368055556 +"https://github.com/uclouvain/openjpeg.git",2005-12-07 21:28:11,"4fb43c8af0ccd4533d83c586a44525bf3b2703d8","[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1, 3, 8, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5780.2631944445 +"https://github.com/ofalk/libdnet",2001-10-11 04:14:42,"43b6ade9980fe2b364f1e4919b6d87d7d12db221","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[81, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3068.4848032407 +"https://github.com/python-cmd2/cmd2.git",2008-05-16 14:40:15,"b55d45b4f2d8d5908368366987b80156ab8317b1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 4, 7, 0, 2, 2, 2, 1, 0, 3, 1, 0, 0, 0, 3, 0, 0, 2, 8, 0, 1, 0, 20, 2, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5687.0739699074 +"https://github.com/nichtich/Catmandu-Wikidata.git",2013-12-04 10:09:46,"354799ea8ccdcf276e978bfd31dff1f853a1b1a3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3124.955462963 +"https://github.com/visionmedia/node-fresh.git",2014-09-08 02:39:46,"9e6e67b206e3e29fbf64582f92bdd6ed7a1649cb","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,0,3886.7925231482 +"https://github.com/zmartzone/mod_auth_openidc.git",2014-03-27 19:18:52,"fff2a454fa2b0fe38c90add5d75e450564bd6c79","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 20, 13, 12, 6, 5, 7, 3, 26, 21, 0, 1, 6, 0, 0, 5, 3, 7, 12, 13, 3, 11, 2, 12, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3541.8657638889 +"https://github.com/pyFFTW/pyFFTW",2012-01-26 20:28:54,"7c7044e34af53ce9bb35fac7552081eb4e1646e0","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4024.0905671296 +"https://github.com/ZerBea/hcxdumptool",2018-02-25 08:18:41,"00b2dad448f31a8f4e70eb1148beab7034cc67f2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 1, 12, 46, 21, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, 0, 0]",1,1,5,0,2117.0106134259 +"https://github.com/ShawnDEvans/smbmap.git",2015-04-22 21:10:48,"4e1ca6d94d4ed31e009d940b8c4457cdaa41b5bf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[19, 1, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1,3137.7212731482 +"https://github.com/fln/gnarwl",2012-09-18 07:42:26,"1f3c6ba92abd963293afbfa19189071276670b49","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,1,1,0,2570.5118287037 +"https://github.com/jschaf/pylint-flask",2015-06-27 20:41:46,"3c63a37baf7127a12091ddd21e03793b0a446195","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2579.0026851852 +"https://github.com/dds-bridge/dds.git",2014-11-25 12:50:09,"b2dd7f60e2dc2678ea3db3197f2a08085b9223ec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2069.005462963 +"https://github.com/oetiker/rrdtool-1.x.git",2001-02-25 22:25:02,"37fc663811528ddf3ded4fe236ea26f4f76fa32d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 8, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5729.185787037 +"https://github.com/axel-download-accelerator/axel.git",2008-01-11 11:57:58,"5a08bb42c630fe722ac118b54d32af288fe06205","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5432.0664814815 +"https://github.com/DanielAdolfsson/ndppd",2011-09-13 19:26:12,"7d84dbeb183fc8ebad431b57346cf2c288e53b74","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 2, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0,4471.5943171296 +"https://github.com/dhewm/dhewm3.git",2011-11-22 21:28:15,"fb1609f5540e3578b579c5e3476de5613c45d3a6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 95, 44, 34, 25, 58, 27, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,4378.332974537 +"https://gitlab.gnome.org/GNOME/hitori.git",2009-03-02 00:03:36,"7e313950c8c6e82726856fe73abcf7b1da0ca134","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 8, 1, 1, 6, 1, 0, 4, 0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,9,0,5346.5707638889 +"https://github.com/dbr/tvdb_api.git",2020-04-28 09:53:19,"a53f750903906995741a520a59e86a6aac85f727","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 12, 4, 9, 12, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0,5264.8978240741 +"https://github.com/tokuhirom/Furl.git",2010-10-15 08:55:24,"81b3c2c45723d5ccec750cd97987a1539437e923","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[125, 276, 89, 5, 3, 17, 7, 4, 2, 9, 0, 0, 2, 0, 3, 2, 2, 4, 8, 5, 0, 0, 0, 0, 0, 0, 0]","[13, 43, 9, 1, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,5,9,0,4162.7404166667 +"https://github.com/ytdl-org/youtube-dl.git",2011-08-05 23:14:13,"6bcd846b5212b41877b80358125b2210432e080d","[0, 2, 10, 2, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 3, 2, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 14, 9, 20, 48, 5, 9, 2, 2, 11, 0, 2, 5, 10, 15, 12, 8, 3, 2, 0, 5, 5, 2, 0, 0, 0]","[0, 0, 3, 3, 1, 3, 1, 0, 0, 0, 2, 0, 1, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,1,15,0,5615.2313657407 +"https://github.com/mvo5/synaptic",2003-02-02 17:10:39,"f45c3866e88fab6231b2841b7f3944eb5d253ba3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 6, 14, 11, 20, 14, 7, 7, 10, 5, 6, 2, 0, 5, 14, 9, 6, 4, 7, 7, 3, 5, 9, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5665.1249768519 +"https://github.com/marcelm/alignlib.git",2018-11-27 12:31:50,"75fd77f1b212ae02191247c1bfe947dff6c8f823","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1738.8239930556 +"https://github.com/sebastinas/python-libdiscid.git",2013-04-10 16:18:21,"d4baaa820406cc9267292c0dcfb76c25b94c3db8","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 1, 3, 0, 3, 0, 0, 0, 0, 0, 0, 26, 11, 0, 0, 0, 0, 6, 0, 0, 0, 17, 0, 0, 3, 4, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]",1,1,2,0,3900.1796643519 +"https://gitlab.com/DavidGriffith/frotz",2000-11-11 12:46:09,"cf94b9e473718dc4981a1a9789a37945cc14d362","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,4338.9843402778 +"https://github.com/ge-ne/bibtool.git",2007-02-07 21:26:17,"afd612dc4db0f7da8cc3bf04df007dae618756e3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4734.0663541667 +"https://github.com/mogaal/sendemail",2010-09-12 16:39:43,"f06d6953a7972d02c24a7764652df3c6c5ed6528","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1084.8616782407 +"https://github.com/drowe67/freedv-gui",2015-08-13 13:07:43,"a362d8ebe7efd9604edf537d7d81af97a8176baa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 11, 5, 9, 42, 30, 35, 16, 20, 20, 12, 2, 11, 2, 2, 5, 1, 48, 19, 22, 22, 13, 13, 29, 15, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0,3043.6515972222 +"https://github.com/gnustep/apps-gorm",1999-12-08 15:55:48,"a44ba184470353ae009945c28af5b9282596e4ba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 38, 5, 8, 8, 10, 0, 0, 5, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5785.6866782407 +"https://github.com/prometheus/node_exporter",2013-04-18 14:44:52,"051b651fa86e9e7038b8554a93a8248ce1f5f9f6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0,3891.8962384259 +"https://github.com/tinfoil/devise-two-factor.git",2014-05-12 18:46:54,"2a66a568cac25cadc9443c7ce09582f077630ce5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 22, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1]","[2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,3,4,0,3466.0953935185 +"https://github.com/pear/Crypt_GPG.git",2011-12-29 06:26:37,"2f91d64139132e3d8c68af283ea69f7453873a07","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,5743.4965972222 +"https://github.com/csmith-project/csmith.git",2011-05-04 00:13:31,"25b0a0c290fa55b9560a3b7184179d8f1bda144d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[93, 10, 13, 21, 2, 5, 9, 24, 15, 18, 2, 11, 8, 23, 12, 9, 3, 0, 0, 0, 0, 1, 0, 0, 6, 4, 1]","[1, 0, 1, 3, 0, 1, 0, 2, 3, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",1,3,9,0,4565.6397800926 +"https://github.com/blitzpp/blitz",2016-01-19 04:32:18,"c633a3441d0d838bf5d0749cdb8fd4b0e637cdb4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1821, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,11,0,1587.5368287037 +"https://github.com/porridge/bambam",2014-02-12 20:45:51,"6bab5a984fe9c52f62344fda5b48c6986e287d42","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5711.2973958333 +"https://github.com/connorimes/powercap",2016-06-22 15:30:48,"b7701e4cdd01295f7d1b8ad074788d2d2c313b57","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2525.9958912037 +"https://github.com/gildor478/ocaml-fileutils.git",2019-09-13 23:25:34,"0cb8c2e28890fe94d25b47be69896697886c3482","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1144.3784027778 +"https://github.com/bbatsov/powerpack.git",2013-07-12 12:44:22,"65f3a9412e198262d900ec35e21c988cf0e534a2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 9, 12, 14, 12, 14, 5, 1, 2, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 1, 2, 3, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,9,0,2684.7776041667 +"https://gitlab.com/libpipeline/libpipeline.git",2010-10-12 00:13:11,"d7d0b4341cf1f5ce5773f905677bcb196e125afc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 17, 13, 1, 0, 1, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,5772.9785532407 +"https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git",2008-07-31 06:43:00,"cc31458b18e8c274641cf124f5bf7ec6fe506dfb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 1, 7, 11, 1, 18, 3, 0, 0, 1, 11, 6, 7, 0, 2, 1, 3, 4, 6, 0, 0, 0, 4, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,5613.1753356482 +"https://github.com/pypa/pipx.git",2018-10-08 05:35:38,"c28613389d4e70dd82c85efe2f9d9c054740fc17","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 28, 23, 6, 1, 3, 5, 14, 3, 7, 3, 0, 1, 1, 2, 5, 12, 6, 18, 14, 4, 6, 0, 0, 3, 2, 0]","[0, 4, 2, 1, 0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0]",1,2,16,0,1893.5339814815 +"https://github.com/Blosc/c-blosc",2009-07-22 17:19:25,"718a002761f8137e350ebe9d77c9cecf23f45066","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 5, 1, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5250.6618865741 +"https://github.com/invesalius/invesalius3.git",2009-06-10 17:30:02,"8da812b0a127e1b2e4af912e9bb5ce0332e59850","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 34, 5, 2, 2, 14, 35, 4, 33, 45, 48, 43, 21, 12, 1, 7, 32, 6, 37, 12, 11, 15, 32, 44, 7, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,5269.8872106482 +"https://gitlab.gnome.org/GNOME/atkmm.git",2010-06-22 23:55:10,"34e918d40d39a2db143d851eeb64f6a1d275d246","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0,4919.5924189815 +"https://github.com/christophgysin/pasystray.git",2011-10-07 20:54:18,"85e00308c105586dca86c93cf862c06c0d5ef37c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 7, 0, 2, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 0, 0, 0, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,0,0,4343.9490393519 +"https://github.com/CESNET/libyang",2018-11-09 17:41:15,"70cdc097672cc632be980b3661c1476f4a021b39","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,1297.9920949074 +"https://github.com/leamas/ddupdate",2017-12-25 16:50:56,"83dbafcf24f631fc2c7245607f13bc44cd41b8bf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 51, 9, 52, 27, 16, 4, 8, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 0]","[1, 2, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0,1855.611724537 +"https://github.com/sebastianbergmann/php-text-template",2009-11-19 11:48:18,"a480a20560937062e15d89e459c0df2c847cc329","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5133.0452083333 +"https://gitlab.com/drobilla/ganv.git",2011-12-06 21:01:38,"0731f12beaa0cfc0de56dc05ca3814143fd394a5","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 12, 3, 0, 3, 4, 1, 1, 2, 0, 0, 0, 0, 2, 0, 3, 1, 1, 3, 13, 12, 0, 5, 1, 6, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4309.0079166667 +"https://github.com/jupyter/jupyter-sphinx-theme",2011-12-07 14:55:00,"efc9408bcd84cc6156f824e89014f79221af1b2f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0,1834.3539467593 +"https://github.com/ocrmypdf/OCRmyPDF.git",2013-04-09 16:44:46,"7972a156fc441c33cd6ddd60c9ff793fc523c3ff","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 22, 37, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,3897.7415625 +"https://github.com/andrew-bibb/cmst.git",2014-05-10 14:17:37,"566f7f239ef9a15a5353d1e32d071bd661401ae9","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 1, 2, 1, 0, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[2, 4, 9, 15, 2, 8, 3, 13, 14, 19, 2, 4, 4, 4, 0, 2, 0, 0, 0, 0, 4, 6, 4, 16, 12, 12, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,2,3527.0297222222 +"https://github.com/Seldaek/jsonlint",2011-12-13 17:05:01,"44a4df33dd2e3bb370ff50aeb12621a8f1a77cfa","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4166.9388888889 +"https://github.com/geopython/stetl.git",2012-08-28 09:29:43,"3e6f0e8416f6d5961377a438c0d4972b26d43e5c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 2, 0, 1, 3, 7, 0, 0, 2, 4, 3, 0, 0, 0, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0,4123.3037847222 +"https://github.com/gkz/type-check.git",2013-09-29 18:32:18,"2011e3c2ee9b669a653e39eaa0dde012d300a1b4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3579.125787037 +"https://github.com/ossimlabs/ossim.git",2015-09-02 20:20:52,"e4d3c664cca5261541dc7f058424cef8c5c20bcf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 32, 13, 19, 26, 0, 16, 15, 11, 21, 3, 12, 14, 70, 22, 32, 0, 19, 32, 27, 22, 20, 20, 13, 27, 26, 1]","[2, 5, 1, 2, 2, 0, 2, 0, 2, 5, 0, 0, 1, 4, 4, 3, 0, 2, 5, 3, 2, 1, 4, 3, 4, 8, 0]",2,5,7,0,2917.9942824074 +"https://gitlab.gnome.org/GNOME/libmediaart.git",2013-08-13 14:28:43,"c041d3813ff04d45677463a39d4f9e206be5676b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 7, 62, 0, 0, 0, 4, 6, 1, 12, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13, 0]","[1, 2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,15,0,3213.8240509259 +"https://github.com/mikeboers/PyMemoize",2010-09-17 10:39:39,"64e3d6db904a1e2798e5d169a41b22ac97b587e6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,4629.8626388889 +"https://github.com/canonical/lightdm.git",2010-04-29 11:08:26,"9e8fcfa450e52155dd5f664f954ebb2ec3e39768","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 3, 0, 0, 1, 0, 18, 18, 25, 3, 22, 36, 13, 36, 0, 9, 14, 2, 0, 3, 0, 0, 0, 0, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0,4834.5447222222 +"https://github.com/jekyll/jekyll-watch",2014-06-26 22:45:47,"575ea9e326e2e0da366dde3b6fb16d8c5ce6faa6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 21, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0]",1,2,1,0,2617.3110532408 +"https://github.com/Kitware/KWStyle",2003-04-11 17:36:16,"5b1cf3594a205fd22a4e76daf0a6363e68e41e9a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,2816.187662037 +"https://github.com/residuum/PuRestJson.git",2011-08-23 21:44:38,"965b9df46b58e0fafce1cf43aeaae579a993c158","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 8, 11, 10, 1, 1, 5, 1, 0, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 25, 9, 6, 0, 0]","[0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,1,0,4472.3532291667 +"https://github.com/hynek/argon2-cffi",2015-12-07 16:14:57,"2132ab8c3d2facc97d96c2668e1bf43c3ac666ff","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 27, 16, 4, 1, 1, 2, 5, 0, 0, 3, 1, 0, 0, 1, 0, 2, 1, 2, 8, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,2912.6790509259 +"https://github.com/ros/urdfdom_headers",2012-06-22 21:35:26,"6ddbe9c36cd0cab527f5a77e1f73f0d0f00f2068","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4147.720625 +"https://github.com/zmartzone/cjose.git",2016-03-14 21:38:19,"230b6070aef5f64f396f90a74eb8f1165b3cd1f3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 3, 0, 0, 7, 0, 3, 2, 0, 0, 1, 0, 0, 0, 9, 17, 11, 10, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0,2698.734525463 +"https://github.com/slgobinath/SafeEyes.git",2017-10-24 00:27:43,"ada0834ddf7106ef88bd842b16352570b0aa1bcd","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2228.7321180556 +"https://github.com/chrys87/simple-orca-plugin-system.git",2016-01-05 19:35:41,"12b4c8437580257d967f2d7b20809f62f9b0e6c2","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[108, 4, 29, 9, 0, 1, 0, 0, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0]","[10, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0,1662.2399768519 +"https://github.com/ros/robot_state_publisher",2017-03-22 20:59:01,"4988ec4dbf413c6ec2518991d96254f4869ed954","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4113.0053356482 +"https://github.com/akopytov/sysbench.git",2006-01-20 16:13:23,"d224c6368ab20de3a87f5c9341ceeb5fb48730ca","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 8, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5395.9011574074 +"https://github.com/savonet/ocaml-ffmpeg.git",2012-10-12 09:10:24,"7b3dfe212d56d651c47045813f2d1b5d98ae499d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,4033.3768634259 +"https://github.com/jlmelville/uwot.git",2018-06-12 14:34:53,"291d4c26e93a795692e3c2e02d30ee90ed90d412","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[52, 22, 54, 4, 5, 4, 5, 57, 6, 3, 1, 1, 0, 0, 13, 1, 1, 8, 10, 5, 2, 2, 1, 17, 5, 41, 1]","[0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0]",1,2,2,0,2010.5388078704 +"https://github.com/jhnc/findimagedupes.git",2006-09-20 11:45:30,"0534ec6a782b40d145695d3f23f49acbe31f5039","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5609.2984837963 +"https://github.com/myriadrf/gr-limesdr.git",2018-04-24 09:37:35,"a0bf587bd99f90a97686f7cfd288db98e5ddfdef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0,1838.1773726852 +"https://github.com/dvehrs/podget.git",2015-11-09 22:58:35,"37bc6bf9d1235f92157b9b3451aa71c742097b28","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 11, 3, 4, 0, 0, 0, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2945.994837963 +"https://github.com/deiv/driftnet",2012-06-14 18:35:05,"1357cd4ec4f89fa180cf1e2637c8ab165d8a4a9c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3936.0659722222 +"https://github.com/tduehr/omniauth-cas3",2011-12-14 21:14:25,"1297194de6e78bee57a9defc0b37558b880a2a3c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 2, 0, 5, 7, 0, 2, 4, 4, 0, 0, 5, 0, 0, 1, 0, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0,3904.2384027778 +"https://github.com/phar-io/manifest.git",2016-11-24 16:35:20,"8f8de1f8c5920b1148d620f69a4e6bde58f86fa4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,2379.9058680556 +"https://github.com/maxmind/libmaxminddb",2012-12-31 14:21:11,"48321c4d84e874dc0c1b406129a5baa55cab7d11","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 31, 32, 9, 20, 0, 0, 0, 18, 12, 22, 2, 1, 0, 0, 0, 0, 6, 0, 0, 0, 1, 0, 27, 24, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3984.2393634259 +"https://github.com/cespare/reflex.git",2013-05-21 02:09:33,"6f5967b16b63439e3ebb4a36e2ddcc9cec9ea52e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3024.8018634259 +"https://github.com/flareteam/flare-engine",2011-06-04 03:02:11,"2866148a6da4e8d9c309423a843de005a27847fb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 34, 30, 21, 31, 23, 24, 15, 9, 0, 0, 2, 0, 0, 0, 5, 1, 0, 2, 0, 11, 12, 18, 7, 83, 14, 1]","[10, 13, 6, 4, 9, 5, 11, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 6, 2, 21, 6, 1]",1,8,15,0,4571.459525463 +"https://github.com/savonet/ocaml-alsa.git",2008-10-15 17:30:33,"8494698bf376381803458e369cf3e37144384b10","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0,460.5193634259 +"https://github.com/jonschlinkert/global-modules",2015-03-06 13:15:23,"9cf00ecb75c1da4f0f89bb79e51f9601ca87ef89","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1379.5605671296 +"https://github.com/danfruehauf/NetworkManager-ssh",2013-02-04 01:18:42,"1984e3d762b40e0412cbb01464f55a4f48562f15","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 18, 28, 12, 4, 1, 6, 14, 3, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 7, 13, 6, 3, 2, 0, 5, 0]","[1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0]",1,1,1,0,3197.1808449074 +"https://github.com/sstrigler/JSJaC.git",2004-10-08 16:45:37,"73bcbae2dc8988cd63653b42fbb8ca605083c1d4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 13, 2, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 2, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3682.6423958333 +"https://github.com/EasyScreenCast/EasyScreenCast.git",2013-06-29 10:59:07,"e134b23c9d59842497727f0f41facd5f1a23112f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3762.2703125 +"https://github.com/edicl/hunchentoot",2008-05-26 14:22:29,"a07b44baed0220868d52c84ebf8f770de0aee5dc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 3, 0, 10, 0, 3, 1, 1, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,5414.600162037 +"https://github.com/rails/sass-rails",2011-05-25 13:36:16,"2e793da2132b7735bdddf9e0f18da5b90b47c567","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 2, 1, 2, 7, 7, 2, 0, 9, 9, 0, 11, 8, 4, 0, 9, 12, 6, 6, 0, 6, 0, 0, 1, 1, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 5, 1, 0, 0, 1, 0, 0, 3, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0]",2,4,16,0,3032.8716550926 +"https://github.com/chartjs/Chart.js.git",2014-07-02 20:39:44,"95844701bd235a42dd99180a6543e0166f5d8d70","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0]","[12, 3, 2, 9, 4, 0, 6, 1, 0, 2, 3, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 14, 1]","[0, 0, 1, 5, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]",2,3,10,0,3913.8058912037 +"https://github.com/WorkflowConversion/CTDConverter",2014-02-18 10:42:10,"dae594c8218243f98593eba242253656aeb796ec","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 7, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,2616.9146180556 +"https://github.com/einaros/tinycolor.git",2011-12-10 12:21:55,"5d9435151e62c6544d83c6031c6434f8908e61cf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,332.3723611111 +"https://github.com/viraptor/arpy.git",2013-06-30 21:10:07,"e936d0423488dad54367f480d04c700d8c064d9f","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 7, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,0,1,1,4328.1231134259 +"https://framagit.org/simgrid/simgrid.git",2004-01-27 19:53:06,"ff021a73f0cd26b2f27ca729783aa486393f9b3a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 8, 5, 0, 11, 11, 0, 0, 0, 0, 20, 1, 5, 2, 0, 0, 0, 0, 7, 11, 35, 3, 44, 89, 20, 51, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5764.6994097222 +"https://github.com/xaicron/p5-JSON-WebToken.git",2012-06-26 13:28:10,"0f94f8fd796998513989b9b550aad2f3ad8f5f84","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,993.7868981481 +"https://github.com/jonathanhogg/usepackage.git",1995-10-06 16:06:58,"75b86134cfbd88d44789655fe0506a33225cb89a","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 10, 10, 0, 0, 0, 1, 3, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 5, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 1, 0, 6, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,3462.962337963 +"https://github.com/jnunemaker/flipper",2012-07-22 19:39:38,"8257cc68a9a2ff6fb6b3ae6c497b15309c4d0d7b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 64, 24, 0, 0, 0, 0, 38, 3, 0, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0, 3, 48, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",2,1,3,0,4162.0917013889 +"https://github.com/Storyyeller/enjarify",2015-06-04 19:13:55,"02c417d33da3c237ecf65afe84d4fb0c6f1b4286","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 2, 3, 0, 2, 3, 4, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,1,3,0,1738.1109490741 +"https://github.com/pgbackrest/pgbackrest",2013-11-11 21:08:39,"4a562eb55a691c0658b2f148703afacb38587b0d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 7, 2, 10, 15, 4, 0, 5, 20, 3, 8, 18, 19, 51, 14, 5, 12, 0, 0, 8, 8, 3, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0]",2,1,3,0,3684.8419791667 +"https://anongit.kde.org/knavalbattle.git",2000-11-05 00:12:44,"5ccdbce22406fbef0aace58d1ee4c4d8631ba003","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 39, 42, 5, 7, 5, 5, 14, 3, 0, 0, 4, 0, 6, 3, 7, 5, 0, 36, 14, 32, 2, 22, 23, 7, 22, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,15,0,5722.456412037 +"https://github.com/horde/mnemo.git",2010-04-07 07:51:45,"ea2a9fb25f188f7ba1360757d6e48858db41b435","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 1, 1, 2, 16, 3, 1, 2, 0, 0, 5, 1, 2, 4, 2, 6, 0, 4, 9, 6, 4, 4, 0, 3, 7, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0,4989.4455671296 +"https://github.com/Electrostatics/apbs",2014-01-02 16:58:28,"c86065cd47918595643d7971f79e6b8297c45c2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 2, 6, 2, 0, 0, 0, 0, 0, 0, 6, 3, 3, 0, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0,3265.3524074074 +"https://github.com/Yelp/py_zipkin",2016-08-04 17:58:27,"db49ea751cbf763a51f53175357bed7ab5a9e96d","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 3, 15, 7, 0, 8, 3, 10, 5, 3, 4, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 2, 0, 2, 1, 3, 2, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]",1,2,9,0,2422.0620486111 +"https://github.com/mapbox/mapnik-vector-tile.git",2013-04-13 03:19:13,"2ae215acc3757d9d96d569a565800155d64668b1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 2, 2, 3, 0, 0, 2, 8, 0, 0, 2, 5, 9, 7, 1, 0, 0, 2, 0, 0, 0, 4, 2, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,2,5,0,3418.2549652778 +"https://github.com/lxqt/compton-conf.git",2013-11-08 09:43:56,"012d32679b613047cd8882454cf9cb2b48f604ae","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,3571.8171412037 +"https://github.com/TooTallNate/node-bindings",2012-01-28 20:24:24,"0becd8255f46985d677695a24feb55d6db438451","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 10, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2587.1395949074 +"https://github.com/chef/ffi-yajl.git",2013-10-24 04:37:05,"872073ee055ff8e72251e6483a7c4d7c1558013e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 86, 25, 0, 19, 12, 33, 11, 9, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3568.5882986111 +"https://github.com/01org/isa-l.git",2016-02-24 21:54:34,"00c1efc109512678cb9536245032d995215e40d6","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2846.4837615741 +"https://github.com/stompgem/stomp.git",2005-10-14 18:52:08,"6991b0a97dcb607ec8e83d7301cd91d771cc5cef","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0,4485.6743055556 +"https://github.com/ebiggers/libdeflate.git",2014-12-28 05:11:49,"6a982b7ac73f52be4832b18cc159c5405ab94a80","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,3254.7726851852 +"https://github.com/diyan/pywinrm.git",2012-07-06 15:25:55,"f2479292f3a8e9fc00ffb871f8d1925e3e1a636c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0,3968.3538425926 +"https://github.com/borntyping/python-colorlog.git",2012-09-05 17:57:08,"430a6143b84fa18e3dd8ff29ff8aa1e164f35fc3","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0,4104.9554398148 +"https://github.com/libpd/abl_link.git",2016-11-04 08:58:28,"6e4f4284e395321be95b558a2803afe3b0214a2e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 28, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,3,0,2218.7531018519 +"https://github.com/digitalbazaar/rdf-canonize.git",2016-02-15 20:04:58,"4bf24349b901769d0e568af656ceb69aee9616f1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2830.3079282407 +"https://github.com/jaspernbrouwer/powerline-gitstatus.git",2015-01-29 20:13:57,"5e88a900727c588fb4b5be2e1e2584ce55a00056","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,2809.6974884259 +"https://github.com/mnooner256/pyqrcode.git",2013-06-07 16:37:36,"7c6340807ca02f6aa5f4e8d6a68c7318208f5fbb","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,1108.5763078704 +"https://github.com/aquynh/capstone",2013-11-27 02:32:11,"0c91f8f0e7c0ed1f1b97911d52fa5504af5c60df","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[150, 69, 63, 58, 37, 68, 62, 56, 37, 11, 7, 14, 73, 61, 63, 16, 47, 69, 5, 50, 10, 32, 23, 74, 53, 34, 1]","[16, 7, 6, 6, 2, 4, 3, 2, 6, 1, 0, 3, 4, 3, 7, 5, 1, 4, 0, 5, 0, 1, 5, 7, 8, 3, 0]",1,4,20,0,3658.3632638889 +"https://github.com/un33k/python-slugify",2012-10-15 01:44:50,"be60050791262776db3c59ff6c4bf7da7c2a1b43","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0,4027.6128240741 +"https://github.com/swaywm/wlroots",2017-04-25 15:32:52,"52e6ed54cbaf05cd1829099e04427d1706ca0da4","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 12, 13, 0, 0, 21, 31, 25, 45, 10, 11, 11, 4, 6, 39, 138, 72, 52, 26, 22, 19, 61, 155, 144, 55, 79, 1]","[0, 0, 4, 0, 0, 3, 2, 4, 6, 1, 1, 2, 2, 3, 5, 27, 20, 4, 5, 6, 1, 10, 24, 36, 13, 30, 0]",1,6,18,0,1651.0250925926 +"https://github.com/Talinx/jp2a",2006-06-23 11:07:55,"40e1edcdc36c0347cbef7091d41860c127ce7d47","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 0, 139, 100, 64, 32, 0, 11, 0, 12, 5, 1, 6, 11, 3, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,2190.7298032407 +"https://github.com/davesteele/aioprocessing",2014-07-28 23:51:59,"79eceb06286d2a800e9cfa49c017ba7a7df4b40b","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 6, 13, 8, 0, 11, 20, 7, 1, 6, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0,3054.801087963 +"https://gitlab.gnome.org/GNOME/gnome-chess.git",2006-10-28 16:37:30,"3ab0fee0434bce55452e70c5d73ef713e0de214c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 4, 3, 7, 8, 7, 5, 6, 15, 5, 2, 3, 6, 1, 4, 0, 0, 0, 6, 4, 1, 0, 1, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0,5778.9891087963 +"https://github.com/cloudpipe/cloudpickle",2015-04-13 16:33:00,"7e3123747f3817552845fa3b59f4db987eac1cba","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[83, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 1, 0, 0, 0, 0, 0, 1]","[24, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,4,6,0,3146.0455208333 +"https://github.com/puppetlabs/puppetlabs-mysql",2011-06-01 03:47:19,"344d644d5c92c69fa53d448ded087dc32b3cc3e1","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 12, 10, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 1]","[1, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0]",1,3,8,0,4577.2790046296 +"https://github.com/MatMoul/g810-led.git",2016-06-12 20:16:07,"fdc8220e70db692a40ae0fb5452bbed779ccef78","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 3, 7, 1, 0, 15, 8, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 2, 0]",1,2,7,0,2361.9422453704 +"https://github.com/UbuntuBudgie/budgie-indicator-applet",2016-10-29 12:40:37,"caf95a9e6f84ddd426208d7ad275e1ce124c156e","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 17, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0,2410.5153935185 +"https://github.com/mhekkel/libzeep.git",2008-11-21 14:52:04,"5fd2b004a10ad1def71c3cb6acfdaca1062afa6c","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0,5502.8286342593 +"https://github.com/rvagg/node-errno",2012-04-30 04:10:12,"399d0cacbdab29ea54fcf19239a4301cd7b24fbf","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0,3152.3664699074 +"https://github.com/fossfreedom/alternative-toolbar",2014-12-22 23:19:52,"267c6eb020e60f303b30d333612b4ccf5b6182cc","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 5, 9, 4, 0, 2, 0, 2, 2, 0, 3, 7, 7, 19, 8, 20, 20, 12, 28, 11, 20, 11, 3, 1, 0, 1]","[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 1, 1, 1, 0, 0, 0, 0]",2,2,2,0,3255.9015277778 +"https://github.com/awesomeWM/awesome.git",2007-09-05 18:15:00,"f7173bd79df77a155444663a262dfc5b0f9f0f42","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[87, 119, 35, 72, 41, 76, 16, 51, 1, 96, 28, 16, 6, 8, 99, 28, 127, 132, 42, 129, 93, 35, 43, 0, 14, 16, 1]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,22,0,5762.6976157407 diff --git a/verbose_data/deb_contrib_did_stale.csv b/verbose_data/deb_contrib_did_stale.csv new file mode 100644 index 0000000..68747c3 --- /dev/null +++ b/verbose_data/deb_contrib_did_stale.csv @@ -0,0 +1,452 @@ +https://github.com/kornelski/pngquant.git,2016-11-18 01:21:15+00:00,5448e7ee9a18599042e3adf6e9cb34d812a82323,"[13, 12, 2, 1, 2, 0, 1, 0, 0, 0, 2, 4, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2]","[4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 7, 1, 0, 0, 1, 2, 0, 0, 0, 6, 0, 0, 2, 1, 12, 0, 1, 0, 1, 0, 4, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",4,0,2,1 +https://github.com/Exa-Networks/exabgp,2020-05-12 09:59:33+01:00,0517dc80b8479ba65cfe1e2eb3e09832b895b999,"[0, 0, 0, 12, 3, 0, 3, 0, 40, 23, 0, 4, 7, 3, 0, 4, 5, 1, 0, 1, 0, 0, 0, 0, 2, 9, 2]","[0, 0, 0, 2, 2, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]",5,0,4,0 +https://github.com/thoughtbot/factory_girl.git,2015-04-15 23:32:05-04:00,5a8804871c6bf18f16e830948ce4a04f97c77c4f,"[2, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 1, 2, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,7,0 +https://github.com/rsyslog/rsyslog-doc,2018-02-13 08:40:47+01:00,265f04c4c9354f3a7fb49fa8054a0b14f679ce43,"[4, 1, 9, 15, 5, 0, 0, 2, 0, 4, 0, 0, 2, 0, 17, 13, 15, 7, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[3, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 9, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 1, 3, 2, 2, 5, 2, 0, 0, 2, 1, 3, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 2, 0, 0, 1]",7,0,10,0 +https://github.com/mqttjs/mqtt-packet,2015-01-06 20:58:23+01:00,87aef8413f8ebfa0bb9c30332b6829884ee56d0a,"[0, 0, 1, 0, 0, 0, 2, 4, 0, 6, 0, 0, 0, 2, 0, 13, 12, 3, 1, 0, 0, 0, 0, 8, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/iem-projects/ambix.git,2016-04-27 12:19:17+02:00,c6a44bd1bb01d7f2b9dd73ac7d0f5389d786d6fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 10, 1, 3, 2, 0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,4,0 +https://invent.kde.org/plasma/kscreen.git,2019-11-11 21:52:25+01:00,50cf930ec8240be069a18765c10f681f1c4d7599,"[3, 0, 3, 1, 11, 2, 1, 2, 1, 0, 0, 2, 2, 0, 0, 0, 11, 2, 10, 2, 0, 1, 8, 1, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 1, 5, 0, 0, 8, 1, 6, 8, 1, 0, 2, 2, 1, 4, 1, 1, 5, 2, 2, 0, 3, 2, 2, 0, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",6,1,4,0 +https://github.com/ocaml/dune.git,2018-05-02 13:57:10+01:00,a9462d135f4ab57a7a566183c7e0a306ea63ff3d,"[18, 4, 7, 10, 6, 12, 20, 16, 17, 19, 30, 36, 37, 30, 38, 42, 41, 70, 59, 101, 25, 19, 39, 38, 39, 22, 1]","[4, 0, 0, 1, 4, 2, 4, 5, 3, 1, 3, 6, 8, 7, 3, 7, 7, 9, 8, 12, 2, 2, 7, 10, 5, 4, 0]","[44, 33, 28, 60, 47, 75, 49, 27, 102, 145, 74, 18, 54, 73, 45, 25, 51, 71, 28, 103, 67, 73, 61, 76, 30, 12, 1]","[9, 3, 6, 19, 13, 17, 11, 6, 17, 16, 11, 6, 15, 16, 13, 9, 5, 16, 9, 14, 12, 9, 15, 16, 5, 1, 0]",12,1,34,0 +https://github.com/ceres-solver/ceres-solver.git,2018-07-10 06:16:27+00:00,2c1e595b775f6c23ec985ac20976f81dbed327e5,"[9, 2, 1, 5, 1, 3, 18, 14, 2, 4, 4, 5, 19, 6, 7, 5, 1, 2, 0, 1, 0, 0, 4, 3, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 4, 0, 2, 1, 1, 4, 9, 5, 3, 4, 0, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,6,0 +https://github.com/google/yapf.git,2015-03-18 13:36:07-07:00,7d623455f45435ad351514dfd4abd064cac61aab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 50, 51, 21, 32, 18, 16, 0, 3, 5, 3, 0, 6, 2, 5, 10, 9, 3, 6, 1, 1, 0, 4, 0, 11, 12, 1]","[4, 2, 8, 5, 12, 5, 1, 0, 0, 1, 1, 0, 3, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,3,19,0 +https://github.com/flot/flot,2012-11-27 10:25:25-05:00,b362df896c80adca1fcf48fb2a78b3f93e32928d,"[0, 4, 7, 0, 2, 4, 28, 7, 5, 1, 0, 0, 0, 0, 1, 3, 8, 3, 0, 0, 0, 0, 6, 6, 1, 35, 2]","[0, 1, 2, 0, 0, 1, 6, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 1, 2, 0, 7, 0]","[23, 2, 11, 16, 0, 3, 19, 12, 19, 21, 15, 12, 11, 15, 18, 1, 1, 6, 11, 5, 0, 0, 0, 0, 0, 1, 1]","[4, 0, 3, 2, 0, 1, 6, 1, 2, 0, 2, 2, 1, 2, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",18,0,14,1 +https://github.com/Backblaze/B2_Command_Line_Tool,2020-07-29 12:07:07+02:00,b4578f915dd49cdb1435accd260c59a34ea66e75,"[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 9, 1, 0, 11, 0, 22, 14, 1, 15, 3, 3, 3, 4, 10, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 4, 3, 1, 5, 0, 1, 1, 0, 1, 0]","[1, 22, 0, 1, 0, 3, 0, 0, 4, 5, 3, 0, 2, 10, 9, 2, 0, 0, 0, 0, 0, 0, 0, 9, 6, 3, 1]","[0, 5, 0, 0, 0, 2, 0, 0, 1, 3, 1, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",5,0,1,1 +https://github.com/ycm-core/YouCompleteMe,2013-04-03 18:50:01-07:00,bbc437c6a18447c03d7ab1d85f65d823df4a2bb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 29, 49, 42, 50, 28, 22, 7, 13, 24, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 10, 3, 3, 0, 1, 2, 1, 1]","[13, 15, 20, 19, 10, 16, 16, 25, 7, 9, 4, 7, 8, 21, 16, 13, 5, 9, 19, 19, 6, 4, 6, 0, 0, 0, 1]","[2, 3, 1, 2, 1, 6, 2, 3, 0, 0, 1, 0, 0, 3, 5, 5, 1, 1, 5, 5, 0, 0, 2, 0, 0, 0, 0]",24,2,26,2 +https://github.com/npm/nopt,2023-05-31 11:54:58-07:00,9122d7c511c81421992c86faf30da2f35ce6f4e4,"[0, 2, 0, 0, 1, 1, 0, 0, 2, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/pdfminer/pdfminer.six.git,2019-07-08 23:03:47+02:00,a03566da21530159175f9856a1fcce3438a09b29,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 6, 1, 5, 3, 4, 0, 1, 0, 0, 0, 0, 9, 13, 13, 2, 10, 0, 0, 0, 0, 1, 0, 1, 3, 1]","[3, 0, 3, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 7, 2, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,11,0 +https://github.com/tqdm/tqdm.git,2017-01-05 23:39:17+01:00,2cd875ffa648c41ffdb539ea28726b00f8751bcb,"[0, 9, 21, 2, 0, 8, 0, 3, 14, 23, 3, 0, 0, 1, 9, 3, 17, 0, 18, 0, 0, 3, 2, 3, 0, 4, 2]","[0, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 4, 0, 0, 0, 0, 1, 0, 0, 1]","[10, 1, 16, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 17, 1, 0, 1, 0, 0, 0]","[2, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]",8,0,3,1 +https://github.com/clojure/core.cache,2014-05-20 19:24:35-07:00,fe96879f158428d949f45fc4902333b02a20110a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/resurrecting-open-source-projects/stress,2021-10-01 18:05:17-03:00,c16f6ee03496b5031ca786e04c629529fe9ee893,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Leaflet/Leaflet.markercluster,2015-10-01 16:25:53+13:00,10d440ba403d43a95453c660d16c2846fc624b54,"[0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 2, 3, 1, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0]","[11, 16, 28, 14, 0, 0, 9, 12, 8, 4, 0, 16, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 9, 4, 0, 0, 4, 0, 2, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,5,0 +https://github.com/stephane/libmodbus.git,2016-05-17 23:28:41+02:00,7612ce2029de1eac698ebc2ba617c4fbd738127f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 4, 9, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,0 +https://github.com/clojure/tools.logging.git,2014-05-20 19:24:36-07:00,b2ca1f68d6bc7cd292cdb9e5c7c8e863bef60bbd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Diaoul/subliminal.git,2015-08-22 20:33:04+02:00,3bc239ffee43a378a6ec64c169d9f7cb3f1753a5,"[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 26, 0, 0, 0, 6, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1]","[33, 1, 0, 3, 2, 1, 1, 0, 3, 23, 5, 0, 0, 0, 0, 0, 0, 0, 17, 10, 0, 0, 8, 20, 17, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 2, 0, 0, 0]",2,0,4,2 +https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb,2018-02-01 09:02:21+00:00,e22f687c821e219b59c5350b7e12447c65e635c1,"[82, 50, 92, 97, 49, 59, 75, 41, 47, 13, 27, 31, 12, 29, 26, 14, 19, 12, 14, 21, 10, 5, 27, 23, 14, 20, 1]","[8, 6, 10, 7, 12, 12, 9, 6, 7, 0, 3, 0, 1, 2, 10, 3, 7, 2, 5, 5, 1, 0, 6, 5, 1, 3, 0]","[33, 44, 51, 59, 91, 60, 50, 49, 44, 68, 52, 33, 42, 20, 12, 10, 27, 29, 37, 26, 25, 36, 34, 19, 7, 2, 0]","[2, 9, 5, 5, 19, 13, 10, 17, 5, 19, 8, 10, 17, 9, 7, 3, 7, 11, 14, 7, 5, 15, 13, 7, 0, 0, 0]",2,3,3,0 +https://github.com/drwetter/testssl.sh.git,2019-08-08 18:34:14+02:00,642cfe46dd33e5b80c8678e2900ea82159d2beb0,"[22, 13, 10, 6, 3, 2, 5, 10, 8, 15, 24, 12, 48, 0, 2, 0, 1, 6, 2, 2, 2, 4, 0, 1, 0, 4, 2]","[7, 3, 4, 0, 1, 1, 1, 3, 1, 6, 3, 6, 12, 0, 1, 0, 0, 3, 1, 1, 1, 2, 0, 0, 0, 1, 1]","[14, 3, 1, 0, 2, 14, 18, 12, 8, 5, 9, 23, 14, 13, 17, 10, 10, 17, 0, 4, 10, 20, 49, 48, 16, 23, 1]","[5, 2, 0, 0, 1, 6, 4, 4, 0, 4, 5, 8, 7, 4, 9, 5, 5, 8, 0, 2, 3, 7, 12, 14, 8, 10, 0]",5,0,15,0 +https://github.com/rr-debugger/rr.git,2014-06-12 16:15:10+12:00,0cd2366fee96dadab517b9cabca21200266684fd,"[2, 4, 0, 1, 8, 11, 33, 20, 0, 16, 42, 52, 48, 21, 15, 32, 12, 24, 13, 26, 24, 25, 24, 8, 15, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 1, 0, 0, 4, 5, 4, 1, 3, 3, 6, 0, 0, 0, 0, 0]","[11, 11, 39, 28, 18, 9, 18, 21, 17, 22, 38, 12, 42, 89, 75, 24, 72, 42, 56, 42, 80, 54, 58, 50, 29, 34, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",12,0,3,1 +https://github.com/igraph/igraph.git,2014-10-24 17:58:59-04:00,b09df08be878ddf23d7bef6d63c8b90b8a81b193,"[4, 1, 8, 0, 0, 0, 0, 0, 5, 0, 12, 12, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/rsnapshot/rsnapshot.git,2015-03-18 14:08:11+01:00,5b015eb3bcdc20460a13342c5c480f1503fff560,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[23, 18, 3, 4, 0, 2, 0, 6, 2, 1, 9, 8, 21, 3, 1, 3, 2, 1, 0, 1, 0, 7, 0, 0, 0, 0, 0]","[10, 9, 0, 2, 0, 2, 0, 2, 1, 1, 3, 0, 5, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,1,2,1 +https://github.com/composer/semver,2015-07-15 20:54:52+02:00,0ce26349ac7e579342d88e6a79ad12fe10bf8083,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 17, 0, 0, 1, 4, 0, 1, 3, 0, 0, 1, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,1,4,1 +https://github.com/EsotericSoftware/kryo.git,2015-06-27 14:17:07+02:00,df07c66082a8c4a9aa38a8dafde49413710cb692,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/scikit-learn-contrib/imbalanced-learn.git,2016-06-30 10:55:27+02:00,b8904ed382f24288012e7189c49d02115355cb9b,"[1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 32, 14, 10, 10, 20, 49, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 0, 1, 4, 6, 0]","[25, 10, 11, 11, 11, 5, 1, 0, 35, 3, 0, 0, 2, 0, 1, 3, 2, 9, 1, 0, 0, 3, 4, 0, 4, 15, 1]","[1, 1, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0]",8,1,4,4 +https://github.com/PracticallyGreen/omniauth-saml.git,2016-02-11 18:36:48+01:00,a78422c2e0b5c3e6a9ea5aa6909356fee2deb881,"[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0]","[6, 4, 8, 5, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 2, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",9,3,5,2 +https://github.com/mypaint/libmypaint,2016-05-22 23:00:07+01:00,055f6ff46896cc22bc5dc1f3f766691f2351d57d,"[2, 2, 5, 10, 4, 7, 6, 3, 1, 20, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 4, 0, 0, 3, 27, 33, 2]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[19, 1, 3, 0, 0, 2, 0, 0, 1, 3, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",12,2,10,0 +https://github.com/python-bugzilla/python-bugzilla,2015-09-02 15:18:06-04:00,b233ccd3cf036e7b0330eb1fc704c71d4c5fcdf8,"[1, 0, 0, 3, 5, 8, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 10, 0, 0, 0, 2, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,1 +https://github.com/zeromq/czmq.git,2014-08-15 21:07:32+02:00,f8e9182f3f076a709e385c23715475068ece18b2,"[0, 7, 10, 27, 35, 21, 32, 30, 14, 19, 32, 11, 41, 25, 16, 37, 35, 13, 6, 14, 14, 16, 32, 13, 6, 26, 1]","[0, 1, 3, 11, 10, 8, 11, 9, 4, 5, 9, 2, 11, 10, 4, 12, 8, 5, 3, 6, 3, 4, 10, 4, 3, 8, 0]","[58, 62, 37, 34, 127, 65, 37, 49, 21, 28, 40, 30, 43, 34, 38, 18, 33, 10, 4, 17, 31, 13, 7, 17, 17, 19, 1]","[20, 12, 11, 9, 13, 26, 17, 20, 8, 11, 14, 13, 8, 11, 11, 7, 15, 3, 2, 5, 11, 5, 3, 7, 8, 6, 0]",37,11,41,6 +https://github.com/fgrehm/vagrant-lxc,2013-09-28 02:11:10-03:00,c76df6358c1b848ee82a791734d834007a7c3b75,"[44, 27, 15, 55, 26, 41, 5, 1, 7, 31, 3, 0, 7, 0, 18, 16, 10, 26, 0, 3, 0, 4, 0, 16, 26, 15, 2]","[1, 0, 1, 1, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 1, 3, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0]","[11, 6, 5, 4, 5, 26, 4, 2, 1, 0, 0, 3, 2, 1, 0, 0, 0, 0, 13, 2, 6, 4, 0, 111, 19, 9, 1]","[0, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 2, 1, 0, 5, 2, 1, 0]",9,1,16,1 +https://gitlab.gnome.org/GNOME/libgweather.git,2021-10-17 00:37:04+01:00,8bd7e1d45b07fb8089b09bc2206a8929357dec12,"[2, 14, 5, 4, 1, 1, 1, 0, 3, 7, 9, 1, 1, 1, 1, 5, 1, 0, 3, 6, 4, 4, 0, 3, 1, 79, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 5, 22, 32, 23, 3, 3, 4, 2, 4, 4, 6, 2, 7, 2, 10, 6, 3, 27, 16, 14, 5, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,14,0 +https://bitbucket.org/sshguard/sshguard.git,2017-02-04 13:15:52-08:00,562270515ef3e98038c1a2da8984d92720b86659,"[9, 11, 0, 0, 2, 1, 0, 0, 0, 17, 1, 4, 0, 7, 7, 7, 1, 4, 0, 1, 25, 8, 9, 3, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[1, 7, 1, 5, 5, 2, 1, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1 +https://github.com/resurrecting-open-source-projects/nbtscan,2019-11-14 01:02:36-03:00,fc1a0f5e16c9d1c011596f5d4d9f20af9abc2ae1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/keymanapp/keyman,2021-10-08 13:47:14+11:00,82824f124cb3f891d35c02e6cd99c2d6ca85ec98,"[1, 57, 21, 2, 28, 16, 15, 31, 25, 17, 26, 24, 12, 1, 11, 28, 12, 12, 11, 13, 6, 2, 12, 4, 23, 12, 0]","[0, 23, 10, 0, 14, 8, 5, 8, 7, 9, 8, 6, 7, 0, 7, 6, 5, 1, 5, 6, 2, 1, 6, 1, 8, 6, 0]","[0, 0, 0, 0, 0, 9, 2, 7, 3, 3, 2, 0, 3, 5, 10, 19, 0, 7, 0, 1, 1, 3, 7, 4, 12, 1, 1]","[0, 0, 0, 0, 0, 2, 2, 3, 2, 1, 1, 0, 1, 3, 4, 7, 0, 1, 0, 1, 0, 2, 3, 2, 7, 0, 1]",1,0,1,0 +https://github.com/prometheus/haproxy_exporter,2015-01-22 16:50:42+01:00,29650004ab6114d3d8e3eb55d13776881ceb78f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 2, 2, 2, 0, 0, 0, 0, 4, 0, 0, 4, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0, 1]","[1, 2, 12, 1, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 0, 1, 0, 0]","[1, 1, 4, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0]",3,1,6,1 +https://github.com/htop-dev/htop,2018-02-26 11:45:53-03:00,9ca1c993ac1b24c9ec52ffca3d1cc30bd3d82cde,"[2, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 26, 0, 33, 5, 2]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 9, 3, 5, 57, 5, 0, 0, 0, 0, 0, 6, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 4, 26, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,15,0 +https://github.com/puppetlabs/puppetlabs-xinetd,2016-04-19 14:45:10+01:00,ea501586d273f131c086858930fb2a4490e7d61b,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 1, 0, 4, 0, 0, 0, 4, 1, 1, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 1]","[1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 3, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",3,2,5,1 +https://github.com/philpem/printer-driver-ptouch.git,2020-05-26 11:05:30+01:00,7b13070b64f87bb432f84cc7d4826a126d2e8bc2,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 47, 1, 0, 3, 0, 0, 94, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,1,1 +https://github.com/korfuri/django-prometheus,2015-07-04 18:36:16-07:00,723bcacef4c62d8db1aeaa93dd374c25ef1979eb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jashkenas/underscore.git,2012-09-17 13:06:33-04:00,d09457f7683654441b998a6c22e20c059bf57799,"[21, 8, 28, 4, 16, 11, 6, 4, 0, 24, 1, 4, 3, 4, 4, 0, 2, 2, 0, 1, 1, 8, 8, 33, 7, 21, 2]","[5, 1, 12, 1, 6, 4, 3, 1, 0, 3, 0, 2, 0, 2, 1, 0, 1, 1, 0, 0, 0, 4, 3, 7, 5, 2, 0]","[32, 12, 8, 2, 5, 2, 4, 5, 0, 5, 17, 10, 9, 4, 9, 3, 0, 2, 1, 9, 1, 12, 2, 2, 5, 8, 0]","[5, 3, 2, 0, 2, 1, 2, 1, 0, 1, 2, 1, 3, 2, 3, 1, 0, 1, 0, 1, 0, 4, 1, 1, 1, 4, 0]",29,0,26,2 +https://github.com/phpmyadmin/motranslator,2017-04-03 08:46:30+02:00,7237ab2de4c4c814d2602f327a89f9e173767e0f,"[0, 13, 1, 0, 0, 2, 2, 0, 0, 0, 6, 11, 0, 10, 0, 4, 3, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 3, 1, 3, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,0,3,1 +https://github.com/i18next/i18next,2022-06-20 13:20:44+02:00,41e9a6085825f9047707a0464ae290706aa574d2,"[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 5, 2, 0, 6, 3, 3, 2, 1, 1, 2, 3, 0, 0, 3, 0, 11, 7, 2, 4, 2, 1, 3, 33, 7, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,7,0 +https://github.com/math-comp/math-comp,2017-11-24 15:12:17+01:00,6b25220e33cd141a3fc219e31f7251c0ee47fae7,"[3, 9, 3, 0, 3, 0, 2, 0, 0, 1, 0, 2, 0, 0, 4, 1, 0, 0, 0, 2, 13, 12, 4, 5, 0, 1, 1]","[1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 1, 0]","[5, 0, 18, 1, 0, 0, 0, 0, 0, 1, 7, 0, 10, 2, 7, 0, 3, 0, 0, 3, 18, 9, 0, 0, 0, 0, 0]","[1, 0, 8, 1, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 5, 0, 2, 0, 0, 1, 4, 2, 0, 0, 0, 0, 0]",3,0,2,1 +https://github.com/Mottie/tablesorter.git,2015-02-20 21:31:24-06:00,44ee94502bfafaf540092649fde6a7ccb428507a,"[18, 5, 14, 11, 1, 13, 12, 2, 9, 24, 19, 3, 0, 4, 8, 3, 0, 7, 2, 7, 14, 9, 13, 34, 30, 29, 2]","[0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 7, 1, 3, 0]","[17, 9, 19, 7, 18, 7, 16, 4, 6, 10, 11, 15, 21, 6, 10, 22, 11, 12, 3, 0, 12, 16, 19, 0, 5, 15, 1]","[1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",7,1,6,0 +https://github.com/robert7/nixnote2,2018-10-09 17:48:11+02:00,67222b362f9f152f3a2aa2764c8bf90fdfb355ff,"[0, 0, 0, 0, 3, 0, 268, 1, 9, 100, 23, 19, 79, 32, 0, 5, 63, 4, 12, 37, 12, 5, 26, 33, 56, 25, 2]","[0, 0, 0, 0, 1, 0, 1, 1, 1, 12, 4, 1, 2, 2, 0, 0, 10, 1, 2, 4, 1, 1, 5, 5, 4, 5, 0]","[69, 15, 3, 5, 7, 2, 4, 7, 24, 34, 0, 12, 19, 9, 11, 1, 2, 5, 2, 10, 0, 12, 3, 3, 0, 0, 0]","[13, 6, 1, 2, 4, 1, 1, 3, 8, 9, 0, 3, 6, 1, 4, 1, 1, 2, 1, 3, 0, 1, 1, 2, 0, 0, 0]",6,0,4,3 +https://github.com/JDimproved/JDim.git,2019-02-17 11:43:34+09:00,9090d85334a7b6b0613d728b76b8615eb5896615,"[0, 0, 0, 0, 0, 0, 13, 14, 0, 2, 0, 0, 0, 1, 17, 1, 3, 1, 5, 5, 1, 0, 17, 43, 7, 9, 2]","[0, 0, 0, 0, 0, 0, 2, 4, 0, 1, 0, 0, 0, 0, 2, 1, 0, 1, 2, 0, 1, 0, 5, 1, 2, 3, 1]","[8, 7, 12, 5, 17, 9, 0, 4, 49, 3, 4, 3, 5, 0, 7, 3, 4, 14, 11, 14, 31, 5, 0, 4, 0, 3, 1]","[4, 3, 5, 0, 6, 4, 0, 0, 1, 1, 1, 3, 1, 0, 1, 1, 0, 3, 2, 3, 3, 2, 0, 1, 0, 1, 0]",4,0,3,0 +https://github.com/brunonova/drmips,2015-09-16 18:45:27+01:00,8ea5eb73f001e2d98a428f57a61f834bdacb0ccd,"[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 3, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 4, 0, 0, 7, 7, 18, 9, 13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git,2016-11-14 19:10:52+01:00,8a9067fc53f824f1a8252c699ecdcca8fc4d8b19,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 8, 14, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[3, 0, 5, 1, 1, 1, 1, 1, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1 +https://github.com/nvbn/thefuck.git,2015-10-17 15:45:13+02:00,c970f190d26cc0634567c048e20aa7b802fe6042,"[189, 36, 33, 42, 42, 17, 21, 10, 9, 20, 4, 31, 10, 88, 60, 6, 14, 21, 38, 23, 39, 3, 0, 5, 1, 1, 1]","[63, 9, 5, 15, 11, 8, 8, 2, 3, 4, 0, 12, 1, 17, 10, 2, 2, 6, 5, 5, 9, 1, 0, 2, 0, 0, 0]","[12, 18, 6, 2, 8, 11, 5, 1, 0, 1, 4, 6, 8, 11, 13, 9, 2, 6, 6, 9, 5, 13, 7, 10, 8, 2, 1]","[6, 4, 2, 0, 2, 2, 0, 0, 0, 0, 2, 3, 3, 4, 5, 2, 0, 2, 2, 1, 3, 4, 3, 2, 3, 0, 0]",64,0,12,4 +https://github.com/squizlabs/PHP_CodeSniffer,2014-09-16 15:57:24+10:00,58c0fdc412824222f33d15e418f826e6dcbff4e6,"[3, 4, 1, 0, 1, 6, 4, 3, 4, 6, 0, 0, 2, 7, 11, 8, 4, 0, 0, 5, 7, 2, 1, 8, 16, 1, 1]","[1, 2, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0]","[6, 20, 1, 35, 15, 21, 21, 14, 2, 14, 18, 12, 21, 15, 13, 25, 34, 37, 2, 17, 11, 19, 0, 18, 6, 0, 1]","[1, 3, 0, 6, 2, 0, 4, 5, 1, 0, 1, 1, 1, 0, 0, 6, 2, 2, 0, 3, 0, 5, 0, 2, 2, 0, 0]",16,0,14,0 +https://github.com/letsencrypt/letsencrypt,2015-03-21 12:51:33-07:00,5eb007cc317db5a12e01ded18e344a73155f7c1e,"[0, 0, 0, 0, 0, 0, 3, 13, 148, 135, 69, 58, 31, 29, 3, 10, 27, 45, 73, 62, 101, 33, 47, 4, 5, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 34, 31, 20, 15, 6, 16, 1, 1, 8, 10, 24, 6, 27, 8, 7, 2, 3, 1, 0]","[112, 32, 10, 62, 37, 47, 58, 102, 63, 31, 47, 40, 53, 144, 36, 72, 67, 55, 48, 30, 31, 29, 34, 10, 77, 50, 1]","[26, 12, 1, 3, 10, 12, 10, 30, 22, 12, 17, 13, 17, 49, 8, 15, 19, 17, 14, 10, 13, 6, 17, 0, 25, 22, 1]",26,6,29,6 +https://github.com/googlei18n/fontmake.git,2015-11-16 16:58:47-08:00,ff8f62e92f06cef4158fb9be327487d45ba047e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 0, 0, 0, 2, 0, 0, 3, 1, 9, 3, 7, 1, 2, 0, 3, 8, 16, 1, 6, 4, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0]",1,2,3,0 +https://gitlab.com/oath-toolkit/oath-toolkit,2023-07-08 15:54:41+02:00,8f311c3e20cf1ddd7392b9ca229c78e39400ca26,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://salsa.debian.org/ruby-team/ruby-github-markup,2015-09-23 16:11:55+05:30,b8a217e59476ce3a07497642d8535993cda832b5,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 +https://github.com/include-what-you-use/include-what-you-use,2017-07-16 11:26:23+02:00,ca06167b607eb473d62d908d1cc0bb3a2bb13fae,"[0, 9, 1, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 1, 0, 0, 2, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 2, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/mathjax/MathJax,2014-06-12 11:30:50-04:00,60e0a8c5cd57acb366a0a49004d8fd61b8acbf87,"[0, 0, 0, 2, 5, 0, 2, 0, 50, 46, 18, 4, 0, 21, 5, 0, 5, 8, 19, 5, 16, 3, 0, 10, 13, 4, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 20, 23, 7, 1, 0, 11, 2, 0, 0, 3, 8, 1, 0, 0, 0, 5, 5, 0, 1]","[2, 2, 0, 1, 1, 2, 0, 3, 0, 30, 10, 19, 19, 16, 0, 0, 0, 4, 4, 1, 3, 0, 6, 0, 0, 16, 0]","[2, 0, 0, 0, 0, 2, 0, 2, 0, 13, 5, 9, 5, 7, 0, 0, 0, 2, 0, 1, 3, 0, 2, 0, 0, 8, 0]",3,2,4,0 +https://github.com/puppetlabs/marionette-collective,2016-05-17 11:14:46-07:00,9030ad1e93aea1a8f9ec8473011cedf7810daeb1,"[0, 2, 0, 2, 1, 1, 2, 0, 4, 4, 0, 2, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 2, 0]","[0, 1, 0, 1, 0, 1, 1, 0, 1, 2, 0, 1, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]","[5, 0, 1, 3, 2, 10, 0, 2, 3, 0, 4, 3, 2, 4, 0, 0, 4, 3, 5, 0, 0, 3, 3, 0, 10, 0, 1]","[2, 0, 0, 2, 0, 4, 0, 1, 1, 0, 0, 2, 2, 1, 0, 0, 2, 1, 4, 0, 0, 2, 1, 0, 7, 0, 0]",4,6,17,2 +https://github.com/elastic/elasticsearch-ruby,2013-09-24 19:48:46+02:00,d8e5ed91bdb14bb2bad6ae04639fddf404e4b703,"[0, 0, 0, 0, 1, 0, 0, 27, 0, 0, 0, 2, 90, 4, 0, 0, 1, 11, 0, 0, 0, 0, 0, 6, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 9, 4, 8, 14, 5, 0, 3, 8, 11, 17, 8, 1, 5, 23, 42, 6, 6, 43, 32, 16, 0, 5, 5, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 +https://github.com/python-social-auth/social-app-django.git,2016-11-05 02:18:00-03:00,77a3ec42468640dd67086e6afba3375cb7ae8135,"[2, 1, 0, 1, 20, 1, 1, 1, 0, 4, 13, 7, 2, 41, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 10, 0, 0, 24, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 8, 3, 0, 5, 4, 1, 0, 7, 11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 5, 1]","[0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0]",20,0,8,1 +https://github.com/resurrecting-open-source-projects/packit,2016-05-09 10:06:35-03:00,7d0a0fdeedf95d192f6561ea02f4146f2764ff07,"[0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Icinga/icinga2,2017-04-18 18:04:56+02:00,fac61a5bfafd8eb2a0445d62df9079b934cee3e3,"[4, 1, 4, 12, 25, 7, 7, 19, 4, 0, 0, 1, 11, 1, 4, 11, 32, 8, 16, 5, 29, 24, 15, 32, 11, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 6, 1, 2, 1, 0, 1, 0, 2, 0]","[16, 14, 32, 42, 14, 26, 17, 23, 28, 11, 5, 0, 2, 9, 5, 30, 45, 20, 7, 19, 69, 15, 55, 16, 9, 17, 1]","[1, 5, 11, 18, 6, 11, 7, 12, 13, 5, 2, 0, 1, 3, 2, 10, 16, 8, 3, 4, 7, 6, 17, 6, 6, 11, 0]",18,2,29,1 +https://github.com/webcamoid/webcamoid.git,2015-06-19 13:40:58-03:00,2b36be98c48515fab027193b18620849343db752,"[3, 7, 3, 5, 4, 1, 7, 9, 6, 6, 3, 0, 0, 0, 1, 1, 11, 1, 0, 0, 0, 2, 1, 0, 1, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 1, 4, 2, 0, 0, 1, 2, 3, 1, 0, 1, 3, 5, 13, 9, 2, 0, 2, 3, 5, 2, 3, 2, 3, 1]","[2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0]",10,1,4,1 +https://github.com/colmap/colmap,2017-06-24 18:30:17+02:00,5bea89263bf5f3ed623b8e6e6a5f022a0ed9c1de,"[0, 14, 5, 3, 2, 4, 8, 1, 14, 6, 0, 4, 31, 15, 16, 12, 16, 25, 13, 46, 0, 19, 27, 5, 30, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 3, 0, 18, 4, 24, 19, 21, 5, 5, 11, 19, 8, 2, 0, 11, 4, 0, 1, 0, 0, 12, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0 +https://github.com/major/MySQLTuner-perl,2015-06-16 15:20:36+02:00,b7fbf3832f7cc7fbe348ef5fec82e292b3167a14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 +https://github.com/puppetlabs/clj-kitchensink.git,2014-04-15 16:50:33-07:00,4ccb6af985ce4d98f5251317d774ccf3d98d7664,"[0, 3, 4, 21, 10, 14, 4, 1, 2, 7, 4, 8, 7, 0, 1, 9, 3, 11, 8, 0, 2, 3, 0, 0, 6, 0, 2]","[0, 0, 1, 8, 4, 6, 1, 0, 1, 1, 1, 2, 1, 0, 0, 3, 0, 4, 2, 0, 1, 0, 0, 0, 1, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[5, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",12,1,1,4 +https://gitlab.gnome.org/GNOME/gnome-desktop.git,2018-12-27 20:26:34+00:00,870618416465c2c5b2690185ff3dbf3d38e1b0a1,"[0, 0, 6, 1, 24, 12, 9, 6, 7, 11, 9, 1, 1, 1, 1, 1, 1, 0, 2, 4, 0, 0, 0, 6, 3, 2, 1]","[0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 13, 6, 2, 7, 4, 1, 1, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",26,0,7,6 +https://github.com/isaacs/inherits,2016-12-15 10:53:17-08:00,f721d6bee2d6df13262a190fee1f48e21ed72b42,"[0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/mlpack/ensmallen,2018-10-18 01:02:08-04:00,51dbf63a19477526914e955d677dbd3bf4c15439,"[7, 9, 4, 2, 12, 0, 5, 5, 6, 7, 5, 7, 3, 3, 0, 5, 0, 0, 0, 1, 2, 1, 2, 7, 62, 103, 2]","[6, 7, 3, 2, 11, 0, 2, 4, 5, 6, 5, 7, 3, 1, 0, 5, 0, 0, 0, 1, 2, 1, 2, 2, 0, 15, 0]","[58, 10, 5, 8, 10, 26, 24, 11, 4, 0, 11, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 1]","[9, 1, 0, 2, 2, 4, 6, 5, 2, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,1 +https://github.com/voxpupuli/beaker,2014-07-23 16:15:46-07:00,5b1fc8a945da104752b6dba19475c1b68db5e610,"[33, 30, 2, 7, 15, 6, 14, 21, 17, 9, 7, 24, 8, 28, 16, 15, 24, 6, 16, 21, 28, 23, 28, 38, 11, 22, 2]","[18, 14, 1, 2, 8, 3, 5, 9, 7, 4, 1, 8, 4, 7, 6, 6, 13, 2, 6, 4, 12, 8, 8, 18, 6, 9, 1]","[19, 13, 23, 20, 20, 12, 18, 4, 21, 10, 4, 6, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 11, 8, 7, 2, 11, 2, 8, 5, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",24,1,8,9 +https://github.com/apache/trafficserver,2016-09-15 15:26:51-07:00,2e002a4a5ee89218771133d3166a51dd199cdd9d,"[0, 0, 0, 0, 2, 9, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 7, 4, 12, 22, 6, 22, 24, 1, 1, 3, 5, 5, 2, 0, 0, 0, 0, 3, 2, 10, 5, 0, 0, 10, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0 +https://gitlab.gnome.org/GNOME/json-glib.git,2021-06-08 17:33:05+01:00,3f67ed0912a90c9bca03233929291d9d6c5baf22,"[0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 13, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]","[23, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 1, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0 +https://github.com/ahmetb/kubectx,2017-03-29 00:30:12-07:00,6de838135f670a66e29e5bd8bf0a66bcf38d9e9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 3, 0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/gpodder/mygpoclient,2017-06-13 13:24:22-05:00,36f776df9993aade39059884a441bb61b91e3b4c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 2, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/ua-parser/uap-core.git,2014-02-17 16:00:07+01:00,ec27337e6f8417e8db9b0c88f84ecf7c81e5466b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/KhronosGroup/SPIRV-LLVM-Translator,2020-08-24 12:53:24+03:00,0bcb157a0233d0cb7dd43e6b28fc7aadcea49ef7,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 13, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 12, 7, 6, 4, 6, 17, 11, 5, 2, 2, 0, 0, 12, 11, 11, 6, 2, 3, 0, 1, 8, 3, 5, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,10,0 +https://github.com/puppetlabs/puppetlabs-apache,2013-10-02 21:36:32+01:00,c04e97311ffa4fbfc016263ef0dbe1e1f8e13373,"[0, 0, 6, 44, 2, 13, 5, 6, 14, 27, 41, 13, 5, 5, 12, 9, 12, 14, 11, 15, 34, 22, 12, 5, 12, 30, 1]","[0, 0, 2, 15, 0, 3, 1, 0, 3, 9, 13, 3, 3, 3, 6, 0, 2, 10, 3, 3, 15, 9, 4, 2, 7, 17, 0]","[10, 7, 12, 9, 10, 41, 28, 20, 6, 18, 13, 5, 0, 3, 8, 6, 21, 20, 21, 12, 15, 28, 14, 3, 7, 12, 0]","[4, 4, 6, 4, 4, 18, 8, 11, 2, 7, 6, 1, 0, 1, 4, 1, 14, 5, 8, 5, 8, 13, 6, 1, 3, 6, 0]",54,3,45,10 +https://gitlab.com/gnutls/libtasn1,2018-06-16 15:07:21+02:00,ffc3058bc909fc83e4db3d8b80f3595a76d9b6d2,"[0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1 +https://gitlab.gnome.org/GNOME/gdk-pixbuf,2018-04-30 18:11:40+01:00,b20f359cb75291d4968c0752cf76a84c90551927,"[1, 0, 2, 1, 10, 22, 2, 0, 4, 1, 7, 2, 1, 0, 3, 0, 5, 3, 4, 3, 0, 0, 1, 0, 0, 19, 17]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 8, 39, 3, 4, 2, 4, 0, 0, 0, 1, 0, 2, 0, 5, 9, 10, 15, 2, 1, 6, 0, 0, 2, 1]","[0, 0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0]",19,1,13,0 +https://github.com/MatMoul/g810-led.git,2017-05-12 22:55:24+02:00,9b7158c6f080aebe284d1a5d22765ef3283afd4b,"[8, 0, 12, 11, 7, 0, 14, 25, 5, 10, 18, 0, 11, 7, 2, 7, 0, 22, 11, 6, 4, 10, 1, 11, 7, 11, 2]","[0, 0, 2, 2, 3, 0, 0, 2, 0, 1, 2, 0, 0, 0, 1, 0, 0, 3, 2, 0, 2, 1, 0, 1, 1, 1, 0]","[9, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",17,0,2,0 +https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,2018-09-10 18:40:29-07:00,5cdae33fb032a0eca57bfb9baf5d823564715d10,"[1, 1, 0, 3, 1, 4, 0, 0, 0, 0, 0, 4, 5, 1, 2, 3, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 1, 1, 0, 1, 1, 1, 3, 0, 1, 1, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,11,2 +https://github.com/scop/bash-completion,2016-02-14 22:49:06+02:00,0345d028ee4ad7793d6293a54bb69929e442041b,"[0, 0, 6, 1, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 29, 14, 14, 5, 5, 4, 5, 16, 5, 5, 3, 5, 0, 4, 0, 0, 0, 0, 0, 1, 1, 5, 0, 9, 12, 0]","[0, 2, 1, 2, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",2,1,12,0 +https://github.com/nicolargo/glances,2015-06-07 12:10:22+02:00,92fd4918807749ebc9dfd21d6e063edbc00f01be,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 +https://github.com/eslint/eslint-scope.git,2015-03-07 05:41:31+09:00,14d0b6ffe3d6cc583b31fac1348fea757ec455f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 10, 3, 8, 9, 0, 0, 0, 3, 2, 0, 2, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 11, 0, 0, 0, 0, 0, 0, 4, 1, 6, 2, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,4,0 +https://github.com/Icinga/icingaweb2.git,2017-05-24 11:17:48+02:00,ffd371f257111d9ecd0e32cfe8eaf08b022ba5fc,"[37, 9, 73, 8, 0, 0, 8, 9, 10, 4, 10, 20, 2, 4, 0, 3, 1, 19, 1, 0, 0, 0, 3, 7, 0, 1, 2]","[1, 1, 12, 0, 0, 0, 1, 2, 1, 1, 1, 4, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 12, 22, 6, 5, 7, 12, 7, 2, 35, 9, 7, 7, 0, 0, 13, 35, 20, 17, 19, 13, 35, 27, 30, 44, 99, 1]","[1, 5, 0, 0, 2, 1, 1, 0, 0, 3, 2, 4, 1, 0, 0, 5, 1, 5, 3, 4, 1, 8, 2, 11, 7, 24, 0]",6,0,13,1 +https://github.com/Fluidsynth/fluidsynth.git,2017-10-28 22:15:46+02:00,a1b9ffd5ba6597ce5671057981caddebc4d2ab2b,"[0, 0, 0, 0, 0, 0, 0, 0, 13, 17, 18, 2, 13, 23, 18, 11, 12, 17, 27, 18, 51, 9, 48, 18, 100, 86, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 2, 2, 3, 1, 1, 2, 5, 2, 5, 0, 8, 1, 5, 14, 0]","[30, 63, 42, 54, 62, 25, 23, 11, 19, 14, 7, 7, 7, 1, 4, 6, 12, 3, 8, 6, 16, 9, 67, 41, 10, 33, 1]","[2, 8, 4, 6, 6, 5, 3, 0, 3, 0, 0, 1, 1, 0, 0, 3, 1, 0, 1, 0, 0, 2, 2, 5, 0, 2, 0]",16,2,12,3 +https://github.com/astropy/astropy-helpers,2014-07-15 01:10:12-04:00,c4466268c2c28f3c6a81cb48a907c3d9a066e1ef,"[0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 5, 0, 15, 0, 0, 0, 0, 14, 36, 16, 19, 7, 6, 21, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 6, 8, 1, 2, 4, 0, 1, 1]","[7, 1, 0, 9, 0, 0, 0, 0, 10, 0, 0, 2, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,0,5 +https://github.com/eclipse-ee4j/eclipselink.git,2018-06-28 01:02:56+02:00,f194797222adc97d62c7d1f462ae368c4cd8426a,"[0, 7, 9, 2, 1, 2, 7, 8, 2, 7, 2, 2, 18, 4, 5, 0, 1, 3, 0, 6, 0, 1, 3, 10, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[7, 6, 0, 2, 0, 6, 1, 2, 0, 2, 0, 0, 1, 4, 0, 1, 1, 2, 0, 0, 1, 3, 0, 0, 15, 8, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,3,1 +https://github.com/LLNL/sundials.git,2019-01-22 10:53:39-08:00,4394d2dcdd46293be45931a524a4e28a8a23f887,"[16, 12, 33, 7, 6, 9, 11, 12, 2, 16, 2, 1, 2, 3, 1, 1, 2, 0, 2, 7, 5, 1, 0, 0, 0, 3, 2]","[3, 1, 6, 0, 1, 3, 2, 1, 0, 4, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]","[3, 9, 5, 3, 16, 0, 1, 4, 3, 4, 1, 1, 12, 8, 2, 10, 1, 1, 2, 0, 0, 4, 5, 0, 17, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]",0,0,0,0 +https://github.com/google/jimfs.git,2014-05-14 17:57:50-04:00,f439b411c4f7a88908cc7d7c44ee4c97a54f7764,"[3, 0, 2, 15, 2, 1, 0, 0, 0, 2, 11, 8, 2, 0, 5, 0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 5, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 5, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0]","[0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,1 +https://github.com/jashkenas/coffeescript,2012-09-17 13:16:41-04:00,7595cb689ae1fca537e4fd781672f7cd33dcd3cd,"[2, 2, 2, 16, 2, 18, 1, 7, 25, 3, 0, 3, 1, 0, 2, 4, 2, 0, 0, 0, 2, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 3, 1, 4, 0, 1, 2, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[0, 7, 2, 0, 2, 8, 1, 0, 9, 4, 3, 0, 0, 1, 0, 14, 4, 18, 8, 16, 2, 5, 27, 51, 15, 1, 0]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 4, 2, 2, 1, 2, 7, 14, 1, 0, 0]",10,3,16,0 +https://gitlab.com/libosinfo/osinfo-db.git,2019-11-19 15:13:17+00:00,69b8fd55af7b9d865ec094e3891bad0add66cc5e,"[12, 11, 6, 0, 18, 7, 0, 7, 2, 20, 8, 0, 10, 6, 13, 7, 10, 3, 1, 18, 6, 16, 0, 6, 19, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 4, 9, 0, 0, 1, 5, 4, 1, 9, 0, 9, 0, 4, 7, 2, 2, 8, 2, 2, 12, 8, 13, 13, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,13,0 +https://github.com/totalopenstation/totalopenstation.git,2020-01-08 15:59:18+01:00,7a66cffa8fab534f23912dcf820f46055e7b0cc7,"[0, 0, 0, 0, 0, 0, 33, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 4, 1, 6, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1 +https://github.com/pydanny/cached-property.git,2014-05-17 15:42:43-07:00,7161ec8bf07e46aa08216e494a29d0428b7d988b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/prometheus/mysqld_exporter,2015-03-12 18:58:52+03:00,4a2553da879a5c332e29058eeab30de64d4d7b02,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 7, 1, 4, 0, 0, 4, 3, 0, 0, 3, 0, 3, 5, 0, 0, 7, 2, 0, 0, 1, 0, 14, 11, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 6, 5, 2, 0]",2,5,14,0 +https://github.com/Iotic-Labs/py-ubjson,2016-02-12 15:50:03+00:00,61cabd66aba5dd1d5cdaf83888584c720a96917a,"[8, 4, 4, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 1, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/httprb/http.rb,2015-01-13 03:30:16+01:00,24428d29d0f30bd00f75a765a624824d0a8b9875,"[0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 1, 5, 0, 0, 29, 0, 10, 0, 48, 24, 15, 0, 5, 0, 30, 7, 6, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 0, 0, 0, 0, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,3,9,0 +https://github.com/silx-kit/pyFAI,2018-12-12 14:03:01+01:00,0bc64b578d2549d672b976e52dcdef02b4c7c96c,"[16, 3, 17, 10, 33, 7, 0, 0, 7, 3, 9, 245, 7, 1, 4, 33, 48, 28, 51, 41, 20, 17, 20, 31, 50, 27, 2]","[5, 2, 10, 0, 3, 4, 0, 0, 0, 3, 4, 12, 3, 0, 0, 11, 13, 5, 16, 7, 5, 1, 7, 4, 14, 6, 1]","[122, 10, 0, 47, 107, 73, 43, 64, 12, 0, 69, 42, 13, 28, 6, 0, 82, 7, 26, 31, 24, 97, 108, 3, 0, 1, 0]","[35, 5, 0, 3, 16, 10, 11, 12, 5, 0, 2, 1, 4, 5, 0, 0, 0, 2, 5, 3, 7, 13, 37, 1, 0, 1, 0]",4,1,4,2 +https://github.com/troglobit/inadyn,2016-12-01 00:29:07+01:00,21ec102da141967b0043b4bb0a7bf7302bd056ea,"[5, 2, 12, 5, 5, 3, 1, 0, 0, 0, 8, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1 +https://gitlab.gnome.org/GNOME/gvfs.git,2018-07-19 14:03:06+02:00,98d0533d57756f8092dd1b4cc717143d3b1c313e,"[4, 0, 3, 9, 9, 11, 9, 6, 13, 6, 6, 5, 12, 2, 0, 4, 8, 4, 5, 1, 0, 0, 0, 1, 4, 9, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 5, 5, 4, 10, 13, 2, 0, 12, 1, 2, 0, 1, 4, 1, 0, 1, 1, 1, 6, 2, 0, 1, 34, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,6,0 +https://github.com/vim-airline/vim-airline.git,2016-01-18 14:01:39-05:00,348663f7f8826b82efdd9ef11c98b8eddaba2e2b,"[0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 10, 3, 2, 0, 0, 0, 3, 1, 0, 0, 0, 0, 3, 7, 2, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 5, 0]","[27, 54, 32, 16, 15, 24, 7, 3, 3, 8, 0, 5, 2, 14, 11, 1, 15, 3, 2, 4, 1, 1, 3, 14, 0, 0, 1]","[13, 24, 12, 5, 7, 10, 3, 1, 0, 5, 0, 3, 1, 7, 5, 0, 6, 1, 1, 1, 1, 0, 0, 8, 0, 0, 0]",11,1,31,1 +https://github.com/puppetlabs/puppetlabs-postgresql.git,2014-06-25 17:23:35-07:00,c63a7ba857333b3203bfd32a1914daa5dd44d1cc,"[0, 6, 2, 11, 7, 0, 2, 6, 6, 35, 4, 0, 4, 12, 5, 0, 4, 2, 9, 41, 2, 0, 3, 4, 0, 3, 1]","[0, 3, 1, 9, 3, 0, 1, 3, 3, 17, 0, 0, 1, 5, 2, 0, 3, 1, 3, 9, 1, 0, 1, 2, 0, 1, 0]","[14, 7, 6, 2, 16, 6, 1, 3, 12, 28, 10, 4, 1, 1, 7, 2, 0, 4, 11, 0, 0, 3, 5, 8, 0, 2, 1]","[5, 2, 3, 0, 6, 3, 1, 0, 5, 15, 5, 0, 0, 0, 7, 1, 0, 1, 7, 0, 0, 1, 1, 3, 0, 2, 0]",16,1,25,3 +https://github.com/jupyter/jupyter_client,2015-04-09 00:12:21-07:00,e7d7c01a9afd0ddcc8c183223a340ffa44468621,"[4, 11, 2, 1, 2, 2, 1, 4, 29, 11, 4, 1, 5, 0, 5, 4, 3, 1, 3, 0, 4, 3, 0, 5, 26, 27, 2]","[1, 6, 0, 1, 1, 1, 0, 2, 3, 3, 2, 0, 3, 0, 2, 1, 1, 0, 1, 0, 2, 1, 0, 3, 5, 7, 0]","[10, 2, 4, 8, 8, 2, 12, 10, 2, 6, 3, 2, 11, 13, 2, 1, 2, 4, 4, 7, 0, 5, 6, 4, 0, 9, 1]","[3, 1, 1, 4, 4, 1, 2, 4, 1, 2, 1, 1, 4, 5, 1, 0, 1, 0, 2, 4, 0, 2, 2, 2, 0, 2, 0]",7,1,6,0 +https://github.com/florimondmanca/djangorestframework-api-key,2018-11-02 21:39:13+01:00,41c564f401aeb7e9a3b7731f324b01c0fc1f6859,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 38, 20, 0, 9, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 1, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 37, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 10, 0, 0]",2,0,0,2 +https://github.com/Backblaze/b2-sdk-python.git,2020-07-29 12:07:47+02:00,dfe4618e350955efb628138a8e0a590b0ab72c8e,"[3, 0, 0, 0, 0, 20, 0, 0, 0, 1, 3, 0, 18, 12, 3, 4, 0, 36, 10, 3, 2, 8, 5, 3, 3, 26, 2]","[2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 7, 0, 1, 0, 9, 4, 1, 1, 1, 1, 1, 0, 2, 0]","[3, 16, 1, 1, 3, 14, 12, 4, 4, 9, 10, 2, 1, 15, 1, 3, 0, 5, 2, 0, 0, 0, 0, 9, 2, 3, 0]","[1, 2, 0, 0, 0, 6, 3, 0, 2, 4, 4, 1, 0, 5, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0]",5,0,8,2 +https://github.com/infirit/caja-admin,2015-09-16 17:05:34+01:00,accfea70349ecb96cefa0713a10b2eadc43c54ef,"[0, 0, 0, 0, 11, 3, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 5, 3, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,3,0 +https://github.com/google/flatbuffers.git,2014-12-08 17:48:06-08:00,14eaddfdcc28b89521625172fa34f710a5082c2e,"[6, 3, 0, 0, 3, 3, 1, 1, 0, 1, 3, 0, 1, 3, 2, 1, 0, 0, 2, 1, 0, 0, 0, 2, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/osantana/dicteval.git,2018-10-01 23:28:11-03:00,5e1970132fd7a6ac55785648a89cf2e3e2131965,"[0, 4, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,7,1 +https://github.com/akheron/jansson.git,2021-09-12 18:37:43+03:00,eb816708811429261974fc28fbf779aaaab1d546,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jupyter/jupyter_console,2015-04-09 14:58:56-07:00,01911a59496d49002da76d73c83a00fd735f63e4,"[3, 1, 0, 0, 5, 4, 0, 2, 2, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 2, 0, 0, 0, 10, 2, 10, 2]","[1, 1, 0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 0]","[1, 0, 1, 0, 2, 0, 2, 0, 5, 0, 0, 7, 2, 10, 0, 0, 0, 5, 0, 2, 10, 0, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 1, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0]",5,0,4,0 +https://gitlab.gnome.org/GNOME/gcr.git,2021-01-16 11:40:41+01:00,f1f1a85026f04f32a53269c104b72f187f1c5b47,"[0, 0, 1, 4, 5, 5, 3, 7, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 2, 0, 0, 4, 0, 0, 0, 2, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,4,0 +https://github.com/porridge/bambam,2022-10-05 20:49:55+02:00,fca59a1105d1586139f938cd83cff2284e5b7347,"[0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 30, 3, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 2, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 +https://github.com/SethMMorton/natsort.git,2017-11-11 22:35:35-08:00,1a37d0ec62dd0949a24a4a5de41d91033c656a1f,"[0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 8, 6, 5, 2, 0, 0, 0, 0, 2, 0, 5, 3, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]",1,1,3,1 +https://github.com/donnemartin/gitsome,2016-05-05 22:24:56-04:00,57200842984c0d9c12600373652e4f4047db5ef4,"[141, 54, 14, 1, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 54, 88, 27, 94, 99, 105, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[109, 42, 33, 45, 5, 5, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 1, 3, 1]","[5, 11, 1, 14, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,2,16,0 +https://github.com/lualdap/lualdap.git,2019-01-03 00:52:55+01:00,b3a33927a0c1e97dd7d73570c81b730041304699,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 6, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/ycm-core/ycmd,2014-05-16 23:31:44-07:00,4895159712d9acf3b1cf45e1c93a654d5b93c6d5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 31, 7, 5, 2, 0, 3, 0, 3, 11, 1, 13, 0, 7, 54, 7, 0, 2, 0, 5, 6, 5, 1, 0, 2, 0, 1]","[2, 1, 0, 1, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 1, 1, 3, 0, 0, 1, 0, 0]",2,2,13,0 +https://github.com/KhronosGroup/Vulkan-Tools,2016-02-26 15:42:57-07:00,c5f63ad07fab1241c70b0f852ff4a570fb11af8b,"[35, 35, 57, 49, 32, 46, 16, 18, 100, 111, 24, 34, 17, 58, 34, 65, 6, 30, 94, 46, 41, 93, 85, 72, 49, 43, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]","[54, 65, 39, 66, 75, 77, 37, 44, 42, 80, 75, 76, 50, 50, 25, 40, 74, 50, 37, 25, 46, 9, 32, 31, 41, 48, 1]","[2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",37,7,29,3 +https://github.com/Ranks/emojione,2015-12-27 20:17:30-08:00,a3321d7d22ea482aa229269e02fa081beb889d28,"[5, 0, 7, 0, 2, 1, 0, 0, 2, 3, 1, 0, 0, 1, 1, 1, 10, 11, 9, 2, 0, 0, 3, 0, 20, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 1, 0, 0, 1, 0, 2, 0, 0]","[8, 12, 0, 0, 5, 3, 4, 4, 5, 1, 2, 7, 10, 2, 3, 0, 0, 0, 0, 0, 0, 0, 10, 2, 4, 8, 1]","[2, 1, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0]",12,4,11,1 +https://github.com/codedread/scour.git,2016-09-18 22:36:21+02:00,7e2b5e43df2f5bf6fc724396de73429423b15fe1,"[1, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 4, 1, 13, 19, 13, 22, 2]","[1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 1, 1, 3, 0]","[10, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,1,1 +https://github.com/sinatra/sinatra.git,2015-03-23 22:35:41-07:00,2ea4612d082119ec170ab860a6488fe8bd6a6964,"[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 2, 2, 0, 3, 9, 0, 4, 2, 12, 0, 3, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 1, 0, 0, 4, 0, 3, 1, 6, 0, 1, 0, 0, 0, 2, 1]","[1, 4, 10, 2, 0, 5, 0, 0, 4, 0, 0, 0, 5, 2, 0, 0, 4, 0, 0, 0, 2, 2, 0, 0, 1, 2, 0]","[1, 1, 4, 1, 0, 2, 0, 0, 3, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 1, 0]",11,1,8,0 +https://github.com/prehor/amavisd-milter,2019-01-07 00:41:58+01:00,1b2d12499c59f754abfe50630ec821e60b4411ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 19, 11, 5, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,0,0 +https://github.com/eavgerinos/pkg-pick,2017-04-19 15:41:59+03:00,559c4afb695dcfe0f7f8efd239d3af20728b7506,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 +https://github.com/capistrano/capistrano.git,2013-11-20 13:38:12+01:00,50164d08340f23dd5d313c282a3622c4f3472aa8,"[22, 6, 6, 18, 6, 11, 26, 11, 3, 3, 12, 12, 4, 2, 8, 3, 2, 0, 5, 3, 11, 21, 12, 26, 6, 2, 2]","[0, 0, 1, 2, 0, 2, 4, 4, 1, 1, 3, 5, 3, 1, 3, 1, 1, 0, 2, 1, 5, 9, 5, 9, 2, 1, 0]","[16, 0, 1, 3, 8, 4, 12, 12, 4, 9, 5, 1, 5, 6, 6, 4, 3, 8, 4, 4, 27, 16, 6, 0, 0, 0, 0]","[7, 0, 0, 0, 4, 2, 6, 4, 0, 6, 3, 0, 1, 2, 2, 2, 1, 4, 1, 1, 17, 6, 3, 0, 0, 0, 0]",24,1,44,1 +https://github.com/rakhimov/scram.git,2015-05-25 15:15:09-07:00,d75adbf8c87758790843f79abd54bb2c0edec4b7,"[22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 14, 8, 17, 14, 3, 0, 1, 0, 0, 16, 9, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 54, 19, 21, 28, 45, 20, 11, 32, 30, 37, 75, 42, 22, 36, 33, 14, 39, 46, 37, 36, 25, 8, 7, 8, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bit-team/backintime,2023-03-13 07:35:38+01:00,d645bee63a96503e0b9aa4b7b6f927baf367c713,"[8, 7, 4, 14, 0, 13, 5, 10, 2, 4, 2, 2, 1, 2, 0, 2, 3, 0, 1, 0, 3, 0, 0, 0, 2, 1, 1]","[2, 1, 2, 5, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 1, 0, 0, 7, 6, 8, 1, 4, 5, 2, 1, 3, 7, 1, 4, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",4,0,1,1 +https://github.com/HaxeFoundation/haxe-debian,2015-08-26 14:24:54+08:00,4c397eb8d7190fc371fcdb24cd3026ffa7cb3ce2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 6, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/angband/angband,2021-07-17 08:31:48+10:00,d38f07c60e2ba0d1ec4b2ccbc88919900bcede1c,"[0, 4, 4, 5, 9, 8, 4, 1, 0, 0, 26, 8, 11, 8, 20, 17, 7, 21, 14, 35, 2, 17, 10, 10, 15, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 28, 27, 20, 8, 6, 12, 1, 7, 0, 6, 4, 0, 11, 7, 8, 14, 2, 13, 8, 9, 17, 19, 21, 11, 20, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,10,0 +https://gitlab.gnome.org/GNOME/gnome-clocks.git,2020-03-01 19:05:43+01:00,3492deeb4819c7d4fbd78315012a49c2f21a05f4,"[0, 3, 3, 26, 5, 1, 2, 1, 1, 4, 1, 0, 1, 9, 2, 2, 3, 2, 2, 3, 5, 46, 28, 8, 27, 43, 2]","[0, 0, 1, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0]","[11, 6, 0, 0, 6, 13, 5, 1, 3, 6, 1, 2, 0, 9, 38, 4, 3, 6, 4, 6, 0, 5, 14, 10, 11, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,25,3 +https://github.com/libevent/libevent,2016-10-05 15:51:40+03:00,a22d2033861284c0f25096b00bed8552a1ce2ed4,"[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/alanxz/rabbitmq-c.git,2012-11-07 00:51:29-05:00,6aa5779d74353f03e56d0c5079885ec2535011a8,"[4, 27, 23, 0, 3, 4, 4, 1, 0, 0, 3, 0, 0, 0, 0, 0, 2, 1, 1, 2, 4, 12, 2, 7, 2, 1, 1]","[0, 1, 4, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 3, 0, 0, 0, 0, 0]","[0, 9, 0, 2, 0, 0, 1, 2, 0, 5, 6, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 47, 0, 24, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",9,0,2,0 +https://github.com/tarantool/tarantool,2022-06-01 10:44:27+03:00,55bdb42dac13af7098e2a110c5539ee3686f715c,"[21, 39, 22, 10, 11, 1, 22, 21, 14, 17, 23, 14, 5, 16, 12, 15, 45, 20, 19, 31, 74, 17, 14, 15, 33, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 8, 26, 26, 37, 33, 31, 14, 31, 48, 19, 9, 32, 29, 18, 30, 7, 45, 36, 29, 29, 18, 24, 16, 12, 30, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,11,0 +https://github.com/opencontainers/runc,2015-01-29 15:35:22-08:00,689e8ec9493a4294856dc1568f5ef667e106707c,"[21, 38, 7, 8, 13, 6, 8, 15, 13, 3, 10, 12, 19, 17, 8, 25, 6, 7, 13, 7, 14, 0, 0, 15, 13, 6, 1]","[5, 11, 2, 4, 5, 3, 3, 7, 4, 2, 5, 5, 9, 7, 3, 9, 3, 4, 0, 1, 1, 0, 0, 4, 3, 1, 1]","[21, 39, 24, 42, 34, 30, 14, 22, 22, 22, 28, 19, 9, 21, 7, 69, 9, 8, 27, 16, 37, 50, 29, 24, 6, 0, 0]","[7, 10, 12, 22, 12, 13, 8, 9, 9, 11, 14, 7, 5, 8, 4, 11, 4, 4, 10, 8, 13, 20, 14, 12, 3, 0, 0]",31,4,58,4 +https://github.com/voxpupuli/pypuppetdb,2021-02-13 11:11:44+01:00,a56ee6336fefff35aac69a625e772d10e228c630,"[0, 0, 0, 5, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 4, 12, 0, 0, 2, 0, 2, 36, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 6, 0, 0, 2, 0, 1, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 +https://github.com/mongodb/mongo-c-driver,2012-11-14 11:42:45-05:00,8a39279e05d864de4996f691d4312183cdb39a2c,"[3, 5, 11, 0, 2, 1, 11, 3, 0, 0, 14, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 0, 1, 1, 2, 2, 26, 0, 5, 3, 4, 0, 0, 6, 4, 1, 18, 80, 14, 1, 0, 0, 0, 0, 0, 1]","[2, 1, 0, 0, 0, 1, 1, 9, 0, 1, 1, 0, 0, 0, 4, 1, 0, 7, 33, 6, 1, 0, 0, 0, 0, 0, 0]",9,4,13,3 +https://github.com/ipython/ipykernel.git,2015-04-09 12:02:45-07:00,8b877ac254ecbd94b3af329380d020566eb9dc6a,"[6, 3, 14, 2, 3, 2, 6, 6, 22, 14, 1, 2, 2, 2, 5, 4, 4, 2, 5, 2, 5, 0, 0, 8, 24, 14, 2]","[3, 1, 5, 1, 2, 0, 2, 3, 7, 4, 1, 1, 1, 1, 2, 2, 0, 1, 3, 0, 2, 0, 0, 5, 4, 5, 0]","[10, 11, 4, 2, 6, 0, 4, 2, 2, 0, 0, 0, 2, 11, 4, 5, 4, 4, 2, 7, 2, 9, 3, 8, 1, 6, 0]","[3, 4, 2, 1, 3, 0, 1, 1, 1, 0, 0, 0, 1, 4, 1, 1, 2, 1, 1, 3, 1, 5, 0, 4, 1, 2, 0]",6,1,7,1 +https://gitlab.gnome.org/GNOME/clutter.git,2018-06-18 18:54:25+01:00,d78670077e0d3165075725b85cc726f166f4511e,"[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 32, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[5, 2, 2, 2, 2, 1, 0, 0, 2, 2, 4, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,9,1 +https://github.com/ipython/traitlets.git,2015-04-08 16:33:28-07:00,e722b4788b076c8f7b4b38c4926e49c15cbf4423,"[1, 1, 1, 1, 15, 13, 3, 4, 0, 8, 0, 0, 0, 0, 1, 3, 5, 0, 5, 5, 5, 1, 4, 41, 17, 30, 2]","[0, 1, 0, 1, 1, 3, 1, 2, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 0, 0, 2, 13, 4, 10, 0]","[6, 13, 3, 1, 4, 5, 7, 17, 10, 27, 3, 6, 1, 8, 4, 22, 1, 6, 6, 4, 11, 11, 10, 17, 8, 15, 1]","[1, 4, 1, 0, 2, 0, 2, 6, 5, 7, 1, 2, 0, 3, 1, 4, 0, 2, 2, 1, 2, 1, 2, 7, 1, 5, 1]",4,2,6,0 +https://github.com/bitletorg/weupnp.git,2013-04-26 19:53:30+00:00,ebab8750932ade8b8418ff78c0168b3e6bf6fbf3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bbatsov/powerpack.git,2016-01-18 11:33:23+02:00,977c913b668fba76b0b4dfdc825894d9bbc34868,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/c-ares/c-ares.git,2014-07-25 09:28:46+01:00,ede0f84b8e9cfe4eeaafb1c90e5fea006e19fe5e,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/unknown-horizons/unknown-horizons.git,2012-09-23 18:55:40+02:00,1365242f5bbebec73a61a4d8fc4c7b50daaba367,"[208, 127, 136, 116, 57, 65, 91, 19, 18, 27, 8, 37, 11, 43, 58, 33, 61, 36, 29, 54, 63, 45, 65, 60, 66, 39, 2]","[12, 11, 14, 10, 4, 1, 4, 1, 1, 2, 0, 0, 0, 3, 9, 1, 2, 1, 2, 3, 4, 5, 6, 4, 4, 4, 0]","[57, 47, 26, 35, 41, 37, 45, 162, 81, 144, 45, 61, 96, 75, 125, 21, 30, 99, 45, 22, 5, 15, 17, 20, 21, 0, 0]","[3, 2, 2, 3, 2, 0, 2, 5, 4, 8, 0, 2, 0, 6, 3, 0, 2, 1, 1, 2, 0, 0, 3, 1, 1, 0, 0]",20,2,13,6 +https://github.com/google/brotli,2015-10-02 12:02:58+02:00,e4d9c617f07ec0a854983496e51f751758a79b6f,"[8, 2, 37, 10, 22, 26, 0, 0, 0, 0, 17, 0, 4, 0, 0, 0, 3, 0, 22, 8, 0, 11, 0, 2, 13, 26, 2]","[4, 1, 18, 5, 11, 7, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0, 1, 0, 7, 3, 0, 4, 0, 1, 6, 10, 1]","[47, 2, 19, 30, 15, 14, 2, 7, 1, 8, 2, 2, 0, 8, 11, 2, 20, 3, 0, 5, 11, 4, 0, 3, 2, 0, 0]","[20, 1, 6, 12, 4, 6, 1, 3, 0, 4, 1, 1, 0, 3, 5, 1, 6, 1, 0, 2, 4, 2, 0, 1, 1, 0, 0]",4,1,13,2 +https://github.com/prometheus/node_exporter,2015-01-22 17:11:26+01:00,e03ed0aedff206afbf9d62274be2711e36405ac1,"[3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 10, 0, 0, 7, 0, 0, 0, 2, 0, 2]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 2, 0, 0, 3, 0, 0, 0, 1, 0, 1]","[5, 4, 12, 9, 0, 1, 4, 1, 9, 1, 0, 4, 1, 0, 1, 6, 4, 3, 3, 2, 0, 2, 0, 5, 35, 0, 1]","[3, 1, 6, 4, 0, 0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 3, 2, 1, 1, 1, 0, 1, 0, 1, 4, 0, 0]",2,3,16,1 +https://github.com/locationtech/jts.git,2016-01-27 22:31:26-08:00,5f02c948ae0ba880dfdfbd59038e32fb180ffa17,"[4, 6, 9, 0, 0, 0, 10, 31, 0, 0, 1, 5, 4, 13, 3, 7, 0, 0, 0, 3, 1, 0, 0, 3, 4, 36, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1]","[12, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1 +https://github.com/zsh-users/antigen,2016-08-27 08:59:54+02:00,e68090b302b1f11e7ea4b1d76f10adcb70a83bb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 16, 8, 8, 8, 2, 9, 5, 0, 1, 2, 3, 2, 7, 9, 4, 3, 4, 3, 3, 2, 1, 3, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/EttusResearch/uhd,2018-06-26 08:56:32-07:00,f2896713d48f6c0bc19a859f5ad506e0ddd7ae61,"[1, 25, 35, 34, 13, 7, 31, 25, 16, 34, 27, 43, 6, 39, 48, 17, 37, 24, 46, 21, 23, 0, 13, 19, 15, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0]","[14, 7, 46, 44, 12, 33, 13, 7, 14, 10, 4, 18, 2, 5, 3, 13, 17, 19, 8, 13, 35, 8, 16, 8, 16, 13, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,16,0 +https://github.com/tinfoil/devise-two-factor.git,2014-05-20 10:56:41-07:00,5f4102f0ec59debb9c72204f83edd47d1d4454bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 38, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]",3,0,3,3 +https://github.com/stachenov/quazip.git,2018-04-07 16:52:11+03:00,079d2622e1806613ae47655bef6935c0cf7345f0,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 1, 2, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,3,0 +https://github.com/zopefoundation/zope.interface.git,2022-07-07 09:06:38+02:00,fc36cf4f860bcc7ac474c80aa40ecfa5f342c666,"[0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 1, 0, 0, 2, 0, 0, 1, 2, 1, 2, 0, 0, 2, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,0,1,0 +https://github.com/maxmind/geoip-api-perl.git,2017-10-10 15:13:04-07:00,a3161863aeb2d8ab00f64e1c9ca7fbb4c91e0d0d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nixxcode/amsynth.git,2020-09-27 10:08:37+01:00,7e167a6bd8b28763084b95cc83b2a4cefedae519,"[0, 0, 7, 2, 6, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 7, 17, 3, 1, 0, 9, 0, 0, 1, 9, 1]","[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0]","[8, 12, 6, 1, 0, 2, 19, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 4, 0, 0]","[1, 2, 2, 0, 0, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/boxbackup/boxbackup.git,2018-08-09 22:56:09+01:00,d5bbc4b4ae89f15b284337174d2fb4e03e608a66,"[0, 0, 2, 5, 5, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mruby-debian/mruby,2012-09-18 21:38:15+09:00,2493915a72fcc57148a17109f9be8525fc887790,"[0, 0, 0, 0, 125, 57, 92, 68, 141, 64, 196, 40, 102, 69, 40, 47, 44, 44, 63, 44, 28, 41, 12, 22, 48, 18, 1]","[0, 0, 0, 0, 31, 16, 23, 11, 26, 18, 40, 8, 17, 15, 11, 13, 12, 13, 19, 5, 5, 14, 4, 1, 14, 7, 0]","[44, 11, 5, 11, 46, 18, 49, 32, 24, 68, 22, 60, 34, 71, 13, 56, 55, 63, 44, 49, 26, 44, 66, 120, 57, 177, 1]","[6, 3, 0, 4, 11, 8, 9, 15, 8, 9, 9, 25, 11, 27, 5, 27, 22, 24, 18, 24, 12, 13, 23, 49, 17, 45, 1]",57,8,30,10 +https://github.com/ioquake/ioq3,2018-03-21 10:59:13+00:00,e511c114b3935ec10b8877a8eecf1efbe1551373,"[2, 8, 8, 2, 0, 0, 1, 3, 2, 2, 2, 0, 4, 2, 0, 1, 1, 8, 2, 8, 3, 1, 1, 1, 1, 9, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 16, 7, 0, 14, 2, 7, 1, 2, 2, 2, 0, 1, 0, 0, 0, 9, 5, 1, 0, 0, 1, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,0 +https://github.com/twbs/bootstrap-sass,2013-01-20 14:48:58+00:00,64fedeefd2a72ac47c5c385c5a2dd4219c8d01f1,"[2, 0, 1, 0, 0, 12, 6, 4, 4, 2, 1, 3, 6, 5, 16, 6, 2, 3, 0, 2, 3, 1, 0, 0, 1, 4, 1]","[0, 0, 0, 0, 0, 1, 3, 0, 2, 0, 0, 0, 5, 2, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0]","[0, 3, 5, 3, 6, 2, 0, 2, 7, 0, 0, 2, 0, 4, 3, 3, 1, 2, 6, 0, 3, 0, 0, 0, 0, 6, 0]","[0, 1, 3, 1, 3, 1, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0]",22,0,14,1 +https://github.com/pydicom/pydicom.git,2017-07-10 12:36:07-04:00,60f11430ff7793d50925f4ef3ba54787bdc3be9c,"[0, 17, 13, 10, 13, 4, 0, 18, 8, 6, 14, 6, 7, 1, 10, 0, 5, 0, 2, 3, 32, 9, 2, 0, 2, 9, 2]","[0, 3, 4, 3, 2, 0, 0, 2, 3, 5, 2, 2, 1, 1, 0, 0, 2, 0, 1, 1, 7, 2, 1, 0, 1, 0, 0]","[21, 78, 37, 15, 8, 9, 5, 1, 2, 2, 2, 8, 0, 0, 0, 1, 2, 0, 0, 0, 7, 3, 1, 0, 2, 0, 1]","[6, 8, 8, 3, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0]",11,0,6,2 +https://github.com/oneapi-src/oneTBB.git,2021-08-26 17:55:23+03:00,a6b90fc9f522b1c9fa1e3b9eabb4f677abb2268d,"[1, 0, 0, 0, 4, 0, 0, 0, 0, 1, 3, 5, 10, 4, 22, 4, 8, 13, 13, 2, 12, 3, 8, 13, 8, 8, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 15, 9, 3, 12, 8, 16, 6, 19, 5, 4, 13, 4, 3, 6, 4, 5, 22, 0, 6, 7, 13, 3, 12, 5, 1, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",40,0,15,1 +https://github.com/axel-download-accelerator/axel.git,2016-03-20 16:28:09-03:00,711b8992f9c7c9ad91ca943a55ab099a9bffd521,"[0, 0, 0, 0, 0, 31, 7, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 43, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 22, 0, 0, 0, 6, 1, 1, 0, 7, 47, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,8,1 +https://gitlab.com/o9000/tint2,2017-02-26 16:30:54+00:00,d47924492a7f8dd3aba6061b51778804e09936f2,"[4, 1, 9, 0, 8, 23, 0, 0, 2, 0, 0, 3, 0, 2, 1, 1, 1, 2, 0, 6, 1, 0, 0, 0, 0, 8, 2]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[28, 10, 5, 24, 4, 5, 2, 24, 6, 1, 0, 3, 2, 4, 9, 0, 15, 16, 2, 3, 4, 0, 0, 0, 0, 11, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0]",5,0,1,0 +https://github.com/pgRouting/pgrouting.git,2016-12-08 17:32:24-06:00,34b933f144cf6cab04de7055c7bc404590c8f6f1,"[104, 104, 78, 48, 83, 285, 115, 78, 35, 46, 11, 7, 35, 0, 30, 25, 87, 2, 0, 0, 0, 78, 31, 11, 97, 71, 2]","[21, 18, 3, 7, 17, 24, 25, 13, 9, 24, 1, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 8, 1, 0, 0, 4, 0]","[23, 30, 41, 17, 78, 0, 0, 0, 0, 46, 35, 68, 68, 92, 68, 38, 55, 42, 39, 77, 33, 40, 76, 96, 44, 48, 1]","[4, 1, 3, 1, 10, 0, 0, 0, 0, 2, 2, 16, 6, 13, 17, 7, 5, 3, 8, 4, 3, 2, 18, 9, 3, 8, 0]",6,2,9,3 +https://github.com/google/fscrypt,2017-05-31 12:33:04-07:00,bd6a1acc8c6b6c03f999558baa4aab464417548d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 5, 2, 8, 0, 44, 9, 0, 4, 4, 10, 20, 18, 1, 0, 0, 17, 2, 1, 19, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 10, 3, 0, 2, 2, 1, 5, 3, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 +https://github.com/varvet/pundit,2015-03-27 14:30:23+01:00,06187d68f39c7edaf8a9bb2459e9b64c52c565c1,"[0, 0, 3, 0, 2, 2, 1, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 19, 2]","[0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[12, 2, 0, 5, 0, 2, 2, 0, 2, 0, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 1, 3, 2, 0]","[4, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]",10,0,12,1 +https://github.com/py-pdf/pypdf,2023-08-27 10:09:05+02:00,9aa39677eca11204cdf1fd1bb317cef2def9e2aa,"[15, 6, 13, 9, 15, 4, 12, 9, 5, 9, 0, 6, 3, 6, 2, 19, 13, 15, 8, 7, 8, 23, 9, 11, 13, 15, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[6, 18, 12, 7, 9, 11, 10, 4, 9, 0, 2, 6, 2, 4, 7, 4, 16, 13, 12, 1, 10, 2, 3, 1, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",28,0,23,0 +https://github.com/galaxyproject/bioblend,2019-08-08 13:37:15+01:00,c9c45f2e6e012e83dc23951bb169ba471b2ffcc0,"[1, 0, 2, 1, 5, 0, 0, 0, 7, 1, 2, 0, 2, 13, 0, 2, 1, 0, 0, 4, 0, 5, 2, 0, 0, 4, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1]","[8, 1, 13, 6, 0, 1, 0, 1, 0, 2, 1, 4, 0, 2, 12, 8, 14, 12, 0, 0, 0, 2, 1, 2, 8, 14, 1]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 2, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0]",4,2,8,0 +https://github.com/fonttools/fonttools.git,2019-04-11 12:52:00-04:00,1bcd212df2f01816c02b302d739838c1a68e4190,"[35, 37, 49, 23, 75, 36, 2, 38, 8, 28, 0, 22, 26, 41, 26, 10, 32, 17, 14, 17, 60, 19, 19, 26, 26, 1, 1]","[1, 6, 3, 4, 0, 7, 0, 9, 3, 2, 0, 4, 6, 9, 7, 0, 7, 4, 4, 4, 10, 1, 2, 0, 8, 0, 0]","[18, 12, 30, 23, 19, 18, 31, 13, 15, 59, 1, 0, 5, 3, 4, 16, 12, 17, 11, 3, 6, 24, 17, 8, 1, 14, 1]","[4, 3, 5, 6, 5, 6, 4, 1, 0, 14, 0, 0, 0, 0, 2, 6, 4, 5, 0, 0, 1, 10, 1, 2, 1, 1, 0]",10,0,6,4 +https://github.com/rails/rails-dom-testing,2015-09-01 12:22:57-04:00,51292a2f23c5c579366d6d12d256a2f01722ea4e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 +https://github.com/kilobyte/pmemkv,2017-05-19 11:16:42-06:00,60309a73f591039719e7dca0ff28349a451f8d33,"[0, 0, 0, 0, 0, 0, 4, 4, 7, 0, 12, 1, 4, 11, 2, 3, 1, 0, 7, 6, 4, 2, 6, 6, 9, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 1, 2, 1, 0]","[9, 0, 0, 0, 0, 5, 0, 4, 1, 0, 0, 0, 2, 0, 11, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1 +https://github.com/mypaint/mypaint,2014-10-31 14:38:22+00:00,f666bb4186c74134a837bd251eda40f6a5a76b3a,"[0, 0, 11, 9, 26, 11, 17, 13, 12, 10, 14, 20, 5, 4, 6, 0, 2, 4, 0, 1, 1, 14, 0, 7, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]","[11, 7, 5, 2, 5, 18, 9, 0, 2, 5, 22, 6, 8, 11, 10, 6, 26, 34, 8, 1, 21, 17, 63, 13, 12, 14, 1]","[3, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 2, 2, 1, 0, 0, 2, 1, 1, 0, 1, 5, 2, 0, 1, 1, 0]",3,4,7,1 +https://github.com/doctrine/sql-formatter.git,2020-05-22 13:29:39+02:00,cb591932999210615eeb77dc8a17866304fc50a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 16, 12, 6, 13, 2, 2, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 4, 3, 4, 1, 1, 0, 1, 1]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1 +https://github.com/zloirock/core-js.git,2018-03-17 13:53:13+07:00,b004608e4c3d202b778a4077421825cc71eaabcf,"[0, 4, 2, 2, 2, 2, 3, 0, 1, 0, 2, 3, 13, 1, 3, 2, 1, 0, 1, 0, 1, 1, 2, 1, 0, 75, 13]","[0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[124, 239, 231, 14, 1, 0, 1, 15, 262, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",4,0,3,0 +https://github.com/rackerlabs/kthresher,2018-02-28 09:01:33-06:00,3bc7d75cba5f2da85ab50438b6a9b0a4a964ae8c,"[0, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 1, 3]","[0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/fog/fog-rackspace,2016-02-17 14:17:09-05:00,c4a0c16bbcc83d0178adc9cf69007b5d6f7bf4d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ruby-ldap/ruby-net-ldap.git,2014-10-24 13:54:10-07:00,2091729f3a96626fd37264dd5f35468a2f9ebfce,"[0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 11, 0, 0, 38, 11, 2, 0, 1, 0, 48, 91, 78, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 0, 0, 3, 1, 1, 0, 0, 0, 8, 23, 15, 1]","[36, 2, 5, 1, 7, 15, 11, 22, 2, 0, 14, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[15, 2, 2, 0, 2, 0, 3, 4, 2, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",15,0,5,4 +https://github.com/voxpupuli/librarian-puppet.git,2015-07-03 16:31:45+02:00,cdfffce57aed1a1a1ab15762f1e14c93dbc4034b,"[0, 0, 0, 0, 0, 1, 0, 12, 8, 3, 0, 0, 0, 0, 0, 4, 1, 2, 1, 11, 3, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 1, 0, 0, 2, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0 +https://github.com/nikic/PHP-Parser,2022-08-29 21:59:07+02:00,09c6048df12ff141578876a401cd38094afd90b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,3,0 +https://github.com/jaap-karssenberg/zim-desktop-wiki.git,2019-01-27 20:16:28+01:00,ed0cef97e7a9cc7d86b683a0291baa9c791f8578,"[0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 12, 12, 5, 0, 0, 5, 7, 3, 22, 32, 0, 7, 1, 2, 7, 9, 0, 2, 0, 6, 0, 0, 0, 0, 2, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,5,0 +https://github.com/OSGeo/PROJ.git,2017-05-09 22:35:39+02:00,46b07308d9d43692f1feb21f60d91891db5c8a4a,"[1, 5, 0, 0, 9, 11, 0, 0, 1, 0, 3, 0, 3, 3, 2, 22, 0, 8, 2, 1, 0, 4, 1, 0, 2, 1, 2]","[0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[1, 16, 17, 6, 9, 0, 3, 3, 5, 13, 1, 0, 11, 5, 3, 3, 11, 10, 5, 9, 7, 16, 16, 17, 24, 19, 1]","[0, 3, 1, 1, 1, 0, 0, 0, 1, 4, 0, 0, 1, 3, 1, 0, 1, 2, 0, 1, 0, 4, 6, 3, 6, 6, 0]",4,0,7,0 +https://github.com/ninja-build/ninja.git,2019-11-24 12:58:31+01:00,a37da20ae74c81703b1c811182fc154d95ed46fe,"[1, 1, 0, 1, 0, 1, 2, 0, 1, 3, 6, 1, 1, 7, 0, 0, 6, 1, 0, 0, 0, 0, 8, 1, 8, 8, 1]","[0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 3, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 2, 1]","[1, 3, 0, 2, 7, 4, 3, 7, 1, 5, 5, 1, 7, 0, 1, 0, 1, 2, 0, 3, 4, 1, 2, 0, 1, 2, 1]","[1, 0, 0, 0, 0, 4, 2, 2, 1, 2, 1, 1, 2, 0, 1, 0, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0]",13,0,10,0 +https://github.com/rbenv/ruby-build.git,2022-01-25 19:18:26+01:00,45b9dd0465d4f11aa9b9ea5471222a16e0a61e0b,"[5, 3, 0, 0, 3, 0, 0, 0, 9, 0, 0, 4, 0, 2, 6, 0, 0, 2, 5, 0, 0, 11, 1, 0, 0, 2, 3]","[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 1, 0]","[1, 0, 0, 3, 2, 0, 0, 4, 2, 2, 3, 1, 2, 1, 0, 2, 0, 0, 0, 4, 0, 4, 2, 12, 9, 8, 0]","[0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0]",3,0,6,0 +https://github.com/abishekvashok/cmatrix.git,2017-08-05 20:54:40+05:30,33cae7f639316d24d85faf57a11de3f894713f90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 2, 0, 4, 1, 0, 0, 2, 0, 0, 0, 2, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,1,6,0 +https://github.com/KDAB/hotspot.git,2018-01-08 01:08:05+01:00,725cab123a681bbe38ed8d3452e67548dde5e0c3,"[14, 3, 4, 5, 0, 0, 17, 16, 11, 24, 36, 80, 7, 0, 3, 5, 9, 0, 7, 1, 10, 0, 0, 19, 9, 2, 2]","[4, 1, 2, 2, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[3, 47, 19, 12, 24, 1, 1, 0, 0, 0, 0, 0, 5, 7, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",16,0,1,2 +https://github.com/twisted/twisted.git,2013-08-29 23:20:20+00:00,79daa4d56c3110610e10ea4df8dda01d57066601,"[126, 50, 232, 71, 44, 77, 89, 90, 61, 49, 55, 9, 31, 155, 72, 64, 66, 84, 73, 73, 40, 52, 78, 51, 65, 74, 2]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 97, 63, 77, 38, 86, 76, 40, 55, 47, 75, 82, 14, 26, 48, 18, 20, 52, 59, 132, 123, 71, 77, 46, 42, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,2,2 +https://github.com/supercollider/supercollider.git,2017-06-27 14:42:42-04:00,27be93376413ec0db52d4639ee2d01855aff782f,"[54, 50, 52, 41, 11, 51, 28, 19, 10, 33, 20, 12, 11, 6, 6, 2, 10, 7, 13, 18, 6, 25, 21, 19, 42, 15, 2]","[8, 3, 16, 5, 7, 19, 7, 5, 3, 11, 8, 4, 1, 1, 0, 1, 5, 1, 3, 2, 3, 8, 4, 3, 12, 6, 1]","[34, 41, 61, 261, 31, 17, 4, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1]","[15, 9, 8, 9, 10, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",7,0,4,1 +https://github.com/cespare/reflex.git,2014-02-06 12:30:38-08:00,e0e1525adeee7ef167a88b7362de3701791f9166,"[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 3, 1, 1, 0, 1, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/developit/preact.git,2019-09-11 19:22:36+02:00,33c836018f46c2ced9a7fdd328418ef82d0e3861,"[64, 29, 73, 56, 85, 37, 26, 77, 58, 35, 31, 63, 97, 86, 24, 36, 23, 25, 5, 13, 39, 52, 153, 12, 9, 27, 2]","[9, 2, 23, 8, 20, 15, 4, 10, 13, 7, 5, 15, 21, 10, 2, 8, 9, 12, 1, 4, 15, 14, 2, 5, 3, 10, 1]","[8, 6, 10, 23, 37, 51, 94, 71, 64, 30, 16, 30, 14, 13, 7, 25, 23, 0, 14, 51, 51, 22, 31, 6, 17, 14, 1]","[2, 2, 2, 3, 1, 5, 16, 20, 10, 8, 1, 3, 3, 2, 1, 3, 10, 0, 3, 12, 6, 3, 8, 2, 5, 2, 0]",26,0,40,5 +https://github.com/varietywalls/variety.git,2019-07-13 12:49:36+03:00,de6e11b96461d82edb2f6b43304a001f79401972,"[0, 0, 0, 0, 1, 5, 0, 0, 1, 0, 0, 0, 1, 1, 5, 10, 8, 2, 5, 3, 2, 3, 1, 4, 3, 6, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 12, 0, 0, 2, 0, 11, 0, 2, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 5, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0 +https://github.com/rails/sprockets.git,2015-08-17 21:31:51-04:00,be44f0c8fdd20a7654fa947b381d0d741b235d64,"[2, 1, 1, 21, 43, 16, 3, 13, 11, 15, 10, 21, 0, 0, 2, 5, 4, 0, 0, 0, 0, 0, 0, 0, 2, 7, 1]","[1, 0, 1, 6, 3, 2, 1, 3, 1, 2, 2, 4, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]","[10, 8, 2, 0, 0, 4, 4, 0, 2, 0, 0, 2, 0, 0, 1, 15, 3, 0, 0, 0, 0, 0, 2, 3, 0, 1, 1]","[3, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",16,1,7,2 +https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2016-06-03 16:52:16+02:00,0236ef27e3c8828c51ff5d0910744aaacf234253,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/puppetlabs/puppetlabs-concat,2014-06-25 17:23:15-07:00,2b51a83b9baeebcd795d94a8051ba598b6353ae2,"[1, 12, 0, 4, 3, 2, 2, 5, 2, 2, 0, 0, 0, 2, 4, 1, 2, 1, 4, 4, 2, 0, 6, 0, 0, 3, 2]","[0, 6, 0, 1, 2, 1, 1, 2, 0, 1, 0, 0, 0, 2, 2, 1, 1, 0, 3, 2, 1, 0, 2, 0, 0, 1, 1]","[7, 6, 2, 0, 0, 2, 0, 7, 0, 4, 21, 13, 3, 0, 10, 0, 0, 9, 0, 0, 8, 1, 0, 5, 0, 1, 1]","[3, 3, 1, 0, 0, 1, 0, 3, 0, 2, 11, 8, 1, 0, 5, 0, 0, 6, 0, 0, 6, 0, 0, 2, 0, 1, 0]",12,2,9,3 +https://github.com/processone/fast_tls.git,2019-01-21 10:36:32+01:00,2c908ef4489c7a778c9ecb999ff4d6484644880c,"[0, 0, 0, 0, 5, 1, 0, 0, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/plastex/plastex,2020-04-03 19:52:22+02:00,37092807809a954ee018010b3e6bd021bef5bca8,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/processone/stun.git,2019-01-18 14:32:30+01:00,9f9bf240f287293045da6c718e82534facd4d4be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/OpenPrinting/cups-filters,2022-11-14 23:33:16+01:00,28e7d07be7de98b9ac0bdb8c2f26a4a984902132,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/selectize/selectize.js,2021-10-03 12:15:31-04:00,1c823774062acd5f736c487021188e81f2bdd741,"[0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jashkenas/backbone,2012-09-17 13:10:58-04:00,74ba05c8da60f5748efc40f149a7529b8eff6f4e,"[23, 11, 17, 15, 12, 15, 17, 14, 16, 13, 19, 5, 32, 18, 2, 2, 2, 11, 9, 5, 2, 10, 12, 23, 20, 21, 2]","[7, 3, 7, 5, 2, 4, 8, 3, 4, 5, 4, 2, 10, 4, 0, 0, 1, 5, 2, 2, 1, 4, 4, 8, 9, 5, 1]","[9, 10, 29, 11, 18, 12, 17, 4, 10, 13, 29, 28, 111, 93, 31, 17, 29, 32, 21, 17, 5, 12, 7, 9, 17, 11, 1]","[4, 5, 9, 4, 6, 4, 7, 0, 1, 4, 9, 8, 25, 24, 10, 4, 6, 11, 6, 4, 2, 1, 1, 3, 5, 4, 0]",44,4,37,2 +https://github.com/Beep6581/RawTherapee,2017-08-10 12:53:34+02:00,86f3d326d972c86aa463ab1cc709a9ce82cb2ff1,"[37, 30, 14, 43, 44, 44, 30, 69, 46, 22, 15, 17, 15, 26, 6, 11, 24, 18, 21, 14, 13, 21, 23, 18, 11, 11, 2]","[5, 8, 4, 8, 8, 12, 8, 6, 12, 7, 1, 2, 0, 3, 1, 1, 6, 4, 1, 4, 2, 2, 4, 2, 2, 4, 0]","[23, 25, 16, 22, 58, 33, 45, 24, 8, 32, 47, 20, 34, 26, 35, 21, 15, 33, 43, 19, 39, 55, 40, 44, 39, 39, 1]","[4, 4, 0, 6, 7, 8, 12, 7, 0, 6, 1, 5, 3, 8, 3, 1, 4, 6, 13, 3, 5, 15, 8, 9, 6, 12, 0]",8,0,8,4 +https://github.com/processone/pkix.git,2019-01-18 16:36:40+01:00,3a0f15c4e05eea9b6b1be1a8d5facee811e392ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 3, 0, 1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,0 +https://github.com/prometheus/pushgateway,2015-01-22 17:52:54+01:00,e4121e44b8256b49aa06bcfa24c28a52baecccb4,"[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 1, 9, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 2, 1, 0, 0, 2, 6, 5, 1, 3, 3, 0, 4, 0, 0]","[2, 0, 4, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 3, 1, 1, 1, 1, 0, 2, 0, 0]",2,3,10,1 +https://github.com/OSGeo/shapelib.git,2023-02-11 12:45:06+01:00,f29e0a78afe390257180eb02112e67049c3c4338,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0 +https://github.com/RiotGames/buff-extensions,2013-06-16 23:34:54-07:00,9d703c776a40162c0e3e7f555a9ed9e8bb8c3cbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/matlab2tikz/matlab2tikz,2015-07-14 20:01:13+02:00,1018a5f224d097a45a64e3cd29c2baf6222ca17f,"[27, 19, 1, 1, 0, 18, 49, 27, 34, 49, 7, 6, 47, 42, 19, 11, 89, 14, 13, 26, 0, 4, 2, 9, 18, 35, 1]","[2, 4, 1, 0, 0, 2, 11, 1, 4, 4, 2, 1, 8, 11, 2, 1, 10, 0, 6, 7, 0, 2, 0, 1, 7, 11, 0]","[29, 15, 42, 27, 25, 36, 38, 55, 20, 12, 7, 3, 12, 3, 27, 19, 14, 36, 7, 2, 12, 0, 0, 0, 5, 5, 1]","[4, 2, 4, 6, 5, 2, 8, 7, 1, 2, 2, 1, 3, 1, 3, 3, 1, 8, 1, 1, 5, 0, 0, 0, 1, 1, 0]",3,1,5,1 +https://github.com/geopython/geolinks.git,2022-07-01 14:00:50-04:00,d99cb2c8a71a4d0edc219f1af8221620e99cedbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/spacetelescope/gwcs,2018-11-09 08:01:55-05:00,ad4b55c1be147a06f11b5cebb4b6bff782b6ebc1,"[20, 24, 0, 1, 0, 1, 0, 1, 1, 4, 2, 2, 4, 0, 0, 0, 1, 0, 2, 4, 2, 4, 0, 0, 5, 4, 2]","[3, 7, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 2, 3, 1]","[19, 2, 3, 6, 4, 1, 4, 0, 2, 8, 1, 2, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]","[4, 1, 0, 2, 2, 0, 1, 0, 0, 3, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]",1,0,2,0 +https://github.com/CorsixTH/CorsixTH.git,2013-10-10 12:36:08-04:00,2a0e6ee3eb70c19a7c97e24a078e9332a76d3acf,"[9, 1, 1, 6, 2, 0, 2, 1, 1, 0, 3, 1, 4, 1, 0, 0, 6, 2, 12, 12, 5, 1, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[43, 33, 19, 4, 0, 10, 3, 7, 0, 0, 2, 2, 14, 13, 4, 2, 3, 38, 8, 0, 0, 0, 3, 0, 0, 0, 0]","[4, 12, 3, 2, 0, 4, 1, 4, 0, 0, 0, 2, 8, 6, 2, 2, 1, 13, 3, 0, 0, 0, 2, 0, 0, 0, 0]",3,6,18,1 +https://github.com/canonical/lightdm.git,2019-02-18 14:55:04+01:00,8a0c3a1630bb063b2e3f37372f1344e13b6b6340,"[3, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/ImageOptim/libimagequant.git,2016-12-02 21:00:50+00:00,138a37ed8ccbc3c06804a68bbe3556e068e3e055,"[2, 1, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 3, 9, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 2, 0, 0, 0, 5, 0, 0, 7, 5, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/jupyter/nbformat,2015-04-08 18:46:25-07:00,0762fbc4bbb2150944ed23b70dde4c23b30dc489,"[4, 1, 0, 34, 7, 1, 5, 2, 6, 3, 1, 0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 5, 10, 9, 2]","[2, 1, 0, 2, 3, 0, 1, 2, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0]","[3, 2, 0, 0, 4, 2, 4, 0, 2, 0, 2, 0, 4, 2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/zopefoundation/zope.testrunner,2022-03-07 08:03:05+01:00,ad25458997c12b86b35d735da448b06b7aa1d5e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 4, 1, 10, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,1,0,0 +https://github.com/zaach/jison,2015-03-02 22:22:03-05:00,dfdc4d05b381591e4b07fd592f596e67938dd6dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,0,0,0 +https://github.com/openSUSE/open-build-service,2015-07-23 13:27:42+02:00,8ad9588d49184f809b9e5796083b260b0a8a4fa1,"[0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 6, 1, 0, 3, 4, 0, 1, 0, 1, 6, 0, 1, 23, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0 +https://github.com/ipython/ipython_genutils,2015-04-08 15:06:03-07:00,6cf40ccc0e77a41d9e4909ff3e8ea1e753b0a69e,"[1, 1, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 14, 2]","[0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0]","[8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/namhyung/uftrace,2017-11-15 08:52:46+09:00,134a6aeaedc938894f53c651f6f673dea89286b6,"[37, 24, 0, 16, 24, 7, 30, 15, 21, 18, 29, 24, 21, 17, 32, 44, 42, 8, 1, 10, 3, 26, 16, 50, 15, 28, 2]","[7, 5, 0, 2, 3, 2, 4, 4, 2, 3, 4, 2, 2, 1, 3, 6, 6, 1, 0, 1, 1, 4, 3, 8, 2, 4, 0]","[32, 36, 22, 12, 10, 35, 16, 35, 12, 3, 1, 0, 4, 7, 1, 11, 11, 7, 19, 4, 1, 8, 2, 14, 31, 8, 1]","[6, 4, 3, 2, 2, 3, 3, 3, 3, 0, 0, 0, 0, 1, 0, 2, 1, 1, 1, 1, 0, 1, 1, 3, 2, 2, 0]",11,0,4,0 +https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git,2021-01-04 15:30:38+00:00,28f646fd87e824ba5e89377cd9aedde74e6be96c,"[6, 4, 7, 1, 11, 11, 0, 1, 3, 4, 6, 1, 4, 0, 6, 7, 6, 0, 1, 11, 4, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 33, 55, 2, 13, 5, 3, 31, 7, 0, 10, 9, 3, 20, 5, 5, 4, 0, 9, 16, 1, 37, 2, 12, 3, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",20,0,33,0 +https://github.com/emacs-lsp/lsp-mode.git,2020-07-14 20:35:59-03:00,e8ed95f0dfefd725f45464009e82cf3299cd84ff,"[13, 9, 11, 27, 18, 14, 16, 23, 13, 6, 12, 10, 10, 11, 21, 68, 32, 12, 19, 18, 26, 56, 21, 17, 25, 25, 2]","[1, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 29, 20, 28, 46, 18, 15, 20, 21, 16, 13, 6, 11, 4, 12, 5, 11, 8, 23, 9, 4, 13, 11, 12, 19, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",77,0,60,0 +https://gitlab.com/orcus/orcus,2020-03-29 12:09:36-04:00,dcec0c56b0a435790fc8e189344a3de9287b1410,"[1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 16, 2, 8, 20, 0, 0, 0, 0, 0, 0, 0, 0, 31, 21, 22, 21, 24, 0, 13, 3, 1, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ignitionrobotics/ign-cmake.git,2018-11-02 09:35:21-07:00,a051b40afa72d59d7ac35e2d52f7c91f3c115827,"[15, 0, 8, 37, 36, 31, 12, 6, 20, 7, 24, 24, 12, 4, 5, 4, 9, 2, 5, 0, 3, 4, 2, 3, 1, 0, 2]","[7, 0, 0, 2, 6, 8, 4, 3, 6, 3, 7, 6, 6, 0, 2, 1, 2, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0]","[2, 8, 9, 1, 2, 12, 28, 1, 4, 15, 9, 23, 20, 0, 6, 2, 0, 3, 2, 7, 0, 0, 0, 11, 7, 0, 0]","[1, 4, 2, 0, 1, 1, 7, 0, 1, 4, 0, 10, 8, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 2, 0, 0, 0]",7,0,1,3 +https://github.com/intridea/multi_json,2012-10-07 11:57:21-07:00,5f2a2c9b8b30bdd0520f1bb53e60aab43615cdf4,"[5, 15, 7, 3, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 0, 2, 0, 5, 4, 35, 1, 6, 2, 0, 1, 4, 4, 14, 31, 7, 1, 0, 24, 11, 3, 1, 0]","[1, 1, 0, 0, 0, 0, 0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0]",5,0,9,0 +https://github.com/ntop/nDPI.git,2019-07-23 10:47:25+01:00,e781ddfa43ce9963c705c93fd015d4df3f39d08c,"[1, 2, 2, 2, 3, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 13, 0, 14, 28, 11, 34, 32, 30, 31, 10, 17, 20, 34, 7, 12, 17, 12, 19, 18, 9, 3, 18, 17, 7, 1]","[3, 0, 1, 0, 1, 2, 1, 3, 5, 7, 5, 1, 2, 1, 12, 1, 1, 1, 2, 3, 0, 3, 0, 2, 1, 3, 0]",0,3,14,0 +https://github.com/HandBrake/HandBrake,2018-06-05 22:07:10+01:00,6c236b7cfa36dc1331b6c18a58ce0cac99a19e97,"[29, 50, 52, 23, 3, 36, 4, 16, 5, 4, 7, 5, 0, 3, 16, 0, 2, 2, 2, 2, 9, 1, 1, 16, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[66, 66, 26, 22, 14, 11, 6, 6, 11, 31, 7, 5, 23, 1, 6, 12, 20, 7, 5, 13, 2, 13, 13, 18, 14, 4, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,8,0 +https://github.com/mfontanini/libtins.git,2016-02-06 16:04:07-08:00,0832184896ababac7ee696625bfa32cc7b596815,"[0, 6, 1, 0, 0, 1, 2, 0, 0, 1, 0, 0, 1, 1, 0, 4, 0, 3, 6, 8, 18, 2, 8, 1, 4, 8, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[14, 28, 13, 8, 6, 11, 5, 5, 1, 1, 0, 0, 4, 4, 0, 1, 0, 2, 2, 1, 0, 0, 0, 1, 0, 0, 1]","[0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 +https://github.com/intridea/grape-entity,2014-01-28 08:58:06-05:00,a22ca7c17fa6fc4448c8667d28563a9405986b0e,"[9, 2, 2, 2, 0, 1, 8, 0, 0, 0, 1, 2, 0, 2, 4, 0, 0, 0, 2, 3, 0, 0, 8, 5, 1, 2, 2]","[3, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0]","[3, 0, 2, 0, 2, 5, 1, 0, 0, 2, 2, 0, 0, 1, 0, 7, 0, 2, 0, 12, 2, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0]",13,1,10,2 +https://github.com/libwww-perl/HTTP-Message.git,2018-05-31 17:35:13-04:00,08ff5033e1df607267a573e56c50004c9a25b1b0,"[0, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 9, 0, 5, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,4,0 +https://github.com/darold/pgbadger.git,2013-03-13 14:31:59+01:00,940c51a164da83b9eb9d0765f4bdea9aa308bafc,"[5, 1, 3, 4, 12, 8, 7, 7, 8, 3, 3, 1, 8, 4, 6, 9, 3, 3, 9, 5, 9, 4, 8, 10, 13, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 10, 0, 6, 5, 3, 6, 3, 2, 1, 2, 0, 1, 11, 6, 5, 5, 4, 2, 4, 2, 0, 0, 0, 1, 1, 1]","[1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",8,0,3,0 +https://github.com/dpmb/dpmb,2015-08-10 20:00:14+02:00,94292ea1da848a0f6b653d30190cf961359cf565,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 64, 227, 42, 9, 0, 0, 0, 0, 5, 0, 0, 0, 55, 6, 0, 0, 2, 9, 29, 143, 48, 9, 0, 0, 21, 1]","[0, 4, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]",2,4,8,0 +https://github.com/freelan-developers/freelan,2015-03-19 19:58:24-04:00,8e8aae30552d0d061d771220ad23e11df347102b,"[0, 0, 0, 14, 9, 9, 0, 0, 0, 0, 0, 0, 3, 11, 8, 18, 19, 0, 3, 0, 0, 0, 0, 0, 17, 19, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[7, 3, 9, 50, 6, 15, 21, 24, 0, 0, 0, 105, 59, 5, 0, 13, 4, 0, 13, 21, 19, 10, 3, 0, 0, 1, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]",3,0,2,0 +https://github.com/mlpack/mlpack,2017-10-22 00:12:46-04:00,76384a8b371737f48443d0a3f9ee44950d1611a1,"[27, 36, 39, 32, 63, 32, 55, 43, 42, 51, 55, 53, 56, 27, 98, 92, 76, 60, 29, 17, 3, 21, 10, 12, 8, 0, 2]","[3, 2, 4, 3, 6, 4, 6, 5, 4, 11, 1, 8, 6, 4, 3, 16, 6, 6, 3, 4, 3, 2, 1, 0, 1, 0, 1]","[13, 20, 7, 20, 20, 16, 6, 40, 75, 42, 50, 28, 48, 51, 82, 79, 192, 58, 128, 51, 84, 36, 62, 0, 0, 1, 1]","[4, 4, 2, 5, 0, 0, 4, 1, 7, 8, 11, 3, 9, 7, 9, 10, 14, 12, 21, 3, 11, 9, 16, 0, 0, 0, 1]",13,10,33,3 +https://github.com/resurrecting-open-source-projects/dcfldd,2019-10-28 23:39:47-03:00,b1896720ef3807fe735cd44d7c2bb19961d2ff42,"[0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 4, 0, 0, 6, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 +https://github.com/librsync/librsync,2015-11-15 11:52:18-08:00,94ce627c7832dae8dd4231491cfa5e035fcb2771,"[0, 0, 0, 3, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2]","[0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[5, 1, 46, 6, 1, 35, 9, 16, 14, 5, 10, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 5, 0, 0]","[0, 0, 0, 0, 0, 2, 1, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0]",2,0,4,1 +https://github.com/keras-team/keras,2015-12-05 15:26:17-08:00,74b37bf87a8b76e9d4af3a7b29f570aa9c96f572,"[37, 57, 109, 77, 51, 48, 64, 22, 15, 24, 43, 24, 15, 36, 8, 29, 21, 40, 10, 24, 90, 13, 40, 34, 30, 73, 2]","[15, 10, 26, 20, 9, 10, 20, 6, 4, 7, 15, 9, 4, 14, 2, 12, 12, 14, 3, 9, 15, 6, 14, 6, 8, 14, 0]","[128, 97, 39, 20, 35, 22, 47, 30, 37, 30, 32, 61, 22, 34, 8, 19, 40, 56, 46, 29, 28, 22, 15, 14, 12, 14, 1]","[27, 24, 8, 8, 11, 7, 16, 11, 8, 9, 12, 21, 7, 8, 3, 6, 4, 5, 3, 2, 1, 0, 1, 0, 2, 1, 0]",77,6,98,14 +https://github.com/zeroc-ice/ice-debian-packaging.git,2016-05-16 17:16:31+02:00,c22f16328b81ddfeaaa89b699c84f804edd83e12,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 11, 0, 86, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 0, 1, 7, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,4,1 +https://github.com/websocket-client/websocket-client,2021-02-24 23:18:10-05:00,aa561086a4342c962fa5d4333f66b85c728c3624,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 1, 12, 7, 13, 8, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 1, 0, 0, 1, 0]","[31, 4, 0, 8, 11, 0, 0, 1, 4, 13, 5, 19, 2, 18, 9, 0, 0, 0, 1, 0, 2, 0, 1, 9, 4, 2, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,16,2 +https://github.com/Grokzen/redis-py-cluster,2015-11-29 02:30:35+01:00,3ee5c059c4b6d24f8c5e8d37ded03c47680c5bf2,"[6, 14, 0, 2, 3, 3, 1, 7, 0, 2, 2, 0, 0, 0, 3, 0, 0, 6, 5, 1, 15, 15, 0, 0, 0, 8, 2]","[0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0]","[8, 3, 6, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 24, 21, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,6,0 +https://github.com/puppetlabs/puppetlabs-firewall,2011-10-18 21:23:17+01:00,c3739abac431ff06748978f128ba723a8d99833a,"[0, 0, 12, 14, 0, 0, 0, 0, 25, 6, 0, 3, 4, 0, 0, 1, 12, 0, 2, 0, 0, 6, 0, 0, 4, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 1, 1, 1]","[7, 10, 0, 12, 4, 1, 13, 0, 0, 0, 5, 0, 2, 4, 0, 0, 0, 0, 0, 0, 6, 9, 8, 0, 0, 2, 0]","[4, 5, 0, 5, 2, 1, 6, 0, 0, 0, 2, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 4, 3, 0, 0, 1, 0]",3,3,11,2 +https://github.com/Exiv2/exiv2.git,2017-12-03 17:00:04+01:00,977c5f7a63fafff260413de9154328625155dbc2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 5, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1 +https://github.com/resurrecting-open-source-projects/txt2html,2019-08-01 21:57:37-03:00,e5c21016e4cebe414a9b8c94840c36c4c94b28cd,"[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/openstreetmap/osm2pgsql.git,2015-07-06 22:58:53-07:00,71283c25f2e0ef283a999add7e7f844c80c1bef3,"[6, 9, 11, 1, 1, 8, 23, 1, 3, 0, 5, 0, 5, 5, 14, 15, 7, 2, 0, 13, 9, 3, 0, 3, 8, 20, 1]","[2, 0, 4, 0, 0, 2, 9, 0, 1, 0, 1, 0, 2, 0, 4, 7, 2, 1, 0, 6, 0, 1, 0, 0, 2, 7, 1]","[22, 71, 19, 19, 7, 6, 7, 0, 1, 0, 0, 2, 0, 8, 8, 14, 28, 14, 10, 4, 5, 4, 2, 0, 1, 0, 1]","[5, 24, 4, 5, 3, 1, 3, 0, 1, 0, 0, 1, 0, 1, 4, 5, 12, 2, 2, 3, 2, 2, 1, 0, 1, 0, 0]",4,1,5,0 +git://git.lttng.org/lttng-ust.git,2016-02-19 21:31:00-05:00,8f6a68ab4249b31fd1a220b5fa75b3e24e592e8a,"[2, 0, 2, 0, 12, 0, 0, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 16, 7, 3, 1, 0, 10, 8, 2, 7, 0, 17, 21, 10, 13, 0, 2, 0, 1, 1, 4, 0, 1, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/CESNET/libyang,2018-11-09 18:57:59+01:00,b6374cbcbbc73340f47a490de36ac10e2dad808e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/defunkt/mustache,2014-12-26 11:00:42-08:00,474000bad5cfd15f0d9408204190df97ba356ae6,"[0, 0, 0, 10, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 18, 0, 0, 0, 0, 0, 27, 0, 30, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 7, 2, 0, 1, 16, 11, 15, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0]","[0, 0, 1, 1, 0, 0, 3, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",3,0,9,0 +https://github.com/hamcrest/hamcrest-php.git,2019-04-19 00:12:06+08:00,05925036271d1c7d38b40b0b66516fe7f442cfcd,"[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/codership/galera,2016-02-08 11:22:48+02:00,afdbdb22bf75a4d96a7efcc0c780fb8c54b35da4,"[8, 12, 4, 1, 5, 14, 32, 1, 0, 2, 3, 13, 7, 0, 2, 2, 7, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[3, 6, 1, 0, 0, 3, 9, 0, 0, 0, 2, 5, 4, 0, 0, 2, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/fail2ban/fail2ban,2014-04-17 13:19:03-04:00,e66231f041e7fa1925b080e43328dc1afd50ff8f,"[18, 35, 12, 41, 16, 14, 16, 41, 34, 18, 29, 38, 18, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 9, 4, 14, 4, 3, 4, 9, 6, 7, 8, 12, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 3, 11, 7, 7, 0, 3, 12, 6, 13, 1, 2, 3, 14, 22, 2, 14, 4, 0, 0, 3, 7, 0, 0, 0, 0, 0]","[2, 1, 6, 2, 0, 0, 1, 1, 3, 3, 0, 0, 0, 3, 9, 1, 5, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",6,1,17,1 +https://github.com/assimp/assimp,2018-05-12 12:01:52+02:00,a571d013102b62b437b4623dd4fc28a042dc5945,"[58, 50, 45, 27, 38, 41, 22, 37, 72, 23, 45, 51, 60, 23, 44, 24, 37, 19, 45, 23, 44, 16, 8, 29, 21, 4, 0]","[9, 22, 22, 10, 6, 21, 5, 18, 44, 14, 15, 16, 17, 11, 24, 12, 16, 7, 26, 7, 23, 9, 2, 13, 9, 0, 0]","[31, 29, 31, 19, 36, 26, 13, 16, 13, 16, 8, 8, 24, 12, 9, 16, 22, 16, 33, 31, 14, 49, 3, 4, 21, 14, 1]","[20, 8, 11, 7, 18, 17, 4, 5, 9, 11, 4, 5, 8, 6, 5, 8, 10, 6, 14, 18, 5, 18, 1, 2, 9, 7, 0]",36,5,47,4 +https://github.com/processone/eimp.git,2019-01-21 11:19:32+01:00,171b7a006fb2d54260903e376ed2d42d77412b4f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/intel/intel-vaapi-driver.git,2017-01-22 17:22:05-08:00,4a083a37e91b1a40e9d2bc8fa3c1c6b673b18ae4,"[6, 2, 3, 20, 58, 0, 23, 19, 5, 14, 18, 5, 2, 13, 100, 6, 27, 5, 9, 0, 1, 4, 9, 4, 34, 37, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[9, 12, 2, 9, 5, 13, 3, 6, 1, 11, 6, 1, 0, 0, 0, 0, 5, 1, 0, 0, 55, 0, 1, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,8,0 +https://github.com/oauth-xx/oauth-ruby,2021-11-09 14:42:34+07:00,c9a4917e1b45fcc21d7eb5fd86546e9e0aa1ef72,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 13, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://0xacab.org/schleuder/schleuder.git,2016-11-29 14:34:52+01:00,283bfecbf4d50e773d138dd31ad63755849e8beb,"[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 2, 0, 9, 8, 8, 1, 1, 7, 11, 15, 5, 16, 9, 37, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 4, 2, 4, 0, 3, 0]","[28, 34, 10, 16, 27, 23, 37, 11, 45, 3, 13, 27, 0, 1, 0, 1, 5, 2, 0, 13, 3, 7, 8, 9, 11, 0, 0]","[1, 5, 1, 2, 4, 1, 0, 2, 3, 1, 1, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 4, 3, 3, 3, 0, 0]",2,3,4,0 +https://github.com/michaelrsweet/htmldoc.git,2022-05-31 16:50:05-04:00,b1ac82c83a4fd892064a43b68f1c8074d76a7379,"[0, 0, 2, 4, 2, 5, 8, 0, 1, 5, 0, 1, 1, 0, 1, 0, 11, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,0,1,0 +https://github.com/01org/isa-l.git,2017-02-24 14:50:34-07:00,5ec8ea0e14884d9f445ed0f86878fa6f3c2347f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 35, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 15, 0, 0, 0, 0, 0, 0, 6, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0 +https://github.com/easyrdf/easyrdf.git,2020-08-27 01:26:51+01:00,a921dd72517c0a03639ac2c82ae31a069b2d4380,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 3, 1, 5, 1, 8, 0, 2, 3, 1, 0, 6, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 0, 1, 3, 8, 0, 1, 0, 1, 1, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/plotly/plotly.R.git,2015-12-23 14:08:14-06:00,4afeaf85d3c7e07a917a8f73035775fc58aec54b,"[35, 24, 7, 13, 33, 49, 18, 15, 8, 4, 6, 28, 9, 3, 15, 19, 0, 4, 28, 7, 21, 2, 17, 0, 71, 25, 2]","[0, 1, 0, 0, 0, 4, 6, 7, 2, 2, 0, 5, 0, 1, 1, 1, 0, 0, 5, 0, 5, 1, 7, 0, 33, 8, 0]","[12, 0, 8, 48, 40, 35, 4, 14, 7, 28, 28, 61, 23, 6, 25, 6, 14, 8, 4, 13, 31, 12, 13, 1, 10, 44, 1]","[4, 0, 3, 11, 5, 7, 1, 6, 0, 3, 2, 7, 8, 1, 6, 1, 4, 2, 0, 3, 6, 3, 1, 0, 3, 0, 0]",3,3,8,2 +https://github.com/psf/black.git,2018-03-16 01:05:36-07:00,28547942498bbac24ba4165800382ae9b170c788,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 38, 30, 17, 19, 24, 5, 27, 28, 17, 20, 45, 16, 15, 1, 3, 1, 1, 1, 0, 0, 0, 23, 9, 0, 2, 1]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,50,0 +https://github.com/biojava/biojava.git,2018-03-01 11:07:38-08:00,6a1293edcadae8c53a550122a67a69b160a47de4,"[0, 4, 0, 0, 2, 7, 14, 1, 0, 0, 2, 3, 0, 7, 5, 1, 0, 0, 4, 6, 4, 10, 6, 7, 7, 2, 2]","[0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 1, 3, 0, 1, 2, 1, 0]","[28, 43, 23, 4, 3, 2, 0, 0, 2, 10, 7, 11, 0, 3, 9, 7, 6, 5, 0, 5, 3, 5, 3, 0, 5, 12, 1]","[9, 14, 2, 1, 1, 1, 0, 0, 0, 2, 1, 2, 0, 0, 1, 1, 1, 1, 0, 3, 1, 2, 2, 0, 1, 4, 0]",5,2,3,1 +https://github.com/davesteele/comitup,2021-02-22 13:27:38-05:00,29ea71025138d758a082c94b66ca94f7b2349a33,"[0, 0, 0, 13, 3, 2, 0, 0, 0, 2, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 10, 4, 2]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[1, 0, 7, 7, 1, 12, 26, 11, 13, 8, 29, 28, 67, 4, 9, 12, 4, 0, 16, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 0, 3, 1, 1, 1, 1, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/puppetlabs/puppetlabs-ntp.git,2012-12-10 15:28:20-08:00,67a9d82a15ad068188f299acd8cb3a9ae2e6ddca,"[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 2, 2, 0, 0, 1, 19, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 1, 0, 0, 0, 0, 7, 1]","[3, 0, 0, 0, 0, 0, 0, 3, 0, 2, 5, 1, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",10,2,8,3 +https://github.com/coreruleset/coreruleset.git,2017-09-12 22:20:15-03:00,a822ebd053e8451a957d456f8af9af71734e1e63,"[2, 14, 6, 5, 17, 4, 20, 9, 11, 0, 2, 2, 6, 3, 0, 2, 1, 15, 21, 3, 3, 0, 0, 6, 4, 3, 1]","[0, 4, 2, 0, 6, 0, 13, 3, 5, 0, 1, 0, 3, 2, 0, 1, 0, 2, 3, 2, 1, 0, 0, 0, 3, 3, 0]","[4, 0, 0, 0, 0, 0, 3, 5, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,1,2 +https://github.com/mongoengine/flask-mongoengine,2013-05-02 10:42:12+00:00,6ea122aa377e56b47d4f302dd995367daea27fec,"[6, 0, 1, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 11, 2]","[4, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[32, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,2 +https://github.com/Xastir/Xastir.git,2016-08-19 07:57:30-07:00,45e06a4340a5107590567e4b094a344a4918d7c7,"[4, 6, 0, 12, 12, 3, 2, 5, 0, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/matrix-org/synapse.git,2015-04-03 10:09:06-04:00,364c7f92b4b1e8d4425418b7e797381ca31ec1aa,"[20, 32, 47, 73, 120, 114, 94, 43, 48, 105, 89, 15, 2, 62, 24, 57, 154, 150, 151, 112, 65, 80, 98, 53, 21, 3, 1]","[1, 4, 8, 7, 6, 5, 15, 6, 10, 11, 14, 3, 1, 10, 3, 7, 20, 28, 37, 31, 8, 16, 10, 7, 3, 0, 0]","[54, 65, 63, 158, 62, 119, 97, 56, 44, 10, 66, 44, 17, 50, 16, 22, 7, 35, 96, 102, 75, 34, 31, 29, 50, 29, 1]","[12, 5, 11, 16, 11, 23, 17, 22, 12, 2, 14, 3, 2, 8, 6, 3, 2, 9, 32, 35, 19, 10, 7, 13, 8, 10, 0]",12,2,7,5 +https://gitlab.gnome.org/GNOME/gnome-calendar.git,2017-09-06 21:49:00-03:00,8cbb5c1a4d9c52cc76b6f591d7279a340d66a992,"[15, 35, 52, 0, 24, 27, 16, 16, 17, 23, 11, 4, 4, 32, 7, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 4, 3, 24, 5, 1, 2, 0, 1, 2, 0, 0, 5, 1, 3, 0, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",13,0,10,0 +https://github.com/zopefoundation/zope.i18nmessageid,2022-11-03 16:23:33+01:00,cb6def05fdea2b2c40bcc154a159cfae0ed46b92,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[6, 2, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/google/googletest.git,2017-12-08 23:20:55-05:00,c82cd5e41e3755fc9ed65912ca3acaae69921dbb,"[2, 9, 2, 7, 1, 2, 6, 28, 54, 26, 23, 64, 33, 12, 6, 3, 1, 1, 12, 11, 4, 1, 0, 1, 4, 14, 1]","[1, 2, 0, 0, 0, 0, 5, 14, 26, 11, 16, 37, 15, 10, 3, 2, 1, 0, 7, 5, 3, 0, 0, 0, 3, 9, 1]","[14, 13, 3, 26, 48, 26, 31, 6, 10, 30, 17, 32, 19, 14, 12, 21, 63, 71, 42, 3, 10, 9, 0, 11, 3, 5, 1]","[11, 9, 0, 15, 25, 11, 13, 3, 4, 16, 8, 23, 12, 5, 4, 9, 24, 21, 11, 2, 1, 3, 0, 7, 1, 4, 0]",52,6,24,5 +https://github.com/rails/rails-html-sanitizer,2015-09-01 12:29:57-04:00,7a09522351832235bd2a88387709b4c24d574ed4,"[5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",3,1,3,0 +https://github.com/Nuitka/Nuitka,2018-01-01 11:14:46+01:00,1bb4258c7af8abe0141b44870749ad85858f7387,"[21, 9, 35, 0, 0, 48, 11, 5, 2, 1, 0, 0, 1, 2, 42, 27, 0, 0, 0, 0, 0, 18, 0, 1, 0, 13, 5]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 1, 0, 0, 15, 17, 19, 26, 0, 6, 0, 98, 6, 18, 0, 0, 0, 0, 32, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,4,0 +https://github.com/matthewdeanmartin/terminaltables,2015-09-05 17:19:37-07:00,324140dfa724ecec0df89871061c31492d62bbef,"[0, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[5, 0, 0, 0, 0, 4, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",3,0,1,0 +https://github.com/bk138/gromit-mpx.git,2021-01-09 13:16:32+01:00,6a3025e12fa739327a9a9e904f90b0c4b0ab1f1d,"[0, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 13, 0, 7, 3, 17, 0, 21, 1, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jbeder/yaml-cpp,2015-04-08 14:30:07-05:00,b43db54810846ec0e150d9d04c5b47c5cd9e8029,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 3, 0, 0, 0, 0, 11, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 +https://github.com/aws/aws-xray-sdk-python,2018-03-28 14:51:58-07:00,fd8957402c8ae9af5607ba4ed4950909b0703f82,"[0, 1, 0, 0, 0, 0, 3, 2, 0, 2, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 3, 4, 3, 2, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 3, 6, 2, 3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 7, 1, 3, 5, 4, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",13,1,15,1 +https://github.com/joewing/jwm,2017-07-19 19:09:59-05:00,c6d802a185b562f442ba78b6b27024d504fc7c6d,"[0, 5, 2, 2, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 16, 8, 3, 0, 0, 2, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 17, 0, 0, 0, 0]","[0, 1, 2, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]",1,0,2,0 +https://gitlab.com/libosinfo/osinfo-db-tools.git,2019-12-18 13:27:47+00:00,58375c6cd12dd77ebbfb5cb9043cab6a6e71e2ad,"[0, 0, 0, 10, 0, 4, 1, 0, 0, 0, 15, 1, 1, 3, 1, 0, 7, 0, 0, 0, 2, 0, 0, 5, 3, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 0, 0, 1, 5, 0, 0, 11, 0, 14, 2, 0, 3, 9, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,7,0 +https://github.com/c4urself/bump2version,2018-04-19 07:54:17-07:00,8d8a60628bfa2695e8bff9fb646d86114becb8b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 6, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 +https://github.com/pyjokes/pyjokes,2014-12-28 23:23:18+00:00,cded1fd1647c814ed6ee64f1efd75d63e2689122,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,1 +https://github.com/prawnpdf/prawn,2013-11-19 17:49:23-05:00,bbcc479046697f6e6de0620bddb61af8888b0e21,"[0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 3, 3, 0, 0, 2, 2, 6, 4, 5, 2, 0, 0, 1, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 3, 0]","[33, 6, 0, 12, 19, 3, 17, 7, 36, 4, 3, 1, 15, 21, 3, 21, 11, 1, 2, 10, 6, 0, 4, 0, 0, 0, 1]","[16, 0, 0, 1, 4, 1, 5, 1, 10, 0, 1, 0, 2, 2, 0, 5, 1, 0, 1, 3, 2, 0, 2, 0, 0, 0, 0]",9,3,12,2 +https://github.com/ranger/ranger.git,2016-05-27 16:44:45+02:00,ea355f491fb10d5ce054c7813d9abdfd3fc68991,"[1, 3, 0, 1, 3, 1, 3, 3, 10, 1, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/pgbackrest/pgbackrest,2019-10-08 15:27:17-04:00,38b72eded4b0f295ed1f30f849f0a99f69e396d2,"[10, 27, 16, 8, 15, 18, 21, 14, 11, 14, 11, 7, 7, 13, 7, 10, 9, 11, 13, 22, 8, 18, 14, 15, 25, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 4, 0, 3, 5, 20, 29, 16, 24, 17, 13, 5, 6, 12, 21, 20, 5, 8, 9, 3, 16, 26, 37, 34, 34, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/seccomp/libseccomp,2020-01-16 20:26:24-05:00,05452332281d60e4116198f1209d74a90c8a3076,"[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 2, 2, 9, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 7, 8, 2, 13, 6, 1, 5, 0, 0, 0, 0, 1, 0, 4, 2, 12, 1, 3, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,7,0 +https://github.com/osmcode/libosmium.git,2015-11-05 09:59:36+01:00,fc78d040066eab780302efb395d94df3fa394da2,"[15, 26, 1, 4, 1, 5, 4, 10, 16, 4, 7, 5, 16, 0, 14, 38, 11, 1, 1, 4, 0, 4, 10, 9, 82, 48, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0]","[17, 15, 12, 19, 5, 1, 0, 0, 1, 5, 8, 1, 32, 1, 8, 5, 0, 2, 1, 1, 6, 4, 4, 5, 27, 15, 1]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0 +https://github.com/cubiq/iscroll,2016-01-07 16:07:33+03:00,31ff659ed39a9e2a4b7e2a3079ca6c8f391884f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 8, 0, 0, 0, 0, 0, 0, 0, 5, 8, 4, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,7,0 +https://github.com/pytest-dev/pytest-bdd.git,2022-07-08 15:57:11+02:00,6af0350c5bf9125958b83ba16b5c8d73d0e0f719,"[1, 5, 0, 1, 0, 5, 25, 19, 5, 0, 0, 0, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 1, 32, 2]","[0, 0, 0, 0, 0, 0, 7, 1, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0]","[39, 12, 26, 14, 0, 20, 17, 4, 2, 0, 4, 5, 0, 2, 0, 0, 11, 36, 4, 0, 7, 2, 2, 2, 2, 8, 0]","[6, 6, 3, 1, 0, 3, 4, 1, 1, 0, 2, 2, 0, 1, 0, 0, 3, 9, 2, 0, 2, 1, 1, 1, 0, 4, 0]",3,0,6,1 +https://github.com/jupyter/jupyter_core,2015-07-14 10:02:24-07:00,3619a51a8e318fbc45e90552ca694baf6704d99f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 7, 3, 4, 3, 1, 0, 11, 6, 0, 18, 15, 7, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 0, 3, 2, 0, 4, 4, 1, 1, 1]","[11, 0, 0, 0, 12, 0, 4, 0, 6, 9, 1, 0, 2, 1, 1, 5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 4, 0, 2, 0, 2, 3, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,5,4 +https://github.com/ClusterLabs/pacemaker,2016-08-24 16:43:04-05:00,6b1d65bc4e190086adc47b4e68be2a5108b4bc06,"[40, 11, 13, 27, 3, 9, 5, 30, 12, 28, 16, 14, 22, 44, 48, 39, 54, 25, 23, 9, 5, 23, 18, 18, 20, 37, 2]","[12, 3, 4, 7, 1, 3, 1, 5, 6, 9, 3, 6, 8, 13, 13, 9, 15, 7, 8, 3, 1, 6, 4, 5, 5, 8, 0]","[23, 10, 6, 13, 11, 14, 18, 5, 2, 19, 38, 7, 9, 15, 12, 23, 8, 0, 0, 9, 13, 18, 4, 13, 0, 2, 1]","[8, 2, 1, 3, 4, 3, 5, 1, 1, 4, 8, 2, 3, 6, 5, 5, 4, 0, 0, 2, 1, 2, 2, 4, 0, 0, 0]",7,0,6,1 +https://github.com/P403n1x87/austin,2018-09-23 22:36:13+01:00,c6a3ce5b7ba320b4a935a4c4aad0fc877a196c1f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 9, 1, 0, 3, 3, 0, 5, 1, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/osmcode/osmium-tool.git,2016-08-08 10:29:21+02:00,e6748cc3837e4792e8452d5c227e740434e10539,"[1, 0, 0, 0, 11, 0, 8, 14, 0, 0, 3, 0, 0, 1, 0, 7, 2, 8, 3, 0, 0, 0, 2, 1, 7, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[10, 0, 8, 0, 18, 21, 0, 0, 4, 0, 2, 3, 1, 9, 4, 0, 3, 2, 1, 0, 0, 0, 11, 49, 5, 0, 1]","[0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,1,1,1 +https://github.com/rails/jbuilder,2015-09-01 11:43:29-04:00,f060fd54b106e6a43c74a977fa71d3d568796949,"[8, 1, 1, 0, 2, 4, 0, 0, 0, 0, 9, 0, 0, 4, 7, 0, 4, 1, 1, 3, 0, 0, 0, 0, 0, 0, 2]","[2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",8,1,8,1 +https://github.com/zopefoundation/BTrees.git,2022-03-09 08:12:29+01:00,472179656f901a1967f71723f43331846ca804b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/Xaviju/inkscape-open-symbols,2016-12-14 23:46:33+01:00,17224694613cea92fdd5fabbd34bfde40bff9c42,"[0, 0, 0, 3, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[3, 9, 6, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,1 +https://github.com/ocsigen/js_of_ocaml.git,2019-07-21 18:28:02+08:00,1c1c79271a6c987c484aec464274166349c6488b,"[12, 14, 2, 10, 0, 0, 0, 6, 0, 2, 0, 8, 6, 9, 14, 1, 9, 5, 1, 0, 12, 0, 0, 3, 7, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 13, 3, 0, 4, 0, 0, 2, 8, 29, 1, 8, 9, 24, 4, 23, 10, 7, 1, 11, 0, 0, 9, 11, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",9,0,10,0 +https://invent.kde.org/office/ghostwriter,2017-06-18 11:17:47-07:00,fb0d26ac9afdec01c755925ab2b17f4dd3a56760,"[3, 5, 0, 0, 3, 5, 0, 0, 1, 5, 4, 19, 2, 3, 13, 1, 9, 0, 9, 2, 5, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,0,0 +https://github.com/lxc/lxcfs.git,2014-12-12 14:44:09+02:00,60f73aff3126dc2850a4fb698f911e4279ba46b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 5, 5, 5, 4, 9, 1, 0, 4, 2, 0, 1, 1, 0, 1, 14, 2, 6, 1, 3, 3, 2, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,4,6,0 +https://github.com/swaywm/wlroots,2017-06-06 10:54:53-04:00,d79f5780225d2416f3fff9dcebeac1d64110bb94,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 12, 13, 0, 0, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 3, 0]","[32, 26, 45, 10, 11, 11, 4, 6, 39, 138, 72, 52, 26, 22, 19, 61, 155, 143, 56, 80, 94, 70, 70, 94, 18, 16, 1]","[2, 4, 6, 1, 1, 2, 2, 3, 5, 27, 20, 4, 5, 6, 1, 10, 24, 36, 13, 30, 20, 19, 20, 27, 7, 7, 0]",3,4,22,2 +https://github.com/jendrikseipp/vulture.git,2017-12-28 01:44:37+01:00,b6342c0a3e861731a236a64a3484057fd551fa75,"[11, 14, 23, 51, 15, 15, 29, 0, 7, 1, 0, 0, 3, 2, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 2, 22, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0 +https://gitlab.com/libidn/libidn2,2016-12-28 09:27:38+01:00,b374503a8562449644d48977d5df202c12687162,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 12, 14, 0, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 28, 2, 0, 28, 12, 11, 20, 2, 21, 75, 12, 10, 6, 0, 12, 12, 1, 0, 0, 0, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 18, 5, 2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 +https://git.osgeo.org/gitea/postgis/postgis.git,2015-10-19 10:52:10+00:00,775817c24521613b747bcdb9a8bd26fe0bfe4583,"[15, 29, 6, 27, 27, 48, 28, 42, 8, 48, 42, 9, 12, 33, 11, 28, 11, 61, 37, 15, 8, 17, 35, 49, 25, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 19, 7, 16, 25, 19, 7, 24, 11, 10, 40, 15, 9, 3, 2, 31, 2, 51, 36, 14, 8, 7, 1, 3, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/Intel-Media-SDK/MediaSDK,2017-04-04 17:54:50+03:00,1ec49c728ede53d813cc13da086d8436edcfc9d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/capistrano/sshkit.git,2013-01-16 18:22:25+01:00,fc3f251b04738ee3e0f14abcd9f8af8e259b83c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 35, 2, 0, 0, 2, 1, 0, 1, 8, 5, 10, 0, 1, 0, 0, 5, 0, 0, 0, 0, 7, 4, 0, 12, 3, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,3,0 +https://github.com/erlware/erlware_commons.git,2013-04-09 15:40:31-07:00,a1fc04f2b76f20d0f07d2197aaa14ee6d844960e,"[0, 3, 10, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 10, 0, 3, 0, 0, 4, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1]","[1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",5,0,1,3 +https://github.com/royhills/arp-scan,2023-02-13 21:30:40+00:00,b9e5e5c354ec6244349732a71b56e07b626c56d8,"[0, 0, 2, 11, 14, 0, 7, 6, 2, 5, 15, 12, 8, 0, 2, 1, 2, 1, 0, 0, 0, 5, 6, 7, 2, 6, 2]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/tpm2-software/tpm2-abrmd.git,2017-03-23 10:58:26-07:00,ff0e028f37e1b943592e2a1fe3c60435a8fc71e8,"[8, 13, 1, 18, 0, 6, 5, 13, 9, 0, 0, 6, 10, 0, 14, 16, 7, 12, 23, 2, 0, 4, 8, 3, 8, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 55, 18, 27, 16, 0, 21, 4, 11, 25, 7, 19, 12, 2, 2, 0, 0, 1, 2, 4, 16, 31, 3, 0, 0, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,9,0 +https://github.com/joaotavora/yasnippet,2015-03-18 15:59:28-04:00,b9989f8c8cc3068f264214a5efb236bbcce65075,"[2, 2, 3, 3, 1, 0, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0, 1, 2]","[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[5, 0, 27, 3, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 5, 1, 0]","[1, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",5,0,4,0 +https://github.com/AFLplusplus/AFLplusplus.git,2019-09-03 11:19:27+02:00,f094908f549151e604c92286e791816fae7d67fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 7, 7, 8, 17, 23, 30, 28, 20, 12, 18, 4, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 1, 2, 4, 3, 2, 3, 2, 0, 0, 0, 0]","[27, 31, 37, 38, 23, 25, 24, 51, 41, 40, 32, 7, 42, 32, 26, 22, 25, 10, 0, 6, 0, 0, 0, 0, 2, 0, 0]","[3, 4, 7, 6, 5, 4, 1, 11, 11, 10, 4, 3, 10, 5, 4, 4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",18,3,13,5 +https://github.com/Graylog2/gelf-rb,2014-04-15 16:21:00+02:00,2f5d3c33f1ca3f8e7c1d1fa915ff0a903a6cf31b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://gitlab.gnome.org/GNOME/vala.git,2019-01-05 20:41:00+00:00,8e4a0f7e1370f97195b1ed4553059a5864bd3c56,"[22, 4, 11, 6, 13, 10, 0, 4, 2, 3, 39, 4, 0, 7, 6, 24, 24, 23, 29, 40, 41, 13, 5, 17, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 26, 28, 8, 6, 12, 17, 85, 15, 115, 27, 15, 10, 69, 38, 7, 19, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,3,0 +https://github.com/solnic/virtus.git,2013-10-25 22:51:00-07:00,441f6ddd1e58ce45e0b2209ed628a2519032246e,"[2, 0, 2, 7, 6, 33, 3, 4, 0, 0, 0, 1, 2, 0, 0, 0, 0, 4, 0, 10, 83, 53, 58, 11, 4, 0, 2]","[1, 0, 1, 2, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 5, 0, 0, 0, 0, 0]","[2, 2, 0, 1, 0, 2, 8, 2, 0, 0, 3, 0, 0, 4, 0, 0, 0, 2, 0, 3, 0, 6, 2, 0, 6, 0, 0]","[0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 2, 0, 0]",11,1,11,0 +https://github.com/prometheus/snmp_exporter,2015-07-30 17:14:38+01:00,c425f56b444ef4757d99051c74095fa5b58b15de,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 3, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0]",1,1,5,0 +https://github.com/google/gopacket.git,2013-05-16 12:03:59-06:00,166c796597299a4e2e68b8423ef3ced877c2f041,"[9, 21, 27, 40, 39, 22, 9, 25, 23, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1]","[2, 0, 2, 5, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 20, 5, 24, 7, 0, 0, 5, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 6, 13, 0, 0, 0, 2, 0, 0]","[0, 4, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",4,0,0,1 +https://github.com/emcrisostomo/fswatch.git,2015-08-09 21:38:54+02:00,20269b8a9686886a07f656d657bc0ef081e4aab6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/zkat/ssri.git,2017-03-22 21:55:44-07:00,cdb6d7d19ded4d8126c2753b9c15491f8c3f83bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 19, 5, 2, 1, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/eproxus/meck.git,2016-12-22 11:15:33+01:00,f05a82d0ff8e8d82a3c5a7c19bc07950756e8431,"[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1 +https://github.com/tkf/emacs-jedi.git,2013-06-15 19:51:52+02:00,1022dd47ca02fec5355958927e57dfd63bdfa9ec,"[0, 14, 0, 1, 7, 12, 31, 6, 9, 1, 0, 15, 16, 3, 9, 0, 0, 0, 6, 0, 2, 3, 26, 24, 39, 10, 2]","[0, 2, 0, 0, 1, 1, 2, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1, 0, 2, 4, 2, 2, 0]","[5, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,1,0 +https://gitlab.dune-project.org/core/dune-common,2015-11-02 15:55:05+01:00,c266380f5d0a69c7d0a90db4bf8995571fdccca4,"[14, 16, 11, 4, 2, 7, 10, 2, 26, 13, 4, 7, 13, 0, 3, 4, 4, 4, 3, 3, 2, 11, 1, 23, 18, 9, 1]","[0, 2, 1, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0]","[11, 4, 25, 52, 7, 11, 22, 0, 0, 0, 1, 5, 30, 15, 18, 30, 27, 8, 15, 7, 5, 4, 15, 0, 0, 2, 1]","[1, 1, 1, 7, 1, 4, 3, 0, 0, 0, 0, 3, 4, 5, 4, 4, 9, 2, 6, 3, 2, 0, 5, 0, 0, 1, 0]",5,6,10,0 +https://github.com/flask-restful/flask-restful,2012-10-16 21:07:16-07:00,a4465e3e9cc4c30e7f53e0b908f734a42ed32da4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 5, 7, 2, 6, 7, 14, 2, 1, 5, 3, 1, 1, 0, 0, 0, 4, 8, 0, 6, 8, 9, 30, 0, 1]","[6, 0, 0, 1, 2, 1, 2, 1, 6, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 4, 0, 2, 1, 2, 3, 0, 0]",2,5,15,0 +https://github.com/davidcelis/api-pagination.git,2014-03-14 19:16:51-07:00,c57fc392f9adfd04a54bcdba2dfe3cac2497e619,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 4, 0, 0, 3, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 6, 4, 0, 4, 0, 2, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,0,4,0 +https://github.com/dask/partd.git,2019-10-21 14:07:37+01:00,f5db249faea99fb0e39c113f6f17f91c4ec34101,"[0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/Tux/Text-CSV_XS.git,2015-08-07 08:45:37+02:00,450831e5bda9ba59e33b6aa19177b3e1b50c6131,"[5, 0, 0, 10, 0, 1, 0, 1, 1, 2, 7, 7, 0, 0, 7, 5, 0, 9, 5, 0, 0, 5, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 1, 0, 0, 2, 0, 0, 1, 3, 0, 2, 1, 0, 5, 0, 3, 0, 0, 0, 4, 2, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 +https://github.com/intel/compute-runtime,2020-02-28 14:40:54+01:00,efa06319677bdf9ccdbba1bc1110774992e1474e,"[52, 48, 42, 34, 36, 33, 35, 44, 34, 38, 50, 41, 49, 42, 38, 58, 14, 23, 37, 52, 54, 56, 60, 70, 64, 74, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 66, 85, 95, 68, 63, 49, 51, 49, 60, 50, 50, 60, 53, 31, 48, 57, 46, 50, 62, 37, 76, 65, 51, 50, 52, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,0,28,0 +https://github.com/alastair/python-musicbrainz-ngs,2015-06-02 14:16:42+02:00,39368538a5f0c79dfce6a9750a005232b1c27e93,"[1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[10, 9, 0, 0, 1, 1, 1, 3, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 1, 0, 3, 0, 0, 2, 4, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]",1,0,2,0 +https://github.com/jquery/sizzle.git,2013-05-14 15:18:42-04:00,20a1a95a3b4882ec53927e0949df5fe7ed5f0c93,"[2, 1, 3, 9, 19, 6, 0, 0, 3, 9, 2, 2, 1, 5, 6, 2, 1, 4, 9, 0, 7, 4, 7, 1, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 7, 0, 0, 0, 2, 5, 13, 3, 0, 0, 0, 0, 10, 0, 0, 8, 0, 1, 0, 8, 1, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,4,1 +https://github.com/google/stenographer,2014-12-12 15:05:46-07:00,fb8e60c0ee41f94ffb0f9cb707247767f52085ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 24, 20, 17, 8, 5, 0, 21, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 7, 2, 1, 0, 7, 6, 0]","[22, 2, 0, 32, 24, 18, 21, 15, 33, 31, 3, 3, 16, 3, 5, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 1]","[11, 0, 0, 10, 12, 7, 9, 7, 11, 14, 0, 2, 5, 1, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",5,2,4,5 +https://gitlab.com/libosinfo/libosinfo.git,2019-12-18 13:28:22+00:00,27cc7e31b9c5cd9ba83241711cf6b8a042fa822b,"[6, 7, 2, 28, 5, 4, 5, 0, 5, 0, 1, 0, 8, 21, 4, 1, 8, 0, 0, 7, 3, 0, 2, 15, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 19, 8, 0, 2, 1, 0, 1, 3, 6, 3, 0, 1, 11, 0, 27, 15, 0, 15, 3, 6, 12, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,10,0 +https://gitlab.gnome.org/GNOME/balsa,2018-05-27 01:32:46+00:00,910f3b1f9e08dea61a11b235bfa8868336101799,"[2, 3, 3, 1, 0, 5, 3, 3, 4, 1, 5, 5, 5, 5, 1, 2, 4, 1, 0, 1, 0, 0, 1, 1, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 6, 3, 12, 14, 6, 1, 6, 4, 1, 7, 7, 0, 5, 3, 12, 0, 0, 0, 0, 5, 1, 2, 3, 2, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",4,1,0,0 +https://github.com/libxsmm/libxsmm,2017-06-15 13:45:51+02:00,16cc0585da06090c4216b4bf30e3845514f98991,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/jmcnamara/XlsxWriter,2013-07-25 20:34:18+01:00,16a0a5094c5f0801595aec278fa4ad2679df271b,"[13, 7, 13, 19, 21, 21, 14, 16, 21, 33, 10, 15, 22, 8, 0, 1, 0, 0, 2, 15, 10, 7, 3, 0, 0, 5, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0]","[2, 0, 5, 22, 28, 6, 1, 7, 4, 0, 0, 7, 10, 1, 0, 15, 13, 0, 8, 0, 0, 0, 9, 3, 4, 6, 1]","[0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]",6,0,5,1 +https://github.com/cesbit/libcleri.git,2018-10-11 14:25:34+02:00,9adc7c4b319f8ec614751304550fedeb4d70b38f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 5, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0]","[16, 1, 3, 1, 5, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/deckar01/task_list.git,2014-11-21 15:27:44-08:00,b1989c447979a8a748dc7e518f50de0eb3b9cc81,"[6, 0, 3, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 1, 21, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/lostisland/faraday_middleware,2013-01-06 13:15:47-06:00,04f41576b2f37bce2b2d7e1ce737e17daaafcd4d,"[0, 1, 0, 0, 0, 2, 0, 6, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,1 +https://github.com/jackfranklin/gulp-load-plugins,2016-01-05 10:40:33+00:00,f914cbed3a9085662fbd1b3815430b11272cac1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 3, 1, 0, 3, 0, 0, 0, 0, 3, 0, 0]","[1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 +https://github.com/netty/netty,2014-03-07 01:54:59+09:00,3cf463825598b910e3f5e6e6f6445ce294b972ff,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 0, 0, 0, 1, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/X0rg/CPU-X.git,2020-11-14 19:16:38+01:00,49d9f02e6a88c6fcb51606b5c28859bcac6dc5d0,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/simd-everywhere/simde,2020-03-06 19:06:05-08:00,0ce105d8307d3bc67809088bb16ebd7ec0daf6fb,"[0, 0, 0, 0, 5, 17, 7, 0, 2, 21, 2, 9, 19, 11, 31, 13, 15, 24, 42, 33, 3, 39, 36, 7, 16, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 6, 33, 53, 35, 27, 29, 34, 63, 64, 58, 45, 26, 81, 56, 94, 42, 45, 37, 75, 18, 30, 28, 30, 16, 27, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,21,1 +https://github.com/pypa/pipenv.git,2017-10-18 17:05:05+02:00,8ab98afc93fb4eb349b0fd3d4a37d9d6bcd2f583,"[20, 17, 2, 26, 9, 32, 15, 23, 9, 9, 0, 3, 1, 2, 2, 0, 0, 0, 13, 146, 282, 269, 498, 188, 37, 45, 2]","[3, 3, 1, 5, 2, 6, 2, 7, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, 26, 25, 49, 27, 11, 16, 1]","[41, 32, 25, 11, 31, 19, 12, 21, 14, 19, 2, 7, 34, 6, 39, 25, 16, 45, 87, 352, 300, 110, 40, 65, 104, 120, 1]","[12, 10, 9, 3, 7, 7, 4, 4, 9, 1, 0, 1, 13, 3, 6, 3, 4, 10, 18, 23, 51, 32, 12, 15, 27, 43, 0]",74,1,96,5 +https://github.com/lunarmodules/penlight,2013-05-06 16:56:41+02:00,8f4f4290ad44efe8c3a9cde0f13fde948e69c8e8,"[0, 4, 0, 0, 6, 0, 0, 1, 3, 5, 2, 0, 1, 0, 0, 6, 1, 4, 1, 5, 1, 2, 0, 8, 4, 12, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 3, 1, 2, 0]","[4, 0, 11, 3, 0, 5, 10, 3, 0, 0, 2, 0, 0, 4, 0, 4, 0, 6, 12, 4, 0, 0, 2, 0, 0, 0, 0]","[2, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0]",10,2,5,1 +https://github.com/OCamlPro/alt-ergo.git,2020-04-10 19:09:18+02:00,c310259a8b0770838b560cb3b1f7315bd7025625,"[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 6, 0, 0, 3, 13, 8, 0, 2, 0, 69, 2, 2, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 2, 1, 2, 0, 0, 0, 1, 1, 0, 0]","[2, 0, 1, 1, 0, 3, 2, 2, 2, 1, 1, 0, 2, 21, 14, 1, 6, 0, 3, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,2,1 +https://github.com/sopel-irc/sopel.git,2013-03-30 00:25:05-04:00,12bdf43ab2d2f23413a625a843a1cafea25c0386,"[5, 6, 6, 8, 26, 37, 26, 9, 0, 4, 0, 6, 3, 3, 6, 14, 11, 1, 5, 18, 6, 25, 39, 2, 10, 6, 2]","[1, 1, 0, 1, 5, 3, 8, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 2, 1, 1, 5, 0, 0, 1, 0]","[5, 3, 11, 21, 18, 8, 7, 31, 43, 39, 18, 18, 61, 12, 13, 9, 2, 19, 6, 2, 21, 12, 1, 18, 12, 2, 1]","[1, 0, 4, 4, 4, 0, 1, 5, 6, 6, 1, 6, 2, 2, 0, 2, 0, 1, 0, 0, 5, 3, 0, 0, 2, 1, 1]",2,4,17,1 +https://github.com/mapbox/mapnik-vector-tile.git,2015-07-27 15:50:59-05:00,72b1c48f154b7f94607babda3587d8e976795e4e,"[1, 4, 19, 31, 1, 2, 1, 0, 17, 37, 7, 8, 6, 14, 29, 1, 5, 5, 20, 31, 21, 15, 1, 0, 10, 2, 2]","[0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 1, 2, 2, 3, 3, 3, 0, 0, 2, 1, 0]","[11, 9, 15, 9, 0, 0, 4, 0, 2, 5, 11, 3, 18, 4, 1, 0, 0, 0, 3, 11, 18, 3, 3, 16, 2, 54, 1]","[2, 2, 3, 1, 0, 0, 1, 0, 0, 1, 2, 1, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 6, 0]",3,2,5,2 +https://github.com/rails/jquery-rails.git,2013-05-29 02:11:48-04:00,9ca9c33e1d944e7b9c8e732bf5970f2edf10bbba,"[0, 0, 0, 0, 0, 1, 0, 6, 0, 1, 9, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 1, 3, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,5,3 +https://github.com/DamienCassou/beginend.git,2015-05-29 13:11:10+02:00,1b53cb8802f4e7de35f5f3e794bfffdaa70a03bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 +https://github.com/EnterpriseDB/mysql_fdw.git,2014-12-12 02:52:46+00:00,619d5917b650642c33d905bf9df69213340e4bf9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 9, 0, 0, 1, 2, 0, 0, 2, 3, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 5, 2, 2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,1 +https://gitlab.gnome.org/GNOME/gnome-builder.git,2015-12-13 23:53:09-08:00,6a73540b64ede264453b90dded50a1206e97ca85,"[177, 11, 6, 6, 32, 5, 4, 5, 4, 29, 66, 107, 34, 103, 61, 115, 37, 98, 7, 75, 25, 12, 17, 4, 5, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[370, 76, 7, 7, 64, 38, 49, 27, 64, 104, 40, 64, 40, 47, 41, 29, 27, 22, 53, 93, 57, 117, 52, 18, 22, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",41,0,42,0 +https://github.com/PDAL/PDAL.git,2014-04-25 10:05:11-06:00,6f827a7519822ca56a52da4b9a37a03dfc6bef85,"[0, 17, 11, 15, 11, 14, 8, 19, 7, 23, 39, 13, 24, 37, 10, 8, 13, 8, 0, 2, 14, 19, 15, 30, 29, 4, 2]","[0, 2, 4, 2, 3, 0, 0, 0, 0, 5, 4, 1, 2, 14, 2, 2, 4, 2, 0, 0, 3, 6, 5, 13, 15, 2, 1]","[36, 21, 22, 42, 9, 38, 11, 9, 12, 10, 27, 34, 12, 10, 43, 34, 76, 46, 23, 57, 54, 49, 26, 39, 18, 25, 1]","[12, 10, 2, 20, 3, 13, 1, 2, 2, 3, 6, 9, 0, 0, 2, 4, 21, 11, 7, 19, 20, 19, 8, 9, 6, 9, 0]",6,3,5,1 +https://github.com/pyparsing/pyparsing,2019-07-15 23:22:27-05:00,6ea260a4211da88f3d28fd6266e6765a6c209baf,"[0, 0, 3, 0, 0, 0, 0, 3, 1, 0, 12, 10, 1, 2, 0, 0, 0, 0, 4, 5, 2, 2, 0, 8, 20, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[5, 11, 10, 6, 8, 5, 5, 2, 0, 0, 6, 0, 3, 0, 2, 3, 6, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,7,1 +https://codeberg.org/freedroid/freedroid-src.git,2019-01-18 00:15:08+01:00,21d21bd66b64e15ae89ea1f20e00280e031120e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 9, 2, 3, 0, 1, 0, 2, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[4, 0, 3, 0, 0, 20, 3, 3, 0, 6, 6, 0, 5, 5, 1, 9, 3, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/gcsideal/syslog-ng-debian,2015-09-11 21:28:33+02:00,31ebc2ecbfc1a49710b4401e5678dc7c3ad4edcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/SELinuxProject/selinux.git,2019-06-14 14:58:52-04:00,dbffdf71351e2c53b4d8b82f4035594f09e9d7c7,"[6, 0, 7, 17, 4, 6, 5, 8, 8, 9, 2, 0, 3, 3, 1, 0, 1, 2, 0, 1, 0, 4, 3, 3, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 5, 0, 0, 3, 2, 7, 0, 0, 0, 0, 2, 1, 15, 9, 6, 2, 4, 6, 1, 4, 4, 3, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,6,0 +https://github.com/xtaran/unburden-home-dir,2015-12-25 22:56:04+01:00,9af7a85895b1bf941a082eabaea77bf128208e5f,"[4, 9, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 18, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 14, 3, 9, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/elasticsearch/curator.git,2015-03-24 15:36:44-06:00,8b67dda6fe56def7d90c02183e603544e8885473,"[14, 2, 16, 0, 3, 1, 0, 0, 0, 3, 7, 0, 4, 4, 4, 0, 4, 12, 6, 4, 0, 2, 33, 40, 17, 10, 2]","[6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 2, 5, 3, 1, 0, 0, 1, 16, 7, 5, 0]","[31, 8, 2, 18, 6, 2, 0, 0, 18, 0, 0, 3, 17, 19, 7, 12, 10, 0, 0, 5, 2, 7, 18, 0, 0, 0, 0]","[11, 1, 1, 8, 3, 1, 0, 0, 9, 0, 0, 2, 7, 8, 4, 5, 2, 0, 0, 3, 1, 3, 7, 0, 0, 0, 0]",8,1,9,0 +https://github.com/howardabrams/node-mocks-http,2015-03-10 12:54:01+08:00,a248c3fcba26bc13c6df9e888fa17bbea2e9e25c,"[2, 5, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 5, 2, 2, 0, 0, 0, 0, 11, 4, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 2, 3, 0]","[18, 25, 8, 17, 26, 5, 0, 8, 0, 0, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[3, 6, 2, 3, 5, 3, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,4,1 +https://github.com/JabRef/jabref.git,2014-07-02 00:08:09+02:00,eb07ee5b555afde0f1c0446471761d645f7114dc,"[0, 0, 0, 0, 0, 0, 3, 1, 0, 6, 110, 101, 6, 2, 0, 2, 1, 1, 2, 16, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 5, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 6, 4, 1, 2, 1, 4, 3, 2, 5, 0, 0, 0, 2, 9, 18, 14, 0, 0, 0, 2, 4, 0, 0, 0, 0]","[0, 0, 1, 1, 0, 1, 0, 1, 2, 2, 1, 0, 0, 0, 0, 3, 5, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0]",13,5,15,3 +https://github.com/awslabs/amazon-ecr-credential-helper,2018-05-01 10:15:42-07:00,6f57df714f4290a49f8239a839352ae56dd606dd,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 6, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0]",2,0,5,0 +https://github.com/mishoo/UglifyJS2,2018-02-06 14:19:28+08:00,c0b8f2a16d4804fe302e5db91995735ee7041c8d,"[3, 4, 1, 5, 6, 6, 9, 7, 3, 13, 23, 16, 18, 15, 12, 16, 26, 20, 26, 26, 27, 31, 33, 29, 6, 18, 2]","[0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 6, 4, 2, 4, 2, 2, 0, 0]","[15, 15, 10, 9, 4, 8, 6, 10, 11, 6, 3, 11, 10, 5, 4, 5, 5, 1, 0, 6, 5, 3, 3, 2, 3, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,3,0 +https://github.com/kilobyte/ndctl,2018-06-29 11:24:54-06:00,08a96c61a15b5588733cbfb39b3e6a5b4773c432,"[0, 1, 0, 2, 11, 9, 8, 11, 8, 1, 15, 4, 12, 1, 14, 6, 7, 0, 0, 17, 2, 1, 4, 8, 6, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 12, 7, 6, 10, 6, 20, 3, 0, 1, 2, 1, 0, 12, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,3,0 +https://github.com/ros/robot_state_publisher,2017-03-22 14:13:04-07:00,3fa5bd8e3312fa0581c1dffd019077b1af09b6c6,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/checkpoint-restore/criu.git,2020-10-20 00:18:24-07:00,808684c99eb4c0cf12a5725cd6bbe3fea191273c,"[20, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,0,0 +https://github.com/cleishm/libneo4j-client,2016-06-12 23:40:47-07:00,f60c821a6bc5580f573fc1a0ed36d21ebb810ece,"[0, 0, 0, 62, 29, 3, 10, 9, 6, 3, 5, 0, 6, 1, 0, 0, 0, 4, 0, 3, 0, 4, 4, 1, 3, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 28, 14, 0, 20, 6, 2, 0, 17, 9, 9, 2, 0, 0, 3, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/kivy/kivy,2012-09-18 02:06:50+05:30,a5d8ca9bb4dfa69c61d754324a01df3a9bdb4350,"[36, 18, 59, 16, 8, 13, 6, 13, 18, 22, 11, 32, 28, 46, 22, 37, 41, 26, 49, 39, 55, 14, 2, 19, 12, 7, 2]","[6, 3, 13, 7, 2, 3, 2, 3, 1, 8, 2, 7, 4, 19, 5, 10, 4, 4, 14, 8, 15, 4, 0, 5, 1, 3, 0]","[33, 44, 30, 28, 58, 68, 34, 13, 13, 30, 34, 61, 31, 26, 21, 13, 20, 9, 22, 43, 17, 39, 23, 11, 33, 24, 1]","[6, 10, 9, 6, 6, 11, 6, 3, 6, 7, 11, 19, 8, 4, 5, 2, 7, 2, 4, 9, 3, 10, 8, 1, 5, 8, 0]",23,6,37,3 +https://github.com/intel/libva.git,2017-01-21 21:40:11-08:00,1c745cf56f36a117fcb12a2611918f3e40b26f66,"[0, 4, 1, 0, 33, 0, 1, 3, 4, 0, 0, 0, 0, 1, 8, 2, 2, 2, 0, 0, 0, 1, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[11, 19, 3, 1, 1, 0, 1, 1, 0, 2, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 24, 0, 1, 0, 0, 0, 0]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,9,0 +https://gitlab.gnome.org/GNOME/geary.git,2018-08-01 05:28:08+00:00,c43d86f35a840bdc56753676d5d54550bf70b744,"[35, 15, 3, 10, 13, 2, 5, 1, 0, 9, 24, 3, 3, 8, 5, 17, 36, 4, 47, 13, 2, 7, 16, 3, 5, 16, 2]","[1, 1, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 3, 0, 9, 2, 0, 0, 6, 0, 1, 6, 0]","[15, 3, 0, 14, 31, 3, 15, 7, 13, 11, 11, 6, 6, 4, 7, 4, 4, 63, 10, 1, 18, 28, 29, 36, 0, 0, 1]","[0, 1, 0, 3, 1, 0, 5, 2, 3, 3, 2, 2, 1, 0, 0, 1, 0, 3, 0, 0, 0, 3, 4, 5, 0, 0, 0]",7,0,9,0 +https://github.com/cyrusimap/cyrus-sasl.git,2019-12-06 12:19:49+11:00,23ee2d7fad94018164930808f6699c32209d0d32,"[0, 1, 0, 2, 0, 0, 0, 0, 7, 5, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://gitlab.gnome.org/GNOME/template-glib.git,2016-01-11 04:08:34-08:00,e514833a80a262377781325a56502d313091e40d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 2, 0, 2, 0, 1, 3, 3, 0, 0, 0, 0, 1, 3, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 +https://github.com/luakit/luakit,2017-07-03 00:47:36+08:00,eb1e723c0eef96a5d5e7d8c0094dcb3b0effdf4d,"[0, 0, 1, 4, 4, 0, 74, 38, 66, 61, 47, 59, 46, 32, 43, 16, 28, 45, 43, 66, 16, 19, 19, 18, 12, 8, 2]","[0, 0, 0, 0, 0, 0, 2, 1, 4, 4, 1, 3, 1, 2, 2, 1, 1, 3, 3, 3, 2, 1, 1, 1, 0, 0, 0]","[5, 53, 43, 57, 104, 90, 11, 48, 13, 15, 2, 8, 12, 0, 12, 13, 3, 3, 2, 21, 23, 22, 30, 6, 0, 0, 0]","[0, 2, 1, 5, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,14,0 +https://github.com/smarty-php/smarty.git,2023-09-14 14:50:04+02:00,26332c9de4b8341e3de0cb198706a6573e54dfe7,"[0, 13, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 22, 0, 0, 0, 0, 6, 1]","[0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 4, 1, 12, 3, 0, 1, 3, 0, 0, 1, 2, 0, 0, 7, 1, 12, 1, 1, 14, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0]",2,0,3,0 +https://github.com/openalpr/openalpr,2013-11-09 09:28:42-06:00,77c128d7edad82f0ba15d2b26cc083dfbed0fd23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 11, 6, 2, 3, 7, 1, 7, 37, 2, 0, 0, 11, 12, 12, 23, 0, 3, 3, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 6, 1, 0, 0, 3, 1, 3, 0, 0, 0, 0, 2, 0]",2,3,4,0 +https://github.com/zmartzone/cjose.git,2016-11-14 14:50:58+09:00,7d0f5566dff5258f4babb1e843715fcec3b03cbe,"[2, 3, 0, 0, 1, 0, 0, 0, 6, 20, 11, 10, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,1 +https://github.com/Blosc/c-blosc,2018-12-03 13:09:03+01:00,19a4ad2ef69bdb38a8a99d05df3df4623fdb611f,"[0, 0, 3, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 10, 0, 1, 0, 2, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0]","[4, 0, 0, 0, 0, 4, 4, 1, 22, 2, 1, 0, 1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 2, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 +https://github.com/Electrostatics/apbs,2021-03-29 19:22:29-07:00,ab7c6c1c85b9598cecdc5bfcf2a769e66d7a20da,"[17, 8, 11, 16, 5, 5, 21, 28, 30, 14, 0, 0, 11, 0, 0, 0, 7, 2, 7, 11, 12, 0, 0, 0, 1, 0, 2]","[3, 0, 2, 2, 1, 1, 2, 7, 2, 3, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[10, 2, 0, 0, 0, 0, 0, 0, 0, 24, 14, 12, 10, 7, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,1,0,1 +https://gitlab.gnome.org/GNOME/gjs.git,2018-11-03 17:05:17-04:00,fd507b01b852d2e8c0a943dd8a453505dfaa821e,"[42, 12, 16, 14, 11, 35, 6, 2, 19, 23, 25, 28, 26, 6, 6, 19, 64, 12, 5, 3, 1, 3, 32, 9, 8, 24, 1]","[8, 5, 2, 3, 3, 12, 2, 1, 4, 10, 8, 12, 5, 1, 2, 2, 2, 2, 2, 1, 0, 1, 4, 3, 3, 3, 1]","[42, 19, 0, 0, 11, 2, 7, 8, 8, 3, 0, 4, 4, 7, 15, 2, 17, 19, 5, 1, 1, 0, 4, 0, 0, 0, 1]","[8, 2, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 2, 2, 3, 0, 3, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0]",9,0,1,2 +https://github.com/guessit-io/guessit.git,2015-11-29 19:32:40+01:00,d560755d6b6f55d292f0ebfbc0983479a526c7f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 13, 52, 24, 35, 26, 9, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 0, 0, 1, 0, 0, 25, 28, 8, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/github/git-lfs.git,2015-02-07 09:51:55-07:00,16d262114d5ba6f2c414ddd94d468797524064ee,"[10, 11, 0, 9, 10, 20, 19, 22, 21, 2, 6, 13, 1, 0, 0, 0, 0, 1, 1, 0, 1, 2, 17, 1, 31, 12, 2]","[0, 4, 0, 2, 3, 3, 0, 3, 2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 3, 0]","[37, 13, 11, 16, 1, 28, 45, 13, 56, 28, 58, 29, 8, 50, 62, 99, 41, 19, 99, 24, 26, 79, 14, 77, 138, 43, 1]","[5, 6, 0, 2, 0, 3, 11, 2, 15, 9, 12, 10, 1, 4, 11, 19, 5, 3, 35, 3, 10, 18, 1, 15, 26, 14, 0]",6,6,29,0 +https://github.com/GoalSmashers/clean-css.git,2015-05-11 19:30:45+01:00,976f8465273d669bf681a93229f5701f473eec5d,"[4, 3, 3, 46, 20, 13, 4, 8, 13, 9, 17, 8, 11, 16, 4, 34, 26, 10, 16, 1, 4, 36, 18, 11, 9, 2, 1]","[2, 0, 0, 1, 0, 1, 2, 1, 0, 0, 2, 0, 0, 3, 0, 2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[9, 7, 17, 4, 13, 18, 14, 3, 1, 4, 2, 4, 18, 10, 20, 21, 2, 7, 15, 5, 4, 0, 2, 0, 4, 3, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 1, 1, 0]",4,0,11,0 +https://gitlab.com/ixion/ixion.git,2017-06-08 10:16:47-04:00,14b28d947ae04be1d13469461b055a1b28ef73b0,"[6, 0, 0, 0, 0, 11, 10, 2, 19, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 3, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/gohugoio/hugo.git,2016-02-05 12:35:42+08:00,bd0176a5487b0d8c368a14b3f283b9029f51d619,"[24, 5, 7, 4, 17, 20, 11, 7, 15, 19, 12, 0, 16, 11, 27, 47, 35, 11, 20, 35, 6, 32, 11, 8, 17, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 20, 10, 20, 31, 40, 63, 16, 31, 40, 15, 18, 4, 7, 3, 3, 10, 15, 23, 9, 12, 10, 19, 10, 2, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",80,0,94,0 +https://github.com/ddclient/ddclient.git,2020-06-11 23:10:39-04:00,e74797f55710b5a42917947b18fce0431d82a45d,"[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 41, 27, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 14, 4, 1]","[22, 7, 70, 57, 22, 6, 7, 22, 3, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 25, 24, 7, 3, 2, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,1,6,1 +https://github.com/datalad/datalad,2015-02-24 14:36:35-05:00,8e5df02c5c62578705feee22ede106de7416e36b,"[0, 0, 1, 0, 0, 6, 4, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 1, 7, 0, 1, 2, 10, 1, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0]","[33, 36, 14, 58, 83, 44, 81, 99, 63, 29, 21, 10, 1, 12, 7, 1, 0, 1, 3, 0, 0, 2, 39, 2, 12, 36, 1]","[6, 5, 3, 8, 10, 9, 18, 16, 20, 2, 4, 3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 5, 1]",1,2,2,1 +https://github.com/gazebosim/gz-transport,2018-11-02 09:45:05-07:00,39f054aaaa2ca6d4d7511fb50d228fefd2c74e8b,"[26, 14, 15, 5, 10, 38, 59, 6, 11, 25, 9, 5, 17, 1, 11, 24, 10, 5, 2, 0, 8, 0, 2, 0, 0, 0, 2]","[10, 4, 3, 0, 1, 12, 17, 2, 3, 7, 4, 0, 6, 1, 1, 5, 4, 2, 0, 0, 2, 0, 1, 0, 0, 0, 0]","[2, 0, 5, 14, 0, 2, 16, 2, 3, 1, 5, 0, 1, 0, 12, 2, 7, 1, 8, 8, 25, 4, 53, 1, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 3, 1, 1, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 1, 7, 0, 16, 0, 0, 0, 0]",3,0,0,2 +https://github.com/NagiosEnterprises/nrpe.git,2018-06-06 15:38:54-05:00,6eb197a2d6ec81cc8a09cacf53af425f923b7f71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/doctrine/instantiator,2014-06-13 12:16:14+02:00,82c7b039d3e7110b26962c71fc4f47829813555a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 0, 11, 0, 1, 0, 67, 0, 32, 3, 3, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 2, 0, 2, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://github.com/jazzband/django-sortedm2m.git,2019-06-27 00:07:49-07:00,3c4b5b165cfe82c314976a76c044759bcaf1e22e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 11, 1, 1, 0, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,0,6,0 +https://github.com/terser/terser,2018-02-06 14:19:28+08:00,c0b8f2a16d4804fe302e5db91995735ee7041c8d,"[3, 4, 1, 5, 6, 6, 9, 7, 3, 13, 23, 16, 18, 15, 12, 16, 26, 20, 26, 26, 27, 31, 33, 29, 6, 18, 2]","[0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 6, 4, 2, 4, 2, 2, 0, 0]","[15, 16, 10, 10, 9, 24, 15, 1, 0, 32, 14, 15, 20, 9, 19, 8, 7, 5, 6, 24, 5, 10, 6, 5, 1, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",11,1,5,0 +https://github.com/highlightjs/highlight.js,2021-03-25 12:29:02-04:00,d57d4793a5a6907a758cf0b24820f4fef8b63c35,"[9, 13, 9, 14, 12, 21, 7, 63, 5, 46, 6, 10, 35, 2, 4, 2, 8, 7, 16, 9, 15, 2, 11, 5, 10, 11, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 18, 97, 26, 11, 17, 9, 42, 0, 10, 12, 12, 11, 0, 6, 0, 0, 2, 5, 0, 3, 0, 5, 5, 3, 1, 1]","[0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",50,1,36,0 +https://github.com/yrro/command-t,2017-08-18 07:47:16-07:00,818c86c05a64c46e35f2fd444d909374b029ccd7,"[0, 2, 0, 0, 0, 0, 1, 0, 4, 1, 5, 0, 0, 1, 0, 6, 3, 11, 0, 0, 1, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1 +https://github.com/bobek/pkg-pimd,2015-07-31 10:16:51+02:00,fadc4aa3b6f74a28fac18f15f3f5be7797cc4903,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 11, 0, 6, 31, 40, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 1, 0, 3, 0, 4, 2, 0, 0, 1, 0, 0, 0, 10, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0 +https://github.com/nojhan/liquidprompt.git,2013-11-26 20:09:29+01:00,0898c39bf50238d8de9c95c26a96ae06b6b6b57f,"[4, 4, 18, 3, 3, 4, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 15, 7, 4, 12, 11, 3, 17, 10, 1, 0, 5, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 1, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,1,12,0 +https://github.com/audacity/audacity.git,2018-09-10 19:15:06+01:00,334c0d83b2f12254a66325778f039b7aa65b4567,"[69, 62, 53, 46, 51, 9, 8, 6, 16, 7, 16, 18, 11, 13, 19, 16, 12, 4, 17, 26, 49, 80, 9, 45, 57, 28, 2]","[9, 2, 4, 3, 3, 0, 0, 0, 2, 0, 0, 2, 0, 1, 1, 0, 0, 1, 0, 2, 4, 2, 0, 3, 4, 0, 0]","[31, 9, 95, 17, 37, 92, 62, 71, 12, 40, 7, 22, 3, 0, 6, 1, 0, 1, 1, 1, 4, 5, 3, 4, 0, 22, 1]","[1, 0, 15, 0, 1, 7, 6, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",12,0,11,1 +https://github.com/coq/coq,2017-08-10 08:11:54+01:00,94c50815caf4c57b77ed761e05dc707f48685c65,"[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 38, 62, 45, 48, 47, 54, 56, 82, 25, 46, 23, 57, 38, 52, 122, 55, 102, 81, 53, 26, 37, 41, 33, 33, 30, 1]","[16, 8, 15, 17, 15, 22, 16, 23, 41, 7, 16, 6, 23, 17, 19, 34, 19, 39, 32, 19, 5, 16, 15, 13, 14, 14, 1]",0,1,16,0 +https://github.com/slime/slime,2014-01-10 02:12:10+00:00,ad8bc1ba6a8ad87d6eedd8e4e4ea158a29171894,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 3, 6, 17, 26, 20, 27, 21, 28, 16, 14, 1, 29, 5, 10, 4, 2, 1, 13, 16, 3, 0, 0, 5, 1, 1]","[3, 1, 0, 0, 2, 3, 0, 1, 1, 1, 1, 2, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",0,2,10,0 +https://github.com/zopefoundation/zope.proxy,2022-07-08 09:03:28+02:00,5c53fd90b1a529f2d1d4ed361d3bfa646520ba58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 1, 6, 0, 0, 0, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",0,0,1,0 +https://github.com/lunarmodules/say.git,2012-09-17 12:51:52-07:00,427e49a6c7d20069ca36e95fa535bdea2acace28,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 22, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]","[2, 2, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,3 +https://github.com/moment/moment.git,2012-09-17 10:52:28-07:00,9addcb0e935510584e8d9529f2774e6518dfd535,"[28, 8, 12, 18, 6, 22, 26, 13, 5, 8, 3, 12, 14, 14, 0, 5, 10, 1, 10, 6, 2, 8, 0, 1, 7, 1, 2]","[6, 4, 4, 1, 2, 6, 8, 2, 0, 2, 0, 4, 3, 1, 0, 4, 5, 0, 2, 2, 1, 2, 0, 0, 1, 0, 0]","[6, 7, 14, 0, 1, 22, 18, 65, 3, 15, 8, 2, 11, 2, 1, 1, 11, 17, 15, 0, 12, 12, 51, 0, 0, 0, 1]","[3, 2, 4, 0, 0, 5, 6, 3, 2, 5, 4, 0, 5, 1, 0, 1, 2, 7, 5, 0, 5, 4, 11, 0, 0, 0, 1]",25,4,28,6 +https://github.com/ropensci/RNeXML.git,2014-03-25 10:37:55-07:00,7be7ac02bde898211c8d7dbf0f447bca86da6b0d,"[0, 3, 1, 9, 11, 0, 2, 17, 33, 41, 4, 2, 2, 4, 0, 1, 1, 0, 0, 2, 0, 8, 0, 21, 33, 30, 2]","[0, 0, 0, 0, 1, 0, 1, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 4, 0]","[9, 0, 0, 0, 3, 8, 1, 0, 4, 0, 0, 5, 61, 13, 9, 20, 11, 4, 5, 7, 8, 17, 16, 3, 1, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 2, 0, 0, 1, 2, 2, 0, 0, 0, 0]",4,1,3,1 +https://github.com/mvz/ruby-gir-ffi,2021-03-05 11:13:25+01:00,0bbe9f45eb18d47e7f10854a340a32efbb143882,"[16, 2, 2, 8, 0, 5, 2, 1, 5, 9, 7, 4, 4, 2, 0, 1, 10, 6, 16, 4, 0, 2, 2, 0, 0, 12, 2]","[4, 1, 1, 2, 0, 2, 1, 0, 1, 3, 1, 2, 2, 1, 0, 0, 3, 3, 3, 1, 0, 1, 1, 0, 0, 5, 1]","[1, 0, 4, 0, 0, 2, 4, 2, 2, 0, 5, 2, 2, 0, 2, 2, 3, 2, 0, 0, 2, 0, 5, 0, 2, 0, 0]","[1, 0, 2, 0, 0, 1, 2, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 2, 0, 1, 0, 0]",2,0,0,0 +https://github.com/jquery/qunit.git,2013-05-14 15:14:41-04:00,8292e26107a5507a1a0d26035131e616f2ef7d41,"[8, 0, 0, 2, 8, 4, 0, 7, 2, 6, 0, 4, 0, 0, 1, 0, 10, 6, 1, 7, 0, 0, 1, 7, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 4, 7, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",12,1,2,0 +https://github.com/calamares/calamares.git,2020-09-30 10:53:04+02:00,613966d3ffa583f29841d4c4437660f48f8dfa3f,"[86, 20, 53, 13, 32, 69, 68, 17, 2, 48, 40, 65, 16, 19, 14, 31, 77, 49, 147, 40, 41, 32, 14, 9, 22, 3, 2]","[10, 1, 7, 4, 4, 10, 5, 2, 0, 5, 8, 5, 1, 4, 1, 0, 7, 4, 14, 2, 2, 6, 0, 2, 1, 0, 0]","[42, 19, 45, 69, 114, 54, 40, 7, 20, 29, 2, 9, 0, 1, 5, 7, 27, 68, 25, 6, 22, 4, 53, 72, 33, 38, 1]","[8, 4, 2, 4, 12, 9, 3, 2, 1, 3, 0, 0, 0, 0, 0, 4, 1, 5, 0, 0, 3, 1, 5, 6, 3, 5, 0]",10,0,10,1 +https://github.com/jtesta/ssh-audit.git,2020-09-26 22:06:49-04:00,13b065b3162a0394ce021dd0dcb6a8e9ed83a82d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 4, 1, 12, 5, 15, 0, 4, 0, 5, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 6, 18, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 15, 0, 1, 7, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/virt-manager/virt-manager,2019-05-16 16:31:27-04:00,0366eb15e25baa07be53061081c3be16fa425805,"[0, 0, 3, 1, 16, 0, 0, 34, 4, 4, 7, 49, 21, 4, 3, 63, 18, 20, 15, 18, 20, 28, 0, 0, 0, 166, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 32, 131, 81, 2, 23, 2, 23, 1, 5, 11, 1, 3, 2, 2, 2, 0, 0, 18, 4, 0, 2, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,2,0 +https://github.com/janestreet/variantslib.git,2018-05-23 17:00:52+01:00,1bb5da5e7ebfb664e62d3044ba7730926c1a9eb9,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/andialbrecht/sqlparse.git,2023-08-06 12:46:23+02:00,bb42969cca7c1e0bc49b970ea6512bf0184b97fe,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 4, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 1, 0, 6, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/puppetlabs/puppetlabs-mysql,2014-06-25 17:23:29-07:00,66e3d2b52c7fba9c5d902638ebdb9ba72d958b7e,"[4, 3, 0, 7, 15, 2, 11, 18, 25, 22, 6, 4, 2, 1, 1, 4, 6, 2, 2, 25, 3, 0, 9, 10, 3, 1, 2]","[1, 1, 0, 3, 7, 1, 5, 7, 12, 9, 4, 1, 1, 1, 0, 2, 3, 1, 1, 6, 1, 0, 3, 7, 2, 0, 1]","[4, 6, 7, 8, 4, 0, 15, 3, 2, 2, 2, 7, 2, 2, 8, 6, 2, 4, 2, 17, 10, 11, 3, 8, 13, 5, 1]","[2, 2, 2, 5, 3, 0, 6, 2, 0, 1, 2, 3, 1, 0, 4, 3, 1, 3, 0, 10, 5, 5, 1, 3, 7, 3, 0]",28,2,30,2 +https://gitlab.gnome.org/GNOME/folks,2021-02-07 15:48:32+01:00,e9215d3393251ee8ba7938ea844f70d10afdef35,"[0, 1, 1, 0, 0, 0, 2, 0, 0, 6, 1, 0, 0, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/django-haystack/django-haystack,2012-11-25 12:35:45-05:00,68a0b876d9d4c594a44f5bb92eb1d5c3c4e92bd5,"[4, 0, 2, 15, 9, 0, 1, 0, 6, 1, 1, 0, 2, 1, 4, 1, 0, 12, 5, 0, 0, 0, 1, 5, 0, 1, 2]","[0, 0, 1, 5, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[9, 3, 13, 1, 0, 1, 4, 8, 1, 1, 2, 1, 2, 6, 2, 4, 1, 3, 1, 2, 0, 6, 6, 29, 12, 0, 1]","[3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 2, 0, 1, 0, 3, 1, 2, 6, 0, 0]",7,2,25,2 +https://github.com/ytdl-org/youtube-dl.git,2014-12-12 16:42:40+01:00,e56190b378367291abe4677f2357fcfc213b1a6a,"[27, 33, 36, 48, 52, 113, 31, 37, 22, 53, 122, 100, 42, 98, 49, 108, 30, 40, 51, 116, 45, 57, 70, 113, 69, 97, 2]","[5, 5, 5, 7, 10, 7, 2, 7, 2, 10, 9, 21, 12, 11, 6, 9, 3, 6, 5, 11, 2, 7, 3, 9, 7, 14, 0]","[118, 38, 76, 110, 94, 47, 121, 114, 90, 128, 110, 57, 70, 80, 56, 56, 90, 60, 98, 81, 83, 102, 70, 57, 79, 68, 1]","[11, 5, 17, 12, 11, 6, 18, 9, 6, 10, 12, 10, 6, 12, 4, 13, 11, 2, 5, 8, 5, 11, 7, 7, 10, 7, 0]",78,2,90,4 +https://github.com/linuxmint/cjs.git,2020-10-19 11:12:34+01:00,974a99b3623a82d5fffa8e83f37c9ec5f51ef9c8,"[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 4, 1, 1, 0, 0, 0, 1, 1, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jobovy/galpy.git,2017-08-29 23:59:10-04:00,487757d5e6af47e3806de123f6077dcd66c6c9ff,"[0, 1, 2, 1, 0, 0, 0, 0, 2, 3, 0, 1, 20, 17, 8, 1, 34, 49, 10, 4, 15, 0, 0, 0, 10, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 1, 2, 4, 1, 0, 0, 0, 0, 0, 1, 0]","[14, 2, 19, 7, 2, 7, 14, 15, 10, 8, 2, 17, 0, 27, 2, 12, 29, 10, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 +https://github.com/Haivision/srt.git,2017-04-21 18:42:56-04:00,bdeb5d24336f001a0e3d38894eb89af192c0d2d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 2, 7, 3, 4, 2, 19, 28, 9, 5, 1, 7, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 7, 1]","[5, 1, 0, 4, 1, 0, 1, 3, 6, 4, 1, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",2,4,18,0 +https://github.com/skvadrik/re2c,2020-10-19 10:22:53+03:00,41fc15892806405652ae87e38bb7d12edee84d8d,"[14, 10, 12, 14, 17, 10, 8, 15, 20, 10, 24, 7, 17, 3, 7, 3, 0, 13, 6, 3, 2, 10, 2, 12, 15, 10, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 5, 3, 4, 0]","[11, 9, 7, 5, 0, 0, 0, 0, 1, 0, 5, 55, 2, 2, 0, 0, 0, 0, 0, 12, 5, 12, 42, 9, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 +https://github.com/janestreet/sexplib.git,2018-05-23 17:00:52+01:00,5de776a327933d3d28b43ee15c23aa96351e71e3,"[0, 0, 2, 0, 0, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/libcgroup/libcgroup,2021-06-09 10:39:41-06:00,60f75f11e2d93b0da7aa5bdf915d82f836824fbf,"[6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 1, 0, 6, 6, 7, 3, 18, 3, 1, 4, 1, 1, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 2, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 1, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/log2timeline/plaso,2016-01-30 10:59:54+01:00,ebb77482ee2b3ed9a7e5607e2a6fd6748585a423,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 849, 5, 7, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 8, 4, 3, 15, 5, 1, 0, 0, 1, 0, 0, 7, 9, 7, 6, 5, 0, 4, 0, 9, 12, 24, 21, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 +https://github.com/httpie/httpie,2014-04-24 19:32:55+02:00,887f70f595399c46698ad515ce1e19e4d44d54ac,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 2, 8, 2, 2, 2, 0, 4, 0, 1, 2, 2, 0, 0, 5, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0]","[67, 3, 12, 1, 2, 1, 0, 2, 2, 5, 0, 2, 2, 0, 0, 0, 1, 0, 0, 9, 0, 2, 0, 0, 0, 3, 0]","[0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0]",4,0,5,0 +https://github.com/guillaumechereau/goxel.git,2018-05-15 00:16:11+08:00,662be5d2b493f84cff00e4cec87081239db09ac4,"[3, 2, 0, 1, 7, 0, 4, 0, 0, 0, 1, 18, 153, 6, 10, 13, 26, 9, 5, 26, 26, 16, 52, 12, 4, 791, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 1, 0, 0, 37, 3, 0, 0, 0, 0, 4, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/mapbox/leaflet-image,2016-05-19 12:29:18-04:00,e2a406e25860bf235273a97fd543c8d6d2296975,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/nodejs/node-gyp.git,2017-06-14 10:29:50+01:00,2e40fad2bf50dc41acdeb10edaf3b7d64b411d0b,"[1, 0, 0, 2, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 1, 0, 3, 2, 1, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,1,0 +https://github.com/cucumber/aruba.git,2014-06-23 09:33:40+02:00,2ad8301a0a0a730769fd4ae17d81928f8d813405,"[0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 20, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 3, 0, 0, 0, 0, 2, 24, 3, 6, 8, 16, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",2,0,5,0 +https://github.com/rclone/rclone.git,2015-12-29 19:23:20+00:00,64a808ac762c7b4767daab2d10f88872a467dd8b,"[0, 0, 0, 0, 1, 7, 14, 9, 11, 8, 23, 13, 8, 11, 2, 3, 0, 5, 23, 16, 3, 0, 0, 0, 11, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 13, 10, 17, 11, 6, 10, 13, 27, 5, 2, 9, 5, 3, 3, 5, 12, 4, 7, 4, 1, 10, 13, 6, 17, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,16,0 +https://github.com/isaacs/node-glob.git,2014-11-13 14:55:58-08:00,033402bdc5bcca52cc6ccf7706ef550204270d97,"[7, 0, 8, 0, 0, 0, 3, 1, 5, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 6, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 2, 9, 0, 0, 4, 0, 1, 11, 1, 0, 0, 0, 3, 2, 2, 25, 4, 0, 0, 4, 0, 0, 1, 0, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,9,0 +https://github.com/fog/fog-local,2015-02-14 16:04:42+02:00,4b45d54ca61be4c3428a273ba011675cade639c4,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/un33k/django-ipware,2019-07-27 23:10:41-04:00,db9a5d622a05c83f852806911687788e5fbff7bb,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/zopefoundation/zope.schema,2022-08-05 07:49:05+02:00,d466d9e0a60f98a69657e3624b2cb8788c8a3da2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 7, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/markdown-it/markdown-it,2014-10-16 08:59:56+04:00,3b527ef9d2feab32c320dda8c42a35f4dce42179,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 28, 25, 3, 26, 25, 48, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[41, 92, 9, 28, 6, 4, 14, 8, 8, 38, 42, 40, 24, 7, 0, 2, 15, 11, 9, 13, 36, 11, 10, 6, 3, 6, 1]","[3, 7, 0, 2, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",3,0,20,1 +https://github.com/geopython/stetl.git,2016-02-22 08:03:56+01:00,370dc6389e0af477f990731134f6befd74f2e97c,"[0, 3, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 4, 1, 0, 2]","[0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 13, 6, 2, 6, 10, 0, 1, 22, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 4, 0, 0, 0]",2,2,0,0 +https://github.com/javaparser/javaparser.git,2016-10-06 14:42:31+02:00,b612d63cb2b0740d61e74acd1ec41ca172f0e0fa,"[9, 0, 0, 3, 0, 0, 0, 11, 0, 1, 1, 6, 10, 44, 83, 10, 10, 0, 5, 34, 6, 12, 1, 1, 2, 13, 2]","[3, 0, 0, 2, 0, 0, 0, 6, 0, 0, 1, 3, 4, 20, 29, 3, 5, 0, 3, 5, 1, 2, 0, 0, 0, 2, 0]","[7, 10, 5, 18, 4, 49, 33, 32, 24, 69, 88, 24, 21, 44, 49, 25, 76, 49, 124, 57, 184, 106, 32, 49, 19, 12, 0]","[0, 1, 2, 2, 0, 8, 7, 7, 5, 34, 44, 13, 11, 7, 11, 3, 20, 20, 10, 25, 10, 38, 13, 4, 3, 5, 0]",15,5,20,4 +https://github.com/tmuxinator/tmuxinator,2013-05-31 00:42:58+10:00,79ead205f6bb8df496c41d0fbe90900ac1b81bd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 0, 0, 0, 3, 5, 9, 17, 27, 14, 3, 1, 0, 0, 6, 4, 0, 0, 3, 1, 0, 8, 2, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0]",4,1,18,1 +https://github.com/olive-editor/olive,2019-06-29 01:42:07-07:00,84720b39cb812750b12db728f7c0127b02443fbd,"[83, 107, 42, 89, 74, 57, 100, 47, 46, 59, 74, 58, 46, 17, 3, 29, 14, 27, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 29, 3, 10, 16, 8, 20, 9, 10, 9, 3, 3, 9, 3, 0, 9, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",25,0,2,6 +https://invent.kde.org/plasma/kwin.git,2021-08-31 22:10:58+00:00,f6005a28cd613def28a9e4a8cfab95966b5b7868,"[30, 33, 22, 14, 47, 37, 38, 55, 62, 33, 93, 65, 40, 49, 51, 41, 15, 41, 37, 13, 45, 35, 36, 67, 45, 102, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[71, 33, 61, 57, 49, 32, 78, 69, 57, 58, 61, 57, 49, 29, 51, 30, 14, 34, 32, 80, 92, 35, 33, 80, 49, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",18,0,26,0 +https://github.com/google/benchmark,2014-02-10 17:37:54-05:00,99459023d9c45d514ba84c899f0bc98bd83d6df1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 19, 10, 3, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 1, 0]","[6, 2, 0, 0, 0, 3, 0, 3, 1, 4, 9, 6, 0, 0, 0, 3, 13, 1, 0, 0, 0, 0, 0, 13, 10, 6, 1]","[1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 2, 3, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 5, 2, 2, 0]",7,3,11,2 +https://github.com/jquery/jquery.git,2012-09-17 14:29:58-04:00,3cb36f7a42a200cead4723841015f61301b02a52,"[6, 5, 18, 13, 17, 18, 17, 14, 14, 13, 32, 30, 32, 34, 19, 42, 28, 10, 34, 1, 14, 16, 16, 20, 10, 8, 2]","[0, 0, 2, 3, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 6, 7, 20, 78, 17, 18, 16, 13, 20, 18, 22, 43, 64, 49, 36, 54, 37, 29, 32, 10, 3, 9, 27, 4, 4, 1]","[0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 0, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",24,0,43,0 +https://github.com/zopefoundation/zope.testing,2022-03-04 08:18:32+01:00,3b9901b40ec39a859e3187083d2c5ef956dc19f9,"[0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/aws/aws-cli,2013-08-09 13:31:16-07:00,0d125a567e7ffa9dfe285df8c436783d29594c79,"[15, 35, 22, 4, 19, 9, 0, 2, 26, 17, 8, 8, 34, 30, 20, 17, 4, 13, 7, 14, 21, 13, 36, 16, 12, 1, 1]","[3, 5, 1, 0, 6, 3, 0, 1, 5, 3, 4, 3, 10, 1, 5, 7, 2, 3, 3, 2, 3, 2, 7, 4, 3, 0, 0]","[71, 116, 81, 43, 42, 46, 19, 40, 15, 31, 21, 27, 35, 13, 21, 36, 25, 16, 22, 7, 12, 15, 11, 11, 16, 21, 1]","[18, 32, 28, 16, 10, 20, 4, 10, 4, 8, 10, 10, 13, 4, 3, 12, 9, 5, 7, 3, 5, 5, 6, 3, 5, 7, 0]",5,1,14,1 +https://github.com/zopefoundation/zope.deprecation.git,2022-11-30 08:35:36+01:00,11a3002b47b622b2d7b84b1f743e2895b0377b3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/npm/abbrev-js,2013-02-11 17:16:30-08:00,c98311d7cdafa82dec133a87662890618a5959c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/OpenTTD/OpenTTD.git,2018-04-16 23:20:04+02:00,6d31478988315180743772d879524de51ab1edb8,"[0, 2, 1, 0, 1, 1, 0, 11, 1, 6, 6, 5, 2, 3, 1, 0, 1, 0, 1, 2, 18, 5, 4, 4, 5, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 21, 9, 3, 5, 10, 4, 23, 12, 14, 15, 7, 2, 13, 10, 10, 5, 2, 0, 4, 2, 2, 5, 2, 3, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",10,0,28,0 +https://gitlab.gnome.org/GNOME/glade,2016-02-27 11:17:38-03:00,7e5dfa8ccd211945e624b0fab7fe2b19fb1b9907,"[3, 3, 2, 4, 0, 1, 0, 0, 1, 3, 1, 9, 9, 9, 24, 7, 13, 0, 2, 0, 2, 57, 2, 10, 4, 2, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 3, 17, 9, 0, 2, 2, 0, 3, 0, 3, 12, 2, 1, 0, 0, 1, 2, 0, 0, 2, 0, 2, 0, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,11,0 +https://github.com/kaminari/kaminari,2014-08-18 20:17:03-07:00,5f9b7956c56bf721d8614dcec67e85244b1b3963,"[6, 4, 11, 8, 7, 8, 2, 7, 8, 0, 0, 18, 6, 7, 1, 6, 1, 2, 1, 0, 0, 0, 0, 1, 1, 4, 2]","[0, 2, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 3, 0, 8, 2, 0, 0, 0, 0, 0, 0, 5, 1, 21, 6, 2, 5, 3, 3, 7, 0, 0, 2, 2, 0, 3, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",11,0,7,0 +https://github.com/resurrecting-open-source-projects/openrdate,2019-09-24 22:07:24-03:00,2d5de63c9bb2ab4124f6f1b2c72efe8cf553b9be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/elves/elvish.git,2016-02-19 00:13:35+01:00,4ca7fbca03c1db2c512648cb418da56e04b54ddd,"[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 99, 66, 133, 127, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 2, 0]","[141, 79, 31, 32, 34, 11, 18, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 15, 4, 2, 7, 4, 1, 2, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",4,1,5,2 +https://github.com/resurrecting-open-source-projects/scrot,2019-02-12 22:52:37-02:00,b21539df7b1faa23a82c8917d23c80ce82230e2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35, 4, 4, 0, 10, 2, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 4, 0, 0, 0, 1, 0, 0]",1,2,5,0 +https://github.com/ARMmbed/yotta.git,2015-09-17 17:54:30+01:00,c3607c653d1989a9eaa1a1a705b9812bed59374e,"[40, 19, 4, 7, 19, 8, 13, 9, 4, 2, 14, 12, 7, 8, 27, 23, 9, 8, 28, 16, 26, 23, 1, 3, 4, 28, 2]","[17, 3, 0, 2, 6, 0, 7, 1, 1, 1, 2, 4, 3, 1, 10, 5, 3, 3, 9, 6, 8, 6, 0, 2, 2, 8, 1]","[28, 40, 40, 35, 24, 12, 29, 12, 22, 28, 15, 21, 15, 18, 0, 10, 19, 24, 20, 3, 6, 16, 8, 7, 2, 6, 1]","[7, 14, 15, 13, 4, 5, 12, 2, 9, 6, 6, 5, 4, 8, 0, 3, 5, 8, 7, 2, 2, 4, 3, 2, 1, 2, 0]",11,2,15,2 +https://github.com/fuzzylite/fuzzylite,2017-10-23 18:24:45+13:00,3838d268c8480bef42dd40f1bbc4bc66d28e0e34,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 15]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://salsa.debian.org/emacsen-team/magithub,2017-10-10 23:19:15-05:00,efea5210adfc335f43a30d328d51f96258e679df,"[0, 0, 1, 44, 102, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 22, 29, 21, 3, 9, 2, 1, 2, 0, 0, 16, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 1, 0, 1, 0, 0, 0, 0, 2, 0]","[3, 27, 54, 24, 8, 11, 3, 15, 6, 5, 9, 0, 0, 14, 31, 14, 38, 1, 2, 3, 4, 1, 1, 1, 16, 6, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 1, 0, 0, 1, 3, 0]",6,0,10,0 +https://github.com/vim-syntastic/syntastic,2013-04-10 19:41:53+01:00,807f8c1824bcc6a0fabf855807256701d36f8221,"[0, 0, 1, 14, 6, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 9, 0, 2, 0, 4, 0, 0]","[0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[31, 15, 21, 21, 27, 13, 16, 32, 35, 15, 18, 19, 30, 17, 5, 16, 20, 24, 19, 1, 1, 1, 1, 22, 12, 6, 1]","[5, 5, 5, 4, 4, 3, 1, 9, 9, 4, 6, 5, 8, 4, 2, 4, 4, 8, 6, 0, 0, 0, 0, 7, 2, 2, 0]",4,5,39,2 +https://github.com/syncthing/syncthing.git,2014-01-28 19:10:39+01:00,d31a1264082a13b7cc89781ca9d2e8cdebc4f031,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 16, 36, 38, 25, 8, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[7, 12, 13, 10, 19, 14, 12, 19, 19, 13, 24, 28, 11, 29, 31, 44, 60, 38, 30, 25, 17, 10, 31, 26, 15, 50, 1]","[0, 0, 0, 0, 3, 1, 1, 0, 1, 0, 0, 0, 0, 1, 4, 3, 4, 5, 1, 0, 0, 1, 2, 0, 0, 3, 0]",3,1,14,1 +https://github.com/numba/numba.git,2014-10-08 16:19:53+02:00,d05a0fc061a6844784cba01b291fe532d5c24024,"[27, 23, 17, 29, 16, 16, 38, 52, 21, 25, 75, 52, 13, 7, 2, 0, 1, 16, 9, 8, 0, 4, 11, 0, 0, 3, 1]","[2, 3, 2, 0, 0, 2, 7, 11, 4, 2, 31, 15, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[89, 27, 28, 13, 20, 26, 37, 32, 46, 30, 27, 32, 37, 57, 51, 58, 53, 55, 44, 21, 74, 43, 40, 53, 32, 17, 1]","[28, 12, 5, 1, 2, 1, 10, 7, 11, 3, 15, 8, 4, 24, 17, 24, 10, 12, 14, 7, 16, 11, 11, 18, 13, 4, 0]",8,2,3,4 +https://github.com/jupyter/notebook.git,2015-04-21 15:37:06-07:00,fa4aa84fc5cfdbfe0817df5ade13e215b3c47899,"[31, 133, 55, 123, 82, 62, 145, 139, 97, 47, 41, 48, 101, 161, 71, 41, 47, 24, 70, 24, 28, 54, 86, 47, 34, 0, 7]","[6, 20, 12, 26, 19, 15, 30, 44, 16, 15, 20, 15, 32, 46, 25, 11, 15, 10, 28, 10, 14, 16, 29, 18, 14, 0, 0]","[96, 8, 26, 37, 20, 21, 17, 13, 21, 14, 8, 23, 22, 44, 11, 27, 43, 13, 75, 32, 42, 62, 51, 35, 55, 38, 1]","[28, 3, 13, 4, 3, 4, 5, 6, 5, 1, 4, 8, 9, 20, 4, 3, 11, 5, 8, 11, 18, 21, 16, 10, 20, 11, 0]",45,0,47,4 +https://github.com/zopefoundation/zope.event,2022-04-11 07:57:25+02:00,cdd8d1976ef48d4a59ba49d57d4c956456640c1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kelektiv/node-uuid,2020-01-21 13:29:10+01:00,53ca9d46f616af807aafacc743cbdbf0e2874888,"[0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 9, 0, 5, 0, 0, 0, 0, 0, 11, 0, 0, 2, 0, 1, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 1]","[17, 3, 3, 5, 13, 10, 6, 4, 0, 0, 4, 2, 0, 3, 8, 3, 1, 5, 3, 1, 0, 4, 3, 0, 0, 0, 1]","[2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/analogdevicesinc/libiio.git,2020-02-11 12:31:25-05:00,ec2f07932bb69150d43b6eddb46ead4b2c4b5a77,"[0, 0, 0, 0, 3, 1, 2, 0, 2, 0, 0, 1, 1, 1, 0, 7, 0, 1, 0, 0, 1, 10, 14, 13, 10, 9, 1]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 6, 7, 5, 2, 6, 0]","[18, 15, 5, 1, 12, 5, 10, 20, 32, 28, 58, 30, 17, 33, 23, 28, 30, 12, 3, 0, 3, 2, 1, 8, 10, 2, 0]","[6, 5, 3, 1, 4, 2, 3, 2, 10, 5, 21, 9, 3, 14, 10, 8, 12, 3, 1, 0, 1, 1, 0, 5, 4, 1, 0]",9,0,7,1 +https://github.com/open-power/skiboot.git,2017-02-06 12:00:11+11:00,ed735d729a41161e6399dd453c90d35cd33b6417,"[6, 0, 4, 3, 1, 14, 4, 3, 0, 2, 3, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/resurrecting-open-source-projects/sniffit,2016-11-15 09:41:45-02:00,31ca5eeab3f471e87fd8d57a3d0a8174f3cabb9f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/thoughtbot/shoulda-matchers,2012-03-18 20:39:15-04:00,76127ea45fcade0cf119538952f6c7387ebf2efb,"[4, 0, 0, 10, 1, 0, 4, 2, 8, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 5, 6, 6, 2]","[0, 0, 0, 5, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[34, 9, 6, 22, 12, 11, 0, 11, 1, 0, 0, 3, 5, 3, 1, 0, 6, 3, 3, 0, 0, 1, 0, 1, 0, 30, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",12,1,19,0 +https://github.com/jupyter/nbconvert,2015-04-09 21:41:47-07:00,edf33845534349bf73e7ff7cbc1aa77cdb61767c,"[15, 9, 2, 15, 6, 3, 5, 3, 19, 2, 0, 0, 3, 16, 4, 14, 2, 0, 0, 10, 29, 0, 16, 10, 5, 23, 2]","[2, 3, 1, 3, 2, 0, 2, 1, 5, 1, 0, 0, 1, 7, 2, 3, 0, 0, 0, 2, 11, 0, 3, 5, 2, 7, 0]","[5, 13, 7, 2, 10, 0, 2, 2, 29, 10, 23, 2, 3, 17, 16, 9, 9, 0, 9, 2, 2, 0, 8, 21, 1, 12, 1]","[1, 6, 3, 1, 3, 0, 1, 0, 4, 2, 3, 1, 3, 6, 3, 4, 4, 0, 3, 1, 1, 0, 4, 7, 0, 4, 0]",11,3,16,1 diff --git a/verbose_data/deb_readme_did_stale.csv b/verbose_data/deb_readme_did_stale.csv new file mode 100644 index 0000000..cebe591 --- /dev/null +++ b/verbose_data/deb_readme_did_stale.csv @@ -0,0 +1,2280 @@ +https://gitlab.com/crosswire-bible-society/tdavid.git,2021-11-08 10:05:25+00:00,a436cebdefeae52535805caedd25f486396ca802,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/enova/pg_fact_loader.git,2018-11-09 12:27:54-06:00,e165e58d8bbe2f65f85a501c904d03cffd223fe4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 9, 2, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 3, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/spyder-ide/spyder-unittest.git,2013-10-28 16:09:55-07:00,df9358f7beb6c5a9fc6cd112b2d9a229311ebbf5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/frescobaldi/python-poppler-qt5,2015-02-21 23:48:21+01:00,52fdb5040a056b68417253a691e9de1679a8e9de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/pylast/pylast,2009-08-31 04:18:37+00:00,d61fbb3a04620f1e96882a7ba492e6794f1705a7,"[0, 3, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 3, 0, 0, 2, 0, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 0, 1, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/Leaflet/Leaflet.markercluster,2012-07-10 18:54:39-07:00,b500f4c6cc94dd4dd73c194e1fba8090c52d9eaa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 70, 32, 16, 18, 9, 10, 13, 29, 12, 12, 4, 0, 13, 10, 0, 4, 5, 0, 2, 3, 6, 0, 2, 1, 6, 1]","[1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,7,0 +https://gitlab.com/sfcgal/SFCGAL,2012-06-11 14:00:23+02:00,f6a4db94d3d968fa695ab1f570eaff452aadbd71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 5, 5, 7, 23, 11, 5, 0, 1, 9, 6, 14, 5, 11, 0, 0, 3, 31, 0, 0, 0, 0, 0, 3, 0, 5, 0]","[7, 1, 0, 1, 3, 0, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,3,2,0 +https://github.com/irssi/irssi.git,1999-09-03 14:27:29+00:00,770ae4596d3e826c63e8c9fa441d65bd0889f03c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 6, 3, 2, 8, 9, 15, 2, 7, 4, 1, 9, 10, 1, 0, 5, 1, 0, 2, 7, 3, 2, 0, 1, 10, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/zamaudio/zam-plugins.git,2014-04-11 02:26:30+10:00,d037de78e5454474037e2d12a298cff19b177a90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[66, 43, 38, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 20, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 13, 17, 1]","[7, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,2,0,0 +https://gitlab.gnome.org/GNOME/mutter.git,2001-06-02 04:14:18+00:00,e47c4d16a27aae7c3b8831b9855f25a9dfb8473f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 17, 11, 12, 7, 6, 0, 7, 6, 8, 1, 15, 8, 3, 10, 12, 0, 1, 10, 9, 7, 6, 0, 0, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 +https://github.com/debian-tex/dvisvgm,2019-07-25 15:23:39+02:00,f8d8b2638dd514f744331dff148c0cb9df1d92e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/splattael/minitest-around,2012-09-28 14:43:51+02:00,7447a8ad03c4a7a3ee7b08e714b9fdd60576066b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",0,1,2,0 +https://github.com/BYVoid/OpenCC,2010-06-07 14:46:34+00:00,919010fbb637c2bcc36a7e22cf291a8777b64518,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://gitlab.dune-project.org/staging/dune-functions,2013-08-20 10:24:16+02:00,c2282bb2862c98e51fbeddc553b92acf54d6d425,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,5,0 +https://gitlab.com/o9000/tint2,2008-10-02 18:47:02+00:00,420dd5d1e21d255cf20df36ecc911c976e628d1c,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 4, 0, 3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 3, 4, 3, 1, 3, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/isaacs/isexe,2016-01-16 21:24:07-08:00,96b54f38c4a8f8008e017f7e85f1d78867916065,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/HOST-Oman/libraqm.git,2015-12-01 19:21:29+04:00,c62ed8f02b0a93a9dd03f0d26b1eabf5d18d103e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 31, 43, 2, 14, 12, 66, 6, 4, 5, 4, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,11,0 +https://github.com/eonpatapon/mpDris2.git,2011-06-10 09:01:00+02:00,c8a764a006d5c9462879e7cff86ecd90cd8d5c19,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 0, 0, 1, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0]",1,1,2,0 +https://github.com/Kyorai/cuttlefish.git,2013-07-11 09:27:15-07:00,b43aa2d590727f6e7a0e2a330758161b296760f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 18, 5, 11, 16, 21, 7, 17, 2, 3, 2, 14, 9, 3, 1, 3, 31, 33, 19, 4, 24, 7, 4, 1, 11, 1]","[1, 0, 0, 0, 0, 1, 3, 0, 3, 1, 1, 1, 6, 2, 1, 1, 1, 8, 8, 2, 1, 4, 2, 2, 0, 5, 0]",1,6,8,0 +https://github.com/pazz/alot,2011-05-18 10:17:07+01:00,97e147ccf964e992a3074964f2d344f0e8ac798a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 49, 19, 11, 20, 12, 21, 33, 35, 13, 32, 42, 57, 49, 27, 7, 17, 14, 32, 37, 29, 53, 61, 15, 38, 33, 1]","[7, 1, 3, 0, 1, 0, 2, 2, 0, 2, 2, 0, 8, 12, 3, 0, 2, 0, 9, 8, 6, 3, 3, 2, 3, 2, 0]",2,4,7,0 +https://gitlab.freedesktop.org/gstreamer/orc,2009-03-17 15:30:47-07:00,8fc611c325b8d67bf88bebb5fa848bc38c19c959,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 16, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 20, 18, 1, 2, 13, 2, 5, 4, 15, 11, 2, 0, 0, 33, 7, 14, 4, 5, 4, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/dharple/detox,2017-02-22 23:42:18-05:00,12cc144e42f9428783cc9d3d44be30d9c8b1ea6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/intel/media-driver.git,2017-11-30 15:44:57+08:00,a19f26ff91f3f1dbc74f9045d55dc006f1034352,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 3, 7, 24, 48, 49, 45, 24, 35, 21, 0, 7, 37, 21, 26, 14, 36, 39, 26, 32, 17, 14, 26, 20, 24, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,102,0 +https://github.com/gnome-terminator/terminator,2006-11-16 20:16:58-08:00,7bfd5ae9f7f9303060c3376cd90728add594679d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/grilo-plugins,2009-12-14 11:52:18+01:00,2cd04f49f4a9c56daaf9127fd737116115fbf513,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 197, 45, 11, 16, 20, 0, 0, 0, 0, 3, 31, 1, 0, 0, 0, 0, 5, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://gitlab.com/pdftk-java/pdftk.git,2017-12-30 07:16:41+00:00,bf02d471515659846f34852032e7ce1d78eb7824,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 2, 16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 3, 0, 1, 0, 0, 1, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,3,0 +https://github.com/varietywalls/variety.git,2018-03-10 10:57:09-08:00,585cd4efe2fd7b7727db59dcd22d01ddba46d29b,"[2, 7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 2, 0, 11, 4, 0, 9, 5, 3, 3, 0, 0, 1, 0, 0, 0, 2, 13, 21, 0, 23, 44, 3, 2, 4, 1]","[0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 5, 0, 1, 0, 0]",1,2,5,0 +https://github.com/thlorenz/combine-source-map.git,2013-03-15 17:58:19-07:00,f31a1a120ca602a046a1e3ed90a457da7fb4f6f5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/sumoheavy/jira-ruby,2011-12-07 23:23:21+13:00,892980757ab222d3b1304b17c2ecf97ff6f8c640,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 22, 0, 0, 46, 20, 1, 2, 0, 0, 4, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 +https://github.com/lmanul/gimp-texturize.git,2011-04-20 14:18:40+02:00,5f6eee550f75f4db3cf2b19662d8765d75ab1e65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/rubys/nokogumbo,2013-08-17 18:08:40-04:00,bfab73aaf6d8e591c36c1ffde900a0600788fc7d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 17, 8, 4, 2, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://gitlab.gnome.org/GNOME/gnome-calendar.git,2012-04-25 23:56:34-04:00,07b6ee8887c40adce3757119df75cb850b697b8e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 7, 8, 3, 16, 1, 0, 0, 0, 21, 17, 5, 4, 0, 0, 0, 14, 42, 4, 2, 1, 3, 5, 11, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 +https://github.com/smarty-php/smarty.git,2014-10-31 00:42:46+01:00,f433b70cf14c3bc1bedf1f1c04f93aa4fc70c104,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 15, 0, 1, 0, 5, 3, 0, 23, 27, 1, 6, 0, 0, 9, 3, 0, 1, 2, 10, 3, 3, 1, 0, 2, 2, 1]","[24, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0 +https://github.com/ukui/peony-extensions,2017-10-17 17:45:54+08:00,dd4795e2e5a54c5be4beed8a2b0dd372d002ced3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/JDimproved/JDim.git,2006-05-31 15:28:39+00:00,ad1b13b5645cabbc344737c7393678af6eb1e25b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 9, 10, 9, 19, 17, 17, 15, 3, 0, 25, 13, 12, 25, 27, 9, 4, 31, 22, 8, 21, 25, 7, 29, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/deckar01/task_list.git,2013-03-18 14:39:54-07:00,8d783f8189caffd4083bf635478a1f9ff1317bfb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 4, 0, 0, 10, 29, 7, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/jamesturk/jellyfish,2010-07-13 16:15:08-04:00,d15631cebbd601f509d108fb9f2ac3a56fcb93d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/astro/node-expat,2010-05-22 15:26:33+02:00,18227be4c7947c2687d0e5a4260a460476aba6b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 9, 8, 0, 0, 0, 6, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/manisandro/qtspell.git,2014-09-03 23:44:33+02:00,9dc558c6377c80a7d070935a9774f4ba0d53f14f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 3, 0, 0, 0, 0, 0, 0, 5, 8, 2, 8, 4, 0, 7, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Teemu/pytest-sugar.git,2013-04-07 22:23:02+03:00,7dc26ebf51b41d66e149aa7f7d00fb8559658677,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/raszi/node-tmp.git,2011-09-02 14:26:18+02:00,5de36ea986ee8fe47f3f47d372f01b586eb8381a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/the-tcpdump-group/tcpslice,2000-06-11 17:21:46+00:00,ffac277bf41946a1d985afae7fe2535d7a28546f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/FedoraQt/adwaita-qt.git,2014-07-04 17:08:44+02:00,9163607dbf73c49bbe93d81b413374a72d63708a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 0, 0, 0, 0, 1, 4, 0, 4, 2, 3, 1, 1, 3, 8, 2, 14, 9, 1, 5, 17, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/astanin/python-tabulate.git,2013-03-08 16:15:04+01:00,e6346abc3b7529c8077b2b331ad20b6effb765ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 3, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/nodejs/node-gyp.git,2012-02-03 13:17:28-08:00,7ea13975871dc3aa32f6a1872affea37ec0d82d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[115, 35, 4, 35, 29, 19, 15, 12, 24, 14, 3, 0, 0, 3, 7, 0, 4, 29, 14, 7, 11, 3, 19, 7, 5, 5, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,13,0 +https://github.com/pytroll/pyorbital.git,2011-09-12 07:20:28+02:00,8d94656fa146c32fa1431a5d4c82aae5f5578431,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 5, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/attr-encrypted/attr_encrypted.git,2009-01-07 21:01:59-08:00,9055be700f2579f74bc8d360dc75f414748b080d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/theZiz/aha.git,2012-05-08 04:48:07-07:00,79e3f97f07524a501de1743e75fc91eae680631e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/ceres-solver/ceres-solver.git,2012-04-30 23:09:08-07:00,8ebb0730388045570f22b89fe8672c860cd2ad1b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 24, 2, 2, 6, 12, 12, 11, 0, 0, 5, 10, 2, 3, 18, 36, 15, 12, 12, 6, 7, 7, 8, 7, 2, 0, 1]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,6,0 +https://codeberg.org/toddy/medicalterms,2005-05-07 21:52:07+00:00,f830b3dbcd6b8079796eff03961aef06c0f1f5ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 3, 5, 10, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 2, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jnwatson/py-lmdb,2013-02-04 21:09:14+02:00,5a309dc17ca4aff0c660dce37ab43581bf3b2a0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 6, 85, 24, 24, 39, 2, 0, 0, 0, 2, 0, 0, 2, 0, 2, 27, 24, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,0,0 +https://github.com/prometheus/pushgateway,2014-01-27 14:18:03+01:00,60e09a4a90a48e0e4804385431c8505ed730a017,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 10, 10, 0, 0, 0, 9, 2, 5, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0]",1,3,6,0 +https://github.com/atig/atig,2010-02-26 08:12:58+09:00,b34b307cd217b630d62ac27336da0c4f8f8f3387,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[110, 22, 39, 82, 13, 18, 48, 61, 3, 0, 0, 0, 0, 1, 9, 2, 9, 9, 8, 5, 8, 3, 0, 0, 0, 1, 1]","[2, 0, 2, 1, 2, 0, 6, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/udo-stenzel/anfo,2009-01-16 16:14:21+00:00,f837b71bf9fad86fa3447658dd517cd87377b251,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 5, 0, 1, 3, 9, 0, 4, 2, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 8, 4, 5, 1, 0, 4, 7, 15, 1, 6, 2, 9, 17, 4, 2, 5, 1, 0, 4, 7, 1, 2, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/manisandro/gImageReader,2013-04-21 02:17:14+02:00,f8f781f142da676b9756eeb4ba11135d989cfdba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 26, 30, 9, 12, 6, 6, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/google/python-gflags.git,2010-01-05 02:49:37+00:00,aa789bce7ca3b1ac68e9d27bc526c180206d22b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ncoders/redmine_local_avatars,2012-10-28 23:28:32+01:00,7492f1805cfc2f3ad7034f55ef647dd8cf1725a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Genymobile/scrcpy,2017-12-12 16:00:49+01:00,9d141a7f50a0e81e1df751694f240b9ceac4f9f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 2, 0, 9, 14, 37, 48, 31, 0, 19, 44, 15, 27, 7, 5, 3, 0, 0, 0, 1, 0, 21, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,10,0 +https://github.com/jendrikseipp/vulture.git,2012-03-17 00:46:18+01:00,4b085860cfabe968ecb809866094bf293b5eed44,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/baruch/diskscan.git,2013-09-19 23:54:55+03:00,72981ec531e46ede670485676d0c315dadccbb8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 14, 22, 25, 9, 1, 1, 4, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://gitlab.gnome.org/GNOME/gupnp.git,2006-05-26 10:48:21+00:00,19845518d23c03c0313f5637d6926f8501b5bf01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 7, 12, 0, 7, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gabime/spdlog,2014-11-01 03:32:23+02:00,214b938858d58ccf7506530097e659690d430113,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[58, 11, 25, 48, 48, 83, 20, 60, 3, 6, 20, 2, 16, 0, 6, 5, 2, 0, 5, 1, 8, 0, 24, 14, 0, 5, 1]","[5, 4, 2, 5, 3, 7, 2, 7, 1, 1, 3, 1, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 2, 0, 1, 1]",1,5,16,0 +https://github.com/mwild1/luadbi,2009-02-17 00:23:00+00:00,23cdfd9cc8fb07fea8a8da0e8a4d51ff53de2d88,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/lwe/entypo-rails,2012-11-24 10:57:00+01:00,e14966a57edcda2669928c084a186fa445c54d15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/httplib2/httplib2.git,2006-02-07 05:34:14+00:00,2d66d4f74f67dc9a49d6cf80bac4a289718422f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 3, 2, 1, 2, 5, 0, 0, 4, 2, 1, 0, 2, 0, 0, 1, 1, 0, 9, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/boundary/bear.git,2012-03-30 15:22:30-07:00,eb22734b85f857900bffd3a856626629c0f15019,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/garbas/vim-snipmate.git,2009-02-16 10:30:11-05:00,2a9c9acd97399a0c161d7577c32ddf41d1358ddf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 20, 8, 5, 15, 24, 9, 10, 4, 2, 5, 5, 6, 1, 0, 3, 3, 0, 3, 0, 9, 1, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/urllib3/urllib3,2009-12-10 21:33:08-08:00,c73bf7c7ba0051cd3e52f2d4760322f62800a736,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/KDAB/hotspot.git,2016-12-20 18:50:04+01:00,38f53f620b773d137961e00480ea79dab50a0e9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 5, 2, 9, 33, 6, 8, 10, 25, 6, 10, 10, 8, 28, 12, 6, 4, 2, 12, 4, 0, 0, 17, 0, 1, 1]","[0, 0, 0, 1, 1, 2, 0, 1, 1, 0, 2, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,5,0 +https://github.com/osmcode/osmium-tool.git,2013-11-27 14:48:29+01:00,159a1000267a88befa34cec8b72d7f64438282ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gazebosim/gz-transport,2014-04-08 00:51:03-07:00,22c42b1dfd834366ac20f74e0159c1461416186d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 32, 21, 27, 11, 18, 7, 53, 50, 30, 41, 25, 3, 2, 0, 4, 2, 29, 3, 0, 2, 21, 12, 30, 27, 1]","[0, 0, 1, 0, 2, 1, 0, 0, 0, 3, 5, 1, 5, 0, 0, 0, 0, 1, 3, 1, 0, 2, 7, 1, 4, 1, 0]",1,4,5,0 +https://gitlab.freedesktop.org/pipewire/pipewire,2015-04-16 16:58:33+02:00,3fba92fb74ed9229cde1d069ce116bb2cfeaa322,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 3, 2, 9, 2, 3, 1, 1, 0, 2, 6, 18, 8, 1, 5, 6, 1, 12, 5, 3, 2, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/kamailio/kamcli,2015-05-04 14:33:30+02:00,b1d10f429787ef9a5838776c024f2372e71a93cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 0, 2, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/openstack/swauth.git,2011-05-26 09:48:56+00:00,ea9f0d4053f88176a93198e7cf47bb30a8588abd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 7, 0, 0, 3, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/mattcg/starttls,2013-03-04 18:55:52-06:00,a8e8ae47cb27bf0c8c1679261b1473a116bd69aa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 12, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/etingof/pysnmp,2000-11-28 07:49:09+00:00,b876b2cefb76102d74ecbea3085c9b2fa60234bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bovigo/vfsStream,2015-04-13 19:47:24+02:00,3a0e11a1df90d32b553bf12c012f836729a5abff,"[0, 1, 0, 0, 0, 2, 13, 0, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 1, 18, 1, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]",5,1,2,1 +https://github.com/predis/predis.git,2009-11-07 13:20:11+01:00,34a616cd95cdfc48dfbec2d23025bcf2e271a75a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 5, 6, 8, 0, 20, 9, 36, 13, 0, 3, 5, 0, 0, 0, 28, 17, 25, 8, 0, 22, 10, 14, 55, 3, 0, 1]","[0, 1, 0, 2, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0]",1,1,0,0 +https://gitlab.xfce.org/panel-plugins/xfce4-battery-plugin,2003-07-17 18:30:08+00:00,8332c674c76d3c294f48bf72183a19ab3fb5e087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/geggo/gpyfft,2012-05-24 13:37:38+02:00,cc9480d2d14218160f5be9e309f976e1f51027be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 33, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,2,0 +https://github.com/components/highlightjs,2013-04-20 12:47:04-07:00,afa572158b9cc656a1c4f2eefb856ce1930055a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/resurrecting-open-source-projects/packit,2016-05-09 10:19:51-03:00,f5446328c7f1bef71569b687397ba26924d33b84,"[0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Toblerity/rtree.git,2006-12-12 17:01:25+00:00,65c80e5a096f8f83541bea44c79b33e4f1ad757f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/y-256/libdivsufsort.git,2008-06-17 20:25:18+00:00,18d7a90ad01a043f61d8af8b997fdeac10772cef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 6, 1, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/cucumber/aruba.git,2010-02-12 15:05:07-04:00,ed6a175d23aaff62dbf355706996f276f304ae8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 32, 11, 0, 0, 4, 0, 3, 0, 0, 1, 1, 2, 0, 0, 0, 3, 1, 0, 1, 5, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,6,0 +https://github.com/oneapi-src/oneTBB.git,2016-09-15 14:52:33+03:00,d238c1f393c2ecd46c6d13a2fdacc98ee275f3d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libevent/libevent,2006-10-28 03:28:27+00:00,c9ad03bc0369132f436efd0af4b398d5f5e64c65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 11, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/pediapress/pyfribidi.git,2011-07-12 22:01:31+02:00,512b90684ba5a5f7929fa85ff5653bd8e2045004,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/apache/logging-log4cxx.git,2003-06-09 09:02:28+00:00,44e4c4173bd84ca1868fbd3f88e04508661e45dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 21, 29, 0, 41, 25, 8, 30, 21, 0, 0, 0, 8, 0, 19, 0, 25, 0, 0, 10, 0, 0, 3, 0, 11, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/intel/compute-runtime,2017-12-21 00:45:38+01:00,7e9ad412908a4a16ce10f6512f13147e80dd8040,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 7, 26, 35, 22, 20, 25, 29, 47, 41, 46, 38, 37, 53, 40, 38, 42, 25, 17, 9, 32, 21, 24, 19, 24, 20, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0 +https://github.com/php-fig/http-message,2014-06-11 00:03:12+01:00,f3961cdbe31a0108281c4a23d8123532db3fd9c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 0, 4, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 2, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/OpenTTD/OpenSFX.git,2023-07-02 21:06:45+02:00,ef827c31d4351d837184a568ae90cc9fd021cf32,"[1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/webpack-contrib/worker-loader.git,2012-08-06 18:26:51+02:00,bc4acc97422522d6e6bf0de95d667a93b1694824,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libfann/fann,2012-01-23 14:02:51+08:00,df467c918fe2ee99ce43c7fedc64d5fd259260b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mate-desktop/pluma.git,2011-11-07 16:46:58-03:00,528c1e5ff51e213936e800fc5a9a25da99c0bdf2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 4, 2, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 1, 0, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/phillord/assess.git,2015-10-25 16:47:41+00:00,41a297b0668c18af9731ba95abb6f809e3d8201b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 0, 1, 0, 0, 0, 0, 1, 0, 3, 3, 2, 9, 0, 0, 0, 4, 0, 0, 0, 0, 2, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/sebastianbergmann/php-file-iterator,2009-11-05 06:09:47+01:00,e20f5946e0ffaf4067d330d76f6ed7b76e2cd17c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 0, 0, 6, 0, 1, 1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/gerddie/ginkgocadx.git,2016-02-16 21:00:51+01:00,5de603543d218c1fd1774760ffd1ba441d28d336,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 16, 4, 91, 20, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/walling/unorm/issues/new,2011-11-15 13:55:54+01:00,63d85f3d8db32cc55cc79d265d5b4ac4e64b9fc8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/ctjacobs/pyqso,2013-03-31 02:03:17+01:00,52867a396b505cca12c2398fe9bd26f743ee2f2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 56, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 7, 13, 6, 3, 3, 7, 1, 5, 1, 1, 3, 20, 5, 3, 1, 5, 0, 4, 1, 0, 12, 13, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://invent.kde.org/multimedia/stopmotion.git,2012-02-21 16:23:17+01:00,aaf2f5a720d8cdd95425197391327882aea665c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/bbatsov/persp-projectile.git,2015-12-20 14:30:11+02:00,83e03b1284ea36f37a24571abd6442a267408360,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/zzak/sdoc.git,2009-03-21 11:58:49+03:00,3420b3a9520ee433a190f52e6491fb5ac219ace9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 41, 33, 13, 13, 1, 0, 2, 2, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 +https://github.com/libusb/hidapi.git,2010-04-11 16:37:10-04:00,3f9611fe5a0a815112457294bcdf947fd31d2918,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 11, 11, 0, 14, 37, 2, 5, 16, 3, 0, 2, 5, 1, 2, 11, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 3, 3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0]",1,2,2,0 +https://github.com/cedadev/ndg_httpsclient,2012-01-06 16:16:03+00:00,8ad766f537e5156ad4fd0882959373e79f2d95f0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 9, 1, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/shimmerproject/Greybird,2011-03-07 16:21:55+02:00,abb9ee35d8c77662638b085ab429f2de66e4acc9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 6, 15, 1, 2, 0, 5, 1, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://gitlab.gnome.org/GNOME/gnome-desktop-testing,2013-04-25 18:34:25-04:00,5a153ea2cbb46678f26884465af73e81bd3716e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 2, 4, 13, 2, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 3, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/JakeWharton/pidcat.git,2013-06-11 22:59:50-07:00,b5326a1cd5bbc0d2ed3d3f74b4905b1185f4ff9b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 5, 5, 2, 0, 0, 0, 0, 3, 0, 0, 1, 1, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0]","[6, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,13,0 +https://github.com/rootless-containers/slirp4netns.git,2018-07-10 19:57:38+09:00,d5c44a94a271701ddc48c9b20aa6e9539a92ad0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 26, 9, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 7, 9, 0, 2, 0, 0, 0, 0, 2, 0, 7, 0]","[0, 1, 9, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0]",1,1,6,0 +https://github.com/otsaloma/nfoview,2007-08-14 16:39:31+00:00,587d5b02ca084498642964de64b4dd27f12275b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/mptre/yank,2015-08-24 09:24:04+02:00,91509b4b37900218ac3bb1c0079491e18ca55695,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 3, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ravinet/mahimahi,2013-08-27 17:46:39-04:00,95e1087cba1cebb94360a4fa6df209d9f226de45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 11, 51, 10, 37, 45, 0, 0, 9, 34, 30, 0, 0, 0, 0, 0, 38, 0, 4, 43, 0, 0, 0, 0, 6, 17, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/python-lz4/python-lz4.git,2012-01-31 12:07:56+01:00,c661eb244ccd45586b9646fab9c79cc8af63bc1a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 1, 11, 0, 10, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/toofishes/python-pgpdump,2011-10-26 04:16:20-05:00,e5f487995f4e88000ac32e131237a8a343417982,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 23, 0, 16, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/lunarmodules/penlight,2010-03-09 09:17:15+02:00,57e4c5deaee8b6b12be0792e4f1fdf40e555683a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 1, 6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/lilydjwg/pssh.git,2009-01-08 14:34:49-07:00,b24af9c96d353160b466f0f6217048ea17a0d014,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 0, 0, 0, 0, 4, 4, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/biocore/pyqi,2013-06-06 11:18:30-07:00,e0260e4822f0c3a1ffb33c8c26032a448ea690c2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 33, 17, 0, 0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[4, 4, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,2,0 +https://github.com/savonet/ocaml-vorbis.git,2008-10-15 17:30:33+00:00,78ba7c16f0370b1b1038a5f6f542bae05a084644,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/tmm1/http_parser.rb.git,2009-12-18 22:21:29-05:00,dce971b34331d4d4094afa55675900eae2013ea9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Perl-Critic/Test-Perl-Critic.git,2005-11-03 05:46:39+00:00,687d7f83bf610d2f84e731e7b5b9b223c86979c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 0, 0, 2, 0, 4, 0, 3, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/coldsource/evqueue-core,2015-03-20 17:49:27+01:00,449ef4a174c958116542f96de19bc93329f25ace,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 16, 0, 15, 0, 0, 1, 0, 19, 18, 8, 7, 19, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,7,0 +https://github.com/seccomp/libseccomp,2012-01-30 12:35:27-05:00,02201a5693430c8c1c1b8855633431eec9f54d31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 3, 21, 29, 23, 17, 8, 19, 12, 33, 18, 6, 2, 0, 0, 1, 4, 0, 10, 0, 0, 0, 0, 0, 2, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 +https://github.com/linuxdeepin/deepin-screen-recorder,2017-04-01 17:24:04+08:00,28f1295cd2e16d9c69ff80a3a99598702739d386,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 168]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 2, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 1, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",4,3,7,0 +https://github.com/mvgrimes/catalyst-dispatch-regex.git,2013-03-27 12:31:46-04:00,f26d5a1c22edf12b06f77f90fb982a6024047692,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/whipper-team/whipper.git,2009-05-23 07:59:16+00:00,eb74b1a9b2fca6b407fac50af6eccf89adb7f98c,"[0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 2, 43, 13, 31, 57, 14, 45, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 12, 18, 7, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 2, 3, 7, 0, 1, 2, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ruby-prof/ruby-prof,2008-11-12 00:49:40+00:00,7ec8a86b248b53f9af14e957909c2f15f8a01fc7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 5, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Pulse-Eight/platform.git,2015-03-12 13:55:06+01:00,dd73120ea4be3950f518816408589b04814ff7a4,"[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 3, 1, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]","[3, 0, 0, 6, 0, 0, 1, 12, 10, 0, 0, 0, 0, 0, 0, 2, 0, 1, 3, 2, 1, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0]",6,1,8,2 +https://github.com/shumatech/BOSSA.git,2011-10-19 22:12:19-05:00,acea00237e48acd5f91549b3d4092267a3bccacd,"[0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 1, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/acetcom/nextepc.git,2017-02-02 20:34:37+09:00,fdf97f47bbfcce08492da12ac346b222cd4f0efa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 55, 29, 49, 83, 59, 27, 43, 60, 90, 45, 18, 20, 0, 23, 19, 20, 14, 11, 23, 44, 43, 25, 16, 42, 53, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0]",2,3,2,0 +https://github.com/jakearchibald/es6-promise.git,2012-10-16 14:11:05-04:00,d1520571252e4508ed44c2a72964f2d19b18ae5c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 5, 0, 1, 0, 1, 1, 1, 5, 0, 5, 4, 11, 1, 1, 0, 1, 4, 0, 5, 6, 8, 0, 5, 0, 0, 1]","[8, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 3, 0, 1, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 0, 0]",1,4,17,0 +https://github.com/amireh/lua_cliargs,2012-06-28 15:02:58+03:00,39450b89ebe66f32f1f6a1f00d704043ac34c038,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 5, 0, 4, 35, 12, 6, 1, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,3,4,0 +https://github.com/steveicarus/iverilog,1998-11-18 04:25:22+00:00,ac71df5257c1474a11710a5588d7a47dcc6dd119,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 1, 3, 0, 3, 0, 0, 3, 4, 2, 3, 2, 1, 0, 4, 0, 0, 0, 0, 1, 7, 9, 14, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Debian/dh-make-golang.git,2015-07-27 08:49:20+02:00,3f59ff12f284fea0c66b81062a02f34cb0992061,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[3, 8, 4, 1, 0, 9, 7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,5,1 +https://github.com/tantale/deprecated.git,2017-11-20 14:13:26+01:00,1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/openzim/libzim.git,2009-02-28 22:53:38+00:00,6453e09894342fe50c3b17b06cf7765d940a25eb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 6, 3, 0, 1, 2, 1, 7, 1, 0, 1, 1, 0, 2, 0, 0, 0, 3, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/goodvibes/goodvibes.git,2016-11-29 19:27:46+07:00,a33183bb37cb6663033affdd3ba4e82a0ebbbca8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 22, 14, 20, 14, 20, 35, 30, 37, 24, 49, 23, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 1, 1, 1, 1, 3, 3, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,0 +https://github.com/OWASP/O-Saft,2012-12-20 14:13:19-08:00,d00db6f45f2635cc707bfcd84640ef06eac66491,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 11, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/iovisor/bpftrace,2017-01-02 20:03:41+00:00,e8461e74826224b6f506e000bb6dc4bb43c28165,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 7, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 5, 5, 0, 0, 0, 0, 7, 2, 0, 1, 0, 1, 3, 1, 5, 3, 10, 1, 9, 9, 1, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/FRRouting/frr,2002-12-13 20:15:29+00:00,718e3744195351130f4ce7dbe0613f4b3e23df93,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 18, 4, 4, 3, 4, 0, 6, 1, 12, 9, 3, 19, 3, 10, 2, 5, 7, 21, 34, 15, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/carlodefalco/octave-mpi,2018-05-31 10:26:07+02:00,7ff94ca6e1930f4d063436e1b542086cc182d301,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rudionrails/yell,2011-10-29 16:38:44+02:00,32f0c16d0d05abd8266c3f044beebe79ac1161bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/jnunemaker/crack,2009-03-28 23:43:14-04:00,5c6b0b031ffc69692febeffc632f1bafb27351fd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://gitlab.gnome.org/GNOME/librsvg.git,2001-03-28 18:44:42+00:00,9d95967905377141e0e83aafe782c702d1ae656a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 1, 0, 5, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/mltframework/shotcut,2013-10-02 20:02:44+02:00,a5639cc8ed9e94bd5cf8ec574de6e03df3cfe34c,"[6, 13, 2, 2, 1, 0, 0, 4, 4, 4, 4, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 2, 22, 19, 31, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[14, 18, 17, 13, 6, 11, 11, 7, 3, 3, 0, 1, 76, 24, 22, 13, 17, 17, 18, 26, 0, 48, 14, 10, 16, 10, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jelmer/subvertpy,2013-05-30 23:19:03+00:00,716f12811c04d2012ccde097ad3a63c85f44012e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 46, 2, 3, 0, 2, 0, 0, 0, 6, 0, 49, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/epoptes/epoptes,2011-09-28 00:02:59+03:00,b9af4fbd85bba1f7c544f42a8852a33f6ea41c52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 19, 9, 11, 29, 7, 6, 1, 1, 1, 1, 1, 0, 2, 31, 3, 11, 10, 3, 4, 22, 28, 11, 22, 20, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 +https://github.com/umlaeute/Gem,2002-10-21 07:45:55+00:00,d2573d593f3725e7988c1eaa9bd94487302b984e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 6, 0, 12, 25, 5, 8, 4, 0, 0, 4, 1, 5, 2, 38, 5, 6, 27, 31, 4, 0, 3, 24, 63, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/skeeto/elfeed.git,2013-08-23 22:03:44-04:00,b660b211cf2f9c41621ed20c62ef24c42023152a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[127, 47, 42, 4, 0, 14, 3, 1, 0, 0, 0, 1, 1, 12, 1, 0, 5, 0, 1, 0, 2, 3, 3, 1, 7, 1, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/telegramdesktop/tdesktop.git,2014-05-02 05:36:31-07:00,6d9ac2c4758fef40b865c4df1ee3211dab985392,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 1, 1, 14, 7, 1, 12, 22, 4, 8, 3, 15, 11, 1, 4, 3, 0, 7, 11, 4, 2, 21, 4, 1]","[0, 0, 0, 0, 0, 0, 2, 2, 0, 3, 7, 1, 1, 0, 4, 0, 0, 0, 1, 0, 1, 3, 0, 0, 4, 0, 0]",1,1,2,0 +https://github.com/thbishop/fission,2011-05-12 14:51:11-07:00,117e510b61a749d0df5af459505ea9e0bfb7e4df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 5, 15, 0, 0, 3, 0, 0, 0, 6, 20, 0, 19, 17, 20, 12, 26, 25, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 +https://github.com/jorol/Catmandu-MAB2.git,2013-10-01 14:02:31+02:00,d1b542c92b80d498b416c862d50113df56d537fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 6, 0, 5, 1, 0, 0, 5, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/r-lib/vctrs.git,2016-09-06 16:52:49-05:00,8a52bc3cdb997350b2e74f1fcc2dbf47ab7cd699,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/savonet/ocaml-duppy.git,2008-10-15 17:30:33+00:00,2ac6f3e4c163e2f5fd1d8c498b7d93a21a7cb57e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/enova/pglogical_ticker.git,2018-11-09 11:43:20-06:00,283b75352585a6667bbfc4b38a7ada309e740046,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 2, 0, 0, 2, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/pothosware/SoapyOsmo.git,2015-04-06 17:35:50-07:00,6fa13e7ce07cd2b91676777a6894799da80d287b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 1, 0, 3, 5, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 10, 6, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 +https://github.com/globocom/derpconf,2012-08-01 07:28:37-07:00,b3223c0024f222e7829a4c5542688c3aef877e18,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,6,0 +https://github.com/OpenTTD/nml.git,2018-10-25 18:06:50+02:00,c15f4ee3d737542f7c676bcd8f1c3e4fd844a823,"[0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 0, 0, 0, 6, 0, 2, 2, 1, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,8,0 +https://github.com/ocsigen/lwt.git,2008-05-25 12:52:03+02:00,ed71a00f0d5780234c870e9f62d36f62d899f553,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/alanxz/rabbitmq-c.git,2009-04-25 14:02:20+01:00,d92b0f3c777bff3f7da7efb48059a8aee4e5287f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 9, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 2, 1, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/rbenv/ruby-build.git,2011-08-11 15:40:36-05:00,fa263f2bdbdc8ba5f4af5acc753c5db270269958,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[11, 5, 0, 14, 14, 9, 13, 0, 2, 16, 13, 9, 2, 1, 2, 0, 8, 0, 2, 2, 10, 0, 0, 0, 0, 2, 1]","[4, 2, 0, 3, 3, 3, 2, 0, 2, 1, 6, 2, 1, 0, 0, 0, 5, 0, 1, 1, 3, 0, 0, 0, 0, 1, 0]",3,2,28,2 +https://github.com/sqlitebrowser/sqlitebrowser,2010-10-05 11:04:14+01:00,054ca360536b33c05eb54a143a5cf9c0cd70eb19,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-boxes,2011-10-04 16:04:10+03:00,f17dac41f91c6f5ec546469bdb35e90ef6915c4f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 7, 42, 33, 53, 12, 35, 27, 14, 22, 11, 1, 2, 16, 22, 11, 11, 11, 10, 20, 13, 30, 24, 14, 39, 22, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,64,0 +https://github.com/codehaus-plexus/plexus-interactivity.git,2018-05-12 14:58:49+02:00,94cf7526c866b19c08f1c4533521097674e66522,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/Cyan4973/xxHash,2014-07-10 22:44:08+02:00,f0f007f0424c12997a33d604c01664b30bb248f4,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 3, 5, 2, 0, 0, 0, 0, 2, 3, 1, 0, 6, 6, 0, 0, 0, 2, 0, 3, 2, 0, 1, 2, 0]","[1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,2,4,0 +https://github.com/erlang-lager/lager.git,2011-06-24 13:31:20-04:00,7bcf044f1a43dbbf0a06ce795b80c7bcbdbaec15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 31, 16, 9, 6, 1, 10, 16, 6, 11, 9, 1, 10, 3, 2, 2, 0, 9, 6, 3, 1, 0, 2, 2, 1, 2, 0]","[0, 1, 1, 0, 1, 0, 0, 3, 1, 3, 3, 0, 2, 1, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 0]",1,2,7,0 +https://gitlab.com/crosswire-bible-society/scofield,2022-03-08 08:02:08+00:00,2a8fe91d2f87d26f7d2e84943d079ef39b77e7f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/martinblech/xmltodict.git,2012-04-17 09:39:52-05:00,8da8cb30021e9d220b2c5adc74768d98bfe3c195,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/daqana/tikzDevice.git,2009-05-19 01:37:40-07:00,e0722f681db1d410a714e56f5aa74bbc98ffe404,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 5, 0, 0, 0, 0, 15, 55, 32, 3, 1, 0, 0, 2, 4, 1, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 5, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,9,0 +https://github.com/marekjm/diaspy,2013-05-01 00:30:56+02:00,f2eaa3c7bbb495584b5e3ee93da82073c4d3dc4e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 0, 19, 0, 1, 0, 3, 0, 6, 7, 20, 3, 7, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 4, 1, 1, 0, 0, 0]","[33, 3, 5, 8, 0, 9, 6, 0, 14, 35, 4, 0, 0, 1, 15, 5, 18, 4, 10, 7, 3, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 0, 0, 2, 0, 4, 7, 1, 0, 0, 0, 1, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,4,2 +https://github.com/WebAssembly/binaryen,2015-10-29 12:43:59-07:00,b3b8d931068ff09e245233451b4f1d47648f1e2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[234, 160, 76, 67, 41, 89, 87, 135, 47, 70, 112, 111, 52, 90, 38, 32, 40, 11, 77, 76, 52, 60, 63, 40, 47, 101, 1]","[0, 0, 1, 0, 0, 0, 0, 28, 3, 14, 18, 15, 7, 14, 12, 6, 10, 5, 16, 10, 15, 15, 10, 4, 6, 12, 1]",1,6,24,0 +https://github.com/fog/fog-local,2015-02-14 16:04:42+02:00,4b45d54ca61be4c3428a273ba011675cade639c4,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://gitlab.com/drobilla/mda-lv2.git,2008-08-08 22:45:58+00:00,e360047054117d63fb579ec9231e9dc77c99f12a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/slime/slime,2003-09-04 11:07:27+00:00,2fb4c4e53b59ed7b6e5f55780574a1016c0e5074,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 18, 24, 25, 0, 19, 76, 23, 47, 23, 26, 50, 58, 41, 66, 10, 0, 26, 57, 97, 13, 24, 26, 19, 32, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,8,0 +https://github.com/jupyter/jupyter-sphinx.git,2016-12-05 16:46:35+01:00,13950176e8633f78fdfb9a5a4dcce41da1975008,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/dottedmag/archmage,2007-09-30 09:51:25+00:00,526aec890a1712c5e607597c361370ff4fb43d66,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/s-yata/marisa-trie.git,2016-01-28 23:55:47+09:00,3b5f964636a4d557d45760e446a1f4e6b2f24567,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/wesm/feather,2016-01-27 14:44:10-08:00,6e91cc5e5cfeb0a5771997bee402f8fe1e72ebc2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 0, 3, 7, 2, 0, 4, 17, 18, 5, 1, 1, 6, 3, 4, 1, 2, 3, 3, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,19,0 +https://github.com/puppetlabs/puppetlabs-concat,2010-05-06 22:55:02+01:00,ee1fe7a0236e5fd100bbc229ea034bf7d2b530aa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/ponty/easyprocess.git,2011-02-08 10:47:52+01:00,d2dffa6268bc432cb36dd5a039bca6b60efbc059,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 2, 7, 0, 0, 0, 12, 0, 10, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/elasticsearch/curator.git,2013-08-19 22:51:20-07:00,7eac0259a3fdcf8684194af76d3acac7244a38dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 7, 7, 3, 25, 3, 3, 27, 2, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 9, 1, 1, 10, 0, 0]",1,3,10,0 +https://github.com/kimocoder/wifite2.git,2017-05-26 23:54:56-07:00,baf3ae8711b34fb2862ea9c0f1f99a16ff3b7cf4,"[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 2]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://gitlab.gnome.org/GNOME/gnome-builder.git,2014-09-06 18:31:11-07:00,18ddcf98ecc5569d39d538b329ca90775dc9b520,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[134, 69, 53, 175, 95, 97, 32, 1, 4, 17, 38, 18, 53, 157, 164, 41, 37, 34, 50, 88, 20, 11, 179, 35, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,47,0 +https://github.com/busyloop/lolcat.git,2011-08-10 16:10:30+02:00,207bc996a7084af57c4d9d4a5f5c42d8445a2dc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/mahmoud/boltons,2013-02-19 18:04:47-08:00,2c4595e3278c4b4b4175c1dbf6d00a5b02fc65f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 3, 1, 41, 29, 0, 0, 2, 4, 3, 0, 0, 0, 5, 5, 6, 0, 0, 2, 1, 1, 2, 2, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/Bioconductor/XVector.git,2019-04-19 12:45:47-07:00,7eae4812690e779e10c94b0515134cedff754d0b,"[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 +https://github.com/fenrus75/powertop,2010-12-20 15:45:35-08:00,64d88a1a9fd21a497087a40e7dff8b3310874420,"[0, 0, 0, 0, 0, 20, 27, 39, 42, 25, 21, 18, 8, 21, 10, 5, 13, 16, 19, 4, 1, 0, 26, 3, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 2, 1, 0, 0, 0]","[24, 17, 25, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 0, 23, 1, 2, 1, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]",3,0,10,1 +https://gitlab.gnome.org/GNOME/ghex,1998-04-03 15:21:02+00:00,1d9ef2a24b62cb31bc75e221bb17ce6f151e1964,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 1, 2, 1, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 6, 3, 7, 2, 1, 4, 7, 2, 4, 3, 4, 2, 4, 2, 2, 6, 2, 10, 3, 3, 5, 2, 4, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,18,0 +https://github.com/capistrano/capistrano.git,2005-08-03 12:59:03+00:00,f9da6dbb4ca3c52bb826653b3313e64541f7f693,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 1, 6, 4, 3, 3, 0, 6, 3, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 9, 6, 1, 6, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jeffkaufman/icdiff.git,2010-08-02 09:56:45-04:00,15947e01fae9a2eb3e38ad3e29b0bd44439a5362,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/linuxmint/cinnamon-control-center.git,2013-01-09 10:32:58+00:00,64f6e5baeefb705f367ed6fb92c3aaf27197861c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 66, 42, 4, 2, 4, 7, 0, 0, 1, 2, 0, 1, 9, 6, 7, 0, 5, 2, 1, 17, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/cl-plus-ssl/cl-plus-ssl,2014-02-10 05:36:34+03:00,7cc34767a580b06f5148fb7fdecd316462a4f5c2,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,0,3,0 +https://github.com/rolinh/dfc,2012-03-18 11:30:13+01:00,865cfaf4169180e64540573cc53ef3a3976edc4e,"[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[70, 98, 70, 20, 68, 46, 18, 24, 25, 47, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/openwall/scanlogd.git,2021-03-10 17:51:01+01:00,57791e89013df9a442013c30fdbae0310b5e0753,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mapbox/variant.git,2014-02-11 12:37:24-08:00,9b82890ea11742eafd686f44b8cc7075029dbd7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 40, 13, 6, 2, 12, 3, 23, 1, 0, 0, 0, 0, 2, 1]","[4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",2,3,4,0 +https://github.com/teopost/qmenu,2013-10-29 16:03:02+01:00,2611e6ffd97fe17e6307700c770fb432a4a7a585,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,5,0 +https://github.com/qiime2/q2-types.git,2016-05-09 13:56:02-07:00,200d63f3df39bfbfe9c11f181f2722e65de6180e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 2, 0, 2, 3, 5, 1, 6, 10, 0, 5, 3, 2, 2, 2, 4, 6, 3, 6, 5, 1, 0, 1, 3, 1]","[3, 0, 0, 1, 0, 0, 2, 2, 1, 3, 5, 0, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0 +https://gitlab.com/accounts-sso/signond.git,2010-04-01 14:58:48+03:00,985d0e30702101e84c82369fdfac8ba82a0696bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 26, 19, 14, 29, 13, 8, 13, 0, 16, 15, 4, 20, 9, 16, 4, 1, 9, 0, 18, 17, 4, 3, 16, 10, 7, 1]","[7, 9, 3, 2, 9, 5, 3, 2, 0, 3, 4, 1, 2, 1, 3, 1, 0, 3, 0, 3, 3, 0, 0, 6, 2, 2, 0]",1,4,4,0 +https://github.com/trailofbits/onesixtyone,2014-02-07 09:02:49-08:00,1f0d6d5600872422b4215693a1a9f774fdf8776d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://git.samba.org/uid_wrapper.git,2013-06-05 17:19:59+02:00,47fff10dd391a6b60508206ae96735b1d76daf51,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 10, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mgerhardy/caveexpress,2014-03-14 10:31:05+01:00,a1f23b533b9b301136f8f904f91f74ac3ce801ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 10, 0, 23, 28, 44, 31, 7, 2, 30, 1, 0, 0, 33, 57, 0, 20, 38, 107, 108, 125, 57, 18, 0, 8, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jquast/wcwidth,2014-04-07 20:55:21-07:00,348321b3e57f02f52abd335d8a7591660050c050,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 12, 0, 12, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/basho/innertube.git,2012-06-01 16:01:38+02:00,d6b922b31cb6c308d72cbe79d4da9ff34c1c24bd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/citusdata/postgresql-hll.git,2013-02-04 11:07:47-08:00,f3fc391b7402fa925cb6afb1f0b741834acca875,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0, 1, 0, 0, 0, 4, 2, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0 +https://github.com/tax/python-requests-aws,2012-01-13 14:26:52+01:00,e854b8a3e75e134d77c659c90bbca23ecca1cc3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/EnterpriseDB/mysql_fdw.git,2011-04-12 17:39:08+01:00,688c0fdb7ed4eb9ff9ceb76f65b7608432a8b196,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/julian-klode/dir2ogg,2007-06-22 17:58:38+02:00,5b1a252cdab0f9b2f37f553c8ad7aa85cf256b6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/df7cb/tenace,2008-02-02 15:04:02+01:00,c3809f4545c645f6ded33ea37251d7b6e2b410b3,"[0, 8, 1, 0, 1, 0, 0, 0, 0, 6, 4, 0, 0, 1, 1, 3, 4, 0, 11, 8, 0, 0, 9, 0, 1, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 0, 0, 0, 0, 13, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/turnstep/Math-GMP.git,2014-01-27 11:02:16-05:00,3502d80334a75cf5893f861c159f3ca1c27b5f58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/BioPP/bpp-phyl.git,2022-12-05 10:00:18+01:00,c4b682887da5fd820f1a4d77e087675f7b9bfcf6,"[1, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 3, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 1, 0, 3, 2, 0, 0, 5, 0, 5, 4, 0, 1, 0, 5, 1, 1, 6, 4, 3, 1, 0, 4, 1, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 4, 2, 0, 1, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/SoundScapeRenderer/ssr,2013-11-27 17:08:24+01:00,282398501961d280e7845ca1c2f4841b62d40b65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 8, 2, 0, 2, 24, 11, 2, 3, 0, 3, 7, 8, 4, 6, 1, 0, 0, 3, 0, 0, 1, 0, 2, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/snapcore/snapd-glib,2017-04-05 09:50:10+12:00,af7aaee56ac30ffdf306628c38d0c9f32f942990,"[0, 10, 14, 14, 20, 6, 1, 0, 1, 0, 0, 0, 0, 0, 3, 12, 16, 9, 3, 22, 13, 0, 4, 27, 10, 3, 2]","[0, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 6, 3, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/swipely/docker-api,2013-06-12 15:00:04-04:00,75d70a0a7fd592770119aafe17a74a1d439d4848,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 54, 24, 3, 2, 7, 4, 7, 18, 3, 3, 12, 0, 7, 1, 3, 6, 8, 0, 2, 28, 11, 4, 2, 6, 11, 1]","[2, 10, 3, 2, 1, 2, 2, 1, 3, 0, 2, 2, 0, 2, 0, 1, 0, 2, 0, 1, 1, 2, 1, 0, 1, 3, 1]",1,3,14,0 +https://github.com/radcli/radcli,2003-12-02 10:39:09+00:00,8476e14e7ec992fd8a73700a968d6b579496539e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/bit-team/backintime,2008-10-28 11:48:58+01:00,520fc216cc8964825297c9243a42f1d08a3ff510,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 15, 16, 37, 22, 14, 9, 15, 14, 10, 44, 31, 37, 24, 14, 8, 7, 24, 43, 57, 26, 10, 13, 18, 10, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/garrigue/lablgtk.git,1998-11-22 03:02:29+00:00,861bdac520343073a08aa3ac7893b70a5d99060e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/aircrack-ng/mdk4,2018-02-06 16:23:27+08:00,218029afb9c0e9ef3a9ddfcf4a91a4c727d32ce1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 1, 7, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/c4urself/bump2version,2013-03-10 19:08:42+01:00,db5aa7b7588b6f9685534a0c565820f93be0dd30,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 6, 2, 2, 5, 2, 1, 0, 0, 0, 0, 0, 16, 11, 0, 0, 0, 12, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/df7cb/pg_snakeoil,2018-08-10 14:24:23+02:00,a66b75eb13f30b4243629f9b2c5ad24bd180c568,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 13, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/TurboGit/hubicfuse,2009-02-03 04:21:41-06:00,d382289bbd50b2f54343c2c1316fce2829938233,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/imanel/websocket-ruby.git,2012-07-13 12:35:03+02:00,353bd7a768f79e7b34f530c33292ceecd4129a7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 4, 0, 0, 0, 10, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/hassox/warden,2009-04-07 01:09:39+10:00,7b7814b468f02249dce1c5c06902bbcd996c66ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 12, 5, 3, 0, 0, 0, 2, 0, 0, 0, 0, 1, 10, 0, 2, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/IRkernel/repr.git,2015-04-18 20:42:59+02:00,6e9f5aed5765a657034f4fb8d1e8ead43de9e5e8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 7, 2, 1, 0, 0, 1, 0, 0, 0, 5, 1, 0, 2, 4, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,2,0 +https://github.com/enzinia/hangouts-chat,2018-03-20 20:31:43+09:00,a2975b27abad92e39f15e4d4bfa3d577bd44bf48,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 8, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/ajaiantilal/i7z,2012-12-06 13:08:36-07:00,da1d2a9ae85335f395cc634f05d5ee94f56f000b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/wfeldt/libx86emu,2008-12-12 13:34:09+00:00,175c8d15c6c60359052ca182bfb0b9f459cf5d0e,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 4, 1, 4, 10, 1, 14, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/jirka-h/haveged,2018-07-18 13:56:31+02:00,2b60a12e3d4a3fa43af356e09ab32b82b63b60dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,3,0 +https://github.com/php-fig/cache.git,2015-08-20 20:19:05-05:00,8e90a3f28d395d940520d2834f9a5854877848c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/PierreRaybaut/guiqwt.git,2010-09-01 16:54:41+02:00,97df8c54b7db29d420fa7bcb02105b086ae67e59,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 8, 12, 0, 0, 0, 0, 8, 3, 14, 5, 17, 5, 28, 5, 0, 0, 2, 10, 12, 21, 32, 11, 15, 13, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/fgrehm/vagrant-lxc,2013-02-25 02:04:31-03:00,55c9be772db32d4f49bf61af1801d2d6f14a880e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[91, 80, 19, 12, 61, 30, 27, 58, 13, 33, 33, 5, 2, 10, 30, 0, 0, 7, 3, 21, 20, 10, 16, 3, 0, 0, 1]","[2, 2, 1, 0, 3, 0, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 0, 1, 0, 0, 0]",1,2,9,0 +https://github.com/andrewrk/node-findit.git,2011-02-02 03:56:48-08:00,0e0cd9c95ac796349530273a712fd1d5f3fde062,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/CsoundQt/CsoundQt,2016-02-23 16:43:10+01:00,14c2a149b50cafc1fba6adfed99744c036725ad2,"[2, 0, 0, 0, 0, 0, 2, 1, 0, 0, 4, 2, 0, 0, 0, 1, 0, 7, 0, 7, 2, 3, 3, 6, 11, 24, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 1, 3, 5, 0]","[11, 16, 3, 10, 9, 11, 14, 2, 3, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0, 2, 0, 0, 1, 0, 5, 6, 0]","[2, 5, 1, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",6,2,6,2 +https://github.com/lxqt/lxqt-notificationd.git,2015-10-31 02:17:52+02:00,2d7f7dd9ae006cdc473fefb17b231a38e3e532b4,"[0, 0, 1, 5, 1, 0, 3, 2, 3, 0, 5, 1, 1, 2, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,3,1 +https://github.com/Debian/pk4,2017-10-21 10:29:34+02:00,88c774ffb8cef2760fcd58ec4c324089c87774e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ukui/biometric-authentication,2018-09-06 15:51:50+08:00,88302f896234ab89c2e242f68dfdba10b6815a13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 6, 10, 5, 0, 3, 0, 0, 3, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/anholt/libepoxy.git,2013-10-16 11:43:11-07:00,a909eb4a229ebbea2d60717e748df3f0a2f69cc4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/davesteele/cryfs,2015-02-17 01:03:37+01:00,30832284705c060547fbef8ffcae0e3fb0570d4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 25, 1, 1, 5, 6, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 5, 14, 3, 0, 0, 14, 3, 14, 2, 1, 0, 0, 0, 0, 1, 9, 2, 2, 0, 1, 7, 2, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1 +https://github.com/puppetlabs/facter.git,2005-08-29 21:30:45+00:00,7cec936bf10ea2f0c2f56c00839043ad9369d99b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1, 10, 4, 0, 2, 0, 2, 4, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/sbabic/swupdate,2013-11-17 14:18:04+01:00,e4228034b49ad9717e3948b681bead89df8012ee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/tidymodels/recipes,2016-12-15 21:40:24-05:00,b57afd2a6c74337516964f4d547d89faac1c3168,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 4, 7, 22, 28, 25, 18, 17, 2, 25, 0, 33, 33, 2, 0, 2, 8, 0, 5, 16, 8, 0, 3, 1, 1, 1]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/pdfminer/pdfminer.six.git,2007-12-30 09:13:51+00:00,b278b5339042aebfbcea58905b80303c1e003116,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0, 0, 0, 0, 0, 2, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/varvet/pundit,2012-11-04 10:20:45+01:00,1cad0b598a4ade135789e7371583ab72fbc7a151,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 18, 1, 2, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 3, 0, 4, 1, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0]",1,1,6,0 +https://github.com/naihe2010/apvlv,2008-10-17 06:37:32+00:00,e7a0e913c9072f87fdb78a5f5599013e4676f3de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/jupyter/jupyter_client,2015-04-09 00:12:21-07:00,e7d7c01a9afd0ddcc8c183223a340ffa44468621,"[4, 11, 2, 1, 2, 2, 1, 4, 29, 11, 4, 1, 5, 0, 5, 4, 3, 1, 3, 0, 4, 3, 0, 5, 26, 27, 2]","[1, 6, 0, 1, 1, 1, 0, 2, 3, 3, 2, 0, 3, 0, 2, 1, 1, 0, 1, 0, 2, 1, 0, 3, 5, 7, 0]","[10, 2, 4, 8, 8, 2, 12, 10, 2, 6, 3, 2, 11, 13, 2, 1, 2, 4, 4, 7, 0, 5, 6, 4, 0, 9, 1]","[3, 1, 1, 4, 4, 1, 2, 4, 1, 2, 1, 1, 4, 5, 1, 0, 1, 0, 2, 4, 0, 2, 2, 2, 0, 2, 0]",7,1,6,0 +https://github.com/uTox/uTox.git,2014-03-15 05:52:31-07:00,f405ebec61508934a0cff949a8c9bf62ec69e01c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 10, 0, 0, 0, 0, 2, 0, 0, 4, 3, 14, 42, 38, 50, 74, 51, 18, 14, 29, 33, 67, 57, 42, 26, 5, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 3, 1, 10, 4, 5, 4, 0, 3, 8, 13, 18, 12, 13, 2, 1]",1,8,36,0 +https://github.com/PacificBiosciences/pbcommand,2015-07-09 09:29:26-07:00,3d36af9cc36082a4793ae19b27e237cc31f5f6e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 19, 32, 12, 24, 5, 6, 3, 6, 0, 2, 4, 1, 0, 0, 0, 2, 7, 8, 8, 6, 9, 3, 0, 0, 0, 0]","[1, 2, 5, 1, 2, 0, 0, 1, 3, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0]",1,3,7,0 +https://github.com/netdiscover-scanner/netdiscover,2005-08-09 01:43:14+00:00,51b6f0d69cd87edaa7c118416f2a41d5552d0e1f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 7, 5, 1, 2, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 11, 0, 9, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/cdidier/irssi-xmpp,2007-08-13 13:33:57+00:00,0b7922122729da5d564caf2f9482b446e1c8236f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 29, 5, 0, 0, 0, 2, 9, 17, 24, 10, 0, 0, 1, 7, 1, 5, 1, 4, 10, 3, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/wch/webshot,2014-12-16 11:05:08-06:00,8c53e486450cc98c390e1cd55a1d73b7e6d7626b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 4, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 +https://gitlab.com/gitlab-org/gitlab-gollum-rugged_adapter,2014-10-30 02:17:28+01:00,15a6aff230fcf10bcdeab2953a72c9e9ac9f5dc5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 11, 0, 4, 0, 9, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/bbonev/dhcpdump,2023-03-06 22:15:35+00:00,f6a67e29718cd57afee817b669418805f0599cd7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 1, 0, 1, 0, 0, 0, 4, 0, 0, 15, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/brianmario/mysql2,2010-04-04 13:14:58-07:00,2e11b94e5f5cf24ff37499e883823b671d6abfa9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 50, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 8, 11, 6, 14, 24, 3, 0, 9, 2, 5, 0, 11, 27, 5, 9, 10, 33, 20, 26, 6, 4, 3, 10, 3, 5, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 3, 0, 0, 0, 0, 1, 0, 1]",1,2,8,0 +https://github.com/FreeOpcUa/python-opcua,2015-02-20 21:06:05+01:00,6c39ac5f56f68f7608861ef031c893ccae22e134,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 24, 8, 19, 9, 17, 2, 15, 22, 9, 7, 9, 2, 2, 0, 0, 6, 2, 0, 6, 7, 2, 1, 2, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0]",1,2,6,0 +https://github.com/checkpoint-restore/criu.git,2011-09-23 12:00:45+04:00,523de236244946a0de127dfc9954369963819ef7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 19, 43, 6, 51, 15, 26, 31, 45, 30, 32, 11, 27, 38, 19, 51, 95, 57, 105, 55, 88, 26, 49, 32, 5, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 2, 0, 3, 1, 2, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/aquasync/ruby-ole/issues/new,2007-10-19 13:25:04+00:00,6f5628b665660c41ea52d8b439a7c2bc66231f11,"[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 3, 0, 0, 6, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sionescu/bordeaux-threads,2011-08-03 00:35:27+02:00,383d8d6241b2d17072e7581f7b7d4930dfce1516,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mywave82/opencubicplayer,2011-09-18 21:35:24+02:00,38b5d672019e2315018a3d5c8bccb79ae83d3bb1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 2, 1, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/matlab2tikz/matlab2tikz,2008-11-07 10:18:57+00:00,fa03c34c00e1c57701fb7ffe4af8352ad6fb30ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 8, 0, 3, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 1, 3, 3, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rigred/sandsifter,2017-07-27 15:17:30-04:00,dff63246fed84d90118441b8ba5b5d3bdd094427,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 3, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0 +https://github.com/kpdyer/libfte,2014-04-09 14:12:10-07:00,6a91eaeab94e7931886cb9dc0b8cea4b4a2b274a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 5, 2, 0, 0, 2, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 9, 13, 2, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 6, 1, 0, 0]",0,2,1,0 +https://github.com/jeffreyhorner/rapache.git,2005-09-30 16:22:29+00:00,4a2bafbbb6e53a51443403f3c34d49e482a91f40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/pcman-bbs/pcmanx,2005-06-30 21:03:55+00:00,91258ebc328904df0f61ea8e2891967be86558df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 22, 33, 31, 0, 13, 4, 29, 4, 0, 0, 2, 7, 1, 2, 1, 0, 1, 3, 2, 0, 0, 7, 3, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/chjj/term.js,2013-08-08 09:03:31-05:00,51946a73c84369c1e35bc78fb599d8d27a237a2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 16, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 2, 1, 4, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/ParaFly/ParaFly,2017-09-03 09:17:34-04:00,e081b76649370f07f73ffce532165e5e53f67a03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/wookayin/gpustat,2016-04-24 19:57:23+09:00,da312430ad0a5764cd99ac4c07fd260fa7ebce81,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 6, 0, 0, 0, 2, 1, 0, 1, 0, 0, 1, 0, 0, 2, 0, 5, 6, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/bokmann/font-awesome-rails,2012-03-07 21:05:38-05:00,fd941c0c8b44c695e80030ee5b341a504285bc8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,3,0 +https://github.com/EsotericSoftware/kryo.git,2013-11-06 16:31:58+01:00,2c3194a8e64b655ea3de992d4a8a38f8cc315a09,"[0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 4, 7, 5, 9, 2, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +git://git.alsa-project.org/alsa-utils.git,1998-08-13 15:43:39+00:00,fbb20e85ecb0419c4cb8143e3a3fcd0a6f31d9c4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 8, 0, 0, 2, 1, 4, 0, 0, 0, 14, 6, 4, 3, 8, 4, 2, 0, 0, 0, 0, 5, 3, 9, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/cloudflare/python-cloudflare,2014-12-13 18:05:38-08:00,948eed8afa9dd49213d8ac6f913d7a70e265d77a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/hanshuebner/cl-github-v3,2013-03-03 08:20:19+01:00,8e4259a324a31c9bec23ce49c6980efc17c6f351,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://gitlab.freedesktop.org/xdg/shared-mime-info.git,2002-07-24 15:57:07+00:00,e76dc2189be3d100f9efcd8a9fa60e5bd2e6d145,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 3, 1, 4, 7, 0, 0, 0, 0, 0, 1, 5, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/processone/fast_tls.git,2015-04-06 11:03:40+02:00,e231cbde546c2e2200f6dae01d13cf743d253c6d,"[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/libsdl-org/SDL_net.git,2001-01-15 02:06:06+00:00,36b541b369dbe0958bc677cf351a6db5cc4f7cb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 6, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/viraptor/phply.git,2010-07-22 11:50:40-07:00,06e943d6fc045ba027c756fd087a0a05012859ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 32, 14, 26, 10, 4, 10, 0, 0, 0, 0, 20, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/PerlGameDev/Alien-SDL.git,2009-08-06 21:18:06-04:00,06b07bff559bdf86876c132de29c6dcd15a3663a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 2, 6, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/chad3814/CSSStyleDeclaration.git,2012-07-10 21:54:08-07:00,3492492f88739caf975ed83d06a5c48a27c2ae25,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/myriadrf/LimeSuite.git,2015-07-07 13:15:19+01:00,6088e057eecbcb99dda2d280e461ec8abf37ddf1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 12, 5, 9, 1, 0, 1, 0, 0, 4, 3, 4, 3, 4, 5, 0, 0, 6, 8, 2, 6, 0, 4, 4, 0, 1, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/namhyung/uftrace,2014-08-12 09:10:05+09:00,8650b55b775ab8418380a0ce14f8cc96d737d9b4,"[8, 16, 9, 4, 23, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 10, 7, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mrirecon/bart,2014-08-30 14:44:54-07:00,713a858a01dd17d23c5375fbe1e357430cc96842,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 12, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/okbob/pspg,2017-07-11 20:54:14+02:00,aa677db8280f950d63b35f8999d626d9ce2a9ca3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 8, 6, 14, 22, 15, 10, 6, 5, 9, 8, 10, 1, 0, 0, 0, 1, 2, 20, 19, 6, 4, 2, 6, 13, 1, 1]","[0, 0, 1, 0, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 1, 0, 0, 0]",1,3,11,0 +https://github.com/mheily/debian-packages,2014-02-23 12:43:26-08:00,3874d07edbe0c77825605eb648044b07e40fb96c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/outatime/applause.git,2014-03-21 17:19:59-03:00,70b35fab6674315125a988c9d7cdd75808b23104,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/pothosware/SoapyHackRF.git,2015-09-26 19:16:21+08:00,7afd29c7b22d55b3597da28f059a1fba916dded9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 2, 1, 2, 5, 5, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/github/version_sorter,2009-04-24 17:05:20-07:00,5556dba6528a573178f5aec7e5a29e7b3a7b7143,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 22, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/zloirock/core-js.git,2014-01-05 23:42:36+07:00,bf793c5fd5e8bbe95d1aeced8f7977c15edf5ea2,"[0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 1, 2, 6, 2, 9, 6, 1, 2, 2, 3, 2, 1, 3, 6, 3, 2, 5, 3, 2, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/ebook-utils/css-parser,2018-12-20 11:21:29-05:00,111dda6b412e3cfec2f55b2f8838ac356bbc5f13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 22, 4, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,4,0 +https://github.com/pekdon/pekwm,2006-08-30 15:26:19+00:00,c7b124bf1c6096ae04e1f483f6c63bc7d2a7041c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/doxygen/doxygen.git,1999-12-15 19:25:10+00:00,719f0a35063be88eddcc4ed8fe7a940de47ef20c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 3, 0, 0, 5, 3, 2, 2, 2, 3, 5, 2, 3, 2, 2, 2, 3, 2, 2, 2, 2, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/schrodinger/coordgenlibs.git,2017-06-12 11:43:57+02:00,a779781fa783ad82f41eddaaaf504c4597087cb4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 3, 0, 0, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]",1,1,4,0 +https://github.com/RazrFalcon/resvg.git,2017-12-18 20:01:18+02:00,81645877a26eae9dce26978b2a862793c026db9e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 3, 2, 1, 5, 2, 18, 5, 3, 21, 13, 6, 1, 7, 2, 0, 9, 21, 16, 9, 25, 19, 13, 5, 2, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,3,5,0 +https://github.com/IdentityPython/djangosaml2,2014-11-05 17:17:08-08:00,4a44680c2969744c8dc1bb431f9fb0a5cbc5451e,"[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 2]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]","[3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,2 +https://github.com/openkim/kim-api,2011-04-25 08:14:25-05:00,31ff71cc67a2c2f5b48fa97e4e99908e07238a3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 23, 35, 31, 4, 13, 17, 36, 24, 0, 128, 14, 34, 25, 9, 2, 12, 3, 8, 1, 9, 3, 1]","[0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 1, 2, 3, 0, 11, 3, 3, 0, 1, 0, 0, 1, 2, 0, 2, 0, 1]",1,4,7,0 +https://github.com/petere/plsh.git,2005-05-25 19:13:38+00:00,fa01cd0a81a8c8bd7717c0de37c20b9401348b89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mate-desktop/atril.git,2011-11-09 18:17:43-03:00,f6ce926719943751cf65cacde7fae050593eb2d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 3, 0, 1, 2, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/resurrecting-open-source-projects/openrdate,2019-09-22 11:41:50-03:00,72726609622bc094a56023a03991634c048ddf5a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/thlorenz/inline-source-map.git,2013-03-06 19:30:36-08:00,f689a0d3fbff63392330ccc48c8a36fef527c0ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/knu/ruby-unf_ext,2010-08-18 12:56:44+00:00,fb233dd3bf580293d2d1555eb7431fac61c37f00,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/accounts-sso/libsignon-glib.git,2010-04-01 15:32:37+03:00,f868f33bbc36d0a013f7f5367f813833f0a79c69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 24, 14, 6, 9, 4, 10, 0, 0, 9, 0, 16, 2, 0, 0, 0, 3, 0, 8, 5, 6, 0, 3, 8, 0, 1]","[0, 1, 6, 1, 1, 0, 1, 2, 0, 0, 1, 0, 3, 1, 0, 0, 0, 1, 0, 2, 1, 1, 0, 1, 2, 0, 0]",1,6,6,0 +https://github.com/brunonova/drmips,2013-09-13 20:15:09+01:00,b6b2b066062bcdd92dbaab542a14d6b6d96dcf7c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 6, 10, 7, 0, 0, 4, 2, 9, 12, 0, 5, 6, 4, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/ygrek/extunix.git,2010-09-06 18:19:41+03:00,ac39e0dff1852237be9c7d86729ab883a4b27c68,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 6, 0, 7, 3, 9, 0, 2, 2, 3, 3, 2, 0, 4, 6, 0, 0, 1, 1, 0, 0, 2, 1, 0, 1, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/libjpeg-turbo/libjpeg-turbo,2015-07-29 15:18:11-05:00,2cbeb8abd92d5ad8a1bd415b51b3816213b15f31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 11, 0, 5, 2, 0, 8, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 1, 6, 6, 0, 1]","[6, 0, 3, 0, 2, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",1,0,5,0 +https://github.com/savonet/ocaml-shine.git,2012-07-24 17:43:42-05:00,2986d44d1db304d99fde51b4790ce256b5c3faeb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ubuntu-mate/mate-window-applets.git,2018-01-18 23:06:09+00:00,f7300c3f63ee3901b9186fce1d148bdc6c5c0701,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/prometheus/haproxy_exporter,2013-01-31 07:33:03-08:00,553d344dddd00a54dfae06e744c726e3c73fca29,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 +https://github.com/kilobyte/kbtin,2006-06-15 10:51:13+00:00,dd7e723be5c825616140ddc4b9af38669484d3d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/czerwonk/bird_exporter,2016-11-26 21:07:27+01:00,c01a89080a0d3ea0049ec6bcee14a74ff26662aa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 10, 1, 0, 0, 0, 0, 3, 1, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 9, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,1,0 +https://github.com/mmlabs-mindmaze/xdffileio.git,2010-04-22 17:33:38+02:00,c52d7dcb72c7045fd44752b87ffd786e40c6ed61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 6, 3, 0, 2, 1, 0, 0, 0, 2, 0, 1, 4, 4, 6, 2, 3, 0, 0, 0, 0, 0, 1, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jseidl/GoldenEye,2012-10-21 23:18:59-07:00,904e6842e02a0a1a35b5e1b5348d1edf9f7e664b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gambit/gambit,2007-08-25 14:39:50-04:00,1b67821c3d1d424b2eeb13bb5cc5cca84bd5df69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 8, 0, 3, 1, 0, 0, 0, 1, 1, 12, 8, 0, 0, 8, 9, 0, 1, 6, 2, 4, 1, 16, 12, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sionescu/libfixposix.git,2010-07-03 04:02:12+08:00,e42fd953dd05301f9a1f72a7a56ffaa4e48e5e03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 46, 31, 11, 0, 0, 0, 4, 10, 4, 0, 0, 7, 9, 36, 13, 0, 0, 0, 1, 1, 2, 10, 50, 1]","[0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/apjanke/ronn-ng,2009-11-05 11:48:25-08:00,a774cc7ff4bd0f31945e6209614bc5f593a5d983,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 16, 5, 20, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 5, 0, 8, 32, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 +https://github.com/friendly/vcdExtra.git,2017-09-29 09:49:38-04:00,9de1be819d21a8960ee94710219f32a57931bd05,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/free-wheeling/freewheeling,2007-01-03 22:39:41+00:00,5bf4c275a3dec39410ee130a0d90384be3ef6388,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 10, 0, 11, 2, 2, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sebastianbergmann/global-state,2014-08-22 07:34:43+02:00,6eb098b277d17d216e87783bd7d0037ad7bdcc72,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 6, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://gitlab.freedesktop.org/libfprint/libfprint,2007-10-08 17:16:13+01:00,7d3612d9f6ebc5ecbdc400acbb97333c7bb402c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 8, 16, 14, 0, 22, 7, 4, 3, 0, 0, 2, 0, 0, 0, 0, 2, 0, 10, 3, 4, 6, 1, 8, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 +https://gitlab.com/ericvsmith/toposort,2014-02-10 10:14:53-05:00,ca86084b919df654c030905cb45438bdddf963e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kohler/lcdf-typetools.git,1999-06-29 17:05:42+00:00,3c52d200c00ab0411fc066918e7a2fb5d5f8fc7e,"[4, 0, 5, 16, 1, 2, 0, 2, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 5, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/janlelis/paint.git,2011-06-29 15:39:35+02:00,6951dff8b9a3a92adcdccbe71096019130a181ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/RichiH/vcsh,2011-05-23 00:36:53+02:00,3ad6e99bcaf043ad9d6df0c1bd0376dc78ec31d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 10, 0, 14, 30, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 0]",1,2,3,0 +https://github.com/iovisor/bcc.git,2015-05-03 08:33:53-07:00,c3c4fc196a22950ee019e3144dc7b992718bc7c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 0, 16, 12, 57, 23, 9, 9, 13, 9, 7, 25, 34, 29, 25, 31, 30, 46, 24, 42, 7, 8, 14, 8, 0, 1]","[3, 2, 0, 8, 5, 26, 9, 4, 3, 4, 3, 2, 11, 12, 12, 9, 12, 11, 17, 11, 14, 3, 3, 6, 4, 0, 0]",2,9,19,0 +https://github.com/jeinzi/thunar-dropbox.git,2015-03-07 15:39:19+01:00,97bd634e141fd23f8b667e5c1db45314d08a7a60,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://0xacab.org/schleuder/schleuder.git,2014-07-11 21:14:56+02:00,43cd6a45f45a76afd6fda2855b3f1d080668b736,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 10, 0, 0, 0, 6, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/kstateome/django-cas,2012-05-02 06:55:50-07:00,771b540bb081f82d27a436a4f56e077247339c7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 4, 11, 5, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 5, 2, 0, 0, 0, 0]",1,2,1,0 +https://github.com/skk-dev/skktools,2000-03-12 12:17:40+00:00,47d70ef264083de2ca8e786b5f52ca7d175d0bb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 24, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jabberd2/jabberd2,2006-04-16 20:42:32+00:00,4e058ee0b010abd2eab53f5ddd13ba5dca2c354a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 17, 33, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/worldforge/eris,2001-08-04 18:15:03+00:00,e8138a0933056814a1ed385b842eb7c841bb1bc0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 2, 3, 0, 0, 1, 1, 2, 0, 4, 4, 0, 1, 1, 5, 5, 1, 3, 3, 3, 0, 8, 5, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/LeaVerou/prism.git,2012-08-30 16:35:09+02:00,56b64c049e31bf7c1ab543b222c7d3915f69e2f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 28, 6, 56, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0]","[1, 0, 5, 0, 0, 0, 1, 0, 0, 0, 12, 1, 2, 2, 0, 0, 0, 2, 0, 0, 0, 5, 3, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",4,0,6,1 +https://github.com/pothosware/SoapySDR.git,2014-10-04 12:52:17-07:00,864d008314dfb5c06412ef7507cb36a0d765a4b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[56, 6, 4, 1, 19, 1, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 16, 26, 3, 2, 2, 1, 8, 1]","[3, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 1, 0, 0, 0, 1, 0]",1,1,0,0 +https://github.com/Unidata/netcdf4-python,2006-09-11 02:58:40+00:00,c28845017f61655a03f0d6b736c57814b705ee2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 40, 55, 23, 17, 13, 1, 0, 0, 0, 8, 0, 0, 5, 0, 0, 2, 0, 0, 3, 28, 2, 17, 40, 11, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://git.eyrie.org/git/perl/net-duo.git,2014-06-11 16:19:07-07:00,1629668e58c1abf4cdcd8f21c81532114607a408,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/guessit-io/guessit.git,2015-10-03 11:35:21+02:00,dab80bd200fd90ab83bc156789ca80c516e7fa0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 10, 48, 22, 49, 21, 19, 14, 19, 3, 0, 0, 1, 0, 0, 25, 18, 16, 2, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mathiasbynens/regenerate-unicode-properties,2016-05-29 13:55:46+02:00,353d8d3491851e9059119e71328574ba1aa43834,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jeromerobert/hmat-oss.git,2014-11-21 18:27:34+01:00,bfbb095b97f9bb27283094e23bb859ab6f9cc33a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 19, 5, 0, 5, 4, 10, 5, 5, 0, 7, 8, 5, 25, 5, 0, 17, 8, 10, 1, 5, 6, 1, 0, 11, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,10,0 +https://github.com/SecureAuthCorp/impacket.git,2003-10-27 17:46:03+00:00,f9882d7bc39547c63ee12714ebe93bfbf72818a1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 3, 0, 3, 2, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/savonet/ocaml-ladspa.git,2008-10-15 17:30:33+00:00,1d119b1cf472972d65671ad44fb325a0a6bccad3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/joliss/jquery-ui-rails,2012-02-18 15:26:23+01:00,e82836a35366c63c58fb97b1e3ca02572df29636,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 18]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 3, 1, 0, 0, 0, 1, 0, 5, 2, 4, 0, 2, 0, 6, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/airspy/airspyone_host.git,2014-02-08 22:43:05+01:00,0a40841fb2baba3fb33c2f0e1b45e55f5ef34a98,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 1, 2, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,2,0 +https://github.com/jasondavies/science.js.git,2011-07-09 12:51:46+01:00,96af5328a672fa670a3852cb68a23de3758551d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/coturn/coturn,2014-04-20 21:10:18+00:00,702b29bc22da6b6e441ed86ea059cbced5b123ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 12, 4, 2, 2, 15, 8, 2, 4, 9, 2, 20, 14, 13, 5, 1, 6, 7, 7, 10, 4, 28, 23, 18, 16, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/abishekvashok/cmatrix.git,2017-06-23 14:34:49+05:30,476808fe193cecc0d8086923c2c57c21793810f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 1, 2, 1, 1, 0, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 3, 0, 0, 0]",1,1,6,0 +https://invent.kde.org/pim/akonadi-contacts,2016-08-05 02:53:03+02:00,f577501874f64133a5d69ef2a150bde3e007bd2e,"[84, 78, 3, 28, 2, 10, 10, 3, 3, 4, 1, 1, 5, 3, 12, 11, 0, 0, 2, 2, 10, 2, 0, 1, 2, 2, 1]","[1, 3, 0, 1, 0, 0, 3, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 16, 4, 5, 3, 4, 2, 1, 1, 2, 0, 1, 2, 1, 2, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0]","[1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/vasi/pixz.git,2010-01-13 01:04:56-05:00,519963676415d412ca271d1967b7e200552f2297,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 19, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/yamldb/yaml_db,2008-06-11 02:22:07-07:00,aa4dec4f2da53e749ee29b89e063e7668b790313,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 1, 0, 3, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/df7cb/sdate,2004-10-16 15:28:11+00:00,175a4c17cbf9a01dd5df3f3a8cf91f6caca9ff26,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/cpina/qdacco.git,2007-05-01 12:27:20+00:00,ef5ec370662f1a21d6ee781af5d82df357b0b208,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lostisland/faraday_middleware,2010-06-28 15:12:17-05:00,7d083d0d810dd50ad93dee46ab4e4f67110756e8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 11, 17, 1, 17, 12, 2, 6, 5, 0, 0, 3, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://git.launchpad.net/safe-rm,2008-06-20 10:52:21+00:00,c815649e93b76114f6f933bd87d4f015d9802ceb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/Mimino666/langdetect,2014-05-12 08:44:46-07:00,d04908e56ac9a53532bf337653b6027426ccdd70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/linuxmint/xapp.git,2016-08-22 13:58:31+02:00,c48674027c110544f3ea78594e2d71a5c807d0b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 12, 0, 2, 1, 0, 4, 3, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,4,0 +https://github.com/Parchive/par2cmdline.git,2003-05-08 08:05:26+00:00,856eed8a736e78ffbaba7a8f56c3f37c2fd74de1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 49, 1, 3, 1, 1, 0, 0, 8, 0, 3, 1, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lxqt/lxqt-sudo.git,2016-09-06 22:29:46+02:00,1f7faa65b46e9596f6925f5188b9d542152e6461,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/PyFilesystem/pyfilesystem2,2016-10-14 21:18:24+02:00,b32e0ec1fbebe933af54ebe209d7fb67ef057b13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 36, 5, 11, 8, 14, 25, 29, 4, 0, 0, 0, 2, 10, 1, 9, 4, 1, 4, 12, 2, 7, 6, 9, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 1, 0, 2, 1, 0, 0, 0]",1,3,5,0 +https://github.com/zapier/django-rest-hooks,2013-09-04 22:12:12-05:00,7c91a1babfec38266d9850741590a7354adcdb73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/kevin1024/pytest-httpbin,2014-05-17 10:43:32-10:00,61dc9550227ba22365bd9211dae778121a633f2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 36, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/backuppc/backuppc-xs.git,2016-05-16 13:00:35+02:00,15d88112eaf531ec25fc89287074ea0cb1826f38,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/websocket-client/websocket-client,2010-12-28 15:42:43+09:00,eadcbf7e891b88e7e7e24ca5bbf0a7df3988dbb3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 8, 0, 0, 0, 0, 0, 0, 2, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/jonschlinkert/snapdragon.git,2015-05-10 20:16:00-04:00,912e5a945d3b0f5cb03ac9380eb42ef2915ee263,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 18, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/justinmc/react-audio-player.git,2016-03-12 22:39:34-08:00,c6ccc406057aa7fb207cfc7af9558cc2e02bf580,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 4, 2, 2, 0, 5, 2, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/composer/semver,2015-07-15 20:54:52+02:00,0ce26349ac7e579342d88e6a79ad12fe10bf8083,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 1, 0, 17, 0, 0, 1, 4, 0, 1, 3, 0, 0, 1, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",29,1,4,1 +https://github.com/jordansissel/xdotool.git,2007-06-23 07:35:14+00:00,3eec05af0c6d2adc05ed2d2f3f0c6df38779b3db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 6, 3, 5, 1, 0, 11, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/AppImageCommunity/libappimage.git,2018-08-23 12:13:41+02:00,ae0258ab484c1259facc8fd85aaa8c7857c3e155,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 19, 2, 0, 0, 2, 5, 8, 4, 16, 4, 1, 9, 18, 30, 25, 18, 1, 41, 38, 13, 23, 66, 43, 19, 1]","[0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 5, 0, 0, 0, 1, 0, 2, 1, 4, 0, 0, 1, 6, 0]",1,3,4,0 +https://github.com/libkml/libkml.git,2008-03-21 19:05:14+00:00,dc6b3f40ba93cfa45a1a2f4d3dcb3d14f0e46ac7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 3, 0, 0, 0, 25, 5, 5, 0, 17, 0, 1, 16, 15, 8, 0, 7, 28, 40, 1, 2, 9, 3, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/google/googletest.git,2008-07-03 22:38:12+00:00,d201456903f3ecae1f7794edfab0d5678e642265,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 2, 5, 4, 0, 1, 1, 0, 2, 7, 1, 1, 2, 2, 1, 0, 1, 1, 4, 12, 3, 12, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/pydata/patsy,2011-02-09 16:53:10-08:00,cc233f8ed080a33ff2488c7a2104a40377e55f11,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jbenden/mod_clamav.git,2013-10-14 09:40:21-07:00,2c2921bb0b4c7be102e2eecaed8d9bbf235e7585,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 7, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 +https://github.com/ros/rospack.git,2017-09-26 07:08:40-07:00,7c60b5fa956320671ee80be4bc00a148a393049e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 1, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/rsnapshot/rsnapshot.git,2003-08-28 20:27:21+00:00,dff5bf2cb6fe84bbc800aa9ac05e8192ff7e5c90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 30, 3, 0, 0, 0, 0, 3, 10, 39, 31, 19, 6, 0, 0, 34, 60, 35, 29, 5, 34, 14, 6, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.freedesktop.org/xdg/xdg-utils,2006-03-21 20:27:09+00:00,76e2c9cf157606f73b297f9a3dbd53125fc82510,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 14, 3, 2, 3, 3, 0, 1, 0, 1, 12, 18, 24, 3, 3, 10, 18, 32, 47, 24, 18, 1, 7, 5, 25, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/cleishm/libneo4j-client,2016-01-05 11:43:50-08:00,414937b0d6b44e5260dd07f2a8cec94d5f14766b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 29, 7, 5, 13, 2, 8, 0, 0, 6, 1, 0, 0, 3, 1, 3, 0, 4, 1, 4, 0, 3, 19, 12, 26, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 +https://github.com/Haivision/srt.git,2017-04-21 18:42:56-04:00,bdeb5d24336f001a0e3d38894eb89af192c0d2d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 2, 7, 3, 4, 2, 19, 28, 9, 5, 1, 7, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 3, 0, 7, 1]","[5, 1, 0, 4, 1, 0, 1, 3, 6, 4, 1, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",2,4,18,0 +https://github.com/zeromq/czmq.git,2011-03-22 11:46:41+01:00,e282512d60e3a3d3101ea7b5ca479640ad09e1d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 25, 27, 11, 2, 5, 0, 0, 1, 6, 17, 20, 15, 2, 2, 0, 5, 5, 0, 1, 5, 0, 0, 8, 1, 0, 1]","[1, 1, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://gitlab.gnome.org/GNOME/libxml2.git,1998-07-24 19:24:09+00:00,01791d57d650e546a915522e57c079157a5bb395,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 4, 2, 0, 0, 2, 0, 7, 3, 4, 2, 4, 8, 3, 3, 2, 1, 0, 3, 0, 1, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 +https://github.com/dejan/espeak-ruby/issues/new,2009-01-04 02:50:15+01:00,e2c0de1cc8f4fed11acaca34b26e6bf67b4cf135,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/phpmyadmin/motranslator,2016-02-22 16:18:06+01:00,a5c55e4dc5e790acdd1600b97245b2acd051494d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[117, 7, 2, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/CristianHenzel/ClipIt.git,2010-11-05 23:37:05+02:00,866aa76e3d3f6b13c8a80610221141e15f85146b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nodejs/string_decoder.git,2014-01-17 11:49:56-08:00,713f66cf29a8ccaffb9ec9650dd5b15949418e7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/include-what-you-use/include-what-you-use,2011-02-04 22:28:15+00:00,dee92b5e0acf7188d4e5bb3db6dec833a6d1ff2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 6, 5, 24, 3, 26, 0, 10, 10, 23, 1, 58, 27, 6, 2, 19, 2, 3, 3, 0, 1, 4, 1, 16, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/daradib/sidedoor,2015-12-31 23:54:20-05:00,d563809bb9733b226a64255db3350114b8597da2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/systemd/casync,2017-01-13 16:08:52+01:00,6c2bc6503fea90ca819b2fa134954f401361eaae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 5, 70, 2, 10, 17, 5, 2, 0, 0, 0, 14, 0, 10, 4, 4, 22, 3, 56, 23, 1, 18, 39, 5, 14, 0, 1]","[1, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0]",2,1,11,0 +https://github.com/jquery/qunit.git,2010-11-27 16:45:17+01:00,f7dab0d9dbc06e1c417b668c229fdb4c31168fce,"[0, 0, 0, 0, 0, 0, 12, 9, 16, 0, 0, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 14, 0, 3, 6, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[5, 7, 0, 2, 2, 4, 5, 0, 0, 0, 0, 4, 0, 7, 2, 3, 2, 0, 0, 2, 1, 0, 2, 2, 3, 1, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",6,0,5,1 +https://github.com/ukui/ukui-menu,2017-01-20 14:25:15+08:00,d7332072a067a7dc65cc7922a7073e7f8ddc0ca4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 5, 4, 2, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/OpenSCAP/scap-workbench.git,2010-03-18 10:36:26+01:00,ab4ad172be70d5e7e4d52505a73984eeab472174,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 8, 3, 0, 6, 11, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",3,1,4,0 +https://github.com/luke-jr/libbase58,2014-08-17 11:52:36+00:00,d761ab64017b7f93c6ad8ec1edc5225eda9b3433,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 4, 2, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/i18next/i18next,2011-12-16 13:52:21+01:00,38f88dc7a55c925ec90e0bdfb918eb574f92d8ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 7, 11, 4, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 8, 1, 0, 3, 2, 3, 1]","[1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,7,0 +https://github.com/mathiasbynens/unicode-tr51,2014-09-28 13:16:34+03:00,c9e905a0f13301f9ae8550d22defb2f87f3a5aec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Oblomov/clinfo,2013-06-06 13:18:34+02:00,aebb58cb9330d64f7f5a814089cba9b952d1a070,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bfirsh/django-ordered-model.git,2010-01-24 14:36:33+00:00,1814f6fee0deb7dd3c9908714612914559b3e5d8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/datalad/datalad,2013-07-30 00:33:49-04:00,dadf69727c889d2b637b9c641ec7441e0181b446,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 1, 13, 4, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 5, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/freelan-developers/freelan,2011-09-21 15:11:48+02:00,ca4bb1fb8abbdb52bd9f35e61a605055914d7650,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 1, 0, 0, 0, 0, 3, 33, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 21, 26, 0, 4, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/libwww-perl/HTTP-Message.git,1995-06-11 23:29:42+00:00,fda3177554bec566170bbe94fc5c48bbdc1a7c80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 14, 74, 32, 35, 2, 60, 21, 32, 15, 60, 71, 10, 2, 1, 0, 6, 0, 3, 4, 0, 1, 2, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gcab,2017-12-14 13:11:42+00:00,1da391c3f762ff2413c688e1cc02515269fd155f,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 1, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jobovy/galpy.git,2011-09-18 12:16:49-04:00,bae798f2d46a63aa0fe34ce19419f121aa77ee19,"[15, 27, 7, 34, 18, 1, 0, 0, 0, 0, 0, 0, 6, 2, 3, 2, 0, 1, 6, 0, 0, 7, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 17, 161, 106, 77, 19, 25, 1, 11, 1, 0, 7, 0, 6, 3, 4, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/twilio/twilio-python,2009-09-14 22:59:23-07:00,2ce43ff021ef2f462dcd243b0a9312bf3befdc07,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/Castaglia/proftpd-mod_tar.git,2011-10-20 09:55:53-07:00,f9ff5f1670f2d06b524a726861ad21744c7ffd7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript,2017-04-15 14:17:04+02:00,248cbf0f63b899d0422667e56ad0db603df9b5a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/airspy/airspyhf.git,2017-07-08 11:55:34+02:00,5254669c546f0acbc4b0288946188c37dc532527,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/igraph/python-igraph,2015-07-24 23:14:30+02:00,2b1d18a02adba76b930fa6b72c3b5e2bf292b282,"[6, 2, 8, 0, 0, 17, 1, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 4, 12, 2, 2, 2, 0, 0, 3, 4, 1]","[3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 6, 11, 0, 0, 2, 0, 1, 1]","[1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",2,0,6,0 +https://github.com/smarty-php/smarty-lexer.git,2014-12-15 19:07:19+01:00,4862b3af01d6db6794f9207e72e077709b1c605c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/accounts-sso/libaccounts-qt.git,2010-03-08 14:41:43+02:00,1e7eee8e1e13daedcd62d16c1adcdf67fd1dc280,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 3, 1, 9, 7, 2, 0, 4, 0, 5, 0, 5, 6, 0, 6, 0, 4, 0, 0, 0, 3, 3, 0, 0]","[1, 0, 0, 0, 1, 0, 3, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0]",1,5,8,0 +https://gitlab.gnome.org/GNOME/gnome-contacts.git,2011-05-05 17:02:17+02:00,1a6482b8a3d9a3176b21ab875ab255633103a18d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 22, 14, 8, 16, 16, 45, 38, 27, 7, 5, 3, 6, 7, 22, 57, 76, 69, 47, 81, 27, 3, 3, 8, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,80,0 +https://github.com/apache/trafficserver,2009-10-10 00:06:30+00:00,e5628fa25197a0e438c2edfffb17a626e0983c8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 4, 7, 6, 3, 68, 5, 16, 6, 6, 0, 2, 2, 4, 4, 26, 29, 27, 17, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/lxqt/qterminal.git,2010-09-11 10:50:10+02:00,e5102869800e48fd94c81a51f318031b5d1b064b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 5, 0, 1, 4, 2, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/doctrine/sql-formatter.git,2012-04-29 23:33:11-07:00,b676c13ae9bb3eef5620cde54556a96fe61bfbf5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 1, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/clojure/core.cache,2011-11-22 21:00:48-05:00,2715844f5e0ec10d4ea83047a084d540058a25eb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/npat-efault/picocom,2010-05-28 00:17:52+00:00,464e25056f19ce1c486e35ad969d8b5928915d4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/andrewrk/libgroove,2013-09-08 21:53:53-04:00,4a41ac68da7b09bd2d834eb2b97c0d8be5669d1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 37, 3, 5, 5, 5, 31, 43, 10, 10, 40, 4, 0, 0, 0, 0, 0, 0, 1, 1, 4, 6, 3, 6, 0, 1, 1]","[0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/kelektiv/node-uuid,2010-12-28 11:06:46-08:00,fba452bc2417d85848682ecf6281ae9290a66af1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 +https://github.com/royhills/arp-scan,2006-06-07 10:24:11+00:00,a747b34a50d86a2340fa8753ecafd72c2509a9e0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 11, 18, 9, 7, 2, 10, 2, 0, 0, 0, 1, 4, 0, 0, 1, 1, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/direnv/direnv-deb,2014-04-05 18:34:54+01:00,1c31b5dd4a4a95ac5b8461a123b3905d7d169fec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 6, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/otsaloma/gaupol,2005-07-24 01:06:50+00:00,0fce5e809e71e91bc1e122193077c624803f40e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 24, 23, 17, 26, 9, 14, 5, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 6, 11, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,0,0 +https://github.com/prometheus-community/postgres_exporter,2015-08-25 03:28:41+10:00,2a08787a90840a27d10ec519005ff92148055cd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 +https://github.com/df7cb/pg_filedump.git,2011-01-18 01:33:27+00:00,8446d97d7240687cdbf18d5ca65916bf18bac30e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://invent.kde.org/plasma/khotkeys.git,2000-07-19 16:50:09+00:00,8effb2095b2004ec3238513a1b55ac3d6ac0e969,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/pagekite/PyPagekite,2010-11-06 10:43:28+00:00,a096b25b945ab9587878d6da336eba643aef2b83,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 44, 10, 7, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 0, 9, 14, 27, 24, 47, 82, 2, 18, 10, 2, 6, 13, 3, 13, 22, 8, 0, 5, 11, 6, 14, 0, 21, 1]","[0, 0, 0, 1, 0, 7, 3, 9, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 +https://github.com/gap-packages/toric.git,2016-12-28 15:18:16+00:00,569b9f9cda82232db43170de55d27b9d61e3cb1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 12, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0 +https://github.com/doorkeeper-gem/doorkeeper-openid_connect.git,2014-06-11 12:19:34-04:00,7dfc9bbce77b22bed5a3fe39350236835bc2c98a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/lipnitsk/libcue,2004-06-24 23:32:16+00:00,38b43d9b56a6b70c82ec94bb30ceba356c3e2e35,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 1, 0, 1, 1, 42, 11, 27, 5, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/savonet/ocaml-gstreamer.git,2009-06-04 18:54:09+00:00,c05510914886cc0b2d9e429b99ed8053b7736f2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/mathiasbynens/node-unicode-data.git,2013-08-25 16:20:29+02:00,7fe712d5de658f8d846324cf77e779d24aa40f51,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 6, 0, 2, 0, 0, 0, 0, 1, 0, 0, 8, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/prometheus-community/bind_exporter,2015-08-21 05:09:14+07:00,fe439e3daedc3d50ccb48ba2e82c099a3951f927,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,1,2,0 +https://github.com/moneta-rb/moneta,2009-02-11 22:56:10-08:00,3cbb15dbe3ea92e53366339b521dbdc7cb08f074,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 7, 0, 0, 0, 0, 0, 9, 8, 1, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,9,0 +https://github.com/brandon-rhodes/logging_tree.git,2013-10-29 15:18:42-04:00,1f1959dad5c3497e2e3b94e80ea7a06dc683da16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/zeroc-ice/ice-debian-packaging.git,2016-05-16 17:14:17+02:00,b6b4ce77bd2cc831c5ac4ca7927aa0f8c3645396,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 11, 0, 86, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 0, 1, 7, 0, 0, 0, 0, 0]","[1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,4,0 +https://github.com/jd-boyd/python-lzo,2011-09-15 11:11:10-04:00,2901b79af6df54d19050a65835e4af54e759ed8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/troglobit/inadyn,2010-10-16 13:58:39+02:00,1f53ed875c207061781a481e07b8866a780792f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 2, 18, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/colmap/colmap,2016-04-07 19:25:53+02:00,fe8f82aee9829c6c828158da2695e2d87a977f74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 12, 18, 5, 16, 12, 11, 0, 8, 3, 11, 5, 0, 3, 8, 6, 19, 52, 18, 31, 4, 46, 12, 16, 3, 9, 1]","[1, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,9,0 +https://gitlab.com/ixion/ixion.git,2010-03-13 20:20:44-05:00,43747fea3ca218d60d69d03dec75ead225e70bea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 1, 11, 0, 49, 8, 8, 7, 11, 8, 9, 15, 0, 70, 16, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/grazzolini/chkboot,2013-11-25 22:27:16-10:00,e41d82c11edadade492861be233e681345d76ed6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://gitlab.com/accounts-sso/signon-plugin-oauth2.git,2015-09-11 14:37:22+00:00,547aa29eae8310fea499060cad3169e3cee4272b,"[0, 0, 0, 0, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 +https://github.com/rpkilby/django-rest-framework-guardian.git,2018-06-22 18:24:37-04:00,ff1979c3f90addcc9653ec4ba0fa19ef3b8fe7b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/nadoka/nadoka,2004-05-01 09:42:10+00:00,56de781877070d3afaa8f6cdafeb48cb503eb6fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 0, 0, 1, 0, 0, 0, 4, 25, 11, 20, 4, 2, 4, 7, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/thestk/rtmidi.git,2016-10-13 08:35:50-04:00,4487feb46001524debbd7f3de7e9ce87b13dd7b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,1,1 +https://github.com/amnong/easywebdav,2012-03-12 13:32:41+02:00,6d2a01a16c9ba8edd0702edc983f67036e8cfab2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/man-pages-zh/manpages-zh,2008-02-14 14:27:15+08:00,f7dfef511be2f6fbf3889306a45d67346a07c027,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 23, 20, 0, 5, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://gitlab.gnome.org/GNOME/accerciser,2007-03-12 20:41:02+00:00,b72aa74a514f71fcfe400c0bdb746fa00575174c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 6, 12, 15, 33, 15, 5, 15, 22, 11, 12, 8, 4, 10, 5, 7, 9, 2, 11, 15, 8, 11, 10, 9, 21, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,41,0 +https://github.com/nelhage/reptyr,2011-01-21 20:13:02-05:00,e30d4ad0a9d5a522e7b20d319f49f2276502ad8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 2, 0, 3, 4, 2, 2, 0, 0, 0, 0, 8, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/jvinet/knock.git,2011-07-05 10:58:55-07:00,2c5648d9df79c48b7b7e2faa22199517bbe86a84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/przemoc/metastore,2007-05-18 22:06:20+02:00,ebf55d9ad7681ecf39bea5c5919119c0ad4fb423,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/tpope/vim-pathogen.git,2011-07-24 17:35:26-04:00,72586074e5d3b4c32cfc9638bae61b1130670f59,"[0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 8, 5, 4, 0, 0, 2, 1, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 +https://github.com/bestiejs/punycode.js,2011-11-11 14:36:59+01:00,23367ea579970867b55a4957b49dc0295b188bfb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 2, 6, 0, 0, 0, 8, 1, 0, 3, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/luakit/luakit,2010-05-04 17:48:24+08:00,d35cd37ea2ca77adfc691a699ea5dd1e36280d14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/rsyslog/rsyslog-doc,2007-03-13 08:26:18+00:00,f0d08887b857fce1fe95a68d29eb7a07cd527d7c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jmschrei/pomegranate.git,2014-11-24 00:03:43-08:00,e9d7596ce3264e340272acebb223e37cdeea1c23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 1, 0, 10, 0, 2, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 1, 2, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/statgen/libStatGen,2010-10-20 12:52:09-04:00,78c2accf9c3b0b662e5ce2417d8cf35557fb3f80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 3, 9, 5, 6, 3, 4, 0, 0, 1, 0, 1, 7, 1, 4, 2, 2, 5, 2, 6, 7, 6, 13, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 3, 5, 1, 0, 0]",2,2,5,0 +https://github.com/bitletorg/weupnp.git,2013-04-26 03:39:58+03:00,a7a8863abcaf7dbadef5344b691ec65095152d3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/osmcode/osmcoastline.git,2012-03-07 15:39:48+01:00,eebf1f569df1aaa97e5591fb976efa47ad9a6911,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 12, 34, 0, 18, 13, 17, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nahi/httpclient,2003-01-11 01:27:50+00:00,e302e0021d5bb5b2e612ed055909203b2d540e55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 9, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/fog/fog-rackspace,2016-02-16 14:55:42-05:00,dda9454750d616a6fd65b4d1b3e9f99120eff82d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 4, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ocaml/dune.git,2016-12-02 13:54:32+00:00,cdcd7e907f949fae66a0e57e569c7e0d46f40c3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 12, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 1, 1, 2, 1, 1, 3, 1, 0, 4, 50, 117, 54, 39, 24, 24, 11, 10, 12, 27, 18, 24, 52, 20, 70, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]",2,2,20,0 +https://github.com/jarun/bcal.git,2016-09-21 23:19:39+05:30,816bdefd80d8577521593e1e5746bb961366f562,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 0, 17, 3, 0, 0, 0, 1, 0, 0, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/pagekite/PySocksipyChain.git,2011-06-12 19:52:37+00:00,0b88c236f75b1d1a417573de16a42b3050777eff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 8, 0, 8, 1, 7, 27, 1, 3, 3, 1, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/csound/manual.git,2014-03-24 09:43:52-04:00,4f094f3576820afe02a4ef29c7efe8edc6ef10e6,"[4, 2, 8, 14, 0, 7, 5, 0, 0, 0, 0, 0, 1, 2, 8, 10, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[1, 0, 2, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 6, 7, 7, 4, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,3 +https://github.com/kamorin/DHCPig,2012-03-12 23:01:01-04:00,6a422b6dff431986068bd1d4bf83967c16ca40e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 9, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/puppetlabs/gettext-setup-gem,2016-02-29 16:33:21-08:00,806156e06df96092ac93632597f7632b0131a38f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 5, 0, 0, 1, 1, 0, 0, 0, 0, 2, 1, 0, 5, 0, 0, 1, 0, 2, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 +https://github.com/ropensci/webmockr.git,2014-11-15 08:30:52-08:00,7fe42252da25357dd4a16f58e3cb21ac1eebce84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/balsa,1998-03-05 18:10:18+00:00,6daf6408273c095f1cb7be80c9910f32a9767bba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 8, 24, 15, 6, 16, 17, 30, 64, 10, 0, 27, 16, 8, 5, 1, 0, 16, 42, 32, 23, 54, 51, 29, 104, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,19,0 +https://github.com/mapnik/python-mapnik.git,2005-02-18 18:14:43+00:00,9f6324dd6e8799f4e721171f84a7c468b82ced2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 2, 0, 6, 5, 8, 4, 1, 2, 1, 0, 0, 0, 0, 0, 12, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/phaag/nfdump,2015-08-09 14:12:03+02:00,3cd8a326873dde82d3f0315ddd1f48c7e1f70f51,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 2, 1, 0, 2, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]",1,1,4,0 +https://github.com/kbandla/dpkt,2012-06-06 14:42:25-04:00,8ac2695ecf2add43fdb545bd98522f13302fc163,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/henrythasler/simple-image-reducer,2010-12-11 11:58:13+00:00,cb8c23b232220e94d67bfa3aa2717a9c9efdc729,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/igraph/igraph.git,2005-09-06 21:26:56+00:00,e93f04e1f4a660b605d1626154182681c0ea5c3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 1, 2, 3, 6, 1, 0, 0, 1, 5, 6, 1, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 11, 2, 4, 3, 4, 2, 6, 5, 2, 1, 1, 5, 2, 1, 0, 4, 8, 10, 6, 9, 6, 5, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",0,1,1,0 +https://github.com/qix-/node-error-ex.git,2015-08-25 15:13:29-06:00,8b6ab032809e480b2a2eda5107e29866af3c4f78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/google/gopacket.git,2012-11-20 16:26:12-08:00,2ceda0fba98db30a02a733b9bfe942dfa7e6cffc,"[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[9, 36, 28, 55, 27, 9, 20, 22, 6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 9, 1]","[1, 2, 3, 3, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,1 +https://github.com/jquery/sizzle.git,2008-08-24 17:30:09-04:00,4257b603e8b0dc3010111dda0807ec41a07d8f56,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 2, 0, 13, 10, 0, 0, 0, 0, 4, 15, 12, 2, 13, 20, 16, 20, 0, 3, 20, 16, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,1 +https://github.com/rolandshoemaker/CommonMark-py,2014-09-13 23:32:37-07:00,abf50406ad2a182a490fced7bb717a0a613aa79a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[102, 91, 17, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/explosion/murmurhash,2016-03-13 23:02:05+01:00,4681f35259643a6278e2ee02d3b5e676d9d32b81,"[0, 0, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 6, 6, 2, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0]","[1, 4, 0, 1, 5, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2 +https://github.com/kilobyte/3270font,2012-09-23 08:36:01-07:00,fb0ed0c2cddcabc323d83f87acef12e0b55bb9fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 4, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/expressjs/vhost.git,2014-03-04 22:31:08-08:00,d6102e0b5baf2dcb9fc7e34161c770a6e0533c0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/linuxdeepin/deepin-picker,2017-10-10 23:18:24+08:00,74b6369a2c9506b4d062bb89029fc97a2c5982dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 1, 0, 27, 0, 2, 2, 0, 1, 1, 1, 0, 2, 0, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[3, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,10,0 +https://github.com/phase1geo/Minder.git,2017-12-23 12:54:43-06:00,aec617998c1467f5951fde2e0fe21a85293d8680,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 2, 7, 9, 3, 2, 12, 12, 8, 12, 22, 13, 16, 15, 15, 11, 20, 10, 31, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,1,0 +git://git.lttng.org/userspace-rcu.git,2009-05-08 11:26:27-04:00,6991f61a6a02d95a4275bcc90aa9bb7037a9e69e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 39, 1, 9, 2, 0, 3, 0, 4, 3, 2, 3, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 13, 7, 10, 28, 43, 12, 8, 2, 0, 1, 0, 0, 0, 0, 0, 2, 2, 28, 38, 48, 33, 7, 9, 2, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,5,0 +https://github.com/typester/Test-RedisServer.git,2012-07-30 17:37:26+09:00,85bbf4cb8aa30bfe93f1d98b9a5f64b5f42bee14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 6, 0, 7, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/yaml/pyyaml.git,2006-02-25 16:08:26+00:00,466963525e6e65ee94b37f54da0d4448ac04f7ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 1, 6, 2, 3, 3, 11, 5, 1, 7, 5, 6, 0, 0, 1, 3, 2, 3, 1, 1, 0, 2, 0, 3, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/fudge-py/fudge,2009-02-01 17:17:41-06:00,e07229ed33f04d9a99dd966f191caf3c1d56c413,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 11, 0, 0, 0, 0, 0, 1, 1, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 2, 0, 0, 3, 50, 74, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/hakaishi/nobleNote,2012-08-13 16:44:46+02:00,84fee555633b60d02c2cffa4e6c698b36a5301a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 48, 43, 31, 25, 33, 6, 0, 3, 0, 1, 0, 5, 10, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 30, 25, 8, 14, 27, 16, 14, 12, 13, 20, 10, 9, 8, 11, 9, 9, 4, 2, 1, 0, 0, 2, 0, 0, 2, 0]","[0, 2, 2, 0, 2, 1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,2 +https://github.com/eavgerinos/pkg-pick,2015-03-15 02:31:54+02:00,e5b58d299c7163bee8a7b4014782e2829d11fcea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/folks,2010-04-02 14:43:08-07:00,4d71ef433b3427036bab270203988cf6463313be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 12, 14, 0, 0, 7, 5, 4, 8, 2, 5, 36, 42, 28, 59, 9, 9, 25, 26, 22, 28, 18, 24, 13, 12, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://github.com/johanmattssonm/xmlbird.git,2015-05-26 20:51:07+02:00,1b857ff10c5c00714e553671c074870aa9b2e1a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 6, 8, 0, 11, 12, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,3,0 +https://github.com/linuxdeepin/deepin-movie-reborn.git,2017-07-28 16:29:14+08:00,71c75afb5006682eb1a35e5dfd94e91e09edc049,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 2, 9, 6, 8, 14, 10, 14, 13, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 32, 68, 60, 0, 66, 78, 76, 72, 2, 36, 58, 20, 14, 10, 26, 18, 9, 29, 33, 17, 7, 6, 3, 4, 1, 0]","[2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 0, 1, 1, 0, 1, 0, 0]",3,2,8,0 +https://github.com/DarwinAwardWinner/with-simulated-input.git,2017-07-20 12:29:22-07:00,6f338aeaedc9a4f5cd3d2dbee9742ceb01a66728,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 11, 0, 3, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gruntjs/grunt-cli.git,2012-11-01 13:40:39-05:00,95e3b9f85daa3ca4799be9cf0b503429c83a5a4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 0, 5, 8, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/jackaudio/jack1.git,2002-05-16 01:34:51+00:00,e1ad1100f7ace35e9e9eb5a6e1333f766726f672,"[0, 8, 7, 5, 10, 4, 0, 0, 0, 0, 4, 4, 3, 15, 9, 18, 8, 2, 4, 0, 5, 4, 3, 3, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 11, 0, 5, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 8, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,0,0,0 +https://github.com/usit-gd/zabbix-cli,2014-10-09 10:47:12+02:00,d3878d14400b9208cee290f88c1a2baefe5ebbc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 34, 14, 7, 6, 7, 4, 1, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 12, 0, 2, 0]","[0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,3,5,0 +https://github.com/r0x0r/pywebview,2014-11-20 13:38:04+02:00,3c54672ea368bdda26c623767dcffb4176a1a72b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/tudo-r/BatchJobs.git,2013-11-08 12:27:16+01:00,7dc68bb4be52941f3c9c7c31ce6101bb66abe29b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/suntong/dbab.git,2013-12-01 19:17:17-08:00,51ff5b84b9797ac1973b1f2c8125a9a37fa81f57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/thp/wavbreaker.git,2003-02-05 01:40:48+00:00,89afdc553880dabd890a6d44ad42db371145969b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 1, 3, 6, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 8, 1, 0, 1, 4, 4, 2, 0, 2, 4, 0, 0, 0, 0, 7, 0, 1, 10, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/davesteele/cloudprint-service,2013-04-23 19:49:49-07:00,6e4e751ff62fb19d34455a71b9e1022931515bd2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 8, 11, 2, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0]",2,1,0,0 +https://gitlab.com/cryptsetup/cryptsetup,2008-03-22 08:23:35+00:00,7dc7b90a9b37626d933771a932b26bcd6a5d0ba6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Pulse-Eight/libcec.git,2011-09-29 00:53:52+02:00,abbca718e0f6b5a20170561beeacafa0b5852500,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 39, 23, 10, 83, 47, 64, 14, 45, 54, 19, 11, 23, 27, 11, 23, 26, 22, 38, 101, 41, 41, 11, 21, 18, 22, 1]","[5, 4, 1, 0, 3, 2, 3, 1, 0, 1, 2, 0, 0, 2, 1, 2, 0, 3, 1, 0, 2, 1, 2, 0, 0, 1, 0]",1,2,12,0 +https://github.com/js-cli/fined,2016-05-27 16:42:36-07:00,cb99d51b73ec4d588594320bab41b6019ad78c6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://invent.kde.org/plasma/kde-gtk-config.git,2011-01-11 14:03:34+00:00,d83eb539fe0b004a3a1ced8935006497b0b7898a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 0, 4, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 0, 0, 6, 0, 1, 2, 3, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/spesmilo/electrum.git,2011-11-04 18:00:37+01:00,6db1a31e58ee15c448448139e7d3a9e72b14268f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 34, 21, 26, 50, 45, 29, 7, 0, 23, 22, 1, 21, 49, 71, 31, 1, 0, 34, 72, 28, 43, 24, 7, 0, 24, 1]","[3, 5, 2, 4, 7, 8, 2, 0, 0, 3, 2, 0, 1, 6, 1, 8, 0, 0, 7, 17, 0, 1, 0, 2, 0, 2, 0]",1,4,8,0 +https://github.com/ncbi/ncbi-vdb,2014-09-24 16:06:14-04:00,68e800e420b7dcb6bab154ea9296f087091a9a03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 51, 47, 44, 25, 47, 13, 20, 23, 14, 24, 21, 17, 6, 0, 5, 14, 25, 28, 7, 9, 5, 0, 0, 0, 0, 1]","[0, 8, 11, 9, 6, 6, 2, 4, 5, 0, 5, 2, 1, 1, 0, 1, 4, 4, 3, 1, 0, 1, 0, 0, 0, 0, 0]",1,12,18,0 +https://github.com/SciRuby/rb-gsl/issues/new,2011-12-30 20:20:32-05:00,1539ae2818c50eacb01cda80b06de12035b7a394,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 2, 6, 6, 9, 7, 0, 3, 15, 14, 0, 5, 7, 3, 9, 2, 2, 4, 2, 6, 2, 4, 2, 19, 21, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0]",2,3,5,0 +https://github.com/costales/gufw.git,2019-10-30 19:57:39+01:00,9869db431cc942b2cef7e959655073c16d74e072,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/RDFLib/rdflib-jsonld,2012-02-03 19:44:38+00:00,ff496514a606ae9f3caba4c63d69a7ebe8d14bbe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/swanandp/acts_as_list,2007-09-10 04:23:59+00:00,e1ed2aac46ad6edff5b16329c38a351a62bc2a81,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/rfjakob/earlyoom,2014-01-29 00:16:37+01:00,98d19981639a3685d631214b2c2c5e97f609f12a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/marioroy/mce-perl.git,2015-08-22 00:46:52-04:00,b8b5ac01611dd437fe3912f95378c7621440b995,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 6, 1, 0, 0, 9, 19, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dell/libsmbios,2007-05-15 15:00:18-05:00,547a4d4c6f2ebf5132ab6dd978a30716869b8598,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 32, 1, 0, 0, 3, 9, 0, 0, 0, 0, 0, 5, 1, 9, 2, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0]",1,2,1,0 +https://github.com/FreeRDP/FreeRDP,2011-06-30 15:12:51-04:00,f6723028dc8d8722743d8d7dfa233ce298d55b1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[80, 119, 25, 53, 41, 87, 86, 135, 71, 90, 34, 44, 82, 30, 19, 67, 54, 25, 14, 26, 47, 52, 26, 44, 47, 16, 1]","[10, 25, 4, 11, 6, 14, 16, 24, 11, 20, 5, 13, 10, 5, 2, 25, 18, 8, 3, 5, 12, 14, 8, 10, 16, 7, 0]",1,16,44,0 +https://gitlab.gnome.org/GNOME/pango,2000-01-13 04:12:07+00:00,282fb5fc9f9d01c4d933a6eb6bee6ae9f0d512c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 4, 5, 9, 2, 2, 2, 3, 1, 0, 8, 1, 1, 7, 5, 8, 0, 3, 9, 6, 3, 4, 0, 9, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,9,0 +https://github.com/acoustid/chromaprint,2010-07-24 22:27:20+02:00,bbc0f6354a5f9e9b9637c91290ed1f4fa895849c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 4, 0, 3, 3, 0, 1, 0, 0, 7, 7, 3, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 6, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/bobrik/node-mess,2013-05-05 19:03:28+04:00,642188052bc2ddbd0300531d37dacfc6fc470071,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/KhronosGroup/OpenCL-CLHPP,2013-01-25 16:25:29+00:00,5199d186f50f82333bfdb40a2e25e656a4068854,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/hackerschoice/THC-Archive,2018-06-04 06:10:53+02:00,1bf41562f218d9a607f88640fb33bf0775424756,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/schrodinger/maeparser.git,2017-05-16 12:09:30-04:00,4138b084534136761d6b105f8ad624f1a43708a8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://gitlab.gnome.org/GNOME/gnome-clocks.git,2012-08-14 21:02:22+01:00,fb4e2ba1d301d81772ea271bc3dfba127069163b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 5, 0, 0, 6, 11, 5, 1, 17, 0, 1, 5, 4, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[111, 73, 83, 24, 18, 57, 8, 6, 2, 1, 2, 1, 7, 21, 15, 25, 10, 11, 10, 7, 11, 5, 5, 3, 11, 12, 1]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,1,85,0 +https://github.com/mtrojnar/osslsigncode.git,2013-02-17 10:16:25+01:00,6aa4280d843a7181acd208e37232734fda9d29c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 15, 13, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/8bitbubsy/pt2-clone,2019-12-02 12:00:24+01:00,0538878aa43d53593ed4432cc9b06a4b15d4e0d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 1, 0, 0, 1, 0, 1, 4, 2, 5, 0, 0, 0, 0, 1, 0, 1, 1, 1, 3, 1, 3, 3, 1, 1, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://gitlab.gnome.org/GNOME/gnome-mines.git,1997-11-24 22:32:29+00:00,34d45b180e2eeb2890d7f41b4a7af0ddc194befb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 1, 5, 1, 5, 5, 13, 5, 6, 5, 13, 3, 0, 0, 0, 0, 0, 2, 1, 0, 1, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,24,0 +https://github.com/intel/ledmon,2011-01-12 22:48:36+01:00,af8f20626e4e36cdf4bb9955fc65f22fec155580,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/powa-team/powa-archivist,2014-06-13 10:16:37+02:00,b83225398d23d79c4eaf3f3ef15d9a416f8eb9f0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 4, 0, 0, 0, 0, 0, 6, 10, 5, 23, 18, 7, 1, 14, 9, 6, 4, 2, 13, 1, 1, 1, 0, 0, 0, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0 +https://github.com/Codra-Ingenierie-Informatique/guidata,2010-09-01 18:02:03+02:00,713504808eb23fa027e82678afa4700e589063fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 2, 1, 0, 0, 1, 1, 4, 3, 7, 1, 3, 1, 18, 1, 0, 0, 3, 0, 0, 0, 3, 5, 3, 3, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/ovalhub/pyicu.git,2015-04-15 18:00:41-07:00,fa65937c59ddbf3b16e5ccb3823a34874703c9f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/aws/aws-xray-sdk-python,2017-09-18 10:17:30-07:00,1a5fab22378612cc424093c35352a55a5b374b64,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 2, 3, 0, 0, 2, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 6, 3, 2, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 +https://github.com/Bioconductor/GenomicAlignments.git,2019-04-19 13:38:17-07:00,eed5642b7a1ef41667f49adbebd72a40db946b2a,"[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 4, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/donnemartin/gitsome,2016-05-07 05:18:42-04:00,438d0b36614d67167a55fc033058071acd00a0f8,"[133, 55, 6, 1, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 19, 49, 98, 40, 111, 74, 128, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[82, 31, 65, 15, 7, 1, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 2, 1, 3, 1]","[7, 9, 9, 7, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,2,16,0 +https://github.com/juliangruber/brace-expansion.git,2013-10-13 14:56:58+02:00,9a5bef783fad507aed02242ce726f89640bf42d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Exa-Networks/exabgp,2009-09-03 22:12:05+00:00,5490f7baf5981279e2360d88c735570bc9f72532,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 0, 0, 0, 0, 0, 0, 1, 25, 22, 18, 6, 16, 8, 4, 0, 0, 2, 2, 24, 5, 35, 20, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/sidekiq-cron/sidekiq-cron,2013-08-25 12:59:23+02:00,9264b851d5369fc51dbc468e06a2b3413c9dc600,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 4, 0, 6, 0, 0, 0, 7, 0, 0, 3, 0, 5, 5, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0]","[0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,8,0 +https://github.com/python-babel/flask-babel,2010-05-29 16:13:19+02:00,7061764f327c945ed4f2c725cd7b39de5d3083e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/openSUSE/hwinfo,1999-12-10 14:36:22+00:00,641c91e978cb831adaf7a033685eda6e02494960,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 2, 0, 3, 1, 13, 13, 8, 6, 10, 13, 9, 7, 0, 2, 2, 1, 1, 1, 0, 0, 0, 3, 1, 3, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/googleapis/signet,2010-09-16 00:16:25+00:00,b610c1d2b70d11ec7154cdb5fa54439a0fd2626e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 5, 1, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 7, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/unixabg/remaster-iso,2019-12-15 17:09:40-06:00,3fe7e7498f11adc01efbeaccacea8d14ec967990,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 21, 2, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/yrro/command-t,2010-07-14 15:52:37+02:00,371322ec48d27973e560340c96f068e60363681c,"[0, 0, 0, 0, 0, 0, 79, 59, 0, 15, 30, 6, 3, 3, 0, 6, 5, 9, 0, 0, 1, 1, 0, 0, 0, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 1, 4, 0, 7, 4, 0, 1, 4, 0, 0, 0, 23, 0, 0, 0, 8, 0, 0, 8, 1, 1, 0, 1, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,3,0 +https://github.com/boynux/squid-exporter,2017-07-08 20:02:29+02:00,51c3383cf5393879a7986065263f2f0502d37a40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/knockout/knockout.git,2010-07-05 09:07:12+01:00,14e4df51ed5753a6e00687e7a22ce88827413cd5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 5, 3, 4, 0, 13, 5, 2, 1, 4, 2, 3, 2, 0, 13, 4, 10, 4, 0, 2, 0, 6, 3, 3, 0, 9, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]",1,1,3,0 +https://github.com/skvadrik/re2c,2003-12-13 04:58:19+00:00,bcf633273c9b17c1985df17b526dab97c1bd9395,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 3, 0, 1, 7, 0, 0, 0, 0, 3, 10, 0, 3, 0, 1, 11, 2, 0, 9, 2, 6, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/schweikert/postgrey.git,2004-05-20 20:02:00+00:00,d9a95964e474d9e6c3eef97fc56b657967faaf1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 7, 3, 13, 10, 10, 12, 1, 0, 0, 0, 3, 0, 0, 3, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/PapirusDevelopmentTeam/adapta-kde.git,2017-09-13 11:13:56+04:00,d1fb57cce445ce30eeeb3d7d2136c8f6f95d4837,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[72, 25, 3, 0, 0, 3, 0, 2, 1, 0, 3, 2, 1, 3, 0, 0, 4, 1, 4, 0, 0, 1, 0, 1, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/Toilal/rebulk,2015-09-08 07:06:45+02:00,4b1141dd2dd04f1bc2172e3d87c96d4dd3509adf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 11, 11, 9, 14, 22, 21, 15, 17, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 9, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/jclehner/nmrpflash,2016-01-25 15:09:00+01:00,cce5d7553a5e390ec554135075315d7d39dde31a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 61, 58, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/mininet/mininet,2009-12-10 00:21:26-08:00,95d9a374b205b2a4be7a244710533e291fa4cb6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 24, 2, 21, 5, 0, 2, 8, 15, 4, 6, 17, 43, 51, 36, 13, 3, 43, 0, 14, 3, 3, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/8bitbubsy/ft2-clone,2019-12-02 11:59:23+01:00,eb17e10e6684c9486165badf5e739557ed01a5b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 2, 1, 0, 0, 1, 0, 5, 2, 3, 0, 0, 2, 4, 5, 0, 4, 3, 1, 5, 6, 0, 1, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,2,1,0 +https://gitlab.freedesktop.org/beignet/beignet.git,2012-08-10 16:14:34-07:00,5173febb3d88b6c38709d390c3b30c79442afd7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[343, 0, 0, 0, 0, 13, 0, 5, 21, 0, 2, 1, 38, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,10,0 +https://github.com/rstudio/crosstalk.git,2016-06-15 15:21:25-07:00,c24cd67217a90f69cb41cabe0be79d855da188fc,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 4, 0, 0, 0, 5, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 18, 4, 8, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",0,1,0,0 +https://github.com/tidyverse/tidyr.git,2014-06-10 09:24:05-05:00,c5b5a2e922c4d8105635fc8b08ead6d38b6085d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 0, 0, 0, 0, 7, 6, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 11, 0]","[4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 +https://github.com/varnish/varnish-modules.git,2016-03-04 13:02:17+01:00,d592a0882d9db2903fdd6f7f665e37ad13e3e415,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 9, 0, 2, 3, 3, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 21, 12, 0, 0, 0, 9, 3, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,2,4,0 +https://github.com/gnuradio/volk,2010-12-07 18:50:28-05:00,fe945d586a74849d30a05b05f151b581836293fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 14, 1, 0, 3, 14, 13, 8, 3, 0, 1, 0, 1, 4, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 1, 1, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,7,0 +https://github.com/epam/nfstrace,2014-02-19 18:49:52+03:00,849c13795e79676aa3bc7a43722b08571b15da27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/LibreCat/Catmandu-RDF.git,2013-09-05 11:39:00+02:00,daf72cc4c52270f2c0cb31c5d4f3fc1b41559ae3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 3, 1, 0, 7, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/guzzle/psr7,2015-02-24 20:17:44-08:00,604ca0bee7c13b5b61f5230666d29b6f65049321,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 11, 0, 11, 5, 0, 5, 2, 3, 0, 0, 9, 0, 8, 0, 5, 0, 7, 2, 0, 0, 0, 0, 4, 5, 1, 0]","[0, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 2, 0, 0]",1,3,13,0 +https://github.com/fail2ban/fail2ban,2005-07-06 23:10:19+00:00,a996ce2c1bd5b73be39fd3518876fb9d421ada8a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[80, 24, 19, 29, 33, 9, 7, 0, 8, 26, 3, 1, 9, 12, 9, 23, 5, 1, 0, 6, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/artemsen/pipewalker,2018-03-15 11:42:56+03:00,c5c9635c542b6a5e73f05623c4d1f74f8b4ca36a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kumina/postfix_exporter,2017-02-17 16:04:32+01:00,307deac3ed291fce9a0003f4cd1b88e3b763d81e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/shadowsocks/simple-obfs.git,2016-12-31 20:20:41+08:00,057aa8717d2263e0e188b6df572b946d9784eb4b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 12, 3, 7, 1, 2, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0]","[0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,13,0 +https://github.com/mbleigh/seed-fu,2008-04-19 18:05:49-04:00,e5be60e28a046a3fdb56c6c9f6db30391cea8df2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 3, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/Castaglia/proftpd-mod_case.git,2011-10-20 10:02:05-07:00,88260ff5e55447ab4c3a74c68ab0c705ab05fd61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://bitbucket.org/sshguard/sshguard.git,2009-04-23 21:23:12+00:00,e000f7732c23106a8581a20d777b6de2c16856f5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 8, 2, 10, 0, 0, 3, 2, 2, 2, 0, 5, 3, 6, 6, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jfelchner/ruby-progressbar/issues/new,2009-02-16 13:40:59-08:00,f24e17a803b41c0e012254415b846157a0a5e157,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/rofirrim/eiciel,2011-11-26 20:26:39+01:00,5c2ad3f1dc8a376c8d00aa6f0775d39be88675dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/systemd-cron/systemd-cron.git,2013-05-27 15:58:51-04:00,77adcc7a746becdebdaf4ce6ea2cd6a9d140b020,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 4, 2, 2, 6, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/X0rg/CPU-X.git,2014-09-21 16:20:11+02:00,8a32ecf022b7b3e989076d2cf37e002eb4d3f2cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/matthiasbock/dymo-cups-drivers,2011-11-08 18:34:48-05:00,aac3cb64a5503fe84a705f22612eb471804e80e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dmgerman/ninka,2011-01-22 00:27:35+09:00,da0fd994d2c96876ffe86cb177e5b8ee8a037078,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0 +https://gitlab.gnome.org/GNOME/gnome-calculator.git,2002-06-05 16:59:19+00:00,5c8747dc9ad8ecd1ee59bc69eaa736ad140124a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Bioconductor/DelayedArray.git,2019-03-28 08:43:01-07:00,a86b94533eed73c41790883d1178dfbd824ac4f8,"[5, 1, 0, 3, 5, 8, 0, 0, 0, 8, 12, 1, 2, 1, 1, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 +https://github.com/minimistjs/minimist.git,2022-10-16 13:40:18-07:00,5368ca4147e974138a54cc0dc4cea8f756546b70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 5, 2, 4, 0, 0, 0, 0, 0, 4, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,1 +https://github.com/jashkenas/coffeescript,2009-12-16 23:10:03-05:00,733a76fdba669da434fd524616f058c62ed78222,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[112, 280, 160, 56, 30, 33, 27, 40, 120, 66, 62, 135, 50, 33, 55, 21, 16, 12, 22, 19, 13, 10, 6, 20, 1, 30, 1]","[0, 12, 0, 0, 0, 1, 3, 4, 1, 3, 2, 14, 6, 2, 2, 3, 1, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0]",1,7,22,0 +https://github.com/perl5-dbi/DBD-ODBC.git,2004-02-19 15:22:36+00:00,02429bdeef171d991fb4f75a924863edb8f7937e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://gitlab.gnome.org/GNOME/mm-common.git,2009-08-04 23:40:45+02:00,c50cd3befea539761a8960d4dfca8bef684694ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 21, 16, 12, 23, 10, 15, 2, 1, 5, 1, 0, 0, 2, 0, 1, 0, 3, 3, 0, 10, 2, 5, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://gitlab.gnome.org/GNOME/gjs.git,2008-10-10 21:37:39+00:00,c94cbf18983fa5cb47fcfd118b8ff94d71b52361,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 33, 8, 7, 29, 16, 1, 9, 2, 3, 0, 0, 4, 0, 6, 8, 2, 1, 10, 13, 2, 0, 3, 9, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,16,0 +https://github.com/rytilahti/python-miio.git,2017-03-05 18:49:25+01:00,a30f9d978bcb5a3726b5d349c9331d7b7c6c8323,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 4, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 14, 4, 5, 2, 6, 0, 5, 5, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/webcomics/dosage,2012-06-20 21:58:13+02:00,f91fb80a39edb4d484e85106da2f6f607dd64e84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 1, 44, 0, 0, 0, 7, 3, 8, 4, 14, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/attr-encrypted/encryptor,2009-01-06 18:55:29-08:00,164e870a19264005f4e8e8606f9c95c329818287,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dascandy/hippomocks,2014-10-07 01:41:26+03:00,cccba75eb4668a6a0ca177e731e26968e26c0c69,"[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0]",2,0,3,0 +https://github.com/martinpitt/python-dbusmock,2012-09-28 13:50:52+02:00,16f22ab98ff0291bbcef619166003d1837afd9ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 6, 0, 0, 0, 11, 22, 1, 4, 0, 0, 5, 0, 0, 2, 4, 7, 0, 2, 0, 0, 0, 0, 2, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,2,4,0 +https://github.com/symfony/polyfill,2015-10-22 15:35:50+02:00,0475f40830470f42e1cd93d0fbdb89ae4362e94b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 2, 0, 1, 0, 5, 0, 2, 3, 3, 3, 2, 0, 3, 2, 5, 5, 1, 1, 5, 0, 0, 2, 0]","[5, 2, 0, 0, 1, 0, 0, 0, 3, 0, 1, 1, 1, 2, 1, 0, 1, 1, 3, 2, 1, 0, 1, 0, 0, 1, 0]",1,2,18,0 +https://github.com/jupyter/jupyter_core,2015-03-25 15:45:05-07:00,b5e1ec6abbade8e33bad403a496fa493b9e37815,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 11, 6, 1, 4, 4, 0, 5, 6, 6, 0, 25, 8, 7, 6, 8, 0, 0, 0, 12, 1, 3, 0, 9, 6, 0]","[0, 0, 1, 3, 0, 1, 2, 0, 2, 1, 2, 0, 5, 3, 1, 3, 3, 0, 0, 0, 4, 0, 2, 0, 4, 1, 0]",1,4,8,0 +https://github.com/hashcat/princeprocessor.git,2015-01-07 14:35:53+01:00,9b7e8e6fb4262d340e522e08411b7a8302161bc9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 38, 23, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 13, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://github.com/gosa-project/gosa-plugins-mailaddress,2015-10-30 11:56:42+01:00,31501f583b11522368613e5c2df7761840df36f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 25, 2, 0, 1, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/luvit/luv,2013-08-24 10:30:19-06:00,79646fe06bdf5140bce7cd9d5c5fa2503db6622d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]","[16, 13, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,0,1,0 +https://github.com/pagekit/vue-resource,2015-05-25 13:44:13+02:00,16496eec5894e41ad8ea0df1df2b9765a1a3119d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 4, 1, 0, 3, 7, 11, 1, 5, 0, 12, 2, 6, 0, 3, 1, 0, 4, 20, 2, 2, 5, 5, 0, 4, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0]",1,2,9,0 +https://github.com/clbr/radeontop.git,2012-07-07 23:23:19+03:00,dec3ce7f72953b30900b1e54b8809fb7db87fff7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/k0lter/pmailq,2007-11-26 23:12:41+01:00,db00de6d5f124c1ae597b00e122e31e1e50e7688,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/jeroen/openssl.git,2014-11-28 14:05:58-08:00,0338d2769914d62a3de09ef7e8d7ca158cf61e65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 11, 6, 4, 1, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 6, 0, 0, 1, 5, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/rails/rails-dom-testing,2013-09-27 21:57:01+02:00,22d0020cfb43a7d66428cb3c195bbadac45cf416,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 +https://github.com/cromerc/opensysusers.git,2017-06-15 21:55:07-04:00,abf31fb801182306170f377125cb49b20dd76f69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/festvox/flite.git,2017-10-21 09:55:35-04:00,e7e4868ad7a65eb6ed2966dd5048c4bfeb14f23f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 4, 2, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 1, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://invent.kde.org/kdevelop/kdevelop.git,1999-01-09 13:16:08+00:00,f12757c0f4c72b06e9dd77b096250c6f04d7cae1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 13, 20, 10, 20, 20, 20, 20, 7, 80, 73, 22, 30, 15, 19, 11, 14, 13, 32, 52, 49, 99, 29, 14, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,14,0 +https://github.com/opencollab/arpack-ng.git,2011-10-23 22:13:59+02:00,b5c045f358d6a231b44776797044c9ba0c67a4d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 3, 3, 3, 0, 7, 0, 3, 3, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/mariocasciaro/object-path,2013-09-20 01:58:52+01:00,4aa70b081a17a8061b47138a1376808900598adb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 3, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/digininja/CeWL.git,2016-04-22 13:09:53+01:00,949ad99420054396b5e69d9335fef6749ec2c1f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/jarun/pdd.git,2017-07-15 21:42:47+05:30,67c7c0fb28c41fa2e419ddc29bd282b49a916634,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 2, 0, 2, 0, 1, 2, 0, 4, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bdrung/ionit,2018-08-16 17:27:50+02:00,39ab86d1d6773b53f7cb4fb61053c1cb527c254a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/private-face/jquery.fullscreen,2012-01-15 16:57:04+04:00,7b8496cf046d4d33a0a9b42ebd7d0953cbc78ad8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/markdown-it/markdown-it,2014-09-02 16:11:34+04:00,c8be724b3f7ca21ccfd51e9f2359f52a2dc9289e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/savonet/ocaml-ogg.git,2008-10-15 17:30:33+00:00,e9875ea3feb04c82821f2b4b4ea7da8dc04ac0e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/br101/horst.git,2007-10-05 12:30:31+09:00,a4fce333b3d93a7d89625cd95c7856daa952a35f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 2, 17, 24, 34, 31, 5, 0, 4, 2, 39, 18, 0, 5, 0, 2, 11, 0, 0, 0, 14, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/kangguru/rack-google-analytics,2009-12-26 20:31:29+01:00,2a940c2c7004b40af6c4406a19345ab1a0745b52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 2, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/Linaro/pkg-lavapdu,2014-01-13 10:02:28+00:00,6ab1ca0485662e7eebf047e409fda37a9b5984c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/timothycrosley/hug.git,2015-07-16 21:01:57-07:00,823750de93f9505eb534063ffdb14548003bb42f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 34, 61, 112, 42, 3, 2, 77, 27, 0, 44, 12, 18, 1, 8, 78, 39, 40, 24, 18, 0, 12, 0, 0, 0, 5, 1]","[0, 14, 14, 26, 14, 1, 0, 14, 6, 0, 11, 0, 5, 0, 3, 25, 11, 12, 8, 7, 0, 4, 0, 0, 0, 1, 0]",2,3,11,0 +https://github.com/rails/coffee-rails,2011-06-29 16:24:30-03:00,d9b1790e6de393bc4120c2f1537238e265936bc9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 1, 0, 12, 2, 4, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]","[2, 0, 0, 0, 0, 0, 3, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,2,2,0 +https://github.com/linuxmint/muffin.git,2012-01-11 17:11:49+00:00,a9a1fdbb3ded8581df23b105019d4d67148b7571,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 26, 0, 7, 1, 1, 16, 0, 0, 147, 0, 2, 0, 3, 0, 0, 2, 2, 0, 13, 3, 4, 0, 0, 1]","[0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 1]",1,2,62,0 +https://github.com/openpreserve/jpylyzer.git,2014-02-14 19:58:43+01:00,583e36e1cae8f64b7376b00cf46b2e2ccea34f85,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://gitlab.xfce.org/panel-plugins/xfce4-indicator-plugin,2009-05-15 14:57:09+02:00,ac4fe3fd7608567165e08aeb76311651adf3ddbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 17, 6, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/gnu-octave/statistics,2018-01-07 17:51:00+01:00,8ed5087296b9d228d4d35796d84b9f1544f0b5f9,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 6, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 6, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/hughsie/appstream-glib,2014-03-12 15:54:17+00:00,32cb5d554937b62f2e6e630afc7cb7dea0c5d725,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 30, 4, 6, 11, 27, 6, 13, 10, 14, 11, 7, 9, 65, 44, 41, 29, 44, 8, 21, 22, 23, 16, 3, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/NeoRaider/fastd.git,2012-02-25 18:20:10+01:00,d86a948a67c44ca1c484cfbe30261f1bf61c59ab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 13, 2, 0, 39, 39, 4, 14, 7, 5, 0, 7, 2, 1, 17, 3, 1, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/geopython/OWSLib.git,2006-04-05 03:33:34+00:00,87b755b45b0e7e33151eaefed42ef53135764b67,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/lloyd/JSONSelect,2011-05-08 06:29:33-06:00,9f26f74734cf5092139d1e58de4cfc1d6cb4f6ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 53, 46, 22, 5, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 3, 4, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://gitlab.gnome.org/GNOME/atomix.git,2001-11-10 18:05:21+00:00,0dd87725e7b0fb644fbd5a6f499672d93fa5dae7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 29, 11, 14, 2, 0, 0, 0, 2, 14, 3, 0, 7, 6, 9, 6, 0, 2, 0, 1, 3, 1, 6, 7, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0 +https://gitlab.gnome.org/GNOME/libgweather.git,2007-11-22 23:17:12+00:00,32e0353d86ffc2df26b19608a680b19cfa3cc04f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 4, 19, 16, 3, 6, 12, 11, 14, 14, 9, 21, 2, 0, 1, 18, 11, 12, 3, 6, 3, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,68,0 +https://github.com/NanoComp/harminv,2000-06-05 22:13:46-04:00,6e6447cfbc3785485d4d09e285c26b1bda693152,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/yamanq/xdrawchem,2016-11-25 12:15:19-05:00,383d07eb6972dee28f1c430246e0d1e2d03dfd61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 2, 3, 2, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/glfw/glfw.git,2009-09-29 22:10:27+01:00,027af59fc5ec6cdcf9885302a2c44cb85cbd41e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/scottkosty/vit.git,2013-06-15 11:36:01-04:00,9671b6fdf5e79d3b251c27f9acbf706d97c7e94e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 0, 4, 0, 0, 0, 8, 3, 0, 0, 7, 0, 11, 2, 3, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/openlink/virtuoso-opensource,2006-04-11 17:56:16+00:00,e5eaf9fce2f7ebe2cb2ad01f092abc53d81680bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 49, 18, 0, 0, 31, 74, 69, 14, 0, 56, 8, 0, 75, 65, 50, 81, 25, 26, 15, 12, 13, 0, 32, 0, 33, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rtomayko/posix-spawn,2011-02-26 19:45:02-08:00,b0a8a5406ca5dbe1029ef44a16829d857c285491,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[143, 10, 4, 2, 0, 5, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/zsh-users/zsh-autosuggestions.git,2013-10-26 13:05:17-03:00,5595bcde18041a1be3ce3791bf88f13d44524848,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://github.com/mytbk/fqterm,2014-04-04 07:33:30-07:00,c4b028ad53f7b362a864de24828d7cc39ff67b0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 2, 3, 11, 1, 5, 1, 3, 7, 1, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/fargiolas/gnome-mastermind,2007-04-19 11:32:55+00:00,e950ffef03f3b7cd39ca0548a9610f6f882be311,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 4, 5, 15, 24, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dell/dkms,2007-05-16 22:46:05-05:00,3c79d2e7f7b25135ce7edac2fd294bc5b0ddc637,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12, 10, 5, 0, 0, 4, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/petkaantonov/bluebird.git,2013-09-02 16:31:08+03:00,9105389549d31333f4ba34050cf12e23fcbcd3bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 59, 27, 49, 55, 86, 61, 55, 23, 27, 24, 26, 59, 41, 2, 0, 10, 0, 13, 9, 10, 19, 32, 9, 8, 19, 1]","[0, 3, 0, 2, 7, 11, 12, 5, 0, 1, 0, 0, 0, 4, 0, 0, 1, 0, 2, 4, 3, 4, 9, 2, 2, 2, 0]",1,1,21,0 +https://github.com/hfst/hfst-ospell.git,2010-07-08 15:15:40+00:00,d92e82c407aa53cbdadaef23bcb06e7adf13d45f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 35, 1, 0, 1, 3, 0, 0, 0, 0, 3, 0, 0, 4, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/italiangrid/voms,2013-06-06 01:38:54-07:00,675a95cee2871ffd9372d6a11fa7d6086569aace,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 34, 9, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 1, 5, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,3,4,0 +https://github.com/evgeni/hdapsd.git,2008-12-13 22:11:33+01:00,01cd513f6da5fc715345e719e57c4e8ad727a529,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 6, 21, 24, 0, 0, 0, 0, 0, 0, 9, 10, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/DonyorM/weresync.git,2016-11-05 10:52:09+06:00,d8e61eafa964b3e987c274bf6b1a0e86fbe674d5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 11, 3, 2, 3, 7, 6, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 2, 1]","[0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/theory/class-meta.git,2002-04-27 22:02:40+00:00,a2b9a9d099dc1209fce236bb6375fbeeffce312c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 5, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libical/libical,2014-06-28 15:30:53-04:00,c363e524f603b4dbeb5bbde5971e7d1c9b26b206,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 1, 0, 0, 2, 1, 2, 5, 11, 9, 15, 4, 4, 1, 2, 6, 7, 7, 2, 5, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/openscenegraph/OpenSceneGraph.git,2001-01-10 16:32:10+00:00,70208ebc0616d0045c99f93062476ca210a45efd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/python-social-auth/social-app-django.git,2012-12-12 08:08:43-08:00,3de99ca0a4bbda43681e8c6a54d56e31ad5011d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 9, 14, 0, 0, 0, 2, 0, 0, 12, 43, 6, 3, 98, 40, 46, 18, 0, 16, 0, 0, 3, 12, 0, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,6,0 +https://gitlab.com/coringao/runescape,2017-10-23 13:21:18-02:00,437d27d749a599bc43ac2d6629e58618efc95867,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sparklemotion/mechanize.git,2006-03-17 16:20:16+00:00,f98e25450ac2985e82ea5372e234c8420b17798d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 11, 7, 4, 2, 0, 0, 2, 1, 0, 1, 0, 1, 0, 1, 0, 3, 2, 2, 4, 4, 1, 1, 13, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/FasterXML/jackson-core,2011-12-22 18:06:25-08:00,e0f0754dae9c76af0c2b060bddf373d5cc0b5102,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 0, 11, 3, 3, 0, 2, 4, 0, 4, 1, 7, 10, 1, 0, 3, 4, 2, 0, 5, 1, 0, 2, 1, 0, 1]","[0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/sanger-pathogens/ariba,2015-02-11 10:13:07+00:00,5ececb712a24a40dc15434ec5552df404ad059c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 35, 0, 0, 0, 34, 2, 21, 0, 7, 0, 0, 4, 0, 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 1]","[4, 8, 0, 0, 0, 8, 0, 5, 0, 3, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,6,6,0 +https://github.com/expressjs/parseurl.git,2014-03-07 18:08:39-08:00,4b5325e98df62bf2c96979f7b1bd8ef936923f64,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 14, 2, 0, 0, 5, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/timchen119/tpm2-initramfs-tool,2019-05-09 15:01:43+08:00,e5fef65f14459cba7c092ff65c65b0ec96dd0b33,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 +https://github.com/holylobster/nuntius-linux.git,2015-03-01 12:18:14+01:00,a0c673379b65c2512cea6a213bfeb1c2642bce0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 25, 22, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 5, 1, 0, 0]","[2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,11,0 +https://github.com/sleuthkit/sleuthkit,2008-09-28 22:52:48+00:00,3a78df5c010fde1b12ecec914bf4caa549565e55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 8, 1, 10, 0, 6, 2, 2, 2, 0, 0, 0, 8, 0, 6, 2, 0, 12, 4, 0, 1, 1, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/broadinstitute/barclay.git,2016-10-26 18:06:45-04:00,fd6bc2d906b2ea9fd812de0d1aee89067bb334d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 0, 0, 2, 1, 3, 6, 0, 3, 5, 3, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 1, 3, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/milkytracker/MilkyTracker,2008-01-05 19:45:46+00:00,0836c4318800e81795a17e209c406ea380ce90f6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 28, 11, 5, 6, 6, 31, 8, 2, 5, 5, 8, 6, 16, 12, 4, 5, 4, 1, 2, 2, 11, 5, 2, 9, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/httprb/http.rb,2011-10-05 21:27:56-07:00,919b248ec4ecfedbb9c387b6e5c54f53a37f964e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 9, 0, 17, 0, 39, 2, 1, 8, 10, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0]",1,2,5,0 +https://github.com/tox-dev/py-filelock,2014-02-23 01:28:10+01:00,2157efb8b57666699fcf15bf03c3771c1571279c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/potassco/clasp,2014-11-12 09:00:51+00:00,e00dcf9b974a4c168382ef2ac58dea28a42fd883,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 5, 3, 5, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sphinx-contrib/restbuilder.git,2013-08-25 15:39:20+02:00,152f7615ca0794ee9d290072a3989bd1419d0667,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/candlepin/python-iniparse,2004-10-03 22:47:52+00:00,fc4d966d9b98d09f929ec6847672b3548928bcdb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 1, 0, 0, 0, 0, 0, 0, 0, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/redis/hiredis-py.git,2011-01-27 11:03:32+01:00,f0e0a6f225a7ea1128cf91362f415a7f365a58a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/erniebrodeur/ruby-beautify,2011-12-27 10:29:56-07:00,67f0d1c6ac43d1f0fa70b2b42a1517cbb79749ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 1, 6, 7, 2, 0, 0, 0, 0, 0, 2, 0, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,5,0 +https://github.com/robdimarco/omniauth_crowd,2011-03-18 00:12:16-04:00,69ff6afa9dc1f87d1345e4f539991e84f566f874,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lsyncd/lsyncd,2008-08-06 13:04:01+00:00,814c133e8210ed7e1ab991b703a30f6845a366bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 15, 4, 0, 2, 11, 3, 0, 11, 0, 10, 5, 0, 1, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ubuntubudgie/faba-icon-theme,2014-04-28 15:58:40-04:00,38742752c3e35d36c43399a5d9534a3185dcba77,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 3, 5, 0, 0, 2, 11, 3, 1, 0, 8, 7, 2, 0, 1, 0, 2, 2, 55, 43, 12, 64, 0, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://invent.kde.org/plasma/kactivitymanagerd.git,2012-01-07 14:22:31+01:00,569ce24fd19eeb7b414c1d6f6a36201492b54517,"[5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 7, 7, 6, 0, 1, 1, 5, 8, 1, 2, 11, 17, 15, 15, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 3, 0, 0, 0]","[8, 10, 17, 16, 12, 4, 4, 1, 20, 27, 6, 10, 5, 2, 9, 8, 3, 7, 13, 5, 7, 4, 3, 4, 3, 4, 0]","[1, 0, 2, 5, 0, 0, 0, 0, 2, 3, 0, 1, 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]",9,2,10,2 +https://github.com/JPEWdev/icecream-sundae,2018-04-10 09:09:46-05:00,ae8088e311bf53569d315d7b99c9ef51d726ce40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 16, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/ComplianceAsCode/content,2011-06-08 18:45:05-04:00,540a78f26191a69651a167d256b5af47fd3eb983,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 22, 6, 0, 9, 7, 5, 2, 15, 6, 20, 26, 24, 5, 8, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 2, 2, 4, 0, 0, 2, 0]",1,3,2,0 +https://github.com/metlov/cycle.git,2022-10-13 20:10:36+03:00,da824ed3edf328558634c3ab8dceeeb7dc58d1a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nikic/PHP-Parser,2011-04-18 19:02:30+02:00,aea5e433490c399a2763c9e3830cca88466bba68,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 17, 30, 2, 0, 4, 4, 1, 5, 0, 0, 13, 24, 5, 0, 2, 1, 0, 9, 7, 0, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/df7cb/newpid,2013-01-21 22:43:44+01:00,3d4adca89aab7f1bbc06f9971280b62b83c262fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/silverjuke/silverjuke.git,2015-04-02 12:06:06+02:00,648b51c1c59965ebb37ab5b76d9845784d6c8bbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 21, 21, 40, 3, 13, 8, 20, 36, 11, 2, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 5, 0, 1, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/openSUSE/open-build-service,2006-02-21 15:31:42+00:00,97561db8664eaf86a1e4c7b77d5fb5d5bff6681e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 8, 21, 55, 6, 3, 8, 10, 18, 25, 0, 10, 19, 13, 15, 17, 3, 3, 0, 0, 0, 5, 5, 14, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/NanoComp/h5utils.git,1999-11-21 20:24:59-05:00,e7daaee3dcd9a6fd2a2fcc67db83c50ce6467f63,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 2, 0, 0, 10, 0, 1, 5, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/puppetlabs/puppetlabs-xinetd,2010-06-24 15:49:51-07:00,cb1323333b8734f35b90cee20b6a8a420f3fd885,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/d-feet.git,2007-12-04 20:05:53-05:00,9264d63b0c7aca3e2c3253e172e05a01c2772f33,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 3, 0, 4, 5, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 5, 1, 0, 13, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/alecthomas/voluptuous,2010-07-15 19:55:52+10:00,465e102b51935ae7cc17150223522ae843907ef8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/iris-edu/libmseed,2012-02-28 21:25:12+00:00,9dcd8aeccefe71ee0ae8cca9eccea10aa7d29d8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/maxmind/geoip-api-perl.git,2002-11-21 06:15:12+00:00,fc2089cd8b49bb040d0287be0e3e73ed63e16e85,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/TooTallNate/ansi.js.git,2012-01-25 09:18:32-08:00,005293c2f24c9b194b22ff111ec0cf4b0503ad80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[41, 2, 2, 0, 0, 3, 17, 10, 2, 5, 5, 0, 0, 16, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/KJ7LNW/xnec2c.git,2008-02-25 17:38:42-08:00,7be8f3299cfecf403cf9d42db6548e0a090e2b26,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/thestk/stk,2009-03-24 22:41:14-04:00,6485746ee95310999a895fcbac123794d79b320d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ldx/python-iptables,2010-10-28 17:20:20+02:00,35053c97beea510acdb14198b9c3b8e38b2e68dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ThomasHabets/simple-tpm-pk11,2013-11-20 21:21:05+00:00,f187ea9501aa6b6fb642a57162e2071795b73019,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 22, 13, 5, 9, 7, 4, 0, 0, 0, 0, 1, 11, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,5,0 +https://github.com/theory/params-callbackrequest.git,2003-08-14 02:05:46+00:00,b09f6f951006e5b7b7d103441c4d81e47e2aa152,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 14, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/gpernot/wfrench.git,2018-09-07 09:10:28+00:00,afdcf27aba78d8dcc6b5fcce25b6a35647b2972c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/linux-can/can-utils.git,2015-09-04 11:16:17+02:00,0e3ff3b3157e456d4b6343f5d4b42ef692bce538,"[1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,0 +https://gitlab.com/compiz/compiz-bcop.git,2007-03-05 17:40:18+00:00,040c0a7ebbdd057cc3d5a950053fd4f7fa5a1927,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 11, 7, 0, 19, 4, 5, 5, 3, 0, 0, 2, 4, 3, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,4,5,0 +https://github.com/jarun/buku.git,2015-11-02 01:23:18+05:30,ac9d15f8ba53a168c3be4444915f96ede496e06c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 71, 0, 0, 0, 2, 19, 4, 0, 0, 0, 1, 0, 1, 2, 0, 6, 3, 10, 39, 49, 6, 39, 10, 55, 44, 1]","[0, 5, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 0, 2, 2, 0, 1, 0]",1,2,3,0 +https://github.com/IndigoUnited/node-cross-spawn-async.git,2015-07-01 21:53:25+01:00,b3ffca525bdcd5bf2aaec4433795b7c3efd91cd2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 9, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0]",1,1,3,0 +https://github.com/LibreCat/Catmandu-SRU.git,2012-10-05 09:42:48+02:00,775630f1a6562d38748f277baf095697deee154b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/garrigue/labltk.git,2013-09-09 21:13:04+02:00,7e916f946c528e7e5e86ae69a0a2a396f8134a71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Feh/nocache,2012-02-05 20:48:34+01:00,0aa836ce640c57b7f42715ca033f0c4cbab4de49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/Icinga/icinga2,2012-03-28 13:24:49+02:00,e11994038dc0a70331da06b7e293838752f3cbaf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 7, 12, 43, 19, 25, 25, 21, 35, 17, 12, 45, 38, 48, 47, 58, 19, 9, 28, 15, 11, 2, 11, 12, 38, 50, 1]","[1, 0, 1, 0, 1, 0, 1, 1, 2, 1, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0]",1,2,1,0 +https://github.com/jopt-simple/jopt-simple.git,2011-04-07 16:27:14-05:00,0fa4b9559363774578653537d06137089e067ef8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 7, 0, 2, 0, 4, 0, 0, 1, 0, 8, 1, 0, 3, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/mrkkrp/zzz-to-char.git,2015-08-31 23:39:27+06:00,2737056ce316587c1564b8ca92b51f325807867a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mathiasbynens/jsesc,2013-06-05 11:59:59+02:00,8adba331b01c4d26ba95addfe2c19af5dfd9af91,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 17, 0, 22, 0, 0, 0, 41, 7, 2, 7, 0, 0, 0, 0, 0, 0, 0, 2, 0, 8, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/prometheus/snmp_exporter,2015-02-22 23:23:29+00:00,e56dc41bb0ba5182f0ffe89db33f60815ade8fd0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 2, 17, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/tdiary/tdiary-core,2002-02-27 02:12:31+00:00,1b8b693d8c6b8fa0c00de21033b5db2791fcc04a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 11, 8, 6, 8, 5, 4, 7, 2, 0, 4, 15, 4, 6, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/docker/libkv.git,2015-05-11 17:23:55-07:00,712d8e164370fac1e82572101c12034f9254d456,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 15, 14, 20, 18, 4, 3, 4, 0, 2, 5, 1, 4, 10, 3, 4, 1, 1, 9, 12, 9, 18, 4, 0, 0, 1, 0]","[2, 1, 2, 5, 7, 1, 1, 2, 0, 1, 2, 1, 2, 4, 2, 1, 0, 1, 3, 6, 3, 9, 2, 0, 0, 1, 0]",1,5,16,0 +https://github.com/RubyCrypto/rbnacl,2012-12-01 02:38:20-08:00,48f4a4a2e851fc8ebb4a89890ffc6b580e31c4c3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 12, 6, 0, 0, 50, 52, 52, 41, 16, 10, 39, 20, 0, 0, 0, 7, 2, 0, 0, 0, 0, 2, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 6, 1, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,5,0 +https://gitlab.gnome.org/GNOME/gitg.git,2008-06-24 00:04:20+02:00,11fc353c7beabe456723fe46ce0683c36b3bc070,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/opensdmx/rsdmx.git,2013-06-12 15:18:24+02:00,70096807ae47556f1531a09bd3d154d8f535a0b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/libidn/libidn2,2011-01-04 14:39:09+01:00,38f7c8da184d89b9dc318a72da53094cbfa1b82e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[72, 4, 0, 5, 0, 0, 0, 14, 41, 9, 8, 41, 18, 1, 0, 5, 0, 21, 0, 7, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/phpDocumentor/ReflectionCommon,2015-05-31 11:52:59+02:00,48ccd76e21889fa83b6b3f857b01e30f296b6779,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 4, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 +https://github.com/reduz/zytrax,2018-05-05 15:23:55-03:00,ea2498ec4b2842d654f5f6bcebf82b2cde7b3392,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nhorman/dropwatch,2009-03-03 09:24:46-05:00,bdfc66cb503c0f2076a41bd46184d4aafd751838,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 6, 12, 1, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/scravy/node-macaddress,2015-03-30 20:18:15+02:00,5f5275c3e3d58a5862fbfac036471c880165546f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/theyamo/CheeseCutter,2013-11-02 21:26:21+02:00,a9de00fb1286ffc5a7c68f0610b472e0e6348a13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 25, 1, 3, 26, 17, 4, 0, 4, 0, 0, 0, 5, 0, 0, 0, 4, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/ahcm/ffindex.git,2011-08-24 11:46:11+02:00,4825aca7c9f87279429261e35cfbdf20b7122908,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 1, 0, 0, 0, 0, 0, 7, 2, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/jaymzh/pius.git,2009-02-05 21:36:34+00:00,b74512b06d65b9667af4844262f33dff8a78a2b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 1, 0, 0, 4, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jrowen/rhandsontable.git,2015-03-04 20:31:12-06:00,a3c145bc09b60cab8507a1c4c4e86003cbeb15ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 9, 0, 0, 19, 36, 5, 1, 1, 0, 0, 0, 0, 0, 14, 19, 2, 0, 7, 0, 1, 21, 16, 12, 8, 6, 1]","[2, 0, 0, 0, 3, 6, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 0, 2, 1, 1, 0, 0, 0]",1,3,5,0 +https://github.com/mati75/openbox-menu.git,2013-11-01 18:17:55+01:00,916daef843e14fff0bbf9fee1f4975ac062c027b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/developit/preact.git,2015-09-10 22:43:47-04:00,e9f1a5645ef7d10ba05c601b94d70e4e4d0bd57f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 4, 0, 9, 8, 1, 4, 6, 4, 2, 16, 0, 5, 3, 0, 6, 1, 2, 16, 37, 17, 10, 52, 6, 18, 1]","[0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 6, 0, 2, 0]",1,2,8,0 +https://github.com/theseer/Autoload,2012-12-24 01:17:04+01:00,87084d6f47e365baf6b84ea0a470249e1818b39a,"[0, 0, 0, 0, 7, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 17, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://gitlab.com/rastersoft/devedeng,2014-08-06 01:04:14+02:00,b5f18da964c7078d5cfe1bab1c710e8c9c80db01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 9, 14, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 3, 17, 0, 0, 1, 1, 10, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/flask-restful/flask-restful,2012-10-16 21:07:16-07:00,a4465e3e9cc4c30e7f53e0b908f734a42ed32da4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 1, 0, 5, 7, 2, 6, 7, 14, 2, 1, 5, 3, 1, 1, 0, 0, 0, 4, 8, 0, 6, 8, 9, 30, 0, 1]","[6, 0, 0, 1, 2, 1, 2, 1, 6, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 4, 0, 2, 1, 2, 3, 0, 0]",2,5,15,0 +https://github.com/ocaml/camlp4.git,1995-09-03 15:22:54+00:00,59cf50795583b4308a541ab85bd636ddfc9042ce,"[0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 4, 2, 8, 18, 1, 0, 22, 36, 26, 47, 0, 22, 0, 24, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 19, 9, 21, 18, 5, 14, 22, 30, 41, 17, 15, 29, 23, 21, 33, 4, 13, 19, 0, 0, 9, 2, 18, 23, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/unclechu/node-deep-extend.git,2011-08-18 18:59:20+02:00,209173ae6d899450fda5eb9ca5646694b99a1dfd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kilobyte/ndctl,2015-06-16 20:20:23-04:00,ff8e15231e0f98355f4becc80e1c21e2c39c45b3,"[2, 3, 7, 10, 11, 1, 5, 0, 0, 10, 18, 0, 1, 12, 4, 3, 2, 17, 12, 0, 6, 6, 0, 4, 1, 2, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 0, 2, 0, 5, 2, 0, 0, 4, 3, 0, 13, 1, 0, 0, 0, 12, 0, 0, 7, 1, 2, 1, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://github.com/Dragon2fly/xlrd3.git,2007-01-28 16:02:30+00:00,b9c962e12e5c704bec71c071864ad33beb113e7a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/micromatch/parse-glob,2015-02-07 16:16:25-05:00,4f7b0c9de00890771a8fb30a0ac5ed066da2eb6a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 7, 0, 4, 5, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gdk-pixbuf,1997-11-24 22:37:52+00:00,9508b76bd2401b6b9e289b5c8ec9fc0e08909283,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 21, 17, 32, 16, 31, 19, 35, 33, 41, 22, 21, 46, 46, 40, 100, 38, 28, 35, 29, 18, 7, 24, 13, 14, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,46,0 +https://github.com/RoelofBerg/limereg.git,2014-08-03 21:52:04+02:00,83ed5ec5759cca0b5a0811c03d77e4a1c810ff70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lunarmodules/luaexpat,2011-06-01 22:14:25+01:00,1d90f50de803cbbf40bf0f0ef310bc106a79f270,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kodi-pvr/pvr.dvbviewer.git,2015-02-24 16:21:01+00:00,34205049a29a27655523edfb4f5e9f2e4d2c18e0,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 5, 2, 1, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 3, 1, 1, 0]","[0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",8,6,7,0 +https://github.com/jonschlinkert/extend-shallow,2014-10-06 04:36:58-04:00,13b67acca68028bddf985339aa4b6288e1ab4357,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Javanaise/mrboom-libretro,2017-01-21 14:48:30+01:00,090ae05d4adc2689622093a985405fd79f3b6cd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 35, 4, 16, 12, 4, 2, 1, 0, 1, 1, 28, 19, 4, 3, 0, 2, 2, 0, 3, 5, 3, 1, 7, 7, 5, 1]","[1, 4, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]",1,3,11,0 +https://github.com/ntop/nDPI.git,2015-04-19 07:21:14+02:00,7fa4694dadf869d1de2baa99383308a163902f8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 3, 11, 32, 4, 4, 3, 20, 12, 14, 11, 33, 6, 5, 2, 1, 5, 7, 5, 0, 0, 5, 2, 10, 11, 1]","[0, 0, 0, 0, 6, 2, 0, 0, 3, 2, 3, 3, 3, 1, 2, 0, 0, 1, 2, 2, 0, 0, 1, 0, 2, 2, 0]",0,7,24,0 +https://github.com/martinpitt/umockdev,2012-07-20 06:01:51+02:00,ffa9d25ff0d49219b4c2efe109e85ee6ea29fac2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/Bioconductor/IRanges.git,2019-04-19 12:19:05-07:00,98f3a42261f936b8afc078cc1444f215f98a3816,"[3, 3, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 2, 2, 2, 3, 2, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 1, 1, 0, 0, 0, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/jashkenas/backbone,2010-09-30 15:48:05-04:00,8a960b479859d343a6c734eb1a5817a2ff6c2b52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[52, 80, 52, 35, 14, 30, 13, 10, 14, 12, 10, 17, 3, 3, 4, 3, 2, 2, 20, 5, 0, 3, 0, 0, 8, 0, 0]","[8, 8, 8, 6, 2, 0, 1, 0, 1, 2, 2, 2, 0, 0, 2, 1, 0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 0]",1,6,30,0 +https://github.com/catchorg/Catch2.git,2010-11-09 23:24:00+00:00,d80260001bdc4811b5c63604041e3139fb80ecd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 1, 5, 0, 6, 1, 14, 17, 11, 11, 4, 11, 6, 2, 9, 7, 0, 21, 10, 9, 5, 9, 2, 10, 4, 0, 1]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/mariuz/flamerobin,2004-11-22 11:34:42+00:00,8153b493d66ee7aae55e7b34e0d7bddacf4999ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 9, 1, 1, 2, 0, 6, 2, 1, 4, 13, 5, 0, 6, 18, 21, 21, 14, 3, 2, 2, 21, 3, 0, 2, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jnordberg/coffeeify.git,2015-11-20 22:39:33+01:00,ae21668b56151270f8aff4b9df0243cfa996dce9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/cubiq/iscroll,2010-12-03 20:20:11+01:00,20a64d1ba6bf1f9219043d8ef3541c0abbc93e5c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 4, 4, 2, 0, 1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/hoytech/vmtouch,2012-01-24 21:49:00-05:00,a302136106c0be1401aedd5040ce0cebec0c8bc8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 0, 11, 2, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/maxmind/geoipupdate,2013-10-16 07:54:45-07:00,850f8d389d884453187294b4d1a9bf5837bda6af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 47, 27, 5, 14, 13, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 5, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 10, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0]",3,3,3,0 +https://github.com/TheLocehiliosan/yadm,2016-09-06 22:18:34-05:00,d7a037e46945504a906f359a094f6b0b48bb2792,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/dyne/Tomb,2010-08-22 15:04:19+02:00,f8ed58afc3bd69e3e4285ca2db219d465f59b369,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 9, 15, 9, 47, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]",1,2,1,0 +https://github.com/jquery/jquery-mousewheel,2008-10-15 20:35:05-05:00,02de3f0becd8d4a4989c68b5113a6380a009e630,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/FasterXML/jackson-dataformat-yaml.git,2012-03-30 16:15:45-07:00,54fb6330f9cc5d0a1c156ec70916fdc45e68edf8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 1, 1, 4, 3, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 1, 3, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/sebastianbergmann/object-enumerator,2016-01-28 07:33:39+01:00,ba2412bf427b0ed536aded24be510a1216529af9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mongodb/motor,2013-01-11 13:34:44-08:00,e85a13c1492b6f9f86e67ba93ff9fb425988bdd5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 38, 47, 6, 24, 7, 29, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/psf/black.git,2018-03-14 12:55:32-07:00,e74117f172e29e8a980e2c9de929ad50d3769150,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 41, 30, 17, 19, 34, 5, 24, 18, 30, 13, 36, 33, 13, 3, 3, 1, 0, 2, 0, 0, 0, 20, 12, 0, 2, 1]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,52,0 +https://github.com/kevin1024/vcrpy,2012-05-30 20:52:26-10:00,431e385ded95a6f5c80e90ae20f78e927eb96f0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/guillaumechereau/goxel.git,2015-10-05 09:07:00+08:00,6fcfb08a1d6329fc4958682a608002c92e1fe127,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 32, 39, 11, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 43, 24, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/androguard/androguard,2011-11-04 09:43:27-04:00,00e8cdcedda79618c1678b5f4599d1e8e41ab736,"[6, 13, 3, 2, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 9, 10, 10, 6, 7, 4, 1, 0, 3, 4, 2, 4, 2]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 2, 4, 3, 0, 1, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, 11, 10, 6, 1, 1, 3, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://gitlab.gnome.org/GNOME/almanah,2008-05-24 20:41:01+00:00,80a18bb6e14b0cf6ff109f5b464756a3622c109b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 0, 4, 4, 13, 0, 7, 1, 2, 1, 0, 2, 0, 2, 0, 1, 1, 2, 1, 5, 5, 7, 3, 0, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 +https://github.com/gosa-project/gosa-core,2005-05-12 06:44:40+00:00,e299f0ca47a924516f2afbe4e922f2418b75315c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[64, 208, 119, 41, 111, 76, 99, 22, 21, 22, 47, 45, 39, 77, 36, 62, 45, 44, 39, 34, 52, 75, 59, 73, 101, 96, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0 +https://github.com/ekenberg/quotatool,2012-02-18 13:03:42+00:00,56e93c9c1db7d006de45fecc4d8da397074a7743,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/spyder-ide/qtawesome,2015-03-04 10:51:56-05:00,04bf55003043a79c3426631a381734f174cff306,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 23, 10, 4, 4, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 8, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/parklab/nozzle.git,2013-01-02 09:41:50-08:00,33893468ec28a3725d9944307e72b8c69c05a5f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 6, 0, 3, 2, 0, 0, 0, 1, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/opencog/link-grammar.git,2005-02-15 13:55:43+00:00,3fad47e76bf79595a23563765bb7e22b76214ae3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 1, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/redis-store/redis-actionpack,2011-11-17 15:24:24+01:00,06b2969585eec2ae2fee0b0853b4b07ade33b3e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/CafeOBJ/cafeobj,2012-10-20 11:31:46+09:00,2a775ab17e357e22e2c39694567e47d62d9e301e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/git-ftp/git-ftp,2010-02-06 21:58:44+01:00,1ebe9f2bae4246203ca5cafa0a2b57b31886634c,"[0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 7, 0, 0, 0, 0, 12, 8, 18, 11, 1, 2, 0, 0, 7, 35, 2, 2, 1, 9, 1, 2, 2, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,0 +https://github.com/phpseclib/phpseclib.git,2012-06-10 03:27:23-06:00,592652cdb55251e88119f47c0c66b69b5abbca3a,"[1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 6, 3, 2, 0, 0, 1, 5, 3, 2, 0, 4, 0, 1, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[9, 3, 3, 3, 0, 0, 4, 2, 2, 2, 7, 3, 4, 1, 4, 6, 5, 18, 5, 5, 2, 16, 2, 0, 0, 0, 1]","[2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 4, 1, 0, 0, 0, 0]",3,2,4,1 +https://github.com/mathiasbynens/unicode-property-aliases-ecmascript,2017-04-15 10:37:46+02:00,e6ff1b29ca86bf2d13068d98761325795bf6915d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/topepo/caret.git,2014-05-16 11:52:30-04:00,9399a05ac5df8797e1803a749bf360282fc0ceb4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 3, 0, 0, 0, 4, 7, 12, 12, 12, 26, 6, 14, 3, 0, 9, 0, 3, 45, 8, 2, 0, 4, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0]",1,3,4,0 +https://github.com/Yelp/elastalert.git,2015-02-19 15:03:11-08:00,249e48bac66f1f6948819d8bf6320aab3fcf71a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 13, 22, 19, 11, 11, 8, 17, 4, 3, 10, 24, 3, 23, 41, 18, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 5, 8, 4, 5, 3, 2, 5, 2, 0, 2, 6, 0, 6, 15, 5, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,9,18,0 +https://github.com/worldforge/mercator,2003-01-14 17:38:05+00:00,7bf24d23ce43813253964b0761cdf3391eedacac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 4, 1, 2, 3, 0, 0, 0, 2, 4, 1, 0, 3, 2, 0, 0, 1, 2, 1, 8, 2, 14, 3, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/flareteam/flare-game,2011-06-03 22:02:11-05:00,2866148a6da4e8d9c309423a843de005a27847fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 28, 22, 17, 27, 9, 15, 13, 5, 0, 0, 3, 0, 0, 1, 2, 1, 0, 1, 0, 10, 24, 11, 8, 47, 28, 1]","[10, 13, 6, 5, 9, 4, 11, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 6, 2, 21, 10, 1]",1,10,16,0 +https://github.com/intel/bmap-tools,2012-11-28 17:38:33+02:00,dd39da9f80a1c7a48f6b9300da46634771adac87,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 24, 43, 32, 65, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 2, 41, 9, 0, 8, 7, 9, 0, 0, 0, 5, 10, 0, 6, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,0 +https://github.com/suds-community/suds.git,2014-01-16 12:11:33+01:00,670f3c50b0eceee10c8e7573f8a94b1964ed66fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 44, 12, 29, 28, 30, 34, 1, 0, 5, 0, 0, 0, 0, 20, 2, 16, 21, 23, 9, 1, 18, 4, 23, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/ropensci/ritis.git,2011-11-01 23:53:20-05:00,21fe5e6128ed8d94086a99cc3adc79d3d439e2ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/geopython/pycsw.git,2010-12-02 22:31:14+00:00,505ed69283389370ce483a6d53ffd0a62ca37adf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 2, 2, 3, 3, 3, 8, 12, 13, 26, 4, 3, 9, 14, 30, 36, 10, 19, 4, 8, 4, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/treasure-data/serverengine.git,2013-06-01 17:02:53-07:00,1a67016a80ebec92f81f35a5ca3c1fcea1366fa5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 7, 2, 5, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 11, 7, 3, 3, 0, 7, 6, 2, 0, 1, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 +https://github.com/winchen/engauge_debian,2013-05-12 13:58:48+02:00,b0af36a071782e44d9ec6dcac09560562fa4a828,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 0, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/qix-/node-is-arrayish,2015-08-25 11:07:39-06:00,0a6d011135dd6242ef91eb06e3e2260d50ed3112,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0 +https://github.com/deeptools/deeptools_intervals,2016-03-09 18:04:03+01:00,e7b246b65638dba58c8c533430348cc82f685daf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 13, 1, 10, 10, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 17, 0, 11, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/fabiangreffrath/crispy-doom.git,2005-07-23 16:54:24+00:00,bbe2bfe4df3709bee31ef3eeac45fd3be7f72671,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 10, 1, 1, 10, 30, 11, 17, 18, 22, 28, 23, 4, 4, 0, 1, 0, 0, 0, 0, 0, 5, 22, 38, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/babelouest/yder,2020-03-12 20:41:13-04:00,e25ba4c119c3bbdcb35700e6689fd8d643478b4c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/CoderPuppy/os-browserify,2012-12-21 17:55:47-08:00,8228d3210ae642695ab7ad4ad86adbdae50f03d2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/e2tools/e2tools,2007-12-14 16:08:25+01:00,6749719af90afe9544db14bdd8e2742926f1439c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/irstlm-team/irstlm.git,2015-07-17 16:13:05+02:00,10fc63648584c4f94c4cb29fb0aed8540e736dc1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 7, 15, 0, 6, 0, 0, 24, 13, 16, 4, 20, 1, 8, 10, 5, 38, 5, 1, 13, 12, 0, 2, 1, 0, 2, 1]","[0, 0, 1, 0, 2, 0, 0, 10, 3, 3, 0, 0, 0, 0, 0, 0, 9, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://codeberg.org/grisha/gumbo-parser.git,2013-08-09 11:25:49-07:00,101726c50e172e45be6002c51b85e45f27f0c2c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 22, 7, 0, 14, 6, 7, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 9, 1, 0, 5, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,18,0 +https://github.com/cleishm/libcypher-parser,2016-03-29 18:49:38-07:00,dc452e8e0d765a5c68a4a1b37eeaa55a2295f721,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 4, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/magit/magit-popup.git,2017-11-20 19:18:00+01:00,cacc3c8191e5545e9c798a990b8dfe4f875a88ee,"[0, 0, 1, 0, 2, 1, 1, 0, 0, 2, 0, 1, 0, 1, 0, 1, 4, 0, 0, 8, 1, 10, 0, 0, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 2, 3, 1, 0, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,0 +https://github.com/ocaml-community/zed.git,2012-10-16 23:57:06+02:00,eb2e05d3f886962fd54a77783725346e3b1ac789,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Bioconductor/BiocParallel,2012-11-15 00:51:06+00:00,8bc770675e658778ba4fb0f714ec07b62d472e4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/rockdaboot/libpsl.git,2014-03-20 08:38:32-07:00,a06ac3334358a28a887f96452830efc953b75342,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 18, 1, 19, 6, 3, 0, 3, 0, 10, 16, 42, 27, 14, 11, 10, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 3, 9, 0, 2, 2, 2, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]",0,4,4,0 +https://github.com/s3tools/s3cmd,2007-01-19 03:38:04+00:00,f8f436e569a7b7741809273e689b2f6c4fb48d1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 13, 0, 4, 5, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/amplab/snap.git,2012-07-14 12:06:01-07:00,e11dd78a7c84b44375509e87c0859d0d4321d202,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 4, 0, 22, 32, 0, 4, 4, 2, 6, 9, 8, 7, 1, 3, 1, 0, 0, 0, 10, 2, 12, 3, 0, 0, 0]","[0, 0, 0, 0, 4, 9, 0, 1, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0]",1,3,7,0 +https://gitlab.gnome.org/GNOME/json-glib.git,2007-09-20 20:35:49+01:00,c5bfb22f964b8f1feecdc8fb29d8a74b36861d32,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 28, 10, 20, 0, 6, 0, 18, 17, 0, 0, 0, 0, 9, 0, 0, 0, 0, 7, 0, 0, 0, 0, 42, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/Castaglia/proftpd-mod_counter,2011-10-20 10:03:41-07:00,7a21e9ce85c04fb4a80f838abdd0f48da2d6eab1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/r-lib/processx.git,2016-08-19 09:04:52+01:00,e7d053a96d145a36244c08b74fa0029201d19067,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 0, 16, 11, 1, 2, 1, 0, 0, 0, 0, 0, 0, 21, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/zealdocs/zeal,2013-01-20 01:49:25+00:00,422bcfe23f9a4c097e9ab490cc152570d2c7a6b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 8, 4, 3, 0, 0, 4, 12, 9, 9, 0, 0, 3, 3, 0, 3, 1, 2, 2, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/lessthanoptimal/ejml,2010-04-07 11:12:20+00:00,769224e5c3c4e9bb742ed166fb614fbff4df19ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 3, 0, 7, 5, 7, 6, 5, 7, 6, 3, 0, 2, 0, 0, 1, 4, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/endrazine/wcc.git,2016-08-08 23:54:37-07:00,dbb0ff186d2a2af7930f5bab7b8dfb44f706f90f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://gitlab.gnome.org/GNOME/gnome-dictionary,2005-12-16 17:27:58+00:00,84bec038841753c5eb7a0a3cb2fccb0db5401759,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 8, 9, 5, 12, 7, 3, 6, 1, 7, 1, 2, 1, 1, 1, 2, 0, 2, 3, 0, 2, 0, 0, 0, 0, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 +https://github.com/editorconfig/editorconfig-core-c.git,2011-10-22 09:49:51-07:00,45142061d9afb09a66c300f72c6daee7a22f3a27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 40, 23, 19, 13, 42, 30, 6, 0, 18, 10, 3, 1, 17, 5, 7, 1, 7, 0, 4, 2, 0, 7, 0, 1, 0, 0]","[2, 3, 0, 0, 1, 2, 1, 0, 0, 2, 1, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/redis/hiredis-rb.git,2010-09-21 20:36:21+02:00,6ea8cac4fcfaac2da428e034b410fff2a037129e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 0, 0, 6, 42, 0, 0, 0, 2, 0, 0, 0, 0, 11, 1, 24, 0, 15, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/baldurk/renderdoc.git,2014-02-27 16:02:07+00:00,787c80c1fe63375a00f67a8106439f4308fa367d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 8, 0, 5, 37, 6, 35, 28, 17, 6, 20, 6, 21, 22, 33, 26, 41, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,4,0 +https://github.com/ejeschke/ginga.git,2017-07-13 13:57:08-04:00,d5378a1ce16a2adc41183bf36d5d8ea66233663b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 10, 12, 25, 5, 5, 4, 7, 5, 9, 4, 3, 57, 12, 17, 4, 4, 11, 6, 10, 4, 25, 5, 2, 4, 1]","[0, 1, 3, 0, 5, 0, 1, 0, 1, 0, 0, 1, 1, 4, 3, 3, 0, 1, 3, 1, 2, 0, 4, 0, 0, 0, 0]",1,1,3,0 +https://github.com/puppetlabs/puppetlabs-firewall,2011-05-09 08:55:19-07:00,bff53bdbc03ad416e3f23d7ad943ebdffb3bd999,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 21, 7, 3, 1, 6, 0, 0, 1, 0, 12, 1, 1, 0, 6, 0, 0, 0, 5, 6, 12, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 2, 3, 6, 0, 0]",1,3,4,0 +https://github.com/kilobyte/compsize,2017-09-04 16:52:51+02:00,4854f0cc171b404aa2c5bc1a0806a8784c53690d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[69, 2, 2, 0, 0, 4, 0, 0, 0, 0, 1, 0, 2, 0, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,2,0 +https://github.com/google/pybadges.git,2018-06-27 13:29:57-07:00,2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/patrys/httmock,2013-03-19 16:35:34-07:00,a24f76f0bf963bc9a6d4d6c1117c5b771dc3478d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 4, 3, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]",1,1,5,0 +https://github.com/FFTW/fftw3.git,2002-06-02 14:42:32-04:00,9a85d188479075e3f6d1de0d33c35008578e5b97,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 53, 38, 2, 19, 30, 42, 70, 68, 35, 36, 29, 43, 24, 36, 66, 18, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/r-lib/httr.git,2012-03-28 19:13:32-05:00,e6e39d0f26de7997831c851de9718dc81b714bcf,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 0, 0, 0, 14, 26, 0, 0, 0, 0, 2, 4, 0, 0, 11, 8, 8, 0, 0, 2, 0, 0, 1, 4, 0, 3, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/bear/parsedatetime,2012-09-11 23:44:45-07:00,536d16e4b6ec69713e6c3e80282a8a30026b943f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0, 0, 0, 0, 4, 0, 2, 2, 0, 0, 0, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 1, 0, 0]",1,1,5,0 +https://invent.kde.org/plasma/drkonqi.git,2014-03-31 01:31:46+02:00,da27b276789a213775f1d1fdba20e5ca91430af2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 69, 31, 42, 31, 107, 62, 39, 67, 82, 61, 130, 74, 62, 57, 38, 32, 37, 61, 64, 48, 128, 32, 16, 49, 74, 1]","[1, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 1, 0, 0, 1, 13, 4, 1, 3, 3, 1, 7, 1, 0, 1, 3, 0]",1,10,48,0 +https://github.com/yob/pdf-reader,2007-07-28 04:07:52+00:00,525ff7dcad98fbd1d4b3f1e0fad7d0819e466843,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 3, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/micheleg/dash-to-dock.git,2012-12-04 22:53:13+00:00,bf392734c5bce8e1ff39ace49cd955b5b5ad8454,"[10, 10, 11, 0, 7, 18, 21, 26, 14, 10, 17, 5, 3, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 9, 1, 4, 9, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,5,0 +https://github.com/kaminari/kaminari,2011-02-05 22:32:10+09:00,4db3397b4d962076bca6dd047ed15627e1f9f67d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[86, 62, 42, 6, 0, 0, 0, 0, 0, 4, 38, 21, 13, 1, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,22,0 +https://github.com/lxqt/lxqt-policykit.git,2016-06-25 22:58:42+02:00,29e3b8988a8cfb3075726fb85e6a6bda964cfe16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/p12tic/cppreference-doc-debian,2012-06-21 18:38:46+03:00,ceb829eb9ceaa12ad8a8222024bf5cd228eae193,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/highlightjs/highlight.js,2011-05-16 21:53:37-07:00,a0fa0063d9ff0633ae44b6fa53626982bc923f21,"[0, 0, 3, 1, 0, 0, 0, 0, 1, 12, 16, 9, 1, 1, 6, 0, 26, 0, 0, 0, 0, 0, 40, 34, 2, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 1]","[11, 0, 1, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 6, 5, 5, 0, 0, 0, 0, 0, 1, 1, 1]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,1,3 +https://github.com/storaged-project/libblockdev,2014-05-20 18:48:14+02:00,621fa65c3599963f0ea5fad8e12201758e7c532e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 18, 27, 20, 34, 20, 19, 6, 9, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 5, 0, 1, 10, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/cocagne/pysrp,2010-12-01 09:44:20-05:00,f649a03c1be597a4da12ee4d503043b153fe084b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/spyder-ide/qtpy,2015-02-28 13:26:05+01:00,5a7e8ab3a5a0c147b7d96865bdcdcec386410673,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sabnzbd/sabyenc.git,2016-09-19 10:04:11+02:00,24da3863c7e1f553c473d7f83511f7904246c329,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/gsakkis/pytrie,2016-12-05 01:36:11+02:00,2e7cbcc95933da2220636dd52b9fd644e7f411cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/daqana/dqrng.git,2018-04-18 18:43:40+02:00,fe72301878616d33480e84f5f27e95954afc5293,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 12, 7, 0, 0, 6, 10, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 10, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://gitlab.dune-project.org/core/dune-common,2003-10-30 17:03:38+00:00,59f6e9106e69c012d6bf4a004f43bf09d4349887,"[9, 10, 0, 1, 8, 7, 0, 2, 3, 3, 8, 4, 6, 11, 0, 9, 15, 2, 1, 13, 4, 6, 4, 13, 19, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 11, 9, 7, 16, 2, 5, 0, 0, 0, 13, 8, 3, 16, 10, 0, 0, 27, 12, 15, 9, 13, 0, 0, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/Unidata/netcdf-cxx4.git,2013-11-22 14:39:15-07:00,08fea74fbd3188f47e9afca3cd6c8129f48fdb45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 1, 22, 5, 1, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,1 +https://github.com/mattp-/Plack-Middleware-CSRFBlock,2010-08-07 02:22:55+09:00,730602f795629880e86a03fa3b4dd6edb1405c8d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/libimobiledevice/libplist.git,2008-07-30 23:50:39-07:00,47d60e2b9f8ddec18107cee21e046cd4df50fdef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 20, 14, 24, 30, 0, 1, 1, 1, 3, 1, 0, 10, 3, 0, 1, 3, 8, 3, 10, 0, 0, 6, 7, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,5,0 +https://github.com/kiwix/libkiwix.git,2017-01-02 06:57:01-08:00,12b6a50dbaa506d09fd459d8f290d7a7468e9715,"[4, 0, 0, 0, 0, 2, 0, 0, 3, 1, 0, 0, 5, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 2]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 3, 6, 8, 2, 2, 0, 3, 0, 1, 1, 5, 5, 17, 1, 1, 3, 0, 0, 2, 4, 0, 0, 4, 0, 2, 1]","[2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 5, 1, 0, 2, 0, 0, 1, 2, 0, 0, 2, 0, 1, 0]",6,0,3,2 +https://github.com/sebastinas/yafc.git,2000-09-14 14:05:22+00:00,a84420664457ac7e240b47085bb9370604b37221,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 4, 14, 32, 20, 0, 2, 1, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/premailer/premailer,2009-11-27 14:38:19-08:00,9c3c44407de4225e276bd12900a9356851f562e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 16, 4, 2, 1, 4, 0, 0, 0, 0, 0, 0, 7, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/SebWouters/CheMPS2,2013-12-11 16:34:46+01:00,f438ab9cfa955b2652a3de2935e26eefd1e59fcc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jshttp/content-disposition.git,2014-09-18 21:59:07-07:00,5ab443630137b8adfa5b030d9375d00ae5fcf286,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/resurrecting-open-source-projects/stress,2021-09-18 18:35:36-03:00,3b075d8c26d9a99dc90e7e2a31595f79c1a87f0e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/linuxdeepin/deepin-notifications,2013-01-15 14:48:29+08:00,14f0ed9a3a7fceff12aef2ad8c78beba38ba4385,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/linuxhw/hw-probe,2015-11-29 20:34:57+03:00,942d3c4a9efb3018708b0cf57f07fb283d3b4e45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/carlhuda/bundler,1998-01-16 12:13:05+00:00,3db12e8b236ac8f88db8eb4690d10e4a3b8dbcd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://salsa.debian.org/debian/github-backup,2012-01-26 00:02:23-04:00,ba6fea838a31433a406d745de103f923aa5f3b27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 0, 2, 1, 2, 0, 6, 5, 1, 0, 0, 0, 4, 1, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/glv2/bruteforce-luks,2014-06-19 21:16:54+02:00,871ea2caa89c489ddcbc01d5619f08f59ebca7ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ua-parser/uap-core.git,2014-02-17 16:00:07+01:00,ec27337e6f8417e8db9b0c88f84ecf7c81e5466b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://invent.kde.org/pim/akonadi-mime,2016-08-05 02:53:51+02:00,af762b9230dda02adc2995f807718f3b2687eeea,"[3, 4, 0, 0, 0, 2, 4, 2, 2, 4, 0, 1, 3, 2, 0, 2, 0, 0, 2, 0, 7, 1, 1, 0, 2, 0, 1]","[1, 3, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 0, 1, 2, 0, 0, 1, 1, 2, 0, 2, 2, 1, 2, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/mati75/volumeicon-debian.git,2011-09-17 15:05:29-04:00,521fa2d1502d30e3ec0f84dc9af61350a814afba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/jelmer/python-fastimport,2008-02-14 16:28:42+10:00,99e4fa2de15cecf1d27e8dcff850c7d6d641578a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 11, 1, 8, 10, 4, 1, 0, 0, 0, 0, 2, 4, 2, 0, 9, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,6,0 +https://github.com/flameshot-org/flameshot.git,2017-05-10 22:02:21+02:00,294ee7c5a2881d2944dbf55ebf9a4c03b653c029,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 31, 18, 12, 10, 13, 0, 5, 10, 2, 16, 19, 5, 9, 5, 0, 0, 0, 1, 10, 1, 1, 0, 4, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0]",2,3,3,0 +https://gitlab.dune-project.org/core/dune-geometry,2011-10-04 09:31:17+00:00,b5dd922abbdb4ab0ee477093be8c6bc60a5e9d24,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 2, 1, 6, 9, 2, 1, 0, 0, 0, 0, 0, 1, 0, 4, 2, 2, 2, 4, 0, 0, 0, 2, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 +https://github.com/apache/activemq,2005-12-12 17:53:59+00:00,40a7d3b6ac35d2ecb34e85fc3403d2e48e33874e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 72, 99, 77, 48, 12, 28, 34, 36, 75, 58, 122, 108, 63, 55, 62, 35, 32, 31, 45, 38, 11, 11, 17, 43, 54, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,15,0 +https://github.com/vifm/vifm.git,2009-01-21 16:30:11-07:00,6317a2a89b20fb102475fb049e12b3b450d29a27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/Mottie/tablesorter.git,2011-06-22 18:19:27-05:00,466b3a5860771d7e71089924ce62e68ab79e1cb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 3, 2, 1, 0, 5, 0, 0, 4, 3, 2, 0, 2, 3, 1, 1, 1, 0, 0, 0, 2, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git,2011-03-18 16:16:49+00:00,c78e1210a07e83ba0fc2ad1c474f226ecad211e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ForensicArtifacts/artifacts.git,2017-05-13 20:10:10+02:00,cdae777f69398b3610ad62d9de3c2eabb5861fd6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[311, 7, 0, 0, 0, 3, 1, 2, 3, 0, 2, 1, 4, 1, 1, 0, 1, 0, 1, 0, 0, 3, 0, 1, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,41,0 +https://github.com/brummer10/gxtuner,2016-07-26 07:13:59+02:00,7ea73de958ba02475defd79be0b4802d3d25c920,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/glyph/Automat,2014-08-21 02:38:59-07:00,a3aa905d647c1fceea2e9697d3e0c1f68ec2fc50,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 20, 11, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 17, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]",1,1,1,0 +https://github.com/captin411/ofxclient,2012-08-21 23:03:10-07:00,ea9fdd8baf64c06fba9390b2bf64c23f2754d226,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/gerbv/gerbv.git,2001-08-30 20:26:42+00:00,a5bdb870a25cdec127ef7c31321e5bab3352bafa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 0, 0, 0, 1, 2, 9, 14, 9, 4, 4, 6, 18, 14, 2, 0, 12, 1, 0, 0, 2, 4, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/broadinstitute/gatk-native-bindings,2016-05-03 15:43:54-04:00,45cb71b9cf40637e302c9df073ff989458f4245b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/uriparser/uriparser.git,2018-01-07 04:02:23+01:00,f0e3992d4de003f6c8b8ffcdfc615abb52bcef16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",0,1,1,0 +https://github.com/emcrisostomo/fswatch.git,2009-06-25 17:34:41-04:00,e7e5f4a51840a6acda61e531bac36c98ee9eb19f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/intridea/omniauth-openid,2010-04-09 21:30:16-04:00,c625919b74f91930ad4bc7bd95a3f80ecdda8103,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 2, 0, 2, 8, 0, 1, 1, 0, 2, 0, 0, 4, 2, 0, 0, 0, 0, 0, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,4,0 +https://git.samba.org/nss_wrapper.git,2013-05-15 14:13:50+02:00,bf21dbfc808c5e54c6b11c3525d07149f57d6cf2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 3, 9, 0, 4, 33, 3, 9, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/pgul/binkd,2001-01-10 11:34:57+00:00,45986b77161a366ea3d258a01dad442d3d21d81e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 3, 0, 0, 1, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/voxpupuli/hiera-eyaml,2013-06-25 12:54:10-07:00,ed535fe2b83972545c037045c304f7a672954d0f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 3, 23, 14, 4, 13, 12, 0, 0, 6, 1, 13, 4, 0, 0, 0, 1, 0, 1, 38, 13, 21, 2, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 11, 2, 4, 1, 0, 0, 0]",2,6,11,0 +https://github.com/TACC/Lmod,2011-02-15 17:34:37-06:00,26f005e487ea4535134d228314479f2c27858541,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 11, 8, 0, 11, 4, 3, 7, 1, 3, 0, 1, 0, 4, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/brianmario/yajl-ruby,2009-04-20 11:18:31-07:00,9f6ec766d3f857138388ee6d512f02ba2d41718b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 +https://github.com/lxqt/lxqt-openssh-askpass.git,2012-06-21 11:24:56+02:00,da388021307340ac3ad9ce1362407280a7a1a44c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/Iotic-Labs/py-ubjson,2015-08-16 12:21:14+01:00,53b9f1f942b4a88be80043bd94a0f6399e0200de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 4, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 1, 1, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/mde/utilities.git,2012-07-28 19:26:27-07:00,c8bca758db8b84546ebd4b1c95ef7e59dc98932c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 19, 13, 6, 7, 7, 0, 1, 3, 7, 12, 2, 0, 0, 7, 0, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/worldforge/libwfut,2005-11-27 16:36:00+00:00,35752d7962ed1ee2146d7ab96bbe677fe85c4467,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/thlorenz/convert-source-map,2013-03-13 05:22:33-07:00,c0d4ff0f395d7d0adf9a2de76a0ed37aa1f7280a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/markov2/perl5-XML-Compile-WSDL11,2018-05-11 00:43:36+02:00,ae6493b83472e25d3d6a0431f63a353ea6f71eed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/shellinabox/shellinabox,2008-12-29 23:57:07+00:00,aab20f5ed00104c8bc9d12d362085634ff64dead,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 7, 5, 7, 2, 2, 4, 8, 4, 0, 2, 13, 14, 7, 3, 2, 2, 1, 0, 0, 4, 0, 0, 0, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/SELinuxProject/setools.git,2014-07-08 14:28:55-04:00,39505d0295b3fa533fb364aa83a338d762609e0a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 3, 5, 0, 0, 3, 0, 0, 0, 2, 1, 4, 6, 0, 8, 50, 16, 2, 2, 16, 0, 6, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/lxqt/qps.git,2014-05-13 23:50:52+09:00,ad2c4ab44143c3628a827d767ff1961780c25ad9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/suyusung/arm.git,2016-08-20 21:12:31+08:00,7b4e5c66578e3803b10606b0f8223948da0c577a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/SIPp/sipp.git,2006-06-05 20:07:17+00:00,3d805744e39370c7a31c1d04e815551810da2dba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 1, 1, 3, 2, 0, 0, 0, 4, 3, 2, 3, 2, 5, 3, 7, 1, 3, 6, 6, 22, 1, 2, 14, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/gruns/icecream.git,2018-02-13 11:09:23-08:00,1e3faff72720c8dd4f9c368173b8e3b704e7ccda,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 10, 3, 6, 7, 3, 4, 4, 2, 1, 0, 0, 1, 2, 1, 0, 2, 5, 6, 2, 2, 5, 1, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,6,0 +https://github.com/NVIDIA/egl-wayland.git,2017-01-17 21:21:01-08:00,743d702fac0feb02d52ff34deadecb32284f18ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/DarwinAwardWinner/ido-completing-read-plus.git,2011-09-04 22:00:34-07:00,2457964bd535ad3d72914b6268d4ca5d1b4a632a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 6, 7, 4, 10, 8, 0, 0, 0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/armed/gulp-flatten,2014-01-11 04:46:46-08:00,f86b9c4d95a8d6356f8750a5aa7614950f6698b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/dragotin/kraft.git,2006-07-18 07:32:20+00:00,52e295c10dbcd00a452246463c80b8adc4c8fe6e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tecnickcom/TCPDF,2009-03-24 19:37:18+01:00,342de0004d1327912956b4adb7eb8b8eb63d2a36,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 7, 8, 5, 1, 2, 4, 1, 1, 1, 3, 0, 0, 2, 2, 2, 1, 1, 1, 1, 6, 4, 5, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/OlafvdSpek/ctemplate.git,2007-03-21 23:06:14+00:00,de4182841733f4e848e6fadddc6f447f5057db8e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/bluca/stlink,2011-01-14 02:54:52-06:00,27b50a3df817492716d21cf8ec91bcf074e2a479,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 1, 0, 1, 2, 0, 0, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 1]",1,1,5,0 +https://github.com/AccelerationNet/cl-csv,2011-08-11 15:19:12-04:00,85bab2f386ad747b619e4e481ae7b4e434551755,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 6, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 5, 0, 0, 0, 6, 0, 0, 6, 0, 2, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 1, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,4,0 +https://github.com/jonschlinkert/window-size,2014-02-14 22:42:03-05:00,0899b3e71b0740a024bd9d8bb702c91f8af7dcc8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mmottl/ocaml-makefile.git,2006-05-01 18:28:02-04:00,9a26a6deb9eb4391e87a12224148d242b7705725,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/rstudio/shiny.git,2012-06-20 11:49:15-07:00,75ee6791b172f10040f2d031683229bf81916b9e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 9, 3, 28, 119, 83, 7, 9, 15, 5, 16, 3, 5, 6, 0, 1, 0, 0, 23, 10, 6, 10, 13, 6, 0, 11, 1]","[0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0]",1,3,5,0 +https://salsa.debian.org/iso-codes-team/iso-codes,2004-02-22 18:58:06+00:00,3330c3350522315d1ee77a616a1b771746363408,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 5, 9, 29, 31, 10, 30, 4, 11, 5, 2, 23, 11, 5, 6, 19, 8, 5, 1, 2, 4, 17, 10, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,15,0 +https://github.com/voxpupuli/librarian-puppet.git,2012-05-30 20:49:47+10:00,51a2e0ed67aed3fb443ac6407d6fc690d91a7630,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 16, 5, 4, 0, 0, 9, 0, 1, 14, 5, 4, 6, 1, 0, 0, 1, 1, 8, 1, 1, 1, 0, 0, 9, 0, 1]","[0, 3, 2, 0, 0, 0, 0, 0, 0, 3, 1, 0, 3, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 1, 0, 1]",1,5,12,0 +https://github.com/BioPP/bpp-popgen,2022-12-05 10:05:00+01:00,c8328c02c044e919756b4bf96d3266c5d8bba6b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/digint/btrbk-packaging,2015-07-20 15:46:37+02:00,0cd777b99020b32b94220777a38b5d961f192fcd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/honza/vim-snippets.git,2011-06-20 19:49:54-03:00,a96f674eed23e4e25c065a0935b2fe4f104d47ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 3, 7, 1, 4, 0, 14, 3, 4, 1, 5, 2, 2, 1, 0, 5, 8, 5, 2, 2, 0, 0, 9, 5, 4, 0, 1]","[5, 2, 1, 0, 2, 0, 6, 1, 2, 0, 2, 1, 1, 0, 0, 1, 2, 3, 1, 1, 0, 0, 3, 3, 2, 0, 0]",2,4,28,0 +https://github.com/ncarrier/discus.git,2019-12-23 08:39:46+01:00,44f48b1a0e6e1e526becaa3c5289a5b702e34b78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 19, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/LanguageMachines/timbl.git,2015-11-23 14:48:35+01:00,da8ea56b901aa4ffb97ab502674fbace64f716fd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/andreas-kupries/critcl,2011-09-22 22:37:51-07:00,fcd6493f014dba7b8ac1c6d51189499be3db811b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[20, 7, 2, 6, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 13, 0, 0, 0, 3, 1, 5, 2, 0]","[3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",1,1,0,1 +https://github.com/Dav1dde/glad.git,2013-08-04 14:16:17+02:00,baf22f5efa99a98762b9ac11bfac8b7b883bf57d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/savonet/ocaml-flac.git,2010-05-26 16:18:47+00:00,489ba02e80e0484a77e043f4b04726f25bb08634,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 9, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/compiz/simple-ccsm.git,2007-09-26 17:50:46+02:00,44485e2da13831c48d07a019a1d36c5abd2e6f0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 10, 0, 3, 2, 0, 0, 0, 0, 1, 0, 0, 5, 3, 0, 5, 0, 1, 0, 5, 2, 2, 0, 5, 0, 1, 1]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,2,0 +https://github.com/originell/jpype.git,2012-07-31 11:41:07+02:00,19eb92edc0ff70510a3078cd832c77ce996e6ba4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/tatsuhiro-t/wslay,2011-12-21 01:11:45+09:00,2d004e3fe7bcc6de66e913da0194558145488467,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/meskarune/i3lock-fancy,2016-03-27 11:12:21-04:00,628551a1c49501fd77a9f22b8b23810fba4987c8,"[0, 0, 3, 0, 0, 0, 0, 5, 14, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[26, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,0,1,2 +https://github.com/operatornormal/classified-ads,2014-12-26 22:35:52+02:00,0506b56bab7e6b98c50ac769b5530a4d1d8a7bd9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 9, 3, 6, 3, 5, 0, 4, 4, 9, 9, 9, 6, 0, 5, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/Ozzyboshi/guake-indicator,2014-05-04 13:10:02+02:00,3f701fc55e3d28927b2ed50e39f2e6e33c5a396a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/potatosalad/erlang-jose.git,2015-07-27 16:40:21-06:00,a7746ecd4950f85a393136e449a91dac62b5c429,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 17, 8, 11, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 0, 2, 8, 0]","[0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 +https://github.com/porridge/ydpdict,2005-10-01 09:40:45+00:00,762ffed3d6acd33e85337dbdd1dc5372dd2d2fbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/tidyverse/hms,2016-03-31 12:26:47+02:00,f97b4c95b67965419bf540d736af169a8fae9d27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[54, 5, 12, 1, 17, 0, 0, 17, 0, 2, 7, 8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0]","[20, 2, 4, 0, 4, 0, 0, 4, 0, 0, 3, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,3,3,0 +https://github.com/sacerdot/ocaml-http.git,2006-02-02 18:57:10+00:00,6588ba292425d32cd2bec878bc8c3651a5673bd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/processone/pkix.git,2018-09-24 18:27:32+03:00,9b21a00cf640ef4510d8d71c9d17d51ec6378335,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 1, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://git.samba.org/pam_wrapper.git,2015-12-10 13:31:14+01:00,8f6ecbb5a1427fe94ad75872bfbee1c72a54d0bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[67, 0, 0, 0, 22, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/skorokithakis/shortuuid.git,2011-01-08 16:44:52+02:00,57ad5d63571a03c1d53dff31d86e0bc3a4d4851a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/faye/websocket-driver-ruby,2011-11-22 01:43:51+00:00,9bcbcd6ef911135f60c6bc5513c616c88d42d3bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 6, 0, 23, 9, 0, 20, 19, 0, 1, 0, 12, 1, 2, 14, 9, 6, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/hvesalai/emacs-scala-mode,2012-10-06 20:19:36+03:00,6f1b748d7240deb30e5921a61646237f025f18f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 30, 29, 6, 6, 5, 1, 3, 0, 0, 0, 0, 3, 0, 0, 0, 2, 3, 3, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 1, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0]",1,2,9,0 +https://github.com/felixdoerre/primus_vk,2018-09-08 01:39:55+02:00,56766d1c44d2dd37d82fbf19484c83f336d3e5cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 8, 10, 16, 8, 2, 0, 2, 0, 0, 2, 0, 0, 0, 1, 6, 4, 0, 4, 3, 0, 0, 0, 3, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 2, 1, 0, 0, 0, 0, 1, 0]",1,2,4,0 +https://github.com/svgpp/svgpp.git,2014-02-18 11:23:21-08:00,be4d3da76b77aae3ff4f2e34786d8a3e2f13a185,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 5, 4, 4, 2, 3, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 +https://github.com/nix-community/acpi_call.git,2010-06-29 17:31:48+02:00,009f34b45ffb3f001e3f0f5e27f4b15b0f4eb333,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/libimobiledevice/usbmuxd,2009-05-05 01:40:40+02:00,102e8ff46e5491c8d1a5928b34f058c88e55d065,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 12, 0, 1, 3, 4, 1, 0, 1, 0, 0, 19, 8, 12, 14, 13, 2, 2, 0, 2, 1, 7, 0, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/ropensci/crul.git,2016-10-28 16:15:38-07:00,8fe79db23336b9eef5e6542daca7fe5e131e3430,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 15, 1, 0, 1, 0, 8, 13, 2, 4, 3, 4, 3, 1, 1, 9, 6, 0, 0, 1, 9, 7, 8, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,2,0,0 +https://github.com/stevegrubb/libcap-ng,2017-06-20 07:10:28-04:00,cd7f2f4918c90dcf5b0aa52a7ffd7860b7ba6288,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://salsa.debian.org/jcc/zram-tools.git,2014-03-09 07:31:01-07:00,7ae71cc80f5f9ebff223bf0791f57e66170126a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/Castaglia/proftpd-mod_msg,2018-04-11 06:39:20-07:00,17f0a0bee7359135d13d12d94ab41bcfb376cd22,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/wjoye/tktable,2016-10-17 11:22:52-04:00,7fde2daeed593684120d75de07598154f3ddaf2c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[39, 22, 8, 3, 11, 0, 0, 0, 0, 34, 31, 63, 56, 0, 78, 42, 7, 2, 4, 5, 28, 18, 18, 21, 4, 1, 1]","[15, 6, 1, 0, 3, 0, 0, 0, 0, 4, 5, 10, 2, 0, 20, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]",1,0,1,1 +https://github.com/npm/nopt,2011-03-29 19:32:09-07:00,1b1237c7d5525660d6df76e2b88047b1035fc12a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/tianon/gosu.git,2014-09-22 16:28:51-06:00,ff3214d67b1de4caa64fcb82a120e9128a9e8f86,"[0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 5, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/g0hl1n/xprintidle,2014-02-26 12:45:16+01:00,a89754dd4555923ebf791b5991b8b424cbc7543f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/flori/tins.git,2009-10-29 01:54:37+01:00,84171acc770baf1a4c3df3881eb7861bdf2e892b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/prometheus/alertmanager,2013-07-16 17:09:56+02:00,f59d8fb2fcbcb0c566266e4dac83d3c7c729a978,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 16, 9, 5, 9, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/silnrsi/font-eeyek.git,2019-12-02 13:32:03+00:00,3fe3db96d6ecf16f42036b51f1f2ad8d9ce26097,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/cmrd-senya/markdown-it-html5-embed,2015-09-17 23:56:26+03:00,bc2ff4f1134ebfc60f5bffab0e2d5f495f9df897,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/naelstrof/slop,2013-09-08 14:39:42-06:00,7f72447efeb1da71c39db9bf6c5b333e045c6466,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 9, 1, 0, 2, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/Gnonthgol/sosi2osm.git,2013-10-06 15:02:25-07:00,66a912bea3603afe46a37f8f831a696d43ab6d03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/ros/genpy.git,2011-10-11 18:07:08-07:00,bf29133ae2666b5997e206dedc1f4e341cf23d65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 3, 0, 3, 5, 1, 0, 2, 5, 0, 8, 15, 7, 11, 0, 0, 1, 10, 2, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,10,0 +https://github.com/r-lib/gtable.git,2015-06-22 08:17:56-05:00,5b5630708decf04b38d7a52e00c0b1dca1a5ab52,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,1 +https://github.com/resurrecting-open-source-projects/outguess,2018-11-08 21:11:58-02:00,e665afa4ea8513bdb155c0f5cded3a8330ff341a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/palinek/nm-tray.git,2015-10-08 16:08:02+02:00,04b94f9df6167c43a4d9e191c8f74ee9ade44eca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://invent.kde.org/pim/grantleetheme,2016-08-05 02:49:40+02:00,73bd97b75d76e06fe758e590ddeaa778f03c994f,"[0, 1, 0, 0, 0, 1, 1, 0, 7, 6, 0, 2, 0, 1, 0, 2, 0, 0, 2, 0, 14, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 3, 0, 1, 1, 1, 0, 2, 1, 1, 0, 1, 2, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,0,1 +https://github.com/michipili/bsdowl,2008-03-14 10:07:55+00:00,c43a3649cfa131d1cb753bb976f277bca1e455af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 2, 0, 7, 22, 1, 27, 12, 0, 5, 6, 1, 1, 0, 0, 0, 14, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/mpld3/mplexporter,2014-02-14 15:23:32-08:00,37df028da95b6d90cf042f19e86a5033e7ad780c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 34, 16, 12, 4, 21, 0, 0, 1, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0]","[4, 5, 4, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0]",2,6,7,0 +http://github.com/voloko/twitter-stream/issues/new,2009-10-09 13:54:44+04:00,11ce705f70adfbc51a5c426d3616d2901adff761,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://gitlab.gnome.org/GNOME/at-spi2-atk.git,2001-07-25 18:26:40+00:00,9bf98cd378e1572019a743bb4bf18e896b4fcd1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 9, 23, 1, 9, 0, 3, 2, 5, 7, 0, 3, 1, 1, 7, 18, 10, 8, 41, 6, 2, 2, 6, 18, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 +https://github.com/selectize/selectize.js,2012-08-31 18:02:00-07:00,5abfb2298cc243417dfd68788596520c809a9d2c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/rails/sprockets.git,2009-02-09 16:15:39-06:00,225b17f7ee1926d6e9b63a4e2cddbcd2e534ba01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/doctrine/data-fixtures,2010-09-20 17:24:15-05:00,4a860e98d5c03205cef55ba0d4049436e4d319d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/Winetricks/winetricks,2015-03-29 16:53:54-05:00,c047d61f89406682b19edbda5007c739912e2007,"[0, 6, 0, 0, 1, 0, 0, 3, 5, 7, 6, 1, 0, 0, 0, 8, 0, 0, 4, 1, 3, 0, 0, 1, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[24, 1, 13, 1, 2, 0, 1, 0, 0, 0, 0, 0, 4, 15, 24, 5, 11, 9, 4, 14, 0, 2, 0, 10, 0, 3, 1]","[3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 1, 3, 4, 3, 2, 0, 0, 0, 3, 0, 1, 1]",11,2,11,1 +https://github.com/exodist/Term-Table.git,2016-12-18 23:01:11-08:00,27010fb24f19791b5ea859430c2c10846328f935,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/metaodi/osmapi.git,2014-01-01 12:32:49+01:00,55893a643fc3257a988ebf9c593c5007bec8a76f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 26, 0, 4, 0, 0, 0, 0, 6, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0]",2,1,1,0 +https://github.com/ietf-tools/xml2rfc.git,2010-01-18 13:34:25+00:00,5f1f8b9ced72dea365b98717219bbeadc86cce74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 0, 0, 0, 0, 0, 5, 0, 6, 17, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://gitlab.com/oath-toolkit/oath-toolkit,2009-11-24 14:36:33+01:00,479af86e6cde18cdf8da80ae0fc65e5d7ad3adf7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 44, 13, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/PacificBiosciences/pbcore,2012-08-30 10:58:02-08:00,8aea59a2c96e8c83ee2a75eb3ca704f748dbd113,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 1, 2, 0, 0, 7, 1, 2, 0, 0, 0, 2, 0, 0, 2, 1, 5, 0, 1, 2, 3, 5, 9, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/ruby-amqp/amqp.git,2008-07-11 16:17:47-07:00,5b2fec58829ecd0fb7c659e8e3b862551e2ed4ee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 60, 15, 6, 13, 1, 0, 5, 2, 1, 2, 5, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 12, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 1]",1,2,8,0 +https://github.com/Seldaek/monolog,2011-02-17 03:04:58+01:00,2ff85ba4721a1fd3ab5b77cc7e9778945dcf95de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 8, 0, 0, 7, 2, 21, 3, 1, 13, 3, 32, 3, 0, 6, 0, 4, 1, 9, 8, 2, 8, 0, 4, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 10, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 0, 0]",1,3,12,0 +https://github.com/kilobyte/safeclib,2012-06-18 14:50:54-04:00,8379e6f6e74afec9e96eae41853567faec6fb273,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 0, 5, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]",1,1,0,0 +https://github.com/ponty/pyvirtualdisplay.git,2011-02-11 12:40:38+01:00,9c7b92f6624c35de8600fff9b0f69640156cbdac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 5, 0, 0, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/emacs-lsp/lsp-mode.git,2016-12-02 22:38:27+05:30,e42e99e026b037c1d29709955273b890be95c9fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 65, 16, 3, 6, 1, 3, 0, 0, 0, 2, 1, 5, 0, 7, 0, 0, 40, 45, 41, 5, 22, 17, 0, 0, 3, 0]","[0, 1, 2, 0, 0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 3, 5, 5, 0, 4, 4, 0, 0, 1, 0]",1,3,14,0 +https://gitlab.gnome.org/GNOME/libpeas.git,2009-10-23 09:28:39+02:00,a8952b9e7b8bfdc4e5ad32841708492cf0998347,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 23, 0, 7, 0, 0, 16, 9, 7, 1, 4, 0, 2, 1, 0, 1, 8, 2, 1, 1, 2, 2, 0, 0, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,15,0 +https://github.com/mdub/sham_rack,2009-05-03 21:13:40+10:00,fabc0be6c16f3e855e8bbdd655e723ffd7f6537a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 3, 0, 0, 11, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/brendangregg/perf-tools,2014-07-10 12:54:14-07:00,a12c0063e89ed1195752617bd43d8e76de23915e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 46, 29, 14, 0, 1, 0, 0, 4, 6, 5, 2, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 4, 1, 0, 2, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,7,0 +https://github.com/bluemonk/ipaddress/issues/new,2009-08-25 15:23:15+01:00,540023c8ce27954a0ddbcf7cd18064ffbecba70b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/r-lib/roxygen2,2007-06-25 10:38:44+00:00,7733e2079c4652f4df7fdab71b65c6ec38d53685,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/xavierleroy/ocamlagrep,2002-02-01 15:01:56+00:00,79f53a5e3eb55cbc337ed3754a3d3156025eb680,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/hadley/memoise.git,2010-11-11 16:55:32+01:00,eb41e985d9e84d52b64f22834efa1bdaf2cc2605,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/dmeranda/demjson,2012-06-08 17:09:35-07:00,f579ffabbd5026dfe67a61e97d4524c9a171612d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/muquit/grabc.git,2018-04-11 19:08:10-04:00,4be2da1ec8745d51df63e92c149f3d1484a1113f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/linuxmint/cinnamon-session.git,2013-06-02 16:22:34+01:00,ced663aaf4032bf31a3b526143a59c5f2654013f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 2, 2, 4, 1, 0, 2, 5, 2, 0, 2, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/pytroll/pyresample,2012-05-14 14:14:03+02:00,a6551fc76eef2d694a3a5ebc52620a61d6538ff0,"[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/Xubuntu/lightdm-gtk-greeter.git,2011-11-29 14:06:00+11:00,23b165b78ce4a03d20183edf48f6220a363064b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 1, 2, 0, 3, 2, 2, 0, 0, 0, 0, 0, 3, 0, 3, 0, 2, 1, 0, 1, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/NetworkConfiguration/dhcpcd.git,2007-11-07 16:05:07+00:00,755a28e47fb28b412e6a8e664d2bceeeeba284f6,"[15, 4, 2, 0, 0, 0, 3, 3, 0, 8, 3, 9, 2, 6, 7, 1, 3, 0, 0, 0, 0, 3, 16, 11, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 3, 1, 0, 0, 0, 0, 28, 6, 17, 26, 9, 7, 8, 21, 4, 0, 1, 8, 23, 0, 31, 23, 13, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/dimitri/pgcharts,2014-03-28 22:30:28+01:00,68029d113c985567c052b8e1cdc37f488c37ef86,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 14, 0, 5, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 +https://gitlab.gnome.org/GNOME/glibmm.git,2003-01-07 16:59:16+00:00,78e5bf1313f67e4cbc67fe01a408d27de7383abd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 6, 0, 0, 0, 0, 1, 0, 3, 2, 1, 0, 0, 4, 2, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,7,0 +https://github.com/capistrano/sshkit.git,2012-03-09 17:39:33+01:00,d45ff069dc60cdc288fac09eb12d998c4e608a4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://invent.kde.org/pim/kpkpass,2018-03-16 17:31:06+01:00,92f358bf5411468c8db41f5eb6b89ad4bece35ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/indutny/node-ip,2012-08-15 15:59:28+07:00,bedc9da9ef1dbaaa71524f6952a4f39a57738a84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]",1,2,4,0 +https://github.com/flowgrind/flowgrind,2007-10-24 14:03:30+00:00,7465eea8ef8d0fa3293ba547b592d5897207d39c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 41, 4, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/linuxdeepin/deepin-deb-installer,2018-07-31 13:26:45+08:00,03d4cf7871f710f8c79cf9d691ae23cbc935e303,"[7, 6, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 2]","[1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 3, 2, 1, 1, 8, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,1 +https://github.com/fontforge/libspiro.git,2007-10-28 21:46:07+00:00,8bd6222facb17e0aa09532853b34e1f9c400ea3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/LeoIannacone/apt-venv,2014-05-05 02:19:03+02:00,47d48cd77b79b40a2fc07198b9cdac2f1a4efbd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://invent.kde.org/libraries/libqaccessibilityclient.git,2012-04-05 17:19:45+02:00,c9118022c7a5cb9e21bc9250b53c5c7cbb837022,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 8, 1, 2, 14, 0, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 2, 0, 9, 7, 19, 4, 5, 36, 18, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 +https://github.com/puppetlabs/puppetdb.git,2011-08-02 11:29:09-06:00,db9e99a0a89b6d32d574c63d1fe70329f9003548,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 5, 0, 2, 14, 5, 17, 0, 20, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 30, 35, 1]","[0, 0, 0, 0, 5, 0, 5, 0, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 8, 11, 0]",1,3,4,0 +https://github.com/roundcube/roundcubemail,2005-09-28 22:28:05+00:00,30233b8dfb7fe5070dfa11b3e6d2015fb50aa769,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 5, 16, 21, 10, 9, 3, 3, 0, 1, 2, 2, 0, 0, 7, 12, 15, 2, 7, 0, 19, 0, 8, 3, 5, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/cpants/Module-CPANTS-Analyse.git,2007-04-19 19:13:19+00:00,96975b42736ae4994df64b42bd08216619ad997e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 4, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/bbatsov/solarized-emacs.git,2011-12-03 09:07:57+02:00,f6ca4b7020fc7c9d45dd1cd6ce72cd5a0b2726dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 1, 13, 22, 3, 9, 0, 5, 0, 1, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 1, 4, 0, 1, 0, 0, 0]",1,2,9,0 +https://github.com/google/double-conversion.git,2012-02-05 18:06:27+01:00,27f3a9897627dcea6bf4d9d2ce576d2b21563502,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/c-amie/analog-ce.git,2019-04-14 10:02:00+01:00,f40c5609272dd8cd2fee934256dde61f9c1b0f4f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/trentm/node-dashdash,2013-02-27 00:07:36-08:00,b1925e052b674c0cafadcef909950b41c865f5b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 16, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dunst-project/dunst,2011-09-07 15:43:50+02:00,10d7c3fbab67e27edd20e1f2f6c6b272469fd2ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 14, 5, 8, 0, 0, 1, 0, 1, 14, 8, 1, 0, 0, 1, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/savonet/ocaml-opus.git,2021-03-08 20:33:53-06:00,178172af1903a0d520ed29666c14e8e07ed7c013,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/Bioconductor/GenomicRanges.git,2019-04-19 13:21:48-07:00,2626eb2cb23257b9f75e5d8fc638d741ff043962,"[0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/google/stenographer,2014-10-13 16:20:30-06:00,35b7ec1595265f1cb4b35f910f188cf8a0259916,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 26, 15, 12, 8, 5, 1, 20, 20, 18, 2, 1, 34, 21, 18, 22, 21, 42, 18, 3, 9, 8, 2, 6, 3, 0, 0]","[0, 6, 5, 4, 2, 1, 0, 7, 6, 11, 0, 0, 10, 12, 7, 10, 11, 13, 7, 2, 3, 2, 1, 3, 1, 0, 0]",2,7,6,0 +https://github.com/rvaser/bioparser,2016-06-17 10:59:17+02:00,5c6bd4bf36e2558c097eb72717d6d315feba064d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/muammar/mkchromecast.git,2016-03-19 12:59:07+01:00,a05aba58355f706216f05e13e686bd99db2a093e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 25, 40, 11, 77, 22, 77, 46, 80, 14, 20, 23, 57, 30, 20, 28, 13, 14, 4, 4, 4, 34, 19, 7, 5, 17, 1]","[0, 0, 1, 0, 0, 1, 1, 2, 4, 2, 2, 5, 3, 2, 0, 2, 1, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0]",1,2,3,0 +https://github.com/heynemann/preggy,2013-04-12 11:08:53-07:00,7db8ca7203eb0c1efb9b3e94240dc3869d5ba211,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 46, 51, 23, 19, 7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/aresch/rencode.git,2012-12-01 23:04:58+00:00,79f485d54967efa330b30ff94085274db7c5e818,"[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/jonschlinkert/repeat-element,2015-01-11 18:40:45-05:00,002215cd327b57ceffa9c4a74c1a7ed20cdf8d61,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/jquery-i18n-properties/jquery-i18n-properties.git,2014-06-12 20:44:16+02:00,cbb8300bef6e148753f147643ecc5f64f0e0b34e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/firmafon/ruby-fogbugz,2011-05-22 00:06:01+02:00,535feb371ade7a1eb4e1e093157cc5f796faaf49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/miquels/liblockfile-debian,2017-01-05 15:04:25+01:00,020bca7898bfd0a173435907f0ad3dce2f00eca5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/hturner/gnm.git,2017-09-02 12:37:39+01:00,e83dbc32b7f6f1d030e516697e1928e911a928de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mate-desktop/libmatekbd.git,2011-12-01 20:53:10-03:00,916e2eafe251b44f9d0339282f5d00723899caec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://invent.kde.org/sdk/clazy,2015-06-10 17:00:03+01:00,d37732b0a1bd7ce0340b8f06baebb0d3d90dee89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 5, 7, 11, 0, 4, 0, 0, 17, 48, 37, 29, 12, 29, 10, 9, 6, 15, 38, 21, 38, 16, 34, 34, 18, 33, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,12,0 +https://github.com/hunspell/hyphen.git,2010-03-04 12:13:53+00:00,21127cc8493a68d4fe9adbb71377b469b4f2b550,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/qix-/node-simple-swizzle,2016-01-20 08:59:41-07:00,cf1677cf0ebc219b3770cabd226362bfbe4b920f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/khenriks/mp3fs.git,2006-08-06 00:39:56-07:00,113db0eef2a9e6f7b4bd955586a07ff14ef5841c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 1, 0, 0, 4, 0, 0, 1, 0, 0, 0, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/pramsey/pgsql-ogr-fdw.git,2014-12-15 14:18:00-08:00,e950361fb1e874b44f0f325c11fc7f22a8871e5f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 0, 6, 12, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/tkellen/node-v8flags.git,2018-12-17 12:41:06-07:00,0e81c66b29dae48b6d6c2db838266e0cff9c6cc0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,10,0 +https://github.com/taem/sxid,2009-09-08 15:23:07+06:00,7415c8937998b81e58b8eb38b99479089434f7a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/mbostock/smash.git,2013-03-12 20:06:47-07:00,d49c97e38c23c173ca2a4b0d058ac867a49e4766,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 2, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/prawnpdf/pdf-core,2014-01-19 12:41:10-05:00,b0fde4e9be829a84a38b8e273b17a998bd30cbf6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 6, 1, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/monocasual/giada.git,2012-11-08 22:08:58+01:00,b5b195799c155b0262cdff098508f1dac62847ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[8, 1, 12, 10, 11, 4, 17, 17, 7, 15, 19, 11, 10, 20, 12, 10, 9, 29, 31, 17, 26, 4, 10, 5, 21, 7, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,0,0,1 +https://invent.kde.org/plasma/xdg-desktop-portal-kde.git,2016-07-13 11:25:32+02:00,295ca79cc0b8d8f704254d06e154929d0d79f1a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 1, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/matze/pkgconfig,2013-08-08 11:37:11+02:00,f109dbbfc99dfed7ecb3540484e1499fb68097b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/stef/pysodium.git,2013-08-25 23:26:38+02:00,d31211d189e36c53991729243b1abef51420f22b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mathiasbynens/unicode-property-value-aliases.git,2016-05-21 11:58:38+02:00,4916baf7c95c7d418dadc5478cf6dd6b472cf33b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dompdf/php-font-lib,2012-11-16 18:16:02+01:00,6cd2f2a4b0e1dd3104295c80864b24fb5ff8934d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 7, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/curvedns/curvedns.git,2010-10-23 12:41:01+00:00,93abc68e47e52adc99c846dc9b07a4e609128fc4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 2, 0, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/unshiftio/ultron,2014-11-11 14:04:22+01:00,974a17398c7d15fe36b86ffe6cbf62f5d8612e5a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://gitlab.com/compiz/libcompizconfig.git,2007-03-13 14:01:52+00:00,54b8baf2a3c54f62c47255c12e02d4631b60eb88,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 29, 8, 1, 0, 49, 31, 14, 13, 8, 1, 3, 15, 29, 5, 3, 19, 5, 0, 1, 28, 14, 16, 9, 16, 3, 0]","[0, 0, 0, 0, 0, 9, 4, 2, 2, 2, 0, 0, 3, 5, 1, 0, 1, 0, 0, 0, 4, 3, 0, 1, 0, 0, 0]",2,4,16,0 +https://github.com/es128/glob-parent,2015-01-12 15:18:06-05:00,b08cbec38731960b35446da9d819824ba35e0c49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/speed47/spectre-meltdown-checker,2018-01-07 15:00:15+01:00,3b59139e7970bbeca5c8a56ce9f1ac09ed02bfcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[126, 31, 23, 23, 4, 7, 0, 1, 4, 3, 13, 3, 16, 17, 12, 0, 2, 0, 2, 20, 0, 0, 2, 2, 0, 0, 0]","[28, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,37,0 +https://github.com/amrayn/easyloggingpp.git,2012-09-22 20:41:35-07:00,c7aff6c9823f07f149cbebcc9a4047f8d48aa195,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 28, 14, 2, 0, 4, 24, 9, 24, 9, 1, 1, 0, 0, 10, 31, 39, 23, 15, 10, 0, 0, 40, 23, 20, 1]","[0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 2, 1, 0, 0]",1,4,4,0 +https://salsa.debian.org/ruby-team/ruby-github-api,2016-07-01 20:13:10+08:00,8d56e514802d9bd658b78b07958d045d0c12127d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gulpjs/glob-stream,2013-07-04 01:29:17-07:00,2c7ffd644cca9791998cdb534444800d52602244,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 2, 10, 8, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0]",1,1,6,0 +https://github.com/d3/d3-dsv,2013-03-08 09:42:16-08:00,656f5ace67cb50a1f157229ee4fca0985469929d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/Backblaze/b2-sdk-python.git,2015-11-16 08:44:35-10:00,4fd290c0d4b4b252c749898a373beaca7d60fbad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 6, 16, 39, 27, 17, 9, 19, 5, 1, 37, 10, 22, 77, 30, 18, 46, 36, 41, 47, 35, 17, 20, 0]","[1, 0, 1, 2, 1, 2, 9, 9, 7, 2, 5, 1, 0, 8, 2, 5, 10, 5, 0, 9, 11, 6, 9, 5, 2, 6, 0]",1,4,14,0 +https://github.com/diff-match-patch-python/diff-match-patch,2018-11-05 18:00:06-08:00,6e065aa329cec6fbd73dd2fef7c72c1dd68d07f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/watson-developer-cloud/python-sdk.git,2015-10-08 10:09:23-04:00,0fc9e32a0296ba399f216878c305fd83d7f115a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 24, 9, 5, 6, 0, 15, 0, 4, 1, 0, 0, 0, 10, 3, 5, 6, 8, 10, 5, 0, 12, 5, 16, 2, 4, 1]","[0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,2,3,0 +https://github.com/osmcode/libosmium.git,2013-12-09 09:39:57-08:00,de9553e0ef33098680498e895b1d6bb207f31b0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 5, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/keras-team/keras,2015-03-27 17:59:42-07:00,37a1db225420851cc668600c49697d9a2057f098,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 35, 31, 44, 17, 20, 27, 17, 45, 39, 37, 53, 100, 75, 63, 49, 64, 23, 16, 19, 48, 23, 11, 39, 9, 12, 1]","[15, 6, 6, 13, 2, 6, 10, 5, 13, 12, 15, 8, 24, 21, 11, 11, 19, 7, 4, 4, 18, 9, 3, 14, 3, 5, 0]",2,18,87,0 +https://github.com/smarty-gettext/smarty-gettext.git,2004-04-28 18:19:14+00:00,6acf4031afa2502b31c2ae8b6138bc375ebd9ff1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kjetilk/p5-rdf-ns-curated.git,2015-08-26 23:24:42+02:00,e69829af2e187c6ebd6907ca259ac0870174eed4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/pdudaemon/pkg-pdudaemon,2014-01-13 10:02:28+00:00,6ab1ca0485662e7eebf047e409fda37a9b5984c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/hpjansson/chafa.git,2018-02-25 23:41:01+01:00,0bd2c276903b2dca423c305316ee0a3ac508769f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 42, 14, 30, 23, 25, 19, 4, 12, 33, 2, 2, 18, 11, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 13, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",1,1,4,0 +https://github.com/rzvncj/xCHM.git,2003-07-31 19:01:08+00:00,fb2e99cd6bd4962e9caa1ba5d4061f1b81c0075a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 12, 5, 3, 17, 4, 32, 10, 14, 3, 3, 1, 4, 11, 0, 1, 3, 0, 1, 1, 0, 0, 1, 1, 6, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kugaevsky/mousetrap-rails,2012-09-23 02:08:58+04:00,554f4d3b6e1d663b49cacb3d8d54083322dbc467,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/PacificBiosciences/pbcopper.git,2016-06-22 16:08:45-07:00,d03084a4062c00bf166fee17bbcc270e1f3d54a8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 1, 0, 0, 0, 0, 0, 0, 7, 0, 3, 3, 4, 12, 0, 0, 2, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 2, 1, 6, 0, 0, 1, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0]",1,4,7,0 +https://github.com/sebastianbergmann/comparator,2013-11-04 22:21:42-05:00,5790b7f6dd52309a381747f3bc7247175d8e5afe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 6, 0, 0, 3, 1, 0, 0, 0, 0, 1, 2, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/mishoo/UglifyJS2,2012-08-27 12:29:53+03:00,ce8e8d57c0d346dba9527b7a11b03364ce9ad1bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 28, 17, 15, 35, 42, 19, 5, 7, 24, 10, 4, 5, 4, 1, 3, 0, 7, 3, 6, 2, 5, 7, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 0, 0]",1,2,12,0 +https://github.com/mapbox/leaflet-image,2013-08-09 12:42:15-04:00,f3537f5378af66331cdf8606772a328231ce962c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 4, 11, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/voc/voctomix.git,2014-07-28 10:00:25+02:00,b758723fe3266e91d0427c3367d0753a7663a514,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 14, 10, 10, 8, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/crucialfelix/django-ajax-selects,2010-06-06 22:36:35+00:00,bbd9bcdbe34eece934cd1a40515c77f886879384,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mypaint/mypaint,2005-02-07 22:14:34+00:00,fca719792bae5ade6d0ec8b223fa5fb80822ce25,"[8, 5, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 5, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 3, 2, 5, 2, 11, 6, 0, 0, 0, 7, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/r-lib/svglite.git,2012-11-27 15:32:24+01:00,d7bf5c27ce306e8c14dd2eb4cb7abb3369b8162b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/chrissimpkins/shellescape,2015-05-07 22:07:10-04:00,43251349dfb2b1cc04bc64579729113e7e7667b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/plotly/plotly.R.git,2013-11-25 18:43:45-08:00,32157e89620d3747121a4f906d865423f9ec00a4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 15, 5, 6, 3, 2, 8, 1, 8, 4, 16, 5, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 0, 1, 0, 2, 1, 6, 2, 5, 0]",2,5,6,0 +https://github.com/opencontainers/runc,2014-02-21 14:56:15-08:00,6415e8becc2c47845cf565b87229b5dbd2fa40ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[49, 29, 11, 15, 3, 11, 15, 2, 22, 30, 5, 20, 20, 12, 18, 36, 37, 50, 4, 38, 31, 38, 17, 32, 27, 7, 1]","[0, 4, 2, 2, 1, 4, 5, 0, 1, 5, 2, 5, 5, 2, 3, 8, 15, 12, 1, 16, 12, 16, 8, 6, 10, 2, 1]",2,11,47,0 +http://space.twc.de/public/git/gst123.git,2009-08-15 10:12:16+02:00,6124e55e68b86f495803bc3257dec8a84ddd6cb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/google/python_portpicker,2015-03-20 18:22:24-07:00,56fceff11bf90f020acd4000568a0a56299f8ffe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tonsky/FiraCode.git,2014-11-12 01:47:04+06:00,5a65981f5daed5087fee0cc9a5d1832cc91a93e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/LMMS/lmms.git,2005-09-22 13:49:52+00:00,4c7832a975f9786da873edecb6f917c5b8f98a06,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 2, 3, 2, 1, 2, 0, 0, 1, 4, 7, 7, 0, 1, 4, 1, 19, 6, 5, 2, 7, 7, 7, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/containers/conmon,2018-08-10 07:21:44-06:00,04b9fcd670a13899618539011ab82f3efd79565e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/jbj/magicrescue,2018-10-14 17:11:58+02:00,2503bc547acd5d42567132d55eac790c69ef5f7e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ccocchi/rabl-rails/issues/new,2012-02-22 11:42:38+01:00,5930e46ec0899d9d1003ce4b104d2c5f36829f9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 0, 1, 4, 5, 2, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 9, 16, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,1,0 +https://github.com/r-lib/scales,2010-11-11 09:06:52-06:00,4c5f18e015d757715bcc65c29b1661d853ca0d63,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 11, 0, 0, 0, 0, 20, 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gvfs.git,2007-09-13 08:26:29+00:00,4bed9f54c2cb8fc1900a881b5cc3e50c804f0b23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[908, 7, 4, 12, 3, 12, 12, 12, 7, 6, 2, 2, 1, 17, 10, 1, 20, 53, 30, 35, 21, 36, 46, 93, 156, 79, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,74,0 +https://github.com/digitalbazaar/jsonld.js,2011-08-22 23:23:24-04:00,28d5541eaad8811609251352e66788dcc9940802,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 5, 31, 36, 0, 13, 14, 4, 9, 7, 1, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 2, 0, 0, 3, 5, 2, 1, 5, 0, 9, 6, 0, 13, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,4,0 +https://github.com/coreruleset/coreruleset.git,2012-08-02 08:12:09-07:00,f9fa656f69bb368182c7f3c9e8355e0b6dae644c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 20, 10, 6, 1, 1, 0, 5, 3, 1, 0, 1, 2, 0, 5, 0, 0, 0, 2, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,7,0 +https://github.com/kasei/atteanx-endpoint.git,2016-03-23 15:14:05-04:00,4cc8f1e8d170bb669cbd845f3c0a7d6b117412b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/hughsk/is-typedarray,2014-06-01 15:11:41-04:00,a52c5395ea29bc6e8bd0deeeca215214f817f899,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kodi-pvr/pvr.njoy.git,2015-02-24 16:27:30+00:00,dee3094e07fe4992ed59e6fe715ba38987812084,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 0, 1, 1, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 2, 1, 1, 0]","[0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",5,4,4,0 +https://github.com/neovim/pynvim,2014-05-09 18:51:45-03:00,1d75e8a73c0d76b946285309c0b051f5ca3e2fca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 12, 6, 0, 8, 0, 2, 0, 0, 4, 0, 2, 2, 11, 0, 11, 8, 10, 26, 18, 12, 2, 4, 17, 0, 5, 0]","[0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 1, 1, 1, 5, 0, 2, 1, 2, 8, 0, 1, 0]",1,1,11,0 +https://github.com/pagekite/Colormake,2012-02-18 16:22:23+00:00,7958c2343958c85a2a8736846832df514064b019,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/psb1558/Junicode-font,2019-05-06 10:06:13-04:00,8a3398f1d753e53fc5f1f8f91d7d6ec399bdebd8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/thoughtbot/shoulda-matchers,2007-03-14 18:12:55+00:00,7a4202f9b8fa77318694864af9d1bcfde4084deb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 13, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 6, 0, 0, 3, 12, 0, 4, 2, 2, 6, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Tom-McDermott/gr-hpsdr,2014-09-29 16:03:21-07:00,9522f87d06c459fc0b53a2f0253ff2795d9d691a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 11, 4, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0 +https://github.com/PierreRaybaut/PythonQwt.git,2015-08-20 16:29:51+02:00,aed9ddfbb84cb2393a95ff0a1ff92d1258fb6305,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/VirusTotal/yara.git,2008-09-26 19:46:09+00:00,4c55513b9f20e6cad96f29bd3d3877f6871db062,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 5, 0, 3, 1, 2, 1, 2, 1, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gucharmap.git,2002-09-09 18:53:03+00:00,fac0012b349ffaf2b690758aa5953f2ad36906ab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 13, 0, 77, 18, 19, 0, 25, 26, 15, 24, 10, 21, 5, 14, 27, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0 +https://github.com/nodeca/argparse.git,2012-05-14 19:32:59+04:00,c754849d8b452815db893f20547c70eda59e3949,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 6, 7, 0, 0, 0, 2, 9, 0, 0, 10, 0, 0, 0, 0, 6, 4, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,7,0 +https://gitlab.gnome.org/GNOME/gtksourceview.git,2001-12-06 02:51:13+00:00,5c6e5cbc5512a1cbfad1ca905f21b07065e0defd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 2, 0, 2, 0, 0, 0, 1, 2, 2, 0, 0, 0, 7, 1, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,9,0 +https://github.com/davesteele/sirikali,2016-08-11 03:34:05+03:00,e80b7f7351a3fc5913840f197074a89b31e18e1b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 13, 6, 14, 4, 23, 7, 8, 16, 0, 2, 7, 0, 9, 6, 6, 4, 8, 0, 2, 4, 0, 0, 7, 31, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/nichtich/RDF-aREF.git,2013-11-28 13:19:42+01:00,94c1087e67782ad8da4f411400ef76966b77b3b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 3, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/cjcliffe/CubicSDR.git,2014-10-26 12:36:32-04:00,6bb7d344aa700f565b5621035df17b2eb5440c94,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 21, 12, 36, 15, 25, 20, 15, 31, 24, 37, 12, 19, 14, 19, 19, 14, 10, 13, 8, 1, 15, 8, 1, 3, 8, 0]","[0, 1, 2, 6, 3, 2, 1, 2, 4, 3, 6, 1, 6, 4, 5, 2, 4, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0]",1,2,3,0 +https://github.com/solvespace/solvespace/issues/new,2015-07-10 15:59:12+03:00,636b20bfa9fae2a40dba6b1b8c1adecfbfc5a9b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/ternjs/acorn.git,2012-09-24 12:10:30+02:00,61906485a19579ba5b131778f9c94c5c6228e91a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 15, 6, 12, 0, 1, 7, 1, 7, 1, 0, 0, 0, 4, 2, 4, 15, 1, 6, 2, 5, 3, 4, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0 +https://github.com/jashkenas/underscore.git,2009-10-27 13:26:36-04:00,ef10906b5f82f873960786578565d42d14163771,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 15, 2, 9, 5, 17, 16, 0, 0, 8, 1, 3, 4, 2, 2, 0, 13, 31, 3, 1, 3, 0, 2, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,13,0 +https://github.com/korfuri/django-prometheus,2015-04-04 23:53:05-07:00,2cf8fcc039a4f21f8611ee78067f446f1856d80c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/agateau/yokadi/issues/new,2009-02-03 10:41:14+01:00,b68abca7bf25451a3ee24d62b3d8b4f7d6e9b81b,"[1, 0, 25, 21, 10, 4, 7, 16, 1, 0, 0, 1, 1, 7, 22, 6, 8, 35, 0, 20, 0, 1, 10, 11, 7, 15, 2]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[28, 7, 15, 0, 0, 5, 14, 4, 8, 2, 0, 1, 0, 1, 13, 8, 2, 0, 7, 0, 1, 16, 31, 2, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,6,2 +https://github.com/linuxdeepin/deepin-image-viewer,2016-02-24 13:52:33+08:00,c02df4746940d5ccb542c35e1438948aa6da0054,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 6, 3, 5, 4, 11, 9, 10, 10, 7, 15, 11, 19, 27, 14, 28, 38, 48, 39, 26, 38, 27, 49, 29, 41, 46, 1]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 7, 2, 3, 11, 14, 12, 6, 11, 9, 17, 9, 13, 17, 0]",2,2,9,0 +https://gitlab.gnome.org/GNOME/baobab.git,2006-04-23 14:28:58+00:00,253a387c66a5c666adb115980580e4aaf54e6f66,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 8, 5, 3, 3, 0, 11, 2, 1, 0, 4, 4, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0 +https://invent.kde.org/plasma/kwin.git,1999-08-19 23:26:42+00:00,311db796c68e520e5b6d28829d6aaa4bfbcd1536,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 6, 0, 1, 3, 24, 20, 18, 22, 14, 10, 8, 4, 2, 4, 2, 6, 0, 1, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,16,0 +https://invent.kde.org/plasma/kdecoration.git,2014-07-18 07:45:21+02:00,e76c6ff9e16a4b1d965d3dbff1a32f8a7e2a5a18,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 30, 5, 6, 18, 0, 0, 14, 3, 5, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://git.osgeo.org/gitea/postgis/postgis.git,2001-06-22 17:39:29+00:00,3cda1194452a9a96a97e97e049c29c7154aa3b8d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 6, 20, 7, 7, 1, 0, 3, 2, 0, 10, 0, 2, 5, 6, 8, 7, 5, 0, 2, 0, 0, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/ricmoo/pyaes.git,2014-05-12 15:53:53-04:00,1fd2a0aee1f43b575b57529026cb3d2e7efd8dcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 1, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/diafygi/acme-tiny.git,2015-11-25 21:44:00-08:00,7eacef721cb9c7f1c120bff9ff03adb6e5c35b4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 51, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 11, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,14,0 +https://github.com/p-e-w/maybe,2016-01-24 19:20:36+01:00,abe496afe2d56ebfd1e4dd7681d1c4a7853adea3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 4, 1, 0, 0, 0, 1, 16, 4, 6, 4, 4, 0, 4, 3, 0, 7, 3, 3, 4, 0, 1, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/xelerance/xl2tpd,2005-11-19 21:28:56-05:00,79e3fc3e6352e58cf91a36928c40f80f8631479a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/c-ares/c-ares.git,2003-10-07 21:54:04+00:00,5e847a14bd65383ce65f143c578e120899981fd9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 18, 17, 9, 15, 10, 5, 2, 1, 1, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-control-center,1998-02-10 21:22:12+00:00,3c03b47392098da82a675d968629c4d62da49619,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 8, 7, 7, 3, 0, 0, 1, 7, 12, 11, 3, 6, 15, 7, 7, 11, 4, 5, 0, 5, 7, 6, 10, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,43,0 +https://github.com/alexdantas/xbomb.debian,2013-05-02 20:54:17-03:00,e7cff2e6dfb5ec22a6dd80d9eb0b2864b69beee8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/librsync/librsync,2000-02-29 04:58:16+00:00,4ddd6df3df0334fc9053e860966b0e91f1b6e1b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 2, 0, 0, 39, 13, 62, 6, 22, 3, 4, 7, 22, 16, 5, 3, 1, 0, 0, 0, 8, 15, 19, 0, 9, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/theskumar/python-dotenv.git,2013-06-13 10:32:14-05:00,5fc02b7303e8854243970e12564f2433da7a1f7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/umlaeute/v4l2loopback.git,2009-02-03 10:08:56+00:00,01a209f7c8b3e6a32d1543facc6006d6458b89e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 5, 5, 6, 0, 10, 1, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/lxqt/lxqt-runner.git,2016-09-06 18:21:01+02:00,b86ea09ab0e0ea76737288a50113029221d3a1d7,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 +https://gitlab.freedesktop.org/cairo/cairomm,2005-12-02 13:34:41+00:00,579e53718d29e77486e076d2b3461d986911f050,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 2, 1, 0, 2, 0, 3, 3, 3, 1, 9, 3, 1, 3, 0, 3, 5, 0, 1, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/JuliaMath/openlibm.git,2011-08-13 00:31:25+05:30,aba7ae910f04f7df13024ba61763eabc2524bcdc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 17, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/zkat/ssri.git,2017-03-22 21:55:28-07:00,6f6a12d82ed2e609d9883126c22b1764a97ed407,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 19, 5, 2, 1, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/biolab-unige/nifti2dicom.git,2012-01-12 16:02:01+01:00,8962e2d5c2a74d508ba08a154c01250c97c05f38,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",0,1,0,0 +https://github.com/brofield/simpleini,2013-09-28 11:13:59+10:00,8d48b8dc83b07b2b24d3ac155a55a02332af9688,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jtauber/pyuca,2012-06-21 09:34:36-04:00,02e4fd3a6b15e52e5bd7983c6844f587e2a35876,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mkdocs/mkdocs,2014-01-11 21:06:13+00:00,4fb859db0ffc5d509107ef6bcad21416a0c1a991,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 14, 9, 20, 23, 9, 5, 3, 3, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 3, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/ropensci/av.git,2018-08-28 14:36:45+02:00,42ef21e3448bcbd1e9e0beda7d60360ef079e2ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 50, 15, 28, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/RDFLib/rdflib.git,2003-12-18 03:34:39+00:00,881fbc392f06ceb7166fd5bb4523f0796d4af363,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 6, 0, 0, 0, 0, 1, 1, 0, 6, 3, 10, 16, 3, 3, 3, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.xfce.org/panel-plugins/xfce4-pulseaudio-plugin,2014-04-24 23:32:18+01:00,6d5680f733ce6bc1ee6bf60dd6d2e4b427ada70c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/drobilla/jalv.git,2012-04-19 23:42:34+00:00,ad424892b0d45b2c46b6bc503e68e776f092af27,"[1, 0, 6, 0, 3, 0, 0, 2, 17, 2, 1, 3, 8, 0, 3, 3, 3, 7, 2, 4, 0, 12, 6, 4, 10, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 2, 1, 2, 1, 1, 0, 0, 0, 7, 3, 0, 5, 10, 4, 9, 4, 0, 5, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/svn-all-fast-export/svn2git.git,2015-04-21 08:58:49+03:00,7522adcf07a42d08faae61bc86b44bef2b00b177,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1 +https://github.com/Unidata/netcdf-c.git,2010-06-03 13:24:43+00:00,18f4bca367140fc05be78287da26a34ebc3d9286,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 10, 22, 25, 8, 17, 1, 4, 17, 10, 7, 7, 11, 8, 2, 4, 4, 16, 11, 8, 0, 2, 4, 8, 4, 7, 1]","[1, 0, 3, 5, 1, 5, 0, 1, 5, 3, 1, 1, 1, 3, 1, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/ocaml-community/sedlex,2003-09-20 17:52:50+00:00,dfe4e5e4a4bf23eba96226aeb28e4c51044c7244,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/drforr/perl6-readline.git,2015-03-28 14:37:46+02:00,cdfda53217b5970a76b7a4e3cf755952a84a8000,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 3, 0, 1, 0, 5, 9, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/sebastianbergmann/php-token-stream,2009-11-06 10:29:10+01:00,25da2ae9ecc8404036fc542b81272840dde115de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 7, 9, 1, 0, 1, 3, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/debian-tex/biber,2009-05-20 11:41:04+02:00,3266cab21339dccd1f207d6f9c691f413ca43946,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 40, 3, 30, 32, 24, 14, 4, 26, 18, 5, 0, 0, 1, 0, 0, 0, 0, 0, 21, 47, 26, 7, 1, 6, 3, 0]","[1, 4, 0, 4, 1, 4, 6, 0, 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 1, 1, 1, 0]",2,2,0,0 +https://github.com/transceptor-technology/siridb-server.git,2016-03-30 21:58:40+02:00,f0516f4ce3fdf9bb82a2dd988afcc29067d7141c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 8, 11, 8, 4, 0, 0, 3, 7, 13, 17, 15, 20, 9, 6, 13, 15, 11, 11, 6, 0, 1, 5, 7, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/boundary/folsom.git,2011-03-23 16:06:02-07:00,eef9c04d04c297955ff8e73c9c8b73088ae64151,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 21, 0, 12, 20, 0, 0, 0, 7, 6, 5, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/cboursnell/crb-blast,2014-04-29 11:38:12+01:00,10e3d9902ac7157efd110040104a4ff6dfd8d425,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 14, 0, 1, 0, 4, 0, 0, 1, 8, 8, 2, 9, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/yoriyuki/Camomile.git,2009-06-21 09:28:39+00:00,5bbba627977691f03b6c57c853bcf42256113083,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/pocl/pocl,2011-10-18 20:16:49+03:00,9b92906eda88817a9a7a569d0a062c7ad0f64139,"[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 26, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[35, 46, 14, 45, 1, 14, 38, 30, 58, 14, 6, 8, 25, 31, 11, 10, 15, 9, 18, 10, 10, 4, 5, 11, 6, 0, 1]","[5, 10, 5, 8, 0, 2, 11, 6, 12, 2, 2, 2, 7, 9, 1, 2, 3, 2, 2, 1, 2, 0, 0, 2, 3, 0, 1]",2,4,5,0 +https://gitlab.gnome.org/GNOME/gsound.git,2013-03-03 01:55:42+08:00,1fd3bd141467532aabb887903edf81176bd79fcc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 7, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/JJ/perl-mp3-info.git,2007-01-04 21:36:56+00:00,8e03b8bd9a414c83324b41af447a2884f36f2a78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/linux-rdma/rdma-core,2009-09-16 15:02:40-07:00,e333b8e2463b83cbb77cab87396fa175de683dac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sorich87/bootstrap-tour,2012-07-03 15:03:22+01:00,f8cf8c62981ef84ddc2561f7b2939d1f2a92832e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 22, 4, 1, 0, 11, 1, 1, 14, 0, 0, 0, 0, 2, 4, 1, 1, 9, 2, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 5, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0 +https://github.com/df7cb/postgresql-numeral,2017-04-01 18:31:07+02:00,05846b04a1aa9ac5dc8d4634841ebc0a2863478f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ncannasse/xml-light.git,2003-06-11 16:51:34+00:00,babf2584ba112b3e29c77683f30f004e45cb862a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ejwa/gitinspector,2013-07-12 03:50:21+02:00,cae99cb3f7bc944648bb962ddbece2154d5d391a,"[0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 3, 0, 9, 5, 0, 1, 14, 6, 6, 0, 7, 6, 8, 18, 20, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 7, 5, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 +https://github.com/ultrajson/ultrajson,2011-02-27 21:09:37+01:00,f184c5744f1965f3c8d5b68671c6d693fb47d2e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 6, 18, 0, 4, 0, 2, 1, 0, 0, 0, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0]","[2, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]",1,3,5,0 +https://github.com/getlogbook/logbook.git,2010-07-22 12:22:18+01:00,814be4bb37bd4989d377342aabb45d45ad9a6ef4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0]","[78, 1, 0, 33, 5, 12, 188, 57, 74, 42, 1, 0, 3, 3, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[8, 0, 0, 1, 1, 0, 24, 7, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,5,10,2 +https://github.com/ckeditor/ckeditor4,2012-08-21 17:14:46+02:00,67142516d5ecf595e7efc92c0648eed634390150,"[0, 0, 0, 0, 0, 0, 0, 90, 307, 4, 6, 23, 14, 30, 39, 82, 34, 31, 12, 35, 50, 145, 39, 99, 12, 68, 2]","[0, 0, 0, 0, 0, 0, 0, 1, 15, 0, 1, 3, 1, 3, 3, 19, 10, 4, 3, 11, 15, 24, 13, 23, 4, 6, 0]","[20, 35, 36, 19, 9, 9, 14, 44, 68, 38, 46, 105, 107, 34, 3, 42, 24, 40, 12, 12, 0, 13, 8, 0, 34, 171, 1]","[5, 9, 13, 7, 5, 4, 5, 8, 16, 10, 17, 26, 24, 6, 1, 17, 9, 9, 4, 1, 0, 2, 1, 0, 9, 16, 0]",5,0,7,5 +https://github.com/redis-store/redis-store,2009-04-11 12:54:41+02:00,4d0f469dac65fc67b1c209a301b1acf743cfd22e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 31, 22, 1, 3, 5, 3, 6, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/davesteele/comitup,2015-12-08 17:01:54-05:00,cf3dacffa94627c2b7d488eac046a35d20870530,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 4, 7, 2, 0, 18, 13, 13, 24, 12, 0, 1, 4, 7, 3, 0, 7, 1, 1, 0, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/madsen/dist-zilla-plugins-cjm,2010-03-15 20:13:08-05:00,e212bd97ec490a006cfe2544b72d8c48c4a42e31,"[0, 5, 0, 15, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 14, 2, 7, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/vsergeev/u-msgpack-python,2013-09-29 07:09:19-07:00,736ee98064b6d9795099cf7ad2eda1d480e58915,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 5, 2, 0, 0, 0, 5, 1, 3, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/sebastianbergmann/phploc,2009-01-22 12:40:31+01:00,51a2e5ec792e0976a2a2dd4a4c215cdd6c82ab2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 11, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/lxqt/lxqt-powermanagement.git,2013-08-06 06:33:32-07:00,d5947e7a94ca4ca308b6202fc72bd415dba1018d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0 +https://github.com/drj11/pypng,2009-03-13 12:18:09+00:00,343323ef1247cb574ed0b5d1bfadfb6d5831f29c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 26, 24, 11, 12, 19, 7, 5, 4, 8, 0, 6, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/quantstack-debian/xtl,2019-09-10 21:24:57+02:00,e05f29436ada10045cedc631ac930babf18a7823,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/isaacs/node-glob.git,2009-11-01 21:03:59-08:00,d3c97e253b520e05a6d979adfa0a67e3f95653c1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tstack/lnav,2010-02-23 20:35:52-08:00,88889954b85185e4ef335dcb0f38ea70d734389c,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/fstl-app/fstl,2014-03-15 14:51:22-04:00,615d837b3bd6cfc50cc935f97248702551c36219,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[9, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/johndyer/mediaelement.git,2010-07-27 21:35:01-05:00,93d983133804e0b3bbd0dbff03dbef186923455e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 2, 5, 1, 4, 3, 2, 6, 0, 0, 3, 0, 0, 0, 10, 47, 2, 31, 14, 9, 2, 9, 0, 14, 32, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,4,0 +https://github.com/achernya/hesiod,1988-08-07 21:49:56+00:00,e077b257d4b7d04eda76cf3e004bdc1fc745652f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/amueller/word_cloud,2012-11-04 14:57:59-08:00,c8230f32ece9d370879cdf4b6548918d12d7cd23,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[13, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,1 +https://github.com/girke-lab/ChemmineR.git,2008-10-14 18:37:39+00:00,812a3d4e656419825b4ee2c8f84a72480538986d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/mongoengine/flask-mongoengine,2011-05-09 16:48:03+01:00,838e3fed96d1e038ddfca3f2902fc2c940d02a5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 15, 0, 2, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 3, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/Graylog2/gelf-rb,2010-11-02 17:30:59+03:00,421bf4d3f71befc659e68a1e8a7cbf31ac5dfc84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 32, 18, 26, 11, 5, 0, 0, 7, 8, 0, 7, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 5, 1, 7, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/eferdman/dehydrated-hook-ddns-tsig.git,2016-11-04 23:50:16-07:00,a596e0c0785d54a7817c232f5095e3d5976df56b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 31, 22, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://gitlab.com/onlyjob/writeboost.git,2015-06-12 11:17:35+10:00,0be8b404a9dc52a577395c848a48b56e46327a4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/seatgeek/fuzzywuzzy,2011-07-08 15:33:26-04:00,7d7e03befa7bf867233ebc214970cdb8267499e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 4, 0, 0, 1, 0, 1, 2, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/clojure/tools.logging.git,2011-03-11 11:12:31-05:00,4ee20655311f532dc9aa8259139bf52318b8b2b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 0, 0, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/anvilresearch/json-document.git,2016-02-04 18:27:07-08:00,071ca6aaa37feaf66461d139b01a3ef27d665256,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 13, 5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 24, 2, 10, 31, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 +https://gitlab.gnome.org/GNOME/glade,2001-06-19 03:29:28+00:00,dc4dfdf1884bda41748269b12280aecf4e05409d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 14, 8, 10, 4, 1, 6, 3, 7, 4, 4, 2, 0, 6, 1, 1, 1, 2, 0, 7, 2, 0, 6, 11, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0 +https://github.com/jquery/jquery.git,2006-08-14 02:00:28+00:00,f8402b9a081f0096986d140f809f4d57c6db7834,"[0, 0, 0, 0, 0, 11, 4, 5, 2, 1, 0, 1, 2, 11, 1, 6, 13, 32, 12, 5, 24, 13, 5, 13, 2, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 14, 26, 22, 19, 12, 10, 24, 24, 6, 16, 9, 13, 15, 8, 9, 5, 13, 27, 16, 53, 61, 18, 19, 12, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,8,0 +https://github.com/strukturag/libheif.git,2017-12-14 14:45:48+01:00,97f8cd6222a5b69135e9dc1b130e7eb200bb6e6b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 32, 36, 72, 85, 59, 35, 10, 67, 16, 0, 0, 0, 0, 20, 4, 35, 9, 4, 15, 2, 1, 8, 40, 4, 41, 1]","[0, 0, 1, 0, 2, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 4, 1, 1, 0]",1,3,9,0 +https://github.com/voxpupuli/beaker,2010-07-21 10:50:25-07:00,7e2fea573dde4f7e82c2e936a4c020e2d4055e9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 30, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 0]","[63, 11, 0, 1, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 6, 21, 15, 3, 16, 24, 20, 4, 1, 9, 0, 0]","[11, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",6,4,7,2 +https://github.com/sdgathman/pysrs.git,2017-07-27 23:38:56-04:00,dacb6fc7e1d97235898f229da3e9eb6f20c40ac7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 2, 0, 0, 3, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/twbs/bootstrap-sass,2011-09-06 20:08:31+01:00,c303d86d57e2fc8b5b9b4e812bc6820649941c71,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/fusioninventory/fusioninventory-agent.git,2007-02-23 14:32:05+00:00,b484b46d5ffa65837123f07963b97782dcd1a8b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 11, 9, 0, 0, 0, 0, 24, 15, 0, 8, 25, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[50, 8, 13, 17, 4, 7, 3, 8, 0, 0, 0, 0, 5, 1, 24, 6, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/whitequark/ocaml-inotify,2014-01-26 08:46:43-05:00,b93d43a8609027c532ae6ac7e5025bfb5a8f4300,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 1, 0, 4, 11, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/puppetlabs/puppetlabs-ntp.git,2011-02-23 14:05:56-05:00,384ffd957153f65eb4f47b3142d98853c31b4124,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/vmware/pyvmomi,2013-12-13 09:30:30-08:00,c03fac748a4286e65e3739688af71f0e7c775b3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 3, 0, 0, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 0]",2,3,11,0 +https://github.com/krig/parallax,2009-01-08 14:34:49-07:00,b24af9c96d353160b466f0f6217048ea17a0d014,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[42, 0, 0, 0, 0, 0, 4, 4, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/greenbone/openvas,2005-11-06 20:06:15+00:00,366905e40bfe94314580d76a24c2ab0d79f8e6b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 3, 33, 11, 1, 10, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/prometheus/mysqld_exporter,2015-03-12 13:23:48+01:00,8739b894e3709102ad65bea7068d3e3b989eb920,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 1, 4, 0, 0, 4, 3, 0, 0, 3, 0, 3, 5, 0, 0, 7, 2, 0, 0, 1, 0, 14, 11, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 6, 5, 2, 0]",1,5,15,0 +https://github.com/GoalSmashers/clean-css.git,2011-02-28 19:53:41+01:00,5a1b3a6a414f4df182d1f3557d84b985d364c341,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/mjambon/cppo.git,2019-05-27 00:50:57+01:00,55261fd39d4b0a6eb17ac9e07438f56469e6a01a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/hoelzro/linotify.git,2009-08-03 13:40:39-05:00,fff42a9963648dcbca8082a017e47428a4ccbfd3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/fcitx/fcitx5-gtk,2017-05-12 17:57:29-04:00,4014c205ec1d7f5738052b3928259b43c04feb31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 3, 0, 9, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ukui/ukui-control-center,2017-02-13 15:07:02+08:00,77c79b8fbad25b7973389134dc4ea8a34d312744,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 14, 9, 4, 7, 0, 0, 3, 2, 1, 1, 0, 0, 11, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,6,0 +https://github.com/ValeevGroup/tiledarray.git,2008-07-30 17:28:00+00:00,6fad665cf56d9416668f3b6447b850d1dd873780,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 8, 25, 5, 0, 0, 0, 0, 0, 1, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/geopandas/geopandas.git,2013-06-27 12:26:35-05:00,c8ba1daf43dd46ad81c60b1e109d2f37289cedd2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 26, 32, 5, 3, 2, 0, 28, 8, 0, 5, 12, 0, 15, 9, 6, 30, 22, 26, 29, 18, 11, 4, 0, 0, 0, 1]","[2, 3, 6, 2, 0, 0, 0, 4, 2, 0, 2, 2, 0, 1, 1, 1, 4, 4, 8, 6, 2, 1, 2, 0, 0, 0, 0]",1,2,9,0 +https://github.com/xtaran/systray-mdstat,2017-01-27 01:22:16+01:00,31d63fb5ddeb3b44a3109c1858484da4e7bc86d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 4, 3, 0, 5, 9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/stathissideris/ditaa,2011-04-21 20:59:06+01:00,76981bbd052f8d7b2c07646dd1f2d82989526a1f,"[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/jarun/googler.git,2008-10-13 13:17:55+03:00,3f6e257f1c261b1db162a7e21a12302b37bf5b6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/lamyj/odil,2015-07-16 14:16:22+02:00,f5076a144f10de74fe163338f832cab82276b5f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 10, 10, 0, 1, 2, 1, 6, 0, 0, 3, 9, 9, 5, 6, 2, 9, 18, 15, 2, 15, 26, 24, 40, 34, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0]",2,2,2,0 +https://github.com/state-machines/state_machines-activerecord,2015-01-06 15:29:20+00:00,89c12531e92a34fc2ae939e698c3674345ada033,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 6, 4, 5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 3, 0, 0, 0, 0, 0, 4, 0, 0, 1]","[0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,5,0 +https://github.com/rhinstaller/fwupdate.git,2018-01-11 11:01:14-06:00,6d8b91904b8ea7feb0c78a219ccf3bfe39801c79,"[0, 0, 0, 0, 6, 0, 0, 14, 11, 7, 2, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 6, 1, 0, 0, 2, 1, 2, 1, 11, 0, 0, 17, 4, 2, 0, 0, 0, 0, 0, 1, 12, 3, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,5,0 +https://github.com/florimondmanca/djangorestframework-api-key,2018-07-28 09:38:27+01:00,9980141e10b1dfeaaca3a6e0deebd36f5c144e7a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 0, 0, 0, 0, 0, 0, 38, 20, 0, 9, 1, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,1,0 +https://github.com/savonet/ocaml-speex.git,2008-10-15 17:30:33+00:00,0e2c9f30ad0294de86864a77d864fcd183b83688,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/python-tap/tappy,2014-03-07 20:45:53-08:00,a46b12533d9b0e64c1d72737005de1e1357493ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 11, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/kivy/kivy,2010-11-03 17:05:03-04:00,1f2fb6eb41651e4d10cb51c24a24af66be37606d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[129, 8, 1, 7, 5, 3, 39, 4, 9, 58, 73, 29, 120, 26, 29, 38, 33, 13, 21, 23, 53, 12, 78, 55, 26, 22, 1]","[24, 0, 0, 0, 1, 0, 1, 0, 0, 4, 4, 0, 18, 0, 2, 0, 6, 2, 1, 1, 5, 1, 16, 12, 1, 0, 0]",1,6,10,0 +https://github.com/paravoid/gdnsd,2012-02-01 00:59:57-05:00,054157c5ec283835603f46ae84dfb2c3560a60d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 17, 23, 4, 3, 18, 3, 4, 10, 4, 0, 0, 2, 19, 1, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 3, 1]","[8, 5, 2, 0, 0, 3, 1, 1, 2, 0, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,2,0 +https://github.com/ranger/ranger.git,2009-07-20 05:41:26+02:00,426dc8f9b2946bfbbfe62f416b53a8483a14c4ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 4, 47, 27, 7, 25, 12, 70, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[56, 12, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 6, 27, 23, 19, 30, 70, 87, 38, 49, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,0,0 +https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2016-06-03 16:52:16+02:00,0236ef27e3c8828c51ff5d0910744aaacf234253,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/venthur/python-popcon,2017-11-04 15:10:32+01:00,a0776d4ef5577d2a348133a65ffdae0686f08ef4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0 +https://github.com/mapserver/mapcache.git,2011-08-26 10:59:54+00:00,c6c3d5e22f817dc76dd24901a62b2427994b0fe3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[370, 6, 1, 0, 3, 9, 3, 11, 16, 0, 2, 4, 0, 3, 6, 6, 0, 8, 14, 2, 7, 0, 5, 4, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/openstreetmap/osm2pgsql.git,2008-03-22 17:58:18+00:00,550fc0186cf771133152f641869c44eaa972fc0e,"[0, 1, 11, 3, 1, 1, 0, 3, 4, 1, 1, 2, 5, 0, 2, 0, 0, 0, 1, 0, 1, 2, 0, 2, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 5, 1, 7, 0, 0, 2, 4, 1, 3, 4, 0, 0, 8, 1, 6, 2, 1, 1, 0, 4, 3, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/SciTools/cartopy.git,2012-08-03 10:35:34+01:00,2084e853bf68cc3a59ab99f0dfcf9a6988cce025,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 5, 9, 0, 24, 26, 13, 37, 23, 28, 13, 17, 12, 15, 1, 37, 10, 4, 0, 0, 5, 1, 8, 6, 1]","[0, 0, 1, 3, 3, 0, 8, 10, 5, 12, 8, 10, 7, 4, 3, 7, 0, 11, 3, 2, 0, 0, 3, 0, 3, 5, 0]",1,6,11,0 +https://github.com/prometheus-community/node-exporter-textfile-collector-scripts,2016-12-22 22:57:14+00:00,4cac164d391d26036c31c199ba7a0fc6bdb2cc6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/oauth-xx/oauth-ruby,2007-11-27 06:10:32+00:00,e3cd7146c2ec45c7373cf63843c617ad3e30214b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/Jmgr/actiona,2010-05-10 14:30:03+00:00,76aa581b2fd96485defc5f9302660fe1ab9a1842,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 10, 5, 1, 10, 16, 5, 0, 19, 7, 9, 9, 26, 4, 12, 4, 4, 4, 11, 5, 3, 20, 2, 0, 5, 27, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]",1,2,4,0 +https://gitlab.com/compiz/compiz-plugins-main.git,2015-10-24 19:49:07+02:00,cf96d1fed7d6c1f5d833980395dec78066b8c1f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 0, 0, 3, 0, 0, 5, 0, 0, 0, 1, 1, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/NICMx/Jool,2011-09-26 12:19:46-05:00,a22eed1df8e7ad97e95f5a8474a712882f6fface,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 15, 17, 14, 5, 11, 58, 36, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[0, 0, 3, 1, 0, 0, 0, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/martanne/vis,2014-09-13 19:10:07+02:00,da264da19a0f8fccffad699f40be35fd2b82822f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 14, 2, 1, 5, 4, 13, 27, 78, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 44, 14, 1, 5, 21, 4, 0, 1, 0, 0, 0, 0, 2, 5, 11, 19, 25, 4, 0, 3, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,14,0 +https://github.com/a2o/snoopy,2015-05-13 13:28:36+00:00,ea5567b728663d2c825a183779b363df52f1271a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[92, 67, 27, 10, 30, 17, 0, 0, 4, 2, 1, 0, 1, 4, 0, 9, 1, 0, 0, 0, 0, 1, 4, 10, 0, 0, 0]","[2, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/symfony/contracts,2018-07-13 19:06:58+02:00,316e2120250017445eef76c1b9a80ee863f90d6e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 4, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/Libvisual/libvisual,2007-10-24 21:53:00+00:00,bff24ac0f772b61ec28bcf247ea1edbc0dbeb3c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/theseer/fDOMDocument,2012-10-28 02:45:20+01:00,bd316b39247ac56c7a59232454e83728358695f4,"[0, 0, 0, 0, 1, 8, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 3, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/coin-or/Clp,2002-07-30 19:14:29+00:00,b42534866981c7939cf699bbc719338c76ceda87,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 9, 3, 6, 2, 0, 6, 8, 8, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/openstack/liberasurecode.git,2014-04-20 23:07:49-07:00,76a551dca73650ac2c429b6946e712fcc7887e2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 2, 7, 3, 22, 14, 11, 55, 28, 11, 14, 5, 11, 9, 13, 3, 1, 3, 16, 7, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 2, 3, 2, 1, 1, 0, 0, 1, 0, 0, 0]",1,3,4,0 +https://github.com/bbcmicrobit/micropython.git,2015-08-07 12:58:54+01:00,0d5783af12a1c273c4e6c951f5437dd07b708bd5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 1, 0, 14, 20, 12, 12, 11, 6, 16, 18, 12, 12, 11, 9, 17, 0, 2, 1, 1, 2, 6, 23, 7, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]",1,3,20,0 +https://github.com/hboetes/mg.git,2016-01-24 22:16:49+01:00,45b62e7f434fdcd6aa6230f4ddf38c9ca6336b8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/obriencj/meanwhile.git,2004-06-01 23:24:53+00:00,2c6f8373a3029c94223aa3aa7769f5bcca4f591f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 9, 21, 2, 0, 1, 0, 0, 3, 3, 0, 0, 0, 0, 0, 4, 3, 5, 7, 1, 0, 3, 3, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/RobertBeckebans/RBDOOM-3-BFG,2012-11-26 09:22:41-08:00,a5214f79ef68252f51402006a52deebdee2d803e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 14, 30, 24, 5, 37, 5, 5, 1, 0, 2, 0, 0, 0, 0, 19, 4, 6, 0, 2, 0, 2, 0, 0, 0, 2, 1]","[1, 1, 5, 1, 0, 7, 3, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,6,0 +https://github.com/headius/ruby-atomic,2010-06-08 00:01:57-04:00,d94363f8ec73b7eaf2dc9658fdf2cb1b50958494,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/madsen/p5-Palm,2009-08-16 00:39:10-05:00,8e24139734ace39082b085a789013dcff774f6da,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/davisp/jiffy.git,2011-04-03 19:27:49-04:00,e8c05b4145e776ef7ee580069843c7794d8eb5c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/linuxmint/timeshift.git,2013-10-05 11:04:20+05:30,0ff459072bc4dba97438889e36cec47add9c21da,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 18, 10, 6, 14, 6, 0, 4, 2, 0, 0, 6, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jonathanwin/yagv.git,2012-11-18 16:31:02-08:00,bfbf83f2db342acafd2e0acb7e75b72ed1020728,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 +https://github.com/google/benchmark,2013-12-20 14:51:56-08:00,01af2bc857f6824594b4a4af2f957fcdfe06e2dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[3, 0, 18, 10, 4, 0, 4, 8, 0, 2, 0, 0, 3, 0, 0, 4, 4, 9, 0, 6, 0, 0, 3, 12, 2, 0, 0]","[0, 0, 2, 2, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 2, 0, 3, 0, 0, 0, 6, 1, 0, 0]",1,3,13,1 +https://github.com/ropensci/RNeXML.git,2013-06-30 09:15:59-07:00,0673d170f6f742f1db06f2d4163ae597d03f47bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 1, 10, 0, 4, 0, 11, 18, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/pyxnat/pyxnat.git,2010-08-17 16:14:17+02:00,9f379eb00d882ea64e165c08407b155e90b2dd8f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 0, 0, 1, 1, 1, 3, 1, 0, 1, 0, 1, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/lepture/python-livereload,2012-05-03 23:53:37+08:00,8ef49f8d576bf33f27bfdbd8ba8031ca1c08bf2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 2, 0, 5, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/duritong/trocla,2011-07-27 18:43:55+02:00,9146a541ff96b92f4f14c6292307b68dc4673097,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/googlei18n/fontmake.git,2015-11-16 16:58:47-08:00,ff8f62e92f06cef4158fb9be327487d45ba047e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 4, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 1, 0, 0, 0, 2, 0, 0, 3, 1, 9, 3, 7, 1, 2, 0, 3, 8, 16, 1, 6, 4, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 1, 1, 3, 0, 1, 1, 0, 0, 0]",1,2,3,0 +https://gitlab.freedesktop.org/spice/usbredir.git,2011-07-14 16:22:21+02:00,ee954d28286408262c6762a22e5e0871e8baa00b,"[0, 0, 0, 17, 0, 17, 12, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 9, 0, 0, 4, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 5, 3, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 7, 5, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/python-hyper/hyperlink,2017-03-24 18:22:10-07:00,c6f44153b3a1fe978df0f8ce56a2c5bf43c2b1d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 6, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 12, 57, 27, 8, 0, 6, 0, 0, 2, 1, 0, 31, 19, 17, 10, 20, 7, 0, 3, 2, 6, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 2, 5, 2, 0, 1, 2, 0, 1, 0, 0, 0, 0]",1,2,9,0 +https://github.com/naelstrof/maim.git,2013-09-28 13:40:33-06:00,6f331d847d6fcf3c90638ea0313401cd8d0ffad2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 +https://gitlab.com/sebholt/qastools,2011-11-18 14:10:01+01:00,24efee36df19c8ac2abb9dfbf06ed42a5d09853e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 6, 8, 16, 19, 6, 18, 26, 12, 0, 6, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/XMLTV/xmltv.git,2001-11-02 17:58:03+00:00,89a69bef532f957828549ec299b1692a207de087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 33, 9, 7, 1, 7, 17, 19, 24, 16, 3, 18, 19, 27, 22, 5, 29, 34, 12, 15, 1, 6, 1, 12, 26, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/spanezz/staticsite,2016-02-28 10:41:40+01:00,f09ff50df8cf78aad0acf708c63e361c8fd1214c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 29, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 3, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/miguelgrinberg/Flask-SocketIO.git,2014-02-08 23:22:50-08:00,63db33d193e651b5df8a0ae305098dbb33832a58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 10, 3, 2, 2, 5, 2, 2, 1, 0, 8, 0, 3, 2, 3, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/python-otr/pure-python-otr,2011-11-05 15:32:21+01:00,a53dedfcc6bc6874650d9ecdb0aa59117afa0e35,"[3, 0, 7, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 0, 0, 3, 3, 0, 7, 4, 2, 1, 2, 0, 0, 4, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/gitpython-developers/GitPython,2008-05-07 16:49:48-04:00,33ebe7acec14b25c5f84f35a664803fcab2f7781,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 12, 4, 49, 7, 9, 9, 0, 1, 0, 8, 4, 0, 1, 2, 2, 2, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,8,0 +https://github.com/perfectline/validates_url.git,2010-09-08 15:43:46+03:00,68dc01206cbb0e2a894df120e53d66f40be45f08,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://gitlab.com/craftyguy/networkd-dispatcher,2017-01-04 18:56:34-08:00,cb3329178c31105639215b286e7ed5fa9a8bc24c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 17, 2, 26, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,2,0 +https://github.com/Tlf/tlf.git,2009-11-06 12:27:33+00:00,b79ce94a43655f9a4015c6f546cf357f2c6d131d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/CarlFK/voctomix-outcasts.git,2016-04-29 23:01:16-04:00,ce604ea1116133b4cf8c97736d6712c372502de7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 3, 0, 0, 0, 2, 1, 21, 1, 3, 0, 2, 0, 12, 0, 0, 0, 8, 1, 0, 17, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0]",2,3,3,0 +https://gitlab.com/compiz/emerald,2006-09-27 23:27:36+00:00,5636dbda85aecac177418e1c515fecf246d87bb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 10, 20, 27, 6, 10, 6, 6, 3, 12, 13, 4, 6, 5, 1, 5, 5, 12, 8, 1, 4, 2, 1, 1, 13, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,24,0 +https://github.com/miyagawa/Filesys-Notify-Simple.git,2009-10-21 02:53:08-07:00,cc9452fdc1340bd040e5eca11cba6c1b73a17fbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/crypto-browserify/sha.js,2013-12-24 19:52:15+07:00,c1cabff65dc811bd9c7e7530aab90db3b1080f04,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[73, 13, 8, 14, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/Grokzen/redis-py-cluster,2013-05-20 23:41:35-07:00,31dd3d2b5f303b4a039cef5c2d46dabce8cc6970,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/the-cavalry/light-locker,2005-04-14 19:59:44+00:00,3270cf30f07ad685d7a38216fd13e735d575072d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 16, 6, 10, 3, 7, 3, 6, 13, 14, 10, 13, 21, 9, 5, 13, 2, 1, 4, 24, 12, 8, 7, 21, 22, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,30,0 +https://github.com/troglobit/smcroute.git,2011-10-09 16:06:57+02:00,1dc25e14ef1ac1154dcb5740ee0857464a694e74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 14, 0, 0, 0, 0, 0, 0, 0, 1, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 17, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/alexmurray/indicator-sensors.git,2011-04-03 20:45:21+09:30,cd2ceaa0b87255ad58560007192e2a4bee83bbac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 17, 10, 15, 19, 10, 14, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 9, 1, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/htop-dev/htop,2006-03-04 18:16:49+00:00,d6231bab89d634da5564491196b7c478db038505,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 6, 0, 0, 2, 0, 0, 0, 9, 4, 2, 6, 8, 0, 0, 0, 1, 7, 0, 3, 1, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-notes,2012-08-18 00:16:20+02:00,bdc8b05108e17d25a4e3fed3ea3ef3d768579c42,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 12, 5, 31, 25, 13, 28, 28, 11, 8, 1, 7, 4, 37, 19, 20, 9, 10, 7, 16, 4, 9, 1, 9, 8, 10, 1]","[0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,16,0 +https://github.com/infirit/caja-admin,2014-12-14 12:14:17+00:00,e255f48679f9596c487ab368ecec614f77ff83db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 3, 4, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/openalpr/openalpr,2013-11-09 07:26:02-08:00,b9ab379a2b2f4bdc9d99d508cf9e61da357d47f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 11, 6, 2, 3, 7, 1, 7, 37, 2, 0, 0, 11, 12, 12, 23, 0, 3, 3, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 6, 1, 0, 0, 3, 1, 3, 0, 0, 0, 0, 2, 0]",2,3,4,0 +https://github.com/jarun/nnn.git,2016-08-20 19:40:14+05:30,66d9e933baef509881aba27cb5f424392c4e01c8,"[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[28, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/simi/omniauth-facebook,2011-10-15 00:36:27-07:00,2f871a07cea5a7a8957f7cc9dec6a20332b418b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/FriendsOfPHP/proxy-manager-lts.git,2013-03-19 10:42:39+01:00,22f469f74232182ee42e37f567b7f42fd65fedf5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 46, 0, 4, 34, 7, 4, 3, 3, 0, 0, 9, 18, 18, 25, 3, 2, 0, 0, 48, 0, 9, 0, 9, 0, 34, 1]","[4, 5, 0, 1, 3, 1, 2, 1, 1, 0, 0, 2, 1, 5, 4, 1, 1, 0, 0, 2, 0, 2, 0, 3, 0, 4, 0]",1,1,6,0 +https://gitlab.dune-project.org/extensions/dune-grid-glue,2009-05-27 15:48:50+00:00,0c2f431f53d044e07bb4b6ea4fe4d4f15d0520db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 6, 4, 48, 11, 18, 19, 12, 9, 3, 0, 9, 40, 27, 9, 12, 40, 9, 18, 2, 3, 1, 4, 7, 5, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/vapier/ncompress.git,2006-09-28 21:15:42+00:00,e7a71c8c58a6ed7fddcdcfd93f30edfacb42755f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/linux-on-mac/mbpfan.git,2012-01-25 10:26:01-05:00,1dfe7d981075569d22ae67ac3e373343b61b099f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/ninja-build/ninja.git,2010-10-23 21:00:12-07:00,c42e512fb56b5e12116a759f5c3e30bf3ad28c0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 46, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 12, 28, 11, 13, 45, 5, 11, 17, 3, 25, 7, 13, 12, 22, 10, 0, 0, 15, 12, 3, 3, 0, 1, 4, 25, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0]",1,1,13,0 +https://github.com/babel/grunt-babel.git,2018-03-19 14:23:05+01:00,628b912e793d06f8f4d7c4caec2bde7116c53cb5,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://gitlab.cern.ch/dmc/gfal2,2012-04-18 15:31:24+00:00,dbb5d22fbb0e7aa5a362f351a07fb3ecb3770203,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 13, 13, 0, 18, 3, 7, 6, 6, 4, 0, 0, 14, 12, 9, 6, 5, 9, 25, 2, 2, 0, 17, 27, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/letoh/ocaml-usb.git,2009-10-23 22:55:48+02:00,d42f26d094b1709038d6b0222105d862d03984c4,"[3, 2, 4, 4, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/basho/bitcask.git,2010-04-27 14:21:02-04:00,0a45a771ae96fb5628d9b3c50291470a34b9f77a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 28, 4, 5, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 1, 0]","[13, 19, 28, 2, 4, 9, 1, 10, 6, 6, 4, 3, 1, 4, 7, 7, 1, 0, 1, 0, 0, 9, 2, 5, 0, 2, 0]","[1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,2 +https://github.com/ultrabug/py3status.git,2013-02-19 06:59:13-08:00,e88d2d968cd02e68237af97a4352f421b6088a3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 3, 8, 4, 0, 10, 13, 9, 5, 0, 1, 0, 0, 0, 0, 0, 8, 0, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/tych0/xcffib.git,2014-05-18 17:23:31-05:00,66cc1b8b6db248f50acc07fae14c673a2a345ada,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 11, 13, 32, 14, 13, 20, 9, 2, 0, 7, 16, 13, 1, 2, 9, 3, 0, 0, 10, 8, 0, 4, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/survivejs/webpack-merge.git,2015-06-26 13:20:27+03:00,888fd232ab2ea186a6c0a46566b24c7db0629a1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0, 0, 2, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,4,0 +https://github.com/trezor/trezor-firmware.git,2016-09-27 17:19:47+02:00,a8d5432fd5ba7d2f47a6b76f96abd3d57c7fbb6e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[448, 67, 17, 26, 7, 23, 46, 40, 12, 2, 19, 12, 1, 4, 2, 3, 18, 0, 2, 13, 12, 4, 9, 13, 23, 17, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,7,0 +https://github.com/spaam/svtplay-dl,2011-10-11 20:30:39+02:00,4ae1c73079d97b07201d38ea78012e1d877c2eac,"[0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 6, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 10, 3, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 10, 0, 0, 3, 0, 0, 0, 5, 0, 0, 5, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,0,0 +https://github.com/firecat53/urlscan,2009-10-08 22:35:01+02:00,ec9cc4fee60e09ef83cfd726294cf832c47f808f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bbidulock/blackboxwm,2001-11-30 05:09:48+00:00,85dee0c8029ad9689d21bbddb17645bfdfa49863,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[137, 0, 0, 0, 0, 0, 0, 0, 24, 4, 6, 68, 20, 2, 31, 12, 50, 12, 4, 15, 21, 10, 21, 37, 47, 25, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/grobian/carbon-c-relay.git,2013-12-13 11:43:42+01:00,f223b70f04b261d30521006939e6fdea438792a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 46, 15, 5, 6, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 1, 13, 31, 15, 16, 14, 11, 11, 26, 17, 25, 12, 4, 17, 0, 0, 4, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/pgpartman/pg_partman.git,2012-09-05 01:07:50-04:00,8326fb03611b2c541e6f31ba18f28b3272eb3805,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 1, 3, 4, 0, 0, 0, 3, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/rizsotto/Bear,2012-10-30 17:14:07+01:00,2d758d3d82f9d2613c1b5d8335b028e2240a665d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 0, 0, 0, 29, 2, 0, 11, 30, 5, 0, 0, 2, 0, 1, 0, 0, 0, 5, 0, 2, 0, 0, 0, 26, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/Qiskit/qiskit-terra,2017-03-03 18:09:31-05:00,8800edbcf1bb8870bd6429eab7c8edc10293e220,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 5, 2, 3, 13, 1, 11, 4, 28, 103, 236, 36, 3, 6, 0, 11, 40, 31, 32, 50, 93, 89, 39, 7, 19, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 85, 14, 2, 1, 0, 0, 4, 9, 3, 7, 17, 26, 19, 4, 8, 5, 0]",2,13,20,0 +https://github.com/scanmem/scanmem.git,2007-12-16 23:03:54+00:00,da4dc9e7d667a2f2f291bbe273db18b272cf37b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ReFirmLabs/binwalk,2013-11-15 12:45:40-08:00,4001b759711ddb16b73006f4a3ee64ea1d85c2a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 15, 44, 14, 26, 50, 1, 37, 6, 10, 1, 3, 4, 5, 0, 9, 4, 0, 10, 0, 2, 3, 25, 10, 3, 2, 1]","[3, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,5,0 +https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin,2003-10-08 15:04:04+00:00,384fa9f6cb2298efb81215ddc5ec4f085bbe4a73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jodal/pykka.git,2010-11-15 00:47:04+01:00,f2366b7915b1ff0a35c93679f3c7e47884c9c2a4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 4, 0, 26, 1, 0, 0, 0, 1, 0, 0, 2, 18, 18, 9, 28, 5, 12, 23, 14, 0, 0, 1, 6, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/webmozart/assert,2015-03-11 13:13:28+01:00,2e101de251958f0c2e04c7d24f219b6172d5c4b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 6, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,1,0 +https://github.com/nvbn/thefuck.git,2015-04-08 18:15:49+02:00,71f1f4224b267711bd9cc372a2ec69902f423a01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 154, 72, 32, 45, 46, 18, 30, 9, 12, 7, 14, 20, 19, 62, 72, 21, 10, 21, 32, 33, 41, 5, 0, 1, 4, 1]","[0, 48, 23, 6, 13, 12, 5, 14, 3, 3, 2, 2, 8, 5, 13, 11, 3, 4, 4, 5, 7, 8, 2, 0, 0, 2, 0]",1,5,70,0 +https://github.com/Bumblebee-Project/bbswitch,2011-12-27 19:46:22+01:00,b3214826507fefd74f1b2c708827d01a120820af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 10, 12, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 3, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,5,0 +https://github.com/linuxmint/cjs.git,2013-07-19 20:45:49-04:00,bcc84c818f2fa94bea1f0fe192e14e4af7c43797,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://gitlab.com/sagemath/symmetrica,2020-01-07 10:41:13-05:00,f01a825f0c0098d2472f81e875a8dabb569c6237,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/codedread/scour.git,2013-10-22 07:02:57-07:00,f3a7507d8246118d16d7fba1e3b924bab65ccfbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/Cacti/cacti,2002-05-18 20:29:57+00:00,eb59dd520f710a827967399984773f133550c132,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[53, 14, 41, 9, 10, 16, 0, 6, 11, 6, 9, 7, 8, 8, 0, 3, 0, 0, 0, 0, 2, 2, 29, 29, 15, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/bkeepers/dotenv,2012-07-23 23:39:43-04:00,c3568a06b341f1182bd4e8b0d6e58a594cac7966,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 3, 0, 9, 9, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 3, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,9,0 +https://github.com/libimobiledevice/ideviceinstaller.git,2010-01-05 04:52:50+01:00,e0cf27624accbcd49ff628919a2546685e3136d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 5, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/posva/catimg.git,2013-05-27 00:07:32+02:00,64b9d9c03c3b72a945a6a0d86ff323e79458b2a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/tat/mimetic.git,2014-02-15 04:31:07-08:00,cdf6f48cf94eb10ef3702013e8ac14fe74daa893,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/etingof/pyasn1-modules.git,2011-02-17 18:35:16+00:00,8b513895caeda00b34f662bec79238a5bf636383,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tristanheaven/gtkhash,2011-03-31 21:32:46+01:00,d8fe578bc5268745cfafc060e6c6259baf36ccde,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 3, 1, 4, 2, 0, 1, 6, 2, 1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/pitivi.git,2004-05-01 10:48:55+00:00,509ec404f4e7314ebd027a2c74607582fb71c185,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 48, 11, 1, 5, 10, 18, 17, 30, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 2, 22, 35, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 +https://github.com/libwww-perl/URI.git,1998-04-10 09:10:26+00:00,28c0706b9fbdfa6cf9ba5da5c4184fc4ec0290d8,"[6, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 125, 43, 27, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/thlorenz/proxyquire.git,2012-07-03 16:15:15-07:00,e9b52196c815da54d131b5df5cdbd433c6d6577f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 11, 1, 16, 18, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 0, 0, 0, 0, 4, 5, 33, 0, 13, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/mysticatea/eslint-plugin-node.git,2015-11-23 16:09:51+09:00,53a96758e7d16c882cd5b0f3e939b9e1dc6ecaba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 2, 3, 4, 4, 19, 7, 6, 10, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 8, 5, 2, 1]","[0, 0, 0, 0, 0, 0, 4, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/OpenRTX/dmrconfig.git,2018-08-20 23:24:38-07:00,abebad7dbd0ab8338a65bb62ae45c31cb3fe5c99,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 20, 25, 25, 19, 5, 6, 7, 10, 27, 15, 3, 6, 9, 2, 5, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 1, 0, 1, 1, 0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/collectiveidea/json_spec,2011-07-08 13:30:11-04:00,8706422f753378ca79f96026d04b5a1fe81f81e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 0, 6, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[1, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 +https://github.com/jackfranklin/gulp-load-plugins,2013-12-04 00:48:12+00:00,e73ae465591211528ece2cbd15cbc224b950e7ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 2, 0, 3, 0, 4, 0, 2, 0, 0, 4, 4, 1, 0, 0, 1, 6, 0, 0, 0, 1, 1, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/argerim/select2-rails,2012-05-07 19:32:15-03:00,5fa0d7b6aa07ae5210ab841c1ecc56e72d17334a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 1, 2, 0, 1, 0, 1, 1, 0, 1, 5, 6, 0, 8, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/warner/magic-wormhole.git,2015-02-10 00:38:44-08:00,82d8d02445a0d3674aea2bcfb7cc7a75e943bdc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 20, 6, 1, 18, 10, 5, 1, 19, 2, 0, 7, 0, 0, 0, 1, 0, 0, 11, 1, 0, 0, 2, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://gitlab.gnome.org/GNOME/simple-scan.git,2009-11-13 18:15:15+11:00,659050732d95eed59f5be3037b1b3b024b100840,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 27, 11, 2, 33, 29, 5, 1, 7, 19, 13, 2, 18, 62, 14, 34, 28, 31, 30, 6, 13, 13, 10, 5, 5, 3, 1]","[0, 0, 0, 0, 1, 3, 0, 0, 1, 3, 2, 0, 1, 2, 2, 2, 1, 1, 1, 0, 2, 1, 2, 0, 1, 1, 0]",1,3,6,0 +https://gitlab.com/accounts-sso/libaccounts-glib.git,2009-04-28 13:52:23+03:00,20207243a81a20f61cbdc13e48e00a9957d09a50,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 8, 16, 35, 37, 1, 18, 7, 0, 2, 0, 2, 0, 4, 10, 1, 6, 14, 0, 8, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/resurrecting-open-source-projects/sniffit,2019-09-06 18:48:41-03:00,e1b5d1ab68f3e3cbee02baeec765ae95636553cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rstudio/rmarkdown,2014-01-24 11:18:43-05:00,04b435dbe1ddc6e4a050ebb2c17721ebe5241133,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[95, 67, 97, 17, 13, 16, 8, 27, 20, 47, 35, 40, 21, 35, 17, 24, 24, 7, 34, 1, 7, 8, 1, 13, 6, 6, 1]","[1, 7, 9, 0, 1, 1, 1, 0, 0, 6, 5, 6, 3, 9, 1, 4, 4, 3, 3, 0, 0, 1, 0, 3, 1, 3, 0]",2,5,14,0 +https://github.com/dnstap/dnstap-ldns.git,2013-05-11 11:13:49-04:00,3b4eebd2ad4d903cbfa08f1883def67407492563,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/neomutt/neomutt,1998-06-08 09:16:03+00:00,1a5381e07e97fe482c2b3a7c75f99938f0b105d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/JamesHeinrich/getID3,2013-07-29 22:36:20-03:00,7401a6c5a00165a56d5f2b56fada618360d56346,"[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,1,1,1 +https://github.com/geopython/geolinks.git,2014-05-11 15:28:19-07:00,4fe243f67d67d55b71db60c33bd7c2b648940ff7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/schani/metapixel.git,1999-12-28 15:26:55+01:00,6129962af8cddac5cee5e838ee2457d1f5d0071b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/fnando/browser.git,2010-07-16 14:24:22-03:00,3746499906339a3f8af692eaa719268dbc03d2df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/resurrecting-open-source-projects/nbtscan,2019-08-18 22:30:25-03:00,26c63155cfcce89d3c32e849b9352e54e3b383dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ros-infrastructure/rospkg.git,2012-04-04 17:06:38-07:00,621810ed0864f0848dd938588ea77a77952162bc,"[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 5, 17, 2, 10, 6, 3, 4, 1, 13, 8, 0, 3, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 2, 0, 1, 0, 0, 2, 1, 0, 0, 1, 0]","[0, 0, 0, 2, 0, 0, 0, 5, 9, 1, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,2,4,2 +https://github.com/sargon/trayer-srg/issues/new,2010-01-26 08:45:41+01:00,3d4a69db156ece98e0bcbe0aecb2436988d4c6b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 1, 0, 0, 0, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/msgpack/msgpack-ruby,2011-08-25 13:58:38+09:00,c605a0af5ad580a0a62434c247633f835f0dd6ef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 1, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/pantherb/setBfree.git,2012-07-11 23:51:17-05:00,e5c05b1a6e2e056b879bfbd7dede002c15f9e6d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/djs55/ocaml-sha.git,2006-08-17 10:57:13+02:00,c5e6213b67088f57a86d7bbcff77f1b543392ed5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 14, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/workhorsy/py-cpuinfo,2013-11-05 23:12:11-08:00,b7d44a4b1b70e6b8f9468d947cfba805fa157ee9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/eulerto/wal2json.git,2014-02-19 10:34:12-08:00,fc77351e10feb1d6a66ce8e5168326898a5c4be1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/juba/scatterD3.git,2015-06-23 17:20:41+02:00,cb30edc105b2d678e76b3b4e081379a5052a77cb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[27, 12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 4, 42, 20, 0, 7, 0, 0, 3, 23, 28, 8, 1, 5, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 1, 0]",1,0,2,1 +https://android.googlesource.com/platform/libnativehelper,2008-10-21 07:00:00-07:00,ad83f63492fb91e7f8120fb78a01acee5b29c386,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/alexmyczko/modplug-tools,2018-09-03 16:19:31+02:00,2025c218b3cff3a59c81dda7b1ddc013af02c087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/OpenSCAP/openscap,2008-11-03 17:58:30+01:00,768d2d13c7b95736738ce2a48db7f2e528c161fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 1, 16, 14, 7, 6, 7, 7, 4, 19, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 +https://github.com/nodeca/js-yaml.git,2011-10-03 13:41:35+02:00,d61b9314a38d4a781ef51a486b069d949c46a43e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 13, 71, 105, 103, 6, 11, 4, 17, 28, 19, 3, 0, 1, 0, 0, 0, 0, 3, 4, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 9, 7, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/terser/terser,2012-08-27 12:29:53+03:00,ce8e8d57c0d346dba9527b7a11b03364ce9ad1bb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 19, 28, 17, 15, 35, 42, 19, 5, 7, 24, 10, 4, 5, 4, 1, 3, 0, 7, 3, 6, 2, 5, 7, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 0, 0]",1,2,12,0 +https://github.com/pickleshare/pickleshare,2014-01-22 14:12:52+02:00,327a9b7cfce1afa53c6b71282596b5d487d512e0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/pysimplesoap/pysimplesoap,2011-12-19 09:49:25+01:00,be3c7770496539c74b258b9ead42327483c00deb,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 17, 3, 2, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 8, 2, 0, 0, 0, 3, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,5,0 +https://github.com/tarantool/tarantool,2010-09-08 17:42:13+04:00,9b8dd7032d05e53ffcbde78d68ed3bd47f1d8081,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 16, 1, 0, 30, 13, 6, 5, 30, 49, 5, 11, 25, 19, 9, 20, 5, 0, 20, 4, 3, 12, 9, 17, 17, 6, 1]","[0, 1, 0, 0, 2, 2, 0, 1, 3, 4, 1, 0, 4, 3, 2, 3, 1, 0, 8, 0, 0, 4, 2, 2, 3, 2, 1]",2,4,7,0 +https://github.com/jonschlinkert/map-visit,2015-07-04 16:27:45-04:00,c42a1faeff7f2b1ca7aba60aac3213178909db73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/phw/peek.git,2015-12-16 18:14:24+01:00,6a6f563cdd1bbcc9069838ccbc8d67f57e6ab6a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 4, 16, 44, 14, 0, 4, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 +https://github.com/skymizer/SkyPat,2014-03-03 16:01:15+08:00,828072875f90a269ce41e3277dabc2d0ba9fd92e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/irontec/sngrep.git,2013-06-20 19:11:33+02:00,d304ecbfe0052f60a55bf00b390fa3d1be992430,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/AlbrechtL/welle.io,2015-11-06 20:02:05+01:00,c81a87028dac810187f09d0a7ab059c45fe9c3a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 13, 2, 5, 5, 1, 2, 3, 0, 3, 2, 0, 0, 2, 2, 4, 1, 1, 7, 4, 1, 0, 1, 2, 1, 2, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://invent.kde.org/plasma/plasma-integration.git,2013-12-20 20:11:24+01:00,2b25d450149445583c0c66da1a090e8cd311d580,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 1, 5, 10, 2, 4, 0, 2, 3, 4, 1, 1, 2, 1, 0, 1, 2, 7, 4, 0, 0, 0, 3, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,16,0 +https://github.com/ocaml/ocaml-re,2011-12-21 22:43:10+00:00,594c50761808dd42a5658e9901dc7d9acd65823e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/PurpleI2P/i2pd,2013-09-01 08:09:28-07:00,bab26a5a14ee7a13014700ced66022a2769c385d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 2, 6, 0, 4, 4, 4, 1, 10, 3, 2, 8, 23, 15, 39, 52, 40, 15, 11, 10, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 10, 12, 13, 4, 2, 0, 0]",1,4,3,0 +https://github.com/libimobiledevice/libimobiledevice.git,2008-07-30 23:50:39-07:00,47d60e2b9f8ddec18107cee21e046cd4df50fdef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 20, 14, 24, 30, 0, 1, 1, 1, 3, 1, 0, 10, 3, 0, 1, 0, 0, 0, 0, 0, 0, 7, 5, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,7,0 +https://github.com/prawnpdf/prawn,2008-04-04 18:43:04-04:00,722604019a24f0961dcff5d65206ded5f8fab778,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 21, 50, 14, 26, 26, 56, 96, 30, 40, 118, 22, 2, 64, 80, 48, 69, 33, 45, 20, 1, 13, 5, 2, 0, 0]","[0, 0, 3, 6, 2, 2, 4, 6, 24, 4, 6, 8, 2, 2, 10, 10, 2, 8, 1, 1, 0, 0, 0, 2, 1, 0, 0]",1,4,16,0 +https://github.com/vim-airline/vim-airline.git,2013-06-30 11:49:56-07:00,25b9d4d48bd8c0a3daf3859998825e2e55562f70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[95, 65, 21, 45, 30, 63, 59, 95, 87, 82, 29, 30, 44, 22, 4, 2, 4, 3, 4, 2, 2, 0, 5, 10, 6, 6, 1]","[8, 15, 2, 12, 3, 5, 5, 13, 5, 12, 5, 7, 9, 5, 0, 1, 1, 1, 1, 0, 1, 0, 1, 4, 0, 2, 0]",1,4,61,0 +https://github.com/djberg96/pathname2,2010-01-06 18:08:07-07:00,e2e082984e09a6dc695950208b87d7fe54393043,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/IRCAD/sight,2015-07-08 14:14:36+02:00,98c3cc47d3c2a433983374acddc8ceba383ce279,"[25, 1, 16, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 5, 0, 0, 0, 0, 0, 0, 12, 9, 4, 0, 0, 11, 5, 0, 11, 29, 0, 0, 25, 2, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,7,1 +https://github.com/languitar/autosuspend.git,2014-10-22 21:30:42+02:00,2bca55e9546ad519d50078537ead6db19145fd94,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/audacity/audacity.git,2010-01-23 19:44:49+00:00,e74978ba776f78158e3e9729d5fda6814358ea3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 12, 34, 7, 11, 17, 25, 13, 8, 6, 12, 8, 14, 8, 11, 4, 0, 1, 3, 8, 8, 2, 13, 9, 7, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,13,0 +https://github.com/definite/ibus-chewing,2008-06-29 15:57:07+08:00,058ff8eec8aa8a7e5e8e7b404f2f47d87456bfaa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 3, 4, 3, 3, 16, 33, 3, 1, 6, 3, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/osmcode/pyosmium.git,2014-09-23 00:07:12+02:00,3e79ea927148eea21b5a3287643663d23e1228f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 3, 10, 3, 1, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 1, 2, 8, 1, 0, 0, 0, 0, 6, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/icecc/icemon.git,2012-11-09 22:33:19+01:00,8cabea28d321b88ff59569945eb1b89105a86f33,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,1 +https://github.com/libimobiledevice/libusbmuxd.git,2013-09-17 11:00:31+02:00,c45ae1f6b6f53995a5bc99591688102d11ad2148,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 8, 0, 0, 0, 3, 1, 0, 0, 2, 0, 0, 2, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/snare/voltron.git,2013-06-25 19:07:17+10:00,8f662a4337c055b78b788b9174b0412edef2b31f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 31, 5, 7, 1, 0, 0, 1, 1, 0, 0, 0, 38, 4, 0, 26, 0, 4, 13, 9, 1, 0, 1, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 0, 4, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0]",1,3,5,0 +https://github.com/npm/node-tar,2011-03-27 15:16:31-07:00,5f603330c6c0c12c9e8ebeaeffe97d6effa040c5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ubuntu-mate/mate-menu.git,2014-11-01 15:47:58+00:00,c1c57af9c272e2facd748365d8db019b7f547b2d,"[7, 0, 6, 2, 0, 0, 1, 0, 0, 6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 2]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 3, 0, 15, 20, 6, 2, 4, 5, 2, 3, 0, 0, 1, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0]",2,2,5,0 +https://github.com/LedgerHQ/btchip-python.git,2012-12-29 03:52:32-08:00,955445584490905f49123836706791e229b5d237,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/qiime2/q2templates.git,2016-10-11 15:12:10-07:00,941a781b3d244009ce5eb3ac4830343eb905a268,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 4, 0, 6, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/bgreenlee/pygtail,2011-06-29 22:33:12-07:00,b4368d53165e613b8940f1b3129978366aa7f391,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/mozilla/dryice,2010-11-23 13:16:34-05:00,fab58892da67935c562e04e04d84aba17ecf52a8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 5, 4, 1, 11, 3, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0 +https://github.com/lv2/lilv.git,2006-06-06 20:20:33+00:00,7fd4168fe8581e46f4ee35cc182db6220b6eed04,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 1, 1, 7, 0, 0, 1, 0, 4, 0, 0, 0, 1, 3, 2, 3, 1, 1, 1, 0, 1, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/twogood/unshield.git,2003-08-09 21:25:49+00:00,c3bd2439d2232563d558698527a96c0b92b9e429,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 7, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Syndace/python-xeddsa,2018-03-05 11:19:29+01:00,31ba06054344d9cc5ed771817dc74908955441ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 10, 3, 1, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/Exiv2/exiv2.git,2004-05-08 09:28:18+00:00,4ccdbd7866bebd443c33051e2fdd81b5e4430f91,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 14, 12, 23, 16, 7, 6, 25, 21, 11, 20, 0, 0, 2, 2, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 3, 18, 17, 3, 2, 9, 16, 7, 0, 0, 8, 3, 11, 1, 6, 10, 16, 7, 5, 1, 4, 8, 2, 8, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://gitlab.com/eztrace/eztrace,2010-05-28 16:24:51+00:00,df65424cc285c93bba30c95af85bd19b2fc5ef0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 12, 9, 10, 1, 7, 1, 3, 2, 3, 21, 8, 6, 10, 1, 0, 0, 3, 11, 16, 2, 5, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/linuxmint/cinnamon-screensaver.git,2013-01-09 10:41:02+00:00,d5f13c4c086342bc7072af9b223fe5c78d65ceb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 9, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/Getty/p5-moox-cmd,2014-12-01 15:34:20+01:00,6ce4263438419b33d708e684aa3ea7d6ef2ffa19,"[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 +https://github.com/ipython/ipykernel.git,2015-04-09 12:02:45-07:00,8b877ac254ecbd94b3af329380d020566eb9dc6a,"[6, 3, 14, 2, 3, 2, 6, 6, 22, 14, 1, 2, 2, 2, 5, 4, 4, 2, 5, 2, 5, 0, 0, 8, 24, 14, 2]","[3, 1, 5, 1, 2, 0, 2, 3, 7, 4, 1, 1, 1, 1, 2, 2, 0, 1, 3, 0, 2, 0, 0, 5, 4, 5, 0]","[10, 11, 4, 2, 6, 0, 4, 2, 2, 0, 0, 0, 2, 11, 4, 5, 4, 4, 2, 7, 2, 9, 3, 8, 1, 6, 0]","[3, 4, 2, 1, 3, 0, 1, 1, 1, 0, 0, 0, 1, 4, 1, 1, 2, 1, 1, 3, 1, 5, 0, 4, 1, 2, 0]",6,1,7,1 +https://github.com/jalvesaq/gconjugue,2016-02-02 15:06:53-03:00,a1a3e23e89ab8eea810faba85e637cc8ee170f6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/phillipberndt/autorandr.git,2012-06-28 22:30:49+02:00,72bced7aeb2269af9e252b45149af5c350550aec,"[0, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/xtaran/unburden-home-dir,2010-10-29 14:37:15+02:00,d0ddb46dd657ec4c6c8386a548704058020fe9ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 2, 0, 0, 14, 0, 13, 37, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/AlDanial/cloc.git,2015-09-06 20:35:11-07:00,4e172cfefe8f498d2a5647b1a3a92105fa2ca30f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 2, 10, 3, 6, 0, 3, 3, 8, 5, 5, 4, 2, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,7,0 +https://github.com/mojotx/xttitle,2016-04-06 22:50:15-05:00,aca2b6c600db6bb02cc5d425cc8b05bfce2c3545,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/cvxopt/cvxopt,2013-02-22 14:14:31-08:00,a2156ed8ffb53468dcd128f02ed37f5715d1fef1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/intel/libyami-utils,2016-06-08 14:41:39+08:00,97bcdb04a40732f7de64b7113cfb302bfef7c929,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 16, 1, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 5, 2, 1, 4, 8, 1, 1, 1, 7, 9, 6, 4, 0, 2, 1, 2, 3, 0, 4, 3, 5, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,12,0 +https://github.com/lxqt/qtermwidget.git,2010-09-11 10:50:46+02:00,2d6c2b82b7767e0e9678eddb527b1902c9d593e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 3, 1, 0, 4, 3, 1, 1, 1, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/psemiletov/tea-qt.git,2016-02-11 13:37:43+00:00,e3a87b45f1a413c3dc04cebdf25516c2fb295284,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 2, 0, 0, 1, 0, 0, 1, 0, 4, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 2, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/schacon/hg-git.git,2009-04-28 18:18:26-07:00,e5a1f52473c95a6ad8d699c81dc15679f982142e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 41, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[32, 40, 22, 10, 18, 14, 3, 12, 8, 11, 2, 2, 9, 11, 6, 2, 1, 0, 0, 0, 0, 3, 1, 2, 5, 3, 1]","[6, 1, 3, 2, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]",2,3,12,1 +https://github.com/pwr/Solaar.git,2011-11-23 14:16:26-06:00,2eb7d66a926b54401d5a635666d8dedf6cedce66,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/NagiosEnterprises/nrpe.git,2001-06-23 17:02:57+00:00,c861650004ac5f6f64b23776a2541bd9186d5daa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/BLAKE2/libb2.git,2015-10-14 14:50:52+02:00,a8b3f1469c2ee79727e1541b2016097350144be7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/lxqt/lxqt-globalkeys.git,2016-09-07 17:02:57+02:00,3b7485b0e65d28f7786f2c225cba3effd276c464,"[0, 2, 0, 1, 0, 0, 0, 1, 0, 5, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,0 +https://github.com/eslint/eslint-scope.git,2012-09-13 07:49:05+09:00,654f695085cee8530968743f8b322336ae65995f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 8, 5, 2, 0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 0, 0, 3, 2, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/rails/jquery-rails.git,2010-08-16 12:31:38-07:00,7d6abaeb4a4d73b8c2da412a30ca0a32e716666b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 2, 1, 4, 0, 10, 2, 14, 6, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/ckeditor/ckbuilder.git,2014-06-04 12:40:13+02:00,db2ec082811a9030bd2711de4ebae5d10adb2b96,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ansible/ansible-lint,2013-08-14 21:06:35+10:00,fb6e7b5a8783b372bc4fef0c8fac95db625dc446,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://gitlab.gnome.org/GNOME/at-spi2-core.git,2001-07-25 18:26:40+00:00,9bf98cd378e1572019a743bb4bf18e896b4fcd1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 9, 23, 1, 9, 0, 3, 2, 5, 7, 0, 3, 1, 1, 7, 18, 10, 8, 41, 6, 2, 2, 6, 18, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 +https://github.com/hadley/plyr/issues/new,2010-07-28 08:25:08-05:00,00b6ce26822096650ff1b6c012e570653b496433,"[0, 3, 0, 0, 2, 0, 0, 1, 1, 2, 0, 0, 7, 30, 7, 6, 2, 0, 0, 0, 3, 13, 15, 0, 14, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 1, 0, 0, 7, 16, 10, 0, 1, 0, 4, 4, 0, 0, 1, 0, 0, 0, 1, 0, 11, 9, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]",0,0,2,0 +https://github.com/sharplispers/split-sequence,2011-11-01 23:32:53+00:00,fd0ead2da324ae8a7d70c2c85ab521179329d71b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ojuba-org/othman.git,2010-04-28 18:37:42+03:00,ca54d3c20404bce91158e0743b2b1bb694db43b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/lepture/mistune,2014-02-18 18:12:31+08:00,a2ad36f2b1973cc6800ba982d3cd64be00688154,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 9, 0, 3, 0, 2, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 2, 1, 0, 5, 0, 6, 0, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/voxpupuli/pypuppetdb,2013-07-29 11:21:06-07:00,57fd270340fb2233100ae90f62c4ec74c11a7e37,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 11, 11, 0, 0, 0, 0, 0, 1, 0, 11, 2, 10, 3, 15, 0, 0, 0, 0, 18, 1, 0, 8, 6, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 1, 5, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 0]",1,2,8,0 +https://github.com/JulienPalard/logtop,2010-07-01 19:05:05+02:00,ba0a8d9b310f8aeefbd226aaca33076d7696a3fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 4, 4, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://gitlab.com/compiz/compizconfig-python.git,2007-04-24 12:08:26-04:00,a78bd02e33c20e48a7e70722cf343965389a4b63,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 11, 9, 6, 0, 2, 4, 11, 1, 3, 3, 1, 0, 0, 7, 1, 3, 7, 5, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,4,6,0 +https://github.com/bobek/pkg-pimd,2010-01-16 14:00:54+01:00,62ca0b4f2bbedb628d998d0238792413c789f4ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0, 26, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/wjoye/tclsignal,2016-05-31 15:42:27-04:00,17f3d03e19b22b3259c968929bea3bb29b70fefa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gcla/termshark.git,2019-04-19 17:27:23-04:00,b6b2c35461d9910710c8ef03f95f21a879240d2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 2, 5, 1, 0, 3, 8, 18, 11, 1, 12, 0, 0, 2, 1, 0, 16, 13, 0, 0, 0, 6, 52, 35, 14, 20, 1]","[5, 1, 0, 1, 0, 0, 2, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,8,0 +https://github.com/qiime2/q2cli,2016-04-22 15:15:41-07:00,e8327eefe88358dd74f24b4b641f67544d296ee7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[7, 2, 0, 0, 0, 2, 0, 0, 6, 7, 0, 12, 22, 0, 1, 14, 0, 0, 2, 3, 0, 2, 2, 11, 4, 0, 1]","[5, 0, 0, 0, 0, 1, 0, 0, 2, 3, 0, 5, 11, 0, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,9,1 +https://github.com/WebAssembly/wabt,2015-09-07 01:37:41-07:00,970eea40d1cefc254aa36f177bafa18b14800559,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 30, 39, 20, 29, 38, 15, 9, 11, 15, 13, 0, 68, 9, 8, 5, 2, 19, 3, 1, 11, 6, 8, 5, 29, 21, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 3, 0]",1,3,7,0 +https://github.com/vagrant-libvirt/vagrant-libvirt,2013-03-27 00:55:30+01:00,810f0b31b973281bdf70e8b9810f02d2486e9eb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 6, 2, 1, 7, 9, 5, 0, 0, 0, 4, 0, 0, 0, 2, 0, 1, 5, 0, 4, 1, 0, 1, 9, 3, 1]","[2, 1, 0, 1, 0, 3, 2, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 3, 1, 0]",1,4,10,0 +https://github.com/abraunegg/onedrive.git,2015-09-22 18:31:10+02:00,42f5140f9a899b6da0d0906988a18ce641748b57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 9, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 1, 0, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0]",1,1,2,0 +https://github.com/storaged-project/udisks,2008-03-05 02:26:32-05:00,70e0bc44ff38d5acb715b9744c88a0290ae385af,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 8, 27, 13, 5, 2, 0, 8, 5, 0, 0, 2, 17, 18, 1, 2, 1, 0, 0, 4, 0, 1, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/beancount/ledger2beancount,2018-03-17 14:59:35+01:00,c635f289d339a71a04362978497428b104911bb9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 87, 15, 8, 12, 3, 7, 15, 8, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/ruby-concurrency/concurrent-ruby.git,2013-07-23 08:18:51-04:00,773583560909b05e0679b872a85aa3118a08a1c5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 41, 20, 31, 23, 8, 7, 3, 0, 0, 33, 54, 7, 3, 22, 27, 4, 1, 2, 3, 0, 0, 0, 4, 3, 7, 1]","[0, 2, 1, 0, 3, 0, 0, 0, 0, 0, 3, 5, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 3, 0]",1,2,5,0 +https://github.com/google/textfsm.git,2015-08-25 13:26:31+10:00,1e2178fe4e6d2075f247c2248b9b2103ab5e2912,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/easyrdf/easyrdf.git,2009-09-20 21:05:06+00:00,b434baddcd4ac01a3691de8eae6d2e0a85bf3a3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 19, 17, 4, 18, 20, 4, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 29, 4, 10, 19, 0, 3, 7, 3, 1, 3, 14, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/kazu-yamamoto/Mew,2013-05-22 11:53:20+09:00,433176e2d2c519089d2ac6c58257de23e0e7a525,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 2, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[1, 0, 2, 4, 7, 5, 3, 3, 0, 0, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 2, 6, 6, 1]","[0, 0, 1, 1, 3, 2, 2, 2, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 1, 2, 3, 0]",1,0,4,0 +https://github.com/kasei/attean.git,2014-08-08 17:30:39-07:00,c7d58a5f2f6a4fa91c5b178c565fcea4b79db3ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 30, 13, 16, 40, 40, 47, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/thumbor/libthumbor,2011-03-30 14:32:47-03:00,ae1e829d3999c032ea5443a815156dc1ac3be8d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/singmann/afex.git,2015-06-29 22:00:57+02:00,628a93ff5047ec30bbaefc46182cd0cec98ebcd6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 0, 0, 5, 3, 0, 4, 0, 0, 0, 0, 2, 0, 1, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,3,3,0 +https://github.com/df7cb/pgsql-asn1oid,2017-09-24 11:30:40+02:00,197f4c3014c0a37588ea9b040d85d30f0671a531,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 +https://github.com/rthalley/dnspython.git,2005-09-02 05:21:28+00:00,df24d7e7fe18b2a4cd79c35d1c2efbb3e7ee5abc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 0, 1, 3, 2, 3, 0, 5, 1, 5, 0, 0, 0, 0, 1, 8, 2, 3, 1, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/puppetlabs/marionette-collective,2010-05-24 08:09:24+08:00,9bb1671fa7ccfa697d3eec09b045aeae26783ba9,"[3, 10, 5, 13, 21, 24, 14, 14, 22, 7, 8, 4, 2, 0, 1, 0, 1, 5, 2, 4, 0, 0, 4, 1, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 13, 4, 18, 1, 2, 0, 0, 2, 7, 0, 22, 10, 0, 5, 17, 8, 6, 0, 3, 5, 1, 0, 4, 12, 1]","[1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,8,0 +https://github.com/jshttp/on-finished,2013-12-20 14:31:58-08:00,6b14841e7463a790520cbf7689f8be54c30b859b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 1, 0, 0, 2, 12, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/haiwen/seafile-client.git,2013-08-05 02:08:07-07:00,c703771bea2366d2cb740c38e020d6a2f207add3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 11, 4, 2, 19, 20, 9, 55, 1, 15, 28, 26, 19, 28, 4, 4, 1, 4, 2, 0, 8, 3, 17, 5, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,10,0 +https://github.com/claviska/jquery-minicolors,2011-11-15 19:01:08-05:00,fe8d5d9c8f0e2c890c64dab08d2bb8213ba6318e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 13, 5, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/prometheus/client_python.git,2015-02-09 23:02:29+00:00,7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 15, 0, 1, 0, 10, 2, 14, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 3, 0, 0, 0, 1]","[0, 7, 0, 0, 0, 4, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,6,0 +https://github.com/sebastianbergmann/phpcpd,2009-01-24 17:22:12+01:00,bbbf1324673c4578490c69e4091d1cf3e795078c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 8, 1, 0, 2, 0, 2, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/isaacs/inherits,2011-04-06 17:29:30-07:00,ab68ae67b9a6d17938f5a32e9b123c42220548b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/teamcapybara/xpath.git,2010-07-31 19:01:15+02:00,9e707f514933c903a457e2c96198123c4f8fe9a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 15, 2, 0, 0, 0, 0, 0, 5, 19, 0, 0, 0, 6, 5, 3, 1, 0, 3, 2, 0, 2, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,8,0 +https://github.com/bk138/gromit-mpx.git,2009-05-14 21:14:15+02:00,11dd8860942c986d1aa2d5b2f0e3beb277c72d08,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/intridea/grape-entity,2013-01-12 14:04:55-07:00,056dd9a7a00e0b6b181d865e0b063f10bbcdf995,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/monitoring-plugins/monitoring-plugins.git,2002-02-28 06:42:51+00:00,44a321cb8a42d6c0ea2d96a1086a17f2134c89cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 2, 4, 1, 2, 2, 8, 5, 0, 10, 5, 3, 6, 4, 2, 1, 2, 0, 3, 0, 12, 1, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/nojhan/liquidprompt.git,2012-07-19 14:17:32+02:00,c13e6d795f235afeee4cd38ed5117272dcd5be58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[26, 20, 33, 93, 62, 4, 2, 5, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 29, 13, 1]","[2, 2, 8, 19, 15, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0]",3,1,14,1 +https://github.com/intel/opencl-clang,2017-10-31 10:11:08+01:00,a979affcb23d22c56a2cae75f17866469f286328,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 +https://gitlab.dune-project.org/core/dune-istl,2003-10-30 17:03:38+00:00,01ebd69e1934980cc59eb1f4e2953f09fed702fa,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/scop/bash-completion,2002-02-09 08:41:35+00:00,0a5f6136735bfa39998cca584d36e296800244da,"[2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 2, 2, 6, 0, 4, 9, 6, 12, 10, 15, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 24, 41, 20, 13, 11, 30, 32, 7, 10, 17, 13, 17, 16, 11, 7, 13, 11, 13, 14, 4, 4, 4, 11, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/nsntrace/nsntrace,2016-07-15 12:23:05+02:00,aa019a8147f0203dd02415b5c694f5fae583fb5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 1, 1, 18, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://github.com/pdewacht/brlaser,2013-12-27 18:01:43+01:00,fd97eb1258dd178cedaee34ebc44dae2a9ff7835,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ruby/curses.git,2013-06-30 16:25:20+09:00,7721d8ca2f13f8630b336b267c3124de995c378a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/spin83/multi-monitors-add-on.git,2014-12-17 02:30:41+01:00,95b8d8410d6d09d8868d168448812b00946cb3b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/bestouff/genext2fs,2001-05-02 18:20:05+00:00,60c7a4672551e6a3d51e5321ddc231bd61d5d690,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 +https://github.com/drakkar-lig/debootstick,2014-12-12 14:11:56+01:00,6a2efc6e31fa50bc124ad4c99493ff1de8bc3bc4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 6, 0, 10, 4, 15, 6, 1, 2, 4, 7, 9, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/gitpython-developers/smmap,2011-06-08 15:17:35+02:00,03767cc17c6111c4c39cd4dde0517f5415515598,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/qxmpp-project/qxmpp.git,2009-06-14 10:54:22+00:00,cb37450aac5fedbc5aa0cd4bc6fb9955d13bc5be,"[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 4, 6, 3, 1, 0, 0, 0, 8, 3, 5, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/mirage/ocaml-ipaddr.git,2013-07-24 11:35:42+01:00,b977dd104ab2f2e30980f49169acdaeabbfa6a0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 17, 3, 0, 0, 0, 0, 0, 2, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 2, 30, 1]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0]",1,2,4,0 +https://github.com/home-sweet-gnome/dash-to-panel.git,2016-09-21 01:29:56+01:00,f593c27bae00fce116cc06fb61a944b3e7497c5e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 33, 14, 13, 2, 3, 6, 8, 26, 13, 8, 1, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1]",1,2,8,0 +https://github.com/keepassxreboot/keepassxc.git,2014-04-28 22:09:24-05:00,7c7f0b93ae73785ade3b8016a056023a42a9c3fc,"[1, 0, 8, 12, 18, 3, 2, 1, 0, 1, 14, 16, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0, 8, 0, 4, 1]","[0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 36, 2, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,2 +https://github.com/flavorjones/loofah,2008-12-04 12:07:54-05:00,f1a51db18c23271fdc7c51e61e8f9d457fd7b266,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 8, 0, 1, 0, 1, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 2, 1, 1, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/todotxt/todo.txt-cli.git,2009-03-05 17:18:07-08:00,7ecda8973b9be28ca57215fd5c6782f173aa1524,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 21, 6, 6, 22, 11, 7, 3, 0, 2, 0, 0, 0, 0, 0, 7, 1, 1, 0, 0, 0, 0, 0, 0, 4, 5, 1]","[4, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0]",1,7,15,0 +https://github.com/aconchillo/guile-json.git,2013-01-26 13:18:26-08:00,c2952206fc911488f1f31811ea0466b258f358e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 7, 3, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/wanderlust/wanderlust,2000-04-03 06:58:14+00:00,d89e13c0af952508f94e7d6807c1634c586b7057,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 10, 15, 15, 2, 51, 30, 15, 18, 8, 27, 16, 14, 13, 24, 14, 12, 8, 5, 4, 22, 40, 10, 20, 16, 27, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,7,0 +https://github.com/fzumstein/nose-random,2015-11-02 13:28:25+01:00,dfcb7fb9ef586aae008f6c76c2dba896586dd7e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/ubuntu/gnome-shell-extension-appindicator,2013-02-23 17:38:12+01:00,0567ecd18902dcda37f15422ea7675334df52cb7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 15, 1, 6, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 2, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,3,0 +https://github.com/jiixyj/libebur128,2011-01-12 12:14:38+01:00,617f9964274c6f28186cf8f91f3e8b4303263c80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 28, 40, 15, 9, 45, 22, 3, 7, 5, 9, 2, 12, 18, 17, 0, 0, 0, 7, 0, 0, 0, 0, 1, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 +https://github.com/processone/erlang-sqlite3.git,2010-10-12 12:25:01-07:00,63ae3cd7334ae11f5f52ad18032d71d3af6aa666,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 12, 3, 2, 8, 24, 6, 15, 17, 5, 3, 0, 5, 5, 6, 0, 0, 2, 3, 0, 0, 1, 2, 0, 3, 0, 1]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/fitnr/convertdate,2014-06-23 22:23:29-04:00,8df7d6bc0b6a302232ffe01db3c64f2c887033f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 2, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 6, 13, 9, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jruby/joni.git,2013-08-01 17:52:36+02:00,cc8cd8daaf29146cb183764ebd97584c8db3ee92,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 4, 2, 0, 0, 0, 0, 0, 1, 3, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,1 +https://github.com/iustin/pylibacl,2002-12-23 16:55:31+00:00,50cf05229b7b99e9827ffa93dfc5a07512676c28,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/orcus/orcus,2012-04-04 00:44:13-04:00,74b9ac44144862b35997131f4022e0f4a79bbe68,"[7, 1, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 17, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 17, 2, 35, 36, 51, 47, 65, 4, 1, 29, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,6,0 +https://github.com/schaal/bino,2011-09-09 14:23:04+02:00,2774879df7233feca804fd92e2a619d53efea73b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 7, 4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0, 2, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/pdfarranger/pdfarranger,2009-11-10 15:31:17+00:00,7db6876fffcbf6d71d2c83216108d4eb59dc193f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sporkmonger/uuidtools,2008-09-29 00:33:58-04:00,2b115d1663a7f7440b7d9f856c96b365d49b3164,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tijsverkoyen/CssToInlineStyles,2010-12-05 15:30:06+01:00,3854223540a58b4eab3e17ba1a2d6644a1d5b907,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jtesta/ssh-audit.git,2015-12-23 04:56:13+02:00,2ef7e65721dd91aeae5b21e1cc3765b2d1e55e03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 14, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/greenbone/gvmd,2008-11-11 15:57:28+00:00,ec02a2f9a141eeee8be3d803fa67bfe71d2e6da6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 7, 2, 1, 10, 13, 0, 0, 1, 21, 4, 5, 9, 0, 6, 6, 1, 17, 5, 17, 3, 4, 2, 0, 0, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/CSCsw/ColPack,2014-03-22 17:11:48-04:00,6fed3fdf83c36a19364c358e75575cb51f6200db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/chuckremes/ffi-rzmq,2010-05-06 17:15:03-05:00,ae5e456183bc5c54d5ecb00f255366a1c2b64c34,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 6, 10, 3, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 8, 0, 9, 6, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/toddr/Crypt-OpenSSL-RSA.git,2009-12-10 00:30:41-08:00,a6040a720d98861c3aca2e31f81bf573d88184ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/stephane/libmodbus.git,2005-09-10 09:49:54+00:00,f7cb1f06ce8ddeac709dc7a6f4c4784e7e0ef80d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/cesbit/libcleri.git,2016-05-23 16:21:28+02:00,d8e43a6845898345f9f6114899895195e5774d56,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/Castaglia/proftpd-mod_vroot.git,2012-08-20 11:02:24-07:00,c5c66cdc9457f9f359a130ab7f9a2cdfc3bdbe01,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nordlicht/nordlicht,2013-02-07 15:53:53+01:00,cbdd2a9f99913492c575e4cfc2e8e12aa914189c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 34, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 23, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,0,0 +https://github.com/pearu/pylibtiff.git,2009-04-22 11:48:53+00:00,e6cc872fbcb18ae5d10f693f05cd5eec92f39bb2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/guilleiguaran/fakeredis.git,2011-02-21 00:50:48-05:00,a5044491e43c85747e68dcb0388eecc254be667b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/ukui/ukui-sidebar,2020-01-15 19:40:01+08:00,dc2f910b629506c65f8470b570cd4a1462faffca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 7, 9, 10, 8, 13, 6, 9, 49, 65, 61, 31, 81, 37, 12, 35, 30, 36, 6, 14, 11, 18, 5, 78, 12, 1]","[0, 0, 1, 1, 1, 1, 0, 0, 0, 11, 18, 21, 8, 29, 11, 6, 15, 6, 9, 3, 4, 3, 6, 1, 24, 5, 0]",2,7,26,0 +https://github.com/benhoyt/inih,2009-08-20 21:59:32+00:00,4d08274b355a112b9d07f040110a0e9c8ba68aba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/59naga/babel-plugin-add-module-exports,2015-11-11 05:33:50+09:00,9e0628799e766a5eedaadb774cef3d8adb84426b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 4, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 2, 1]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,1,2,0 +https://github.com/phpDocumentor/ReflectionDocBlock,2012-04-06 20:15:46+02:00,fea7abe168dfd01d96f61daa4bc27891814b94f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 2, 0, 2, 5, 0, 4, 0, 2, 4, 0, 2, 0, 0, 2, 0, 0, 0, 1, 1, 0, 3, 0]","[0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]",1,2,4,0 +https://github.com/somiaj/fvwm2-debian,2021-06-01 18:27:05-06:00,629cf2e5fbdc1d3ff8b9c28855ae2656a07be11f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/x42/jack_midi_clock,2009-02-20 21:25:34-06:00,3159c50a449d7bfa0d42a2b3d198420bda584b1a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/python/typed_ast.git,2016-04-11 17:38:06-07:00,8a8f8c82abcfee3f06b05764c74f461f65f07682,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 9, 2, 0, 0, 4, 0, 1, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 9, 2, 9, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,3,0 +https://github.com/dbry/WavPack,2006-10-17 06:15:09+00:00,881de9b394fd7f1c4737661d421de6d9d65eea8c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 6, 4, 4, 1, 11, 6, 0, 0, 0, 2, 1, 1, 0, 0, 2, 0, 0, 2, 1, 1, 2, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/seperman/deepdiff.git,2014-09-25 20:21:48-07:00,a018d334bcd0cd1d11544702d565e81fd99ffbb5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,1,2,0 +https://github.com/meetecho/janus-gateway,2014-02-11 16:20:20+01:00,be35facbad6f8727838f8756cbfa5c1e1b2cf4de,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 3, 0, 0, 1, 1, 2, 7, 2, 0, 4, 7, 1, 4, 2, 8, 3, 8, 3, 3, 1, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,5,0 +https://github.com/orocos/orocos-bayesian-filtering,2010-10-26 13:30:25+00:00,a0d76deb89c34bb012c9ffc1096467017dc6946d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 +https://github.com/JuliaStrings/utf8proc,2014-07-15 15:29:52-04:00,ab9520d18845248ef79ee98e8d671f8eecfec288,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 1, 4, 2, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,7,0 +https://github.com/paragonie/constant_time_encoding,2016-02-02 20:32:50-05:00,fac7f7434099a4882176a47dbcbe126a13f88176,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 12, 1, 2, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jcdubois/pixelize.git,2019-10-29 18:34:29+01:00,feecfb092b7e3daa967d50278474b0d2480d6f09,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 24, 15, 3, 2, 0, 0, 0, 0, 14, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jupyter/terminado,2013-08-08 09:03:31-05:00,51946a73c84369c1e35bc78fb599d8d27a237a2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 16, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 2, 1, 4, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/pyproj4/pyproj.git,2006-11-26 17:01:09+00:00,1938b0a62319aa24ed6297c1cac4b69b70e073ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 1, 10, 29, 2, 0, 0, 3, 4, 6, 0, 0, 0, 0, 30, 19, 6, 1, 0, 0, 1, 0, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/eea/odfpy,2008-08-18 16:15:43+00:00,fb73e609709027c1e47fb1f4cc6b4411feab75f0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 3, 1, 2, 6, 5, 0, 8, 1, 4, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mapbox/millstone,2011-09-26 11:19:31-04:00,bdab004448eee41e1d91a22a832fe28dfb08df24,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 24, 5, 3, 13, 6, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 2, 24, 11, 1, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 0, 0, 0, 0, 6, 0, 2, 0]","[0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]",6,2,2,2 +https://github.com/jbouse-debian/libesmtp,2010-08-15 16:45:03-04:00,ca5bd0800ef1da234315da4c59716568eb5e6402,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/clutter.git,2005-04-13 19:49:56+00:00,3b342b81b72132902b6bb0185f83de46f764557c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 2, 2, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libgeos/geos.git,2002-08-30 18:15:07+00:00,87da037e0eac12e1062039a08e74c475aa720b14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 2, 2, 1, 0, 0, 0, 0, 1, 3, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 0, 0, 0, 1, 1, 1, 5, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 21, 6, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0 +https://github.com/smbolton/whysynth.git,2012-05-20 11:48:11-07:00,f9515f55991e8ad1254715e211b0d44051cb4893,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 10, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/fourdollars/x11-touchscreen-calibrator,2013-08-14 20:01:49-07:00,babf2c3119eb6162bbd5578e8300f4a58da1c3b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/Swordfish90/cool-retro-term,2013-11-22 11:01:59+01:00,43d374cd79e9f58f8f040a2e1d7e37691d6c95e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 27, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 13, 15, 4, 10, 3, 0, 1, 1, 1, 1]","[0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/raboof/nethogs,2004-08-23 09:48:43+00:00,b4073a4cf51b2ff96885dad1ca659336663065db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 12, 3, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Debian/ratt,2015-08-16 11:51:26+02:00,58be32d7c21b1d3919171aa2966faa7b2ae61f90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0 +https://github.com/jarun/imgp.git,2016-08-09 12:02:43+05:30,d894019c98fb10315e7b1c5c7934006fb75072c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[85, 14, 1, 0, 6, 1, 0, 2, 18, 2, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/curl/curl.git,1999-12-29 14:20:26+00:00,ae1912cb0d494b48d514d937826c9fe83ec96c4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 7, 9, 1, 15, 2, 21, 9, 0, 22, 7, 30, 11, 7, 9, 0, 1, 0, 3, 5, 17, 22, 20, 20, 25, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jterrace/pyssim,2012-08-29 15:45:07-04:00,1c4db9ef50181a8603783e55395da9442cada9b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/debian-tex/texworks-manual,2016-04-04 11:46:00+09:00,424e53a32564c9c6d68193d0222de31308abf9a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/trivial-features/trivial-features,2007-07-06 12:17:14+01:00,320426c0b6be8a551727d0809c7158f3e831f581,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 3, 1, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/palortoff/pass-extension-tail,2017-02-18 23:56:23+01:00,f04b40ab50cb62b008c8b948e0ff926ac7c9de70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/jbfavre/python-protobix,2015-12-08 14:52:00+01:00,b530a94669f1f3eac969db714534d0b60f4d46d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 16, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0]",1,0,2,0 +https://github.com/OISF/suricata-update,2017-11-02 07:09:12-06:00,22e8e68f673604ca0616d025c326ac37b800d2a7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 4, 3, 2, 42, 27, 4, 0, 0, 0, 2, 2, 0, 5, 0, 2, 3, 0, 0, 3, 4, 1, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/AmatCoder/mednaffe,2013-08-30 08:25:52+00:00,ecb7d46ec97b25f89a7c8d9e9610c79a07c70fe2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 1, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/intel/intel-vaapi-driver.git,2011-08-25 14:27:45+02:00,eefea266a7ca3d5e56ebaccf63beeffce80c526a,"[0, 6, 6, 0, 0, 9, 5, 4, 11, 0, 6, 4, 6, 1, 3, 7, 0, 3, 1, 2, 0, 2, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 2, 0, 0, 5, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,1,1 +https://github.com/rvaser/thread_pool,2017-01-25 10:35:52+01:00,7e9a54ba935287556ec062eff35b699c579552bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/ivancrneto/pymox,2008-06-13 23:00:27+00:00,e30806ab916a83feb79f03c8fb2612f5d2061263,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/maxbachmann/python-Levenshtein,2022-09-27 03:40:50+02:00,883cd341426e846954b6e144f8b40dbdfcc7158a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/hashcat/hashcat.git,2015-12-04 15:47:52+01:00,5065474b4e5ed59add2d5af6e2e9cf3857969fe3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 33, 49, 27, 71, 41, 47, 54, 83, 115, 35, 43, 35, 28, 14, 11, 7, 19, 27, 50, 56, 27, 52, 33, 46, 44, 1]","[12, 3, 2, 5, 21, 10, 12, 21, 28, 16, 7, 4, 7, 9, 5, 3, 1, 7, 1, 4, 10, 3, 7, 8, 7, 2, 0]",2,6,20,0 +https://github.com/davesteele/gnome-gmail,2009-09-07 15:32:04-04:00,eedd7f34f5eeb6e50d23fcbd28c9fc3a377e53b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 17, 4, 0, 2, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 1, 0]",1,3,5,0 +https://github.com/enova/pgl_ddl_deploy.git,2017-05-01 09:03:19-05:00,d3893f8b43af419470da3c412d013e590941cf56,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 8, 0, 0, 2, 0, 18, 10, 10, 0, 0, 0, 2, 6, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[6, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,2,5,0 +https://github.com/landscapeio/dodgy,2013-12-25 04:22:20-08:00,688efd79d37ad19c621f19544acabaa9584223a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/cffi/cffi.git,2005-06-08 04:29:29+08:00,234abc3fd33688463e6087324529ee3ad3e4908a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 4, 10, 13, 1, 0, 2, 13, 2, 1, 4, 6, 6, 8, 5, 2, 3, 0, 0, 2, 10, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/howardabrams/node-mocks-http,2012-02-17 23:26:28-08:00,78369fba9328c10dc153133311aa88056fee3717,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/centreon/centreon-clib.git,2018-06-20 15:28:30+02:00,03a786d4a32adcb8ed16a83bc505ace33ab7a8c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/mkleehammer/pyodbc.git,2008-10-06 21:07:44-05:00,c3f6b46d8a4f73722439b4755ef5df42adff81d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 2, 6, 5, 1, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/rclone/rclone.git,2012-11-18 17:32:31+00:00,e9ae4f89a44b1cac8e83ede1572f15dace692c67,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 16, 2, 0, 3, 6, 5, 4, 8, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/phingofficial/phing,2006-02-05 00:49:20+00:00,4ced988e4b54a099e31f50ca96cf4a3fdaf8aac3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 8, 4, 0, 4, 3, 0, 0, 0, 4, 0, 3, 5, 2, 2, 4, 0, 0, 2, 2, 0, 2, 12, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/mapserver/tinyows.git,2010-05-01 14:53:13+00:00,36b2440d604198ec89992d04789e8d4899bd4f2a,"[0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 2, 7, 18, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 3, 0, 4, 34, 0, 11, 4, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 5, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/kodi-pvr/pvr.hdhomerun.git,2015-11-06 19:03:13-06:00,98b0f93088eb516c56dc9ea10f29ffc19ff37aef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 11, 6, 0, 0, 2, 0, 2, 3, 1, 0, 0, 0, 4, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0 +https://gitlab.gnome.org/GNOME/gupnp-tools.git,2007-08-23 20:37:16+00:00,4f52351c03e29d431e215ae649e4b8b4fe74d59b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 39, 23, 27, 30, 0, 0, 6, 25, 6, 14, 1, 2, 4, 0, 6, 0, 0, 12, 0, 3, 1, 22, 13, 25, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://gitlab.dune-project.org/core/dune-localfunctions,2008-10-20 21:03:28+00:00,2f380291ac551cf908a8f5ddd390d9a731f3823f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 27, 0, 0, 6, 6, 3, 0, 3, 0, 4, 0, 3, 0, 0, 1, 2, 10, 7, 5, 5, 1, 4, 1, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://gitlab.com/LibreGames/jumpnbump,2002-02-13 15:52:05+00:00,f3895b3660cd04a815f48450dae2b0e3c0d53279,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 20, 0, 0, 0, 3, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 12, 0, 0, 0, 9, 0, 0, 0, 12, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/shsorbom/kcmsystemd-debian.git,2013-11-18 12:36:20-08:00,a4356040a13297829bb73a1bd8caf270f4110751,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 14, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 13, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/jarib/childprocess.git,2010-10-08 04:44:39+02:00,178f4f1a4be9530d9a6b89e27c6f5a6c72e689fe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 21, 0, 0, 4, 1, 1, 2, 0, 4, 10, 1, 0, 1, 0, 0, 0, 10, 5, 0, 5, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/state-machines/state_machines-activemodel,2014-04-29 20:59:30+00:00,c78bba29d6a42cd5bc3fad578fa51dbd664d512e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ben-eb/colormin,2015-02-10 12:54:54+00:00,a9194c86fb017f3b4a4d397564b82fee6816033f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/OSGeo/PROJ.git,1999-03-18 16:34:52+00:00,565a4bd035b9d4a83955808efef20f1d8dfa24cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mllg/checkmate.git,2013-12-27 15:42:35-08:00,eddb0f2ccec899d986ad27960872d55b62559762,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 5, 1, 4, 2, 0, 3, 10, 0, 3, 1, 14, 13, 7, 21, 11, 2, 0, 40, 14, 5, 28, 39, 13, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0]",2,2,3,0 +https://github.com/keltia/dmarc-cat.git,2018-02-24 23:01:02+01:00,9a3ef8d9efe9a980ed8842c923005bc74966b097,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 0, 0, 5, 3, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[5, 0, 0, 0, 0, 2, 3, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/syncthing/syncthing-gtk,2014-08-07 00:32:49+02:00,d1e9e7e26b72a63b7f5f7b6b8dc0980710ed4daa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[55, 26, 9, 3, 4, 9, 10, 14, 25, 10, 4, 0, 39, 33, 23, 68, 14, 24, 11, 4, 0, 23, 28, 30, 17, 15, 1]","[5, 2, 0, 1, 0, 0, 1, 2, 3, 0, 1, 0, 4, 3, 6, 13, 2, 2, 2, 0, 0, 2, 7, 3, 5, 3, 0]",2,5,11,0 +https://github.com/libreswan/libreswan.git,2005-11-02 12:27:49-05:00,6a3b72d55d831a275934773b40228809d9101eb2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 29, 60, 114, 21, 35, 3, 20, 0, 6, 10, 11, 4, 2, 2, 0, 3, 0, 9, 25, 21, 15, 12, 5, 1, 5, 1]","[1, 1, 4, 8, 4, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 4, 2, 1, 1, 0, 1, 0]",1,6,10,0 +https://github.com/pyutilib/pyutilib,2010-02-12 03:23:53+00:00,e7770cdb03801e3bf6144fd6eb79bec0eb4696ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 2, 3, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/stewartsmith/libeatmydata.git,2007-11-27 14:46:08+10:00,ec724d61613f431035fd2eaad8e8119f2e75e86e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://codeberg.org/freedroid/freedroid-src.git,2007-11-28 14:50:01+00:00,f1bdc9d1444db1823565adbf54b49af1e6083522,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 29, 45, 1, 2, 4, 2, 18, 31, 42, 7, 16, 7, 43, 0, 6, 1, 68, 54, 23, 29, 80, 91, 73, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/Yoshimi/yoshimi.git,2010-10-17 01:04:39+11:00,45f9406c6b66b5f89cf2fb28b8c9badc59e9563b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 0, 1, 2, 0, 0, 1, 2, 0, 1, 6, 5, 2, 0, 0, 0, 0, 0, 1, 1, 4, 3, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/pikepdf/pikepdf.git,2016-03-14 22:54:09-04:00,e04dff53f90fa8e044c0fa6d1c352d7f4d336155,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 6, 4, 0, 0, 1, 1, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,2,0 +https://github.com/13-37-org/infnoise.git,2014-09-28 05:39:20-04:00,778d162f6f5703d68bbf2fc3eb5c6811c2146320,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 10, 20, 24, 12, 22, 10, 6, 5, 7, 5, 2, 3, 0, 2, 1, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,3,4,0 +https://github.com/gssapi/gss-ntlmssp,2013-07-19 08:31:49-04:00,978dc0d44b3ab9c0a80f3ec7b9dd95939f2b6181,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 11, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 9, 16, 0, 0, 0, 0, 2, 0, 0, 9, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/Nuand/bladeRF.git,2013-02-18 20:11:39-08:00,ce7d8a7ab2a13dd8a2ea6412e5e022073be82369,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 26, 13, 9, 0, 38, 4, 41, 22, 38, 28, 23, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0]",1,2,12,0 +https://github.com/adah1972/libunibreak.git,2008-04-20 04:45:51+00:00,bb5bb69fac0feb47fc7e06f3a432a1e3fbe7668c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6, 1, 3, 3, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/conformal/spectrwm,2013-06-12 13:06:54-04:00,be49c0e89319cc03b7119bac2604744bcdd26775,"[0, 3, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 7, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 1, 2, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 4, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/thp/pyotherside,2011-05-30 20:47:21+02:00,1b0963a2d4702e0fff5885b21b5695a0d39edd83,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libgit2/libgit2.git,2010-11-07 01:31:08+02:00,4b7483a285024937df9623c3543390e717e2338a,"[0, 0, 0, 43, 7, 0, 0, 0, 3, 6, 0, 0, 2, 10, 0, 0, 0, 1, 2, 5, 0, 4, 0, 0, 10, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 9, 21, 15, 28, 14, 21, 2, 10, 8, 6, 9, 24, 20, 7, 9, 63, 2, 26, 36, 62, 48, 15, 17, 7, 10, 1]","[0, 0, 0, 1, 1, 1, 4, 0, 2, 0, 1, 0, 2, 5, 0, 0, 0, 0, 0, 0, 3, 2, 2, 7, 0, 6, 0]",5,4,25,0 +https://github.com/nanomsg/nanomsg.git,2012-10-10 10:29:58+02:00,62914b92d0d973bc5b1d6b692c3846bbf940fdc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 26, 26, 14, 7, 16, 54, 36, 20, 5, 19, 27, 32, 22, 17, 33, 30, 14, 37, 28, 9, 28, 30, 29, 13, 6, 1]","[0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,8,0 +https://github.com/nsf/termbox.git,2008-09-14 10:38:36-07:00,c2a1bc8df8abc5c3e8a4050aaad8fd3383d6ea90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://code.ungleich.ch/ungleich-public/cdist,2010-09-19 14:36:20+02:00,db178edafceec800f2b60dec1e0d99de684e3836,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 23, 0, 0, 0, 9, 8, 3, 0, 0, 12, 0, 0, 0, 0, 0, 32, 8, 1, 82, 34, 94, 213, 59, 114, 211, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 14, 1, 9, 9, 0]",1,4,5,0 +https://github.com/yarrick/iodine.git,2006-06-23 08:54:47+00:00,b320f6de5689bf2b5115aaf5c8b0fb40f5b56feb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 43, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 2, 0, 0, 1, 0, 11, 16, 4, 0, 3, 0, 0, 0, 0, 0, 0, 1, 16, 1, 7, 0, 0, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/silnrsi/font-abyssinica,2019-03-18 22:44:32+00:00,c2ae244b01c71b2b0ea69c19a2f6044746e6ced8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 10, 13, 12, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/iem-projects/ambix.git,2016-05-10 15:16:51+02:00,c30730388b1ec188a24b1b7b3f82105a914d59e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 5, 0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/confluentinc/confluent-kafka-python.git,2016-04-14 11:35:43+02:00,7e04f4e3c2249bb4a3e73877719c1f50cb387d2f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 3, 5, 8, 3, 10, 3, 0, 2, 0, 0, 0, 6, 0, 4, 3, 12, 0, 6, 0, 1, 3, 0, 0, 0, 1, 1]","[0, 0, 0, 1, 1, 3, 1, 0, 1, 0, 0, 0, 1, 0, 1, 2, 5, 0, 2, 0, 0, 2, 0, 0, 0, 0, 1]",1,4,12,0 +https://github.com/MightyCreak/diffuse.git,2015-11-21 12:57:32-05:00,ba7f8868fc20ca1582a5ab1927be5f6009a61c40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jfhbrook/pyee,2011-07-16 16:23:07-07:00,f525bbbdf2aeaa5fab4b919fd6dd4ca79282f70c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ekg/tabixpp.git,2011-05-18 09:44:58-04:00,778e5c37c1b51aaf3832e82ee6cace27c6a50375,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/olive-editor/olive,2018-06-24 15:47:00-07:00,5c1b4cd479fda29ef7ad74e194d71f8a11d58aa6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 12, 4, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 15, 11, 21, 13, 10, 12, 15, 13, 15, 8, 10, 8, 9, 14, 29, 18, 9, 28, 26, 52, 45, 35, 14, 10, 35, 1]","[0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 6, 3, 2, 0, 1, 7, 0]",1,2,9,0 +https://github.com/twekkel/htpdate,2021-11-28 16:42:10+01:00,143364b71549f4b4c4af87795aa97af4174c5730,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 6, 6, 1, 6, 4, 8, 12, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/jklimke/libcitygml.git,2012-10-01 11:32:54+02:00,c9c90ddf610bfa24f7aa113b3d35b9349b046a4e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/umanwizard/libeot.git,2020-01-24 16:16:32-05:00,d6bacde5c96e4803b289449bd7f3ae87c2686018,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,2015-09-12 17:17:18-07:00,1053c4361dffaa5654eb58308094af9d11414f1d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/gpodder/podcastparser.git,2013-04-13 10:50:06+02:00,019d60d3406d9e0c5c23be668ff078593264cdcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/django-treebeard/django-treebeard.git,2008-09-23 08:36:54+00:00,2c5ca017b592d5ac723fa7d595317d7b6e401836,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 18, 7, 0, 2, 0, 6, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/memtest86plus/memtest86plus.git,2022-02-12 01:48:34+01:00,c1bc395b4cd72fbc47d40751d3ba2d2c9815a540,"[0, 0, 1, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 15, 2, 0, 6, 0, 5, 25, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 14, 14, 11, 0, 19, 9, 12, 10, 23, 8, 11, 5, 19, 11, 2, 8, 0, 8, 0, 0, 8, 5, 6, 2, 0, 1]","[0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0 +https://github.com/eproxus/meck.git,2010-05-03 20:21:39+02:00,539cbc883cf9c25f80759bc945418de57b29d775,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 7, 10, 1, 1, 4, 1, 0, 2, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/GNOME/msitools,2012-12-07 11:45:54+01:00,e64ed93d4859a1b95b40e70256fff5945500d78d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 139, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[51, 0, 0, 0, 124, 64, 28, 6, 28, 7, 2, 3, 2, 1, 1, 3, 3, 13, 8, 2, 0, 0, 6, 3, 0, 1, 0]","[15, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,19,1 +git://git.alsa-project.org/alsa-ucm-conf.git,2019-07-31 19:38:52+02:00,77499a280888411f9e057b8b535dce3767211c49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 73, 16, 0, 0, 2, 0, 11, 18, 1, 18, 11, 6, 0, 0, 0, 1, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,21,0 +https://github.com/FirefighterBlu3/python-pam,2014-08-03 12:54:37-04:00,dbe2a9354181695b1e611e4e2bbdf340e8558cfe,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bobtfish/text-markdown.git,2006-08-29 20:22:05+00:00,899f2fdaed605b0d4c71308a7dd77c67ad03210b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/qwinff/qwinff,2011-10-16 13:43:11+08:00,ce672687941f7fa9576ed7c1a8e8a28c2cd784c6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 29, 15, 41, 45, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[28, 9, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2 +https://github.com/pear/Auth_SASL.git,2017-03-07 08:05:20-06:00,afe4424ea2621ba6eb707b9d1085beebbfde6027,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/micahflee/torbrowser-launcher,2013-02-06 20:31:03-08:00,a0fc944f2a3efea7d082b0b031e522cf96ec93f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 36, 14, 11, 0, 0, 0, 5, 19, 12, 1, 8, 1, 1, 4, 0, 2, 0, 5, 0, 0, 0, 0, 0, 0, 6, 1]","[0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/skoblov-lab/genetic,2016-08-05 23:52:17+03:00,c58c4486b061009cadcf772a0dbb36d87ac92bd3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/un33k/django-ipware,2013-04-24 15:47:22-07:00,dc9663c84fdb99096acdde4414a5ae6867960c3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/google/yapf.git,2015-03-18 13:36:07-07:00,7d623455f45435ad351514dfd4abd064cac61aab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 50, 51, 21, 32, 18, 16, 0, 3, 5, 3, 0, 6, 2, 5, 10, 9, 3, 6, 1, 1, 0, 4, 0, 11, 12, 1]","[4, 2, 8, 5, 12, 5, 1, 0, 0, 1, 1, 0, 3, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,3,19,0 +https://github.com/danieljprice/giza,2012-08-28 07:37:27+00:00,906974b367d6176e9c58c32de5734917c3a6d7ad,"[0, 16, 0, 5, 0, 0, 0, 0, 0, 4, 1, 11, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mvz/ruby-gir-ffi,2009-11-09 19:49:30+09:00,d45997839d9c5433ef85fd045527f7832a4913db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 1, 0, 3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 8, 17, 8, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/KhronosGroup/OpenCL-Headers,2018-05-14 14:08:28-07:00,de26592167b9fdea503885e40e8755393c56523d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,3,1 +https://github.com/hzeller/gmrender-resurrect.git,2012-10-07 15:36:08-07:00,be559dc7b23c32452d7721cc825b60f29240e95d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 34, 8, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/chibisov/drf-extensions.git,2013-07-25 11:05:09+04:00,16c4f5f0c18f8cd132ce6825d7bf1285d0fd50bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/pure-data/deken,2015-04-24 15:10:02+08:00,d2ca75d5bf8b7e82022450a1623d53c6f063e66f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 15, 19, 2, 14, 27, 34, 34, 29, 13, 14, 36, 3, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1]","[0, 0, 1, 0, 0, 0, 5, 7, 3, 1, 1, 5, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,3,4,0 +https://github.com/cmusphinx/pocketsphinx,2006-06-05 03:56:31+00:00,f739f5646c599dc63242cf5f3972aff40a3b3048,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 3, 7, 8, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 13, 8, 7, 22, 7, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/johnkerl/miller.git,2015-05-03 16:00:37-07:00,63cf4c42628ea859edb0745679589b9550055f9f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[47, 34, 28, 27, 36, 14, 17, 5, 0, 13, 22, 34, 12, 6, 20, 49, 104, 97, 69, 74, 89, 61, 90, 56, 43, 45, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 6, 3, 11, 6, 2, 1, 0, 0, 0, 0]",1,2,12,0 +https://github.com/storaged-project/libbytesize,2015-10-09 12:39:52+02:00,fa2251d6e94a45a6c3bbbeabe9f9057c5765ce76,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libxsmm/libxsmm,2016-03-30 09:32:40+02:00,61f09f3ea170c18700d95685a68dee17207c7a33,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/readthedocs/recommonmark.git,2013-08-25 16:45:13+02:00,21d5fab2ba53e357dc70e5ee8f139e5808001af3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/LibreCat/Catmandu.git,2010-08-27 10:54:49+02:00,9292a8b9b6693f44846fad00a400c045ae7a51f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 40, 14, 0, 0, 0, 0, 0, 7, 5, 13, 25, 11, 16, 27, 10, 10, 0, 6, 17, 8, 11, 4, 6, 2, 3, 1]","[0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 5, 0, 0, 0, 0, 5, 2, 2, 1, 0, 2, 0, 0]",2,2,2,0 +https://github.com/puppetlabs/puppetlabs-postgresql.git,2012-04-19 15:37:18-07:00,01c9cbeb7c3bd5c7bd067c5d7438df7d34027fbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 2, 0, 1, 5, 1, 6, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 2, 0, 1, 0, 4, 0]",1,2,10,0 +https://github.com/google/fscrypt,2016-10-26 15:21:47-07:00,331800d9bacecdcaca3518d7ffe000600b35cef2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/az143/glimpse,2014-09-26 11:50:21-07:00,f938dd150035f8887d53d3a76e04c5ea5151d0f6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/evanw/node-source-map-support.git,2013-01-17 23:56:20-08:00,c50758519f67ee47cc5e1ff7a17c543bc3242eed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 4, 2, 1, 0, 0, 0, 0, 4, 2, 2, 0, 0, 0, 0, 3, 0, 4, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]",1,1,6,0 +https://github.com/lv2/sratom.git,2012-04-18 00:49:05+00:00,c27d12eec50db41f1d0ffca8385891060e35338e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 11, 2, 4, 5, 1, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 6, 7, 0, 2, 0, 5, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/GauiStori/PyQwt3D,2016-10-22 15:41:37+02:00,21958f37a351bd376fcbd70be19d71a202bf2acd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/Masterminds/html5-php,2013-04-02 16:40:53-05:00,42db622a7f8409571808f215081e64a22af41e2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 68, 28, 17, 25, 1, 10, 11, 16, 3, 16, 5, 18, 0, 1, 1, 0, 0, 3, 0, 1, 0, 0, 7, 0, 7, 1]","[0, 3, 3, 2, 3, 0, 2, 0, 1, 0, 1, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,3,0 +https://github.com/yetist/lunar-date,2007-11-21 06:57:40+00:00,003a59b9a33ef46a03d35d93d08989721b0a171d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 2, 0, 0, 0, 0, 6, 3, 14, 0, 4, 3, 4, 1, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/linuxdeepin/deepin-music,2012-02-14 10:16:55+08:00,0354725532139c397a1d0c3fb1f8b26c5da3f564,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 8, 5, 1, 6, 8, 14, 35, 11, 1, 10, 5, 1, 2, 3, 16, 25, 37, 28, 40, 37, 1, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/f-secure-foundry/tenshi,2014-09-30 22:11:24+02:00,2e3cacd27e768e9428de650e62c6b1d5ce611b55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://salsa.debian.org/ruby-team/ruby-github-markup,2013-06-09 00:28:31+02:00,12bdf2ffb8d10d094a3d14feab5804baf5b31a7f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/brianmario/charlock_holmes,2011-08-23 16:04:06-07:00,6e122a2ed484b00ff7eddff4fa48dabb87330a7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 13, 10, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://gitlab.gnome.org/GNOME/gnome-desktop.git,1998-02-10 21:22:19+00:00,e745360fddfa92ae76b058dfa106918b83660350,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 1, 6, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 6, 16, 8, 8, 3, 0, 0, 2, 7, 12, 28, 6, 13, 19, 15, 8, 13, 5, 7, 1, 5, 7, 7, 14, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,39,0 +https://github.com/kilobyte/memkind,2014-03-18 14:52:23-07:00,274517603636f6b3ae838a2cecfcb5e8e719e4dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[81, 67, 63, 14, 61, 16, 18, 15, 0, 1, 31, 11, 0, 11, 21, 19, 99, 26, 9, 8, 24, 10, 17, 27, 49, 1, 1]","[2, 2, 10, 0, 4, 1, 2, 1, 0, 0, 0, 1, 0, 1, 2, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,3,5,0 +https://github.com/linuxdeepin/deepin-terminal.git,2019-05-17 17:07:10+08:00,bf70075598c5fde4628153ff7f61e541e090c7e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 7, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 1, 4, 1, 2, 5, 5, 2, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 +https://gitlab.gnome.org/GNOME/phodav.git,2014-01-22 21:32:10+01:00,34b1885abe273b0b7a8bb62deca55d5b313eebb1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 10, 4, 0, 5, 2, 1, 1, 7, 4, 3, 20, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,7,0 +https://github.com/vimalloc/flask-jwt-simple.git,2017-08-24 15:07:22-06:00,ffadaf578fe6f40198a50f1067d9ccb425013366,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/breakfastquay/rubberband.git,2007-12-10 16:29:52+00:00,a94f3f33577bf9d71166392febbfdf3cace6f1c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2, 14, 5, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/MagicStack/httptools.git,2016-04-25 12:36:56-04:00,cf864d941e4aede4231f79fcfe75b971ff79d16d,"[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/mdbtools/mdbtools,2000-02-12 23:51:37+00:00,30ab45dc35dbbb2ee349d2553ce4dda52729f317,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 5, 7, 17, 8, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tcolar/wmfrog,2013-09-05 20:54:54-07:00,d0732d71873fe4ef6c421b343d79f17f8b9bf0ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lunarmodules/say.git,2012-09-06 13:01:32-07:00,f25d51b206d382579cfe5d9499bd2008f720ca6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[1, 1, 2, 2, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,3 +https://github.com/kazu-yamamoto/pgpdump.git,2010-02-19 15:15:01+09:00,0e639f7a17bd5e1bf3a2d9263005e77cd51f03ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/processone/stun.git,2015-12-11 18:38:11+01:00,7cd78019d7058e483a2ce5cc5074d85650802180,"[0, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 8, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,2,1 +https://github.com/rncbc/synthv1.git,2012-09-02 00:45:35+00:00,a7892c4917b3aedf11b8f55399cb7384928ffaf2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 3, 2, 0, 1, 3, 4, 8, 12, 1, 8, 0, 14, 7, 4, 1, 1, 2, 3, 5, 4, 4, 5, 4, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/Eqonomize/eqonomize.git,2016-06-13 13:31:26+02:00,0b10002f8937c472c71768066791f304b6ad1a0c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 19, 18, 10, 0, 0, 0, 0, 10, 2, 6, 3, 6, 4, 1, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://gitlab.freedesktop.org/mobile-broadband/libmbim.git,2013-08-14 15:37:31+02:00,675542eff661caa733977d93051ada49b56e4c8f,"[0, 0, 0, 0, 0, 0, 0, 10, 0, 37, 0, 0, 0, 34, 5, 10, 12, 14, 47, 0, 0, 1, 1, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,4,0 +https://github.com/exaexa/apulse-debian,2014-09-15 01:43:53+04:00,ca9a34ff4907a1d3dfa7115b0c70a897a8b68368,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 3, 0, 0, 5, 1, 0, 4, 3, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jeancroy/fuzzaldrin-plus,2015-09-23 20:31:54-04:00,d45eb8cb58ef179eb07e09e39a0598fee415d770,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 0, 1, 1, 7, 0, 2, 1, 0, 11, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 +https://github.com/cseed/arachne-pnr.git,2015-05-27 16:13:45+08:00,1f461be75fbdb0fd958f7531358820f6f0edd2e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 3, 13, 21, 2, 0, 17, 1, 1, 9, 23, 13, 3, 0, 2, 3, 2, 0, 0, 3, 22, 6, 0, 0, 0, 1]","[1, 0, 2, 3, 1, 0, 0, 3, 0, 0, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",1,3,7,0 +https://github.com/keis/base58,2015-04-07 11:18:25+02:00,c16c7e60746eec885562e4c6778bd2f66c920b5e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 +https://github.com/Rykian/clockwork,2010-05-11 15:31:04-07:00,596af5c614f9660d946a9b72339323e46a6699c4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/eikenb/terminal-colors,2014-06-28 22:28:18-07:00,5ad3cfbc293cc506a0de418d3b90eba58a05c75e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://invent.kde.org/system/wacomtablet,2011-03-26 14:10:02+01:00,2b1999d8621c5524021008ec7b1b28ccd8b91527,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 21, 1, 0, 0, 2, 1, 2, 2, 7, 0, 1, 2, 0, 1, 1, 1, 1, 0, 0, 1, 0, 3, 0, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/ai/autoprefixer-rails/issues/new,2013-04-05 00:58:36+03:00,b114dbd0c3482deef902d6e7d3ee876d9abd850d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 7, 6, 6, 4, 3, 7, 8, 3, 8, 15, 7, 10, 3, 15, 4, 14, 10, 3, 0, 6, 7, 5, 3, 3, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/fordfrog/apgdiff,2012-09-16 02:31:55+02:00,f855af56a7a97c1bade9508dd226a15b1d027640,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/smuellerDD/jitterentropy-rngd,2017-05-19 00:41:01+02:00,dd8e82657489be6e35a050db377108c6491b2ead,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/htacg/tidy-html5,2011-11-17 11:58:38+09:00,ff7a980d9de76329cd2c38fadeac9b7565de0b0f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 4, 4, 9, 9, 7, 7, 11, 3, 5, 0, 3, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 +https://github.com/syohex/emacs-git-messenger.git,2013-05-16 17:16:13+09:00,de3096daeed4ac950851af441185b7b9d0653b9c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 15, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/ramnathv/htmlwidgets.git,2014-07-17 16:40:13-04:00,9b39806e6dfb3105cd875aa7103190ba2c3f98ab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 8, 46, 22, 2, 1, 0, 3, 2, 0, 0, 0, 0, 0, 2, 2, 2, 25, 8, 47, 37, 1, 0, 0, 0, 5, 1]","[0, 1, 10, 6, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 1, 0, 5, 2, 7, 11, 0, 0, 0, 0, 1, 0]",1,4,8,0 +https://github.com/alif-type/amiri.git,2008-10-31 18:50:55+00:00,cf68ff6a95082bc98c943792ac31abe857381b79,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/savonet/ocaml-theora.git,2008-10-15 17:30:33+00:00,0bb0ceba43dcab886d8e81c7c346a1f27c671e97,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/kornelski/pngquant.git,2011-12-26 21:31:04+00:00,74f5b43759234f741cb72aadb2a4a89cf0b112f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 +https://github.com/AFLplusplus/AFLplusplus.git,2019-05-28 16:40:24+02:00,f367728c4435670caf2e9cc5acad257e7766cc65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 8, 6, 11, 15, 22, 30, 28, 20, 13, 17, 4, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 0, 1, 2, 4, 3, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,5,17,0 +https://github.com/BioPP/bpp-core,2021-10-05 11:29:29+02:00,fca2cd9cc7e41d044d226588e1c7861f656d8a96,"[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[8, 0, 0, 0, 1, 2, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,0,2,1 +https://github.com/lucc/khard,2014-09-23 00:57:49+02:00,3371cc01c7fbace1e6fe247db1137c5080164407,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 1, 1, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/CDrummond/cantata,2011-11-27 15:24:05+00:00,cb159b27533d31a18dfd3d0a9324517f96da2652,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[73, 100, 41, 64, 12, 50, 7, 71, 41, 35, 85, 54, 70, 83, 58, 29, 50, 41, 38, 23, 48, 29, 30, 19, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/knowthelist/knowthelist,2014-05-16 09:45:33-07:00,288e15aca63d0a4333982c8f304d0c5b372d6049,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 8, 20, 19, 11, 8, 20, 19, 11, 5, 16, 23, 7, 0, 19, 15, 13, 17, 15, 8, 4, 3, 0, 6, 3, 0, 0]","[1, 0, 2, 2, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 2, 1, 1, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0]",0,3,5,0 +https://github.com/brack3t/django-braces.git,2012-03-02 12:16:29-08:00,1f054d280ee2cbdf5c57bc6967d51ce960036371,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 13, 1, 0, 1, 0, 1, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 +https://github.com/gbarr/perl-Convert-ASN1.git,2000-05-03 12:24:42+00:00,cdea6b4e90d89c945a4e7cc15697d63402c26856,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/resurrecting-open-source-projects/scrot,2019-02-12 14:28:27-02:00,3250e195fe7aab38b6ea09a45718280ff0301e3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 31, 7, 5, 0, 2, 10, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 1, 0, 0]",1,2,5,0 +https://github.com/trapexit/mergerfs,2014-03-24 08:43:21-07:00,2b78be18f4fb39e4f72bd3019aa352acc5e7ede3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 3, 4, 12, 2, 2, 2, 4, 0, 1, 0, 1, 3, 1, 1, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libsndfile/sndfile-tools.git,2007-10-08 22:23:55+10:00,ab4c9ce664f0e03fc31762513289aeb3b7540e9a,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 12, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/solnic/virtus.git,2011-04-02 18:10:47+02:00,1c16bae504ea1065ec35b5db1d3fc0d43242eb3d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 6, 7, 33, 57, 0, 18, 27, 43, 25, 79, 67, 20, 7, 2, 7, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/intridea/multi_json,2010-06-13 13:09:59-04:00,518c21ab299c500527491e6c049ab2229e22a805,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/alexdalitz/dnsruby.git,2007-09-21 09:19:24+00:00,b2777fbc25bbfee396b2a730c0b33a5a368dbc9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 6, 15, 1, 2, 0, 5, 3, 4, 0, 0, 1, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jacktasia/dumb-jump.git,2015-11-18 13:29:17-08:00,cc622b011afcb4f5bfd5ede579dd80009dfc1dad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 0, 3, 5, 18, 30, 26, 19, 26, 8, 22, 12, 13, 12, 17, 8, 8, 12, 12, 8, 6, 4, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 2, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,6,0 +https://github.com/pdepend/pdepend,2017-11-20 12:43:56+01:00,64abe82fd651216a4c8f1d5555193e91f8c00ec8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 34, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 1]","[5, 9, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",8,0,1,1 +https://github.com/nixxcode/amsynth.git,2002-03-16 19:25:22+00:00,1944e598363acc1ec39f69aa03dfe5f9e4d269fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 0, 0, 3, 2, 0, 0, 4, 0, 0, 7, 23, 2, 0, 3, 2, 1, 4, 1, 0, 0, 0, 0, 0, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jpadilla/pyjwt.git,2011-02-24 12:28:20-08:00,ab8821fefa1c481ece410305d03a1f21c0b4a207,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0 +https://github.com/h2o/h2o,2011-01-13 12:12:45-05:00,f8769784e5469cfa0fd497030832364c3927c804,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 6, 1, 7, 0, 3, 19, 1, 0, 0, 1, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/datawraith/ascii85gem,2009-02-17 18:02:48+01:00,d3aaea468cfc5e320dbc601979603c19d6759385,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jonschlinkert/mixin-deep.git,2014-09-22 11:41:27-04:00,5a058ff68c208e13ee9e55f9f7b4ce79f307536a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/lxqt/lxqt-admin.git,2016-05-31 23:12:16+02:00,0f9ab3a1d618222472526e3fb13efb2bcf7bdc2e,"[0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 5, 2, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 +https://github.com/tpm2-software/tpm2-abrmd.git,2016-04-01 12:26:39-07:00,80379fdf6a330900f566dec6b809f510d3dc26bd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 13, 10, 10, 6, 2, 20, 14, 6, 19, 6, 5, 0, 0, 0, 1, 4, 7, 0, 8, 6, 0, 0, 7, 2, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Intel-HLS/GKL.git,2016-05-16 10:15:10-04:00,849a03755557798ac1351a9b5c3648fc7ca281ea,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 7, 0, 27, 10, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 8, 0, 37, 2, 1]","[3, 4, 3, 0, 14, 4, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0]",1,4,3,0 +https://github.com/isaacs/pseudomap,2015-11-27 14:13:43-08:00,821316ef5b2c53f4d6d40bfb21301f74fd0c21a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jammus/lastfm-node,2010-09-13 21:43:05+01:00,24bcc1ced77ba8edec1eeecb30b0a11c6192429b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 2, 2, 10, 5, 6, 0, 24, 3, 4, 1, 0, 0, 0, 0, 0, 0, 16, 5, 0, 0, 0, 0, 0, 12, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://gitlab.com/accounts-sso/telepathy-accounts-signon.git,2012-12-05 20:00:15-07:00,99d19de22b9f2371c4ee1f47d1eb735943475c6b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,1,0 +https://github.com/tweepy/tweepy.git,2009-07-05 14:24:56-05:00,04709fb6e5cb73060a962e85099ae704ce7bad45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 5, 2, 26, 36, 32, 7, 3, 4, 4, 13, 11, 14, 0, 37, 0, 7, 21, 3, 5, 1, 5, 34, 6, 0, 4, 1]","[0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0]",1,2,9,0 +https://github.com/rra/pgp-sign,1998-11-26 05:00:12+00:00,41c7a4a8d0d17ee8f00ea7a8995f5801e86a4bdf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-music,2012-07-29 03:35:21-07:00,12f63a47ecbbfd23b0a7300359fdb5f732a32eaf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 2, 11, 22, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 2, 0, 0, 2, 4, 1, 0, 1, 2, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,11,0 +https://gitlab.freedesktop.org/libinput/libinput,2013-11-12 22:37:20+01:00,bd4db1c2a21fddd9b1135a41c5adaff3db0f8b3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 2, 0, 19, 12, 20, 0, 9, 15, 14, 28, 10, 13, 7, 10, 8, 1, 0, 31, 5, 6, 11, 2, 18, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,12,0 +https://github.com/linuxdeepin/deepin-menu.git,2013-11-11 07:57:59-08:00,51ccf3f74f478c5695bb3f7f0018d30c1f17f781,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[18, 38, 18, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,1 +https://gitlab.gnome.org/GNOME/libgudev,2015-05-15 11:42:30+02:00,7042a0a7fae9a3b76ef02e9532b0353515e53249,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/jupyter/nbformat,2015-04-08 18:46:25-07:00,0762fbc4bbb2150944ed23b70dde4c23b30dc489,"[4, 1, 0, 34, 7, 1, 5, 2, 6, 3, 1, 0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 5, 10, 9, 2]","[2, 1, 0, 2, 3, 0, 1, 2, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 0]","[3, 2, 0, 0, 4, 2, 4, 0, 2, 0, 2, 0, 4, 2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,0 +https://gitlab.gnome.org/World/lollypop.git,2014-10-02 17:53:35+02:00,d28a5d4c58bd19341c2891726eafd6d1444eda2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[61, 111, 44, 111, 62, 19, 3, 119, 26, 22, 27, 13, 2, 25, 36, 10, 117, 12, 4, 71, 59, 61, 31, 75, 47, 40, 1]","[0, 0, 5, 0, 1, 2, 0, 3, 0, 2, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]",1,1,2,0 +https://github.com/messageformat/Jed.git,2012-01-16 02:23:06-06:00,e036859005c009a8df7b3867584713a23ef84bab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/shimmerproject/Bluebird,2011-02-18 20:46:53+02:00,98b0f4b57a1c8939c77c03a4cc66d2392c4c487c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 6, 11, 3, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/coleifer/wtf-peewee,2011-09-01 10:21:04-05:00,205377acdc2313dbad5d154dd2794fd360535f30,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 1, 2, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/isaacs/once.git,2012-08-14 00:25:06-07:00,139a136bd478b623850879140d8fec96147e7a3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-disk-utility.git,2007-05-08 00:20:39-04:00,2c46760544b4f6336ea94267b957fb729845d7c9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/alols/xcape,2012-03-31 23:02:17+02:00,7a396a4fac640638f02ec9b68c0f3bbe61e6f367,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 +https://github.com/kilobyte/ipmctl,2018-05-14 17:00:06-07:00,ea2872684563c6e9be4d09080f993a8d3bb6169a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 29, 23, 32, 18, 15, 0, 47, 0, 1, 58, 32, 31, 22, 17, 6, 16, 18, 11, 0, 0, 47, 0, 32, 12, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,16,0 +https://github.com/caml-pkcs11/caml-crush,2013-12-18 17:38:50+01:00,bf1ced5628bfefbd3cb4ec69cbb745fb039a7f0b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 0, 2, 0, 0, 0, 5, 3, 3, 6, 4, 0, 7, 0, 0, 18, 1, 0, 0, 0, 6, 0, 1, 3, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/latchset/custodia.git,2016-12-09 17:39:22+01:00,e5332c993ac318fb262ac5819c60a757ac5342be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 7, 8, 6, 10, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/dsully/perl-crypt-cracklib.git,2010-07-20 14:00:26-07:00,2358018e31adb576b9f4eec686d30d38df8ca6d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ximion/appstream-generator,2016-02-21 23:21:32+01:00,8951ab113ddfaf633ae1b93e3c3d7a38cbf27f69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 17, 7, 13, 35, 29, 4, 23, 35, 13, 2, 0, 17, 17, 1, 5, 0, 0, 3, 1, 4, 4, 22, 15, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,2,5,0 +https://github.com/jupyter/jupyter_console,2015-04-09 14:58:56-07:00,01911a59496d49002da76d73c83a00fd735f63e4,"[3, 1, 0, 0, 5, 4, 0, 2, 2, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 2, 0, 0, 0, 10, 2, 10, 2]","[1, 1, 0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 3, 0]","[1, 0, 1, 0, 2, 0, 2, 0, 5, 0, 0, 7, 2, 10, 0, 0, 0, 5, 0, 2, 10, 0, 2, 0, 0, 4, 1]","[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 3, 1, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0]",5,0,4,0 +https://github.com/bucciarati/mpc123,2006-08-05 00:15:03+00:00,7a414ec6e35b1e34dac506aea0bbb9ecd79d8160,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/timvideos/HDMI2USB-mode-switch.git,2015-09-20 02:03:36+10:00,e3c7c14f0120f3d40301dd5f92ca1e3fe4ceb1fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/hamcrest/hamcrest-php.git,2011-08-30 11:28:24-05:00,ece5e9b731efb036f7afd84155b18bd03442f829,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rails/arel,2007-12-30 11:35:44-08:00,960bbcb3ce4a82cf4f031d1c6682ce4c1a04474d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 20, 7, 4, 1, 4, 11, 8, 2, 4, 12, 10, 0, 0, 17, 17, 0, 8, 17, 22, 12, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://gitlab.gnome.org/gnome/gdm.git,1999-04-18 22:08:08+00:00,48dfb0c6fc683eb0512074448bc4418ad8241e40,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 3, 1, 0, 1, 0, 1, 0, 0, 1, 0, 2, 3, 4, 1, 9, 2, 2, 9, 2, 1, 8, 11, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,30,0 +https://github.com/Pingus/pingus,2000-02-04 23:45:08+00:00,0e80a5966856474f38235783f7928c69e76ea26b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 25, 9, 21, 20, 29, 6, 0, 0, 44, 10, 4, 22, 13, 5, 25, 10, 7, 38, 33, 32, 5, 17, 1, 0, 36, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/etingof/pysmi,2015-04-11 11:04:27+00:00,ad7337ad5452804f959a1e60b2f9d5d8cd396e44,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 41, 14, 23, 11, 13, 1, 5, 1, 0, 3, 7, 9, 2, 0, 0, 2, 0, 1, 0, 0, 4, 0, 1, 2, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/admesh/python-admesh,2014-07-15 13:41:30+02:00,0490492bbc466c08f272dd205ab9a1eeb36fd25a,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 7, 2, 0, 0, 0, 2, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/schismtracker/schismtracker,2003-07-08 16:57:56-07:00,6389808e2c266a5779a517c54bacb13bcc875919,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Xastir/Xastir.git,2002-02-02 03:19:52+00:00,fa09e5594e8cc377bde8c290c38656a527321aa0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 20, 4, 6, 33, 12, 8, 26, 32, 52, 35, 49, 30, 30, 14, 10, 8, 39, 22, 36, 23, 15, 25, 40, 18, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,7,0 +https://github.com/tianon/cgroupfs-mount,2014-03-21 12:42:30-06:00,eb97f747608968cc2c29a6dedf882705c6e02f57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 10, 0, 2, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/onetrueawk/awk,2012-12-22 10:35:39-05:00,87b94932e6f12ad16e9fc1af1a7b5b66ae9381e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/stumpwm/stumpwm.git,2003-09-13 21:01:16+00:00,f56ea9b506cae8819fcd5295ff8bc3afc1da1905,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 1, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-characters.git,2013-02-22 22:53:06+01:00,2c33b8a6a428cb19acc48983a07a060391067589,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/katajakasa/SDL_kitchensink,2016-01-04 04:33:59+02:00,537ca31915603d7ed47ab4374a74058e340125c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 38, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/mate-desktop/marco.git,2011-12-01 23:52:01-03:00,28a029a4990d2a84f9d6a0b890eba812ea503998,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,4,0 +https://github.com/epinna/weevely3.git,2014-09-27 20:11:21+02:00,032c061aea19fb302ae5254e438809045e41c0b3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[86, 41, 68, 27, 37, 19, 9, 6, 17, 3, 32, 0, 16, 0, 2, 34, 0, 0, 1, 2, 0, 0, 2, 0, 0, 15, 0]","[3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://invent.kde.org/education/labplot.git,2008-03-03 10:50:16+00:00,558afdbe9a38caee295e44fdb3f2e9e916c8aef8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 7, 1, 2, 4, 2, 0, 4, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/purcell/ibuffer-projectile.git,2014-12-29 20:50:36+00:00,c736a211cf7a0d4b3cccec8687ba22aac66b1725,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/OpenShot/libopenshot.git,2011-10-11 08:44:27-05:00,161e8923afad20bae00fcdcea571af3d67301b8d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 3, 8, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/miguelgrinberg/python-engineio.git,2015-06-21 18:59:54-07:00,4303b86e4f363e746957e6adecea303089e90f70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 3, 1, 0, 2, 2, 2, 12, 5, 8, 2, 0, 3, 0, 2, 4, 2, 0, 2, 0, 3, 0, 3, 4, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]",1,1,2,0 +https://github.com/icholy/ttygif.git,2010-08-22 13:16:14-04:00,c4fd0f2bc69dba852526df3610f98d867ba5ab24,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/luceneplusplus/LucenePlusPlus.git,2010-08-19 23:24:58+01:00,2b1d647d73d9abe6b6b49d88c5cb2e4beb9eaf4c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 16, 3, 5, 3, 1, 1, 2, 9, 5, 3, 0, 0, 0, 0, 3, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/pydanny/cached-property.git,2014-05-17 15:42:43-07:00,7161ec8bf07e46aa08216e494a29d0428b7d988b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/mqttjs/mqtt-packet,2014-07-26 14:57:10+02:00,5efacaf07b8b241a88dbeba2ab56ccc520041463,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 2, 7, 15, 3, 4, 0, 0, 0, 0, 8, 0, 0, 6, 6, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 +https://github.com/lmj/lparallel,2011-10-22 10:48:24-04:00,520441ad620764be3b68c688c3cdd483cda1831b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 10, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 3, 4, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/pgRouting/pgrouting.git,2007-05-15 05:05:03+00:00,c7cbee6df17006494d85d5685c3a01a794b09e4b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 3, 0, 0, 1, 0, 0, 0, 0, 4, 2, 0, 2, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://gitlab.xfce.org/panel-plugins/xfce4-xkb-plugin,2004-05-23 08:44:20+00:00,198131826b14b4a8de6a8b8b7e5fc28a7221aad6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/koehlma/pygtkspellcheck,2012-04-11 01:17:02+02:00,d23125349868e391d43bc8fb8588f11892b3ef7d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 1, 31, 16, 21, 1, 5, 6, 24, 21, 0, 5, 3, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/shoheik/Graph-D3.git,2013-04-13 11:17:23+09:00,1a98dea29dde821f079e7a1b732261101bc6ee83,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dglent/meteo-qt.git,2014-10-18 09:50:09+02:00,b02b276391baecd48fc51f7247659794799b3637,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 8, 38, 8, 27, 2, 3, 2, 1, 2, 19, 1, 0, 3, 0, 1, 4, 0, 4, 0, 0, 0, 0, 0, 2, 9, 1]","[2, 0, 8, 3, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,7,0 +https://github.com/darkk/redsocks.git,2008-08-19 03:27:14+07:00,a1f4ccddd03d1c895e8804efb7fe7b3d974eddad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/pydata/xarray,2013-09-30 10:21:10-07:00,f6202cb597237e5ad78904771bcbc03e01f39b27,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 42, 11, 38, 50, 21, 6, 24, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 12, 15, 4, 4, 10, 0]",2,4,5,0 +https://github.com/johang/btfs,2015-07-26 10:37:22+02:00,5f3f0c0d444679d9e1b378a9040fe251fa0486e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 6, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 3, 0]",2,1,4,0 +https://gitlab.com/larswirzenius/vmdb2.git,2017-02-26 18:13:54+02:00,544805adcb8244e6bbe72befec09d69c627debf9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 16, 0, 11, 22, 0, 9, 0, 0, 0, 9, 11, 0, 16, 4, 11, 0, 0, 0, 3, 0, 11, 0, 0, 7, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/mudge/re2.git,2010-07-24 14:49:13+01:00,3f654a4dfc7bdcb18a421e20a8f0f5af918eb035,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 10, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/JRaspass/Cache-Memcached-Fast.git,2007-12-06 13:07:27+03:00,c05b1a429bb86babd602bafa99eeffad32ed9138,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[130, 73, 21, 1, 35, 53, 38, 3, 3, 2, 0, 2, 11, 14, 0, 0, 3, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/intel/hyperscan.git,2015-10-20 09:13:35+11:00,904e436f11ed1197a1192b421ab7278975dce169,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 18, 0, 32, 5, 0, 14, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://gitlab.gnome.org/tuxor1337/hidetopbar,2012-11-22 13:20:39-05:00,62d39377dd7a081d8948ebb45f860b7c9a314793,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 1, 4, 0, 3, 5, 0, 0, 0, 0, 1, 13, 0, 2, 3, 1, 2, 0, 0, 0, 5, 1, 0, 0, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]",1,3,4,0 +https://github.com/dosfstools/dosfstools.git,2013-01-23 12:46:45+01:00,ba6774ae1dd5199a733dfaeaf438dff095284de7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[101, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 1, 20, 1, 2, 0, 0, 2, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,30,0 +https://github.com/txt2tags/txt2tags.git,2019-12-17 22:59:46+01:00,2aadebd414dd85b67f2c0a9f7f7d6032ce661c6d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/topfunky/gruff,2008-03-11 15:10:13-07:00,b5788a43b0d9714ed2e53dfa138d41c22ea4649c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 1, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/01org/libyami.git,2013-09-10 00:52:04+08:00,0964cbafc01ee529b7fa53013170cc61c4e81fb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 5, 0, 0, 0, 14]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 +https://github.com/Xaviju/inkscape-open-symbols,2015-02-26 00:17:06+01:00,cec5fd2fd20e3ff2fdf616170fe8ca4cdeaafea6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,2,7,0 +https://github.com/Debian/debiman.git,2017-01-06 16:11:22+01:00,46fd41016de5adf921326141eb7c1a047b997478,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[62, 75, 31, 27, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 4, 4, 1, 1, 0, 1, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/tbird20d/grabserial,2013-12-16 15:09:47-08:00,02077ab2a63beabcbd7114998b808aaf90362d1a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,5,0 +https://github.com/google/jimfs.git,2013-09-08 01:09:27-04:00,b12009d0b8ecf6725d50cf9226fd232c0aff12c8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 11, 4, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0]","[32, 29, 16, 17, 19, 27, 14, 14, 9, 5, 0, 0, 9, 9, 2, 0, 0, 0, 0, 12, 7, 2, 2, 0, 5, 0, 1]","[0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0]",1,1,1,1 +https://github.com/williamh/espeakup,2008-07-28 01:23:43-05:00,4e3bbdb0b02eb1f12c087909e6437a31a9c60d7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 3, 14, 0, 7, 5, 0, 0, 5, 5, 7, 1, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rrthomas/mmv.git,2022-02-27 23:07:44+00:00,90026621b4cbabc4b29c112a515d50825a8a0500,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/puppetlabs/clj-kitchensink.git,2013-10-28 16:10:22-07:00,ba53c060312bbc36fdc4003d2f413a78ece53bbc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 13, 9, 20, 6, 3, 1, 8, 4, 0, 15, 0, 1, 5, 7, 2, 12, 5, 0, 5, 0, 0, 6, 0, 14, 5, 0]","[0, 6, 3, 8, 3, 0, 0, 2, 1, 0, 3, 0, 0, 2, 1, 2, 2, 2, 0, 1, 0, 0, 1, 0, 3, 2, 0]",1,5,12,0 +https://github.com/thoughtbot/factory_girl.git,2010-06-09 11:42:48-04:00,dd737af03e6f626403c87aeae516940bf80535c9,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 1, 0, 1, 0, 6, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,2,0 +https://git.launchpad.net/gmult,2008-04-15 05:23:34+00:00,f13a4f8e618894ee4c0d6d28c1aa89f992870bd7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 0, 0, 0, 0, 0, 8, 8, 0, 12, 4, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 +https://gitlab.com/camlspotter/camlimages.git,2010-05-03 23:37:01+09:00,79f2d677749f292d3f022789d87c67e225399fab,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 8, 5, 0, 0, 2, 0, 0, 0, 3, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/edmonds/ifupdown-multi,2013-09-17 21:32:53-04:00,e715f53c3d9f9ee91b8a56b1ba124018c0f8246e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/DaveGamble/cJSON.git,2011-08-22 00:43:38-04:00,fc0df31a18b6acdcd01a4507060287097a50b4f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/felixge/node-dirty.git,2010-01-12 16:17:51+01:00,bf46237bf9d63019287e1d4395a61c9823e9d078,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 5, 0, 0, 0, 0, 14, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/edenhill/kcat,2014-03-30 15:58:25+07:00,b81469f12dd3f06d5f0e3eb98b2cb75d1fb6a731,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 3, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/flot/flot,2007-12-03 19:54:22+00:00,87390ae7fe343764d30203d233992427afdd4dc6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 14, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/squizlabs/PHP_CodeSniffer,2011-11-04 09:18:45+11:00,6f41fcd0ded363336e238815d3d826ded137bd44,"[0, 1, 0, 0, 0, 1, 0, 0, 0, 4, 1, 0, 1, 3, 0, 0, 0, 0, 4, 4, 1, 0, 3, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 6, 13, 6, 0, 1, 2, 0, 0, 13, 1, 8, 1, 5, 3, 8, 0, 1, 3, 0, 9, 0, 4, 3, 3, 4, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 1, 0, 0, 0]",0,1,10,0 +https://github.com/csound/csound_pd,2018-01-19 13:20:22+00:00,5082f5035b94af58dd4a8cf1ab17609b3b46fcf3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1 +https://github.com/anthon38/gmailfeed.git,2014-12-20 15:59:18+01:00,f2a730ff98b25ce293c078b1232ffac78de96ab2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 1, 4, 1, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/supermihi/pytaglib,2011-08-27 01:23:48+02:00,2ef173461952c04285409697e34fb31609353451,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/strengejacke/sjlabelled,2017-05-30 21:24:32+02:00,ea313d08a9b43e09d532599f06df43c240e0474e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 4, 1, 2, 1, 1, 0, 0, 0, 2, 0, 0, 1, 0, 2, 3, 1, 4, 4, 1, 0, 0, 11, 1, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,0,0 +https://gitlab.com/yawning/obfs4.git,2014-05-09 10:23:58+00:00,ef38b844f9989dff25f553b583aeafc411dd100e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 15, 16, 5, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 5, 5, 7, 3, 0, 2, 2, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/chocolate-doom/chocolate-doom.git,2005-07-23 16:54:24+00:00,bbe2bfe4df3709bee31ef3eeac45fd3be7f72671,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 10, 1, 1, 10, 30, 11, 17, 18, 22, 28, 23, 4, 4, 0, 1, 0, 0, 0, 0, 0, 5, 22, 38, 12, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb,2013-07-24 16:45:26+02:00,0c3338a30dfb35d19ef26d3b36e087f5b4ad1388,"[13, 28, 25, 25, 99, 147, 103, 43, 38, 35, 20, 29, 25, 16, 0, 11, 21, 41, 30, 16, 26, 19, 23, 17, 10, 27, 2]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 18, 0, 1, 9, 10, 6, 14, 11, 4, 3, 7, 8, 5, 5, 4, 9, 11, 10, 9, 14, 0, 0, 0, 20, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,2 +https://github.com/mfontanini/libtins.git,2013-01-28 17:57:43-03:00,2a1a28c3fbb42ff3d5198da11493b7f779045ab0,"[7, 14, 7, 11, 3, 9, 5, 0, 0, 10, 5, 9, 0, 0, 0, 0, 22, 12, 8, 1, 0, 0, 0, 0, 5, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 6, 8, 3, 3, 11, 22, 15, 3, 0, 0, 3, 12, 5, 1, 1, 0, 1, 2, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,0,2,0 +https://github.com/cherti/mailexporter,2015-08-08 19:34:58+02:00,d86c5f6f8feb2f13064ec6e2bd1073d3411de168,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 0, 2, 0, 3, 15, 2, 1, 0, 0, 0, 2, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/3rd-Eden/FlashPolicyFileServer,2011-05-31 23:58:54+02:00,70d9bd6243f68e1fcfae5203aa5c741cd5803f82,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/rcsb/mmtf-java.git,2016-03-18 06:30:29-07:00,148b2f20524f4b91b95eaaa50211d1d0be42b84a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[57, 62, 65, 62, 43, 8, 2, 4, 5, 29, 29, 1, 10, 2, 0, 12, 0, 0, 0, 11, 11, 13, 0, 13, 0, 4, 0]","[3, 12, 3, 2, 5, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 3, 0, 1, 0, 1, 0]",1,3,4,1 +https://github.com/iustin/mt-st,2015-05-16 17:26:03+02:00,fcb4fbe0d1dd49ccda6b7421f007b5b41c0ef4d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,6,0 +https://gitlab.gnome.org/GNOME/polari.git,2017-11-02 03:44:44+01:00,7df628dde8115871dfa6da9446e00da93dc303cc,"[1, 3, 0, 4, 1, 1, 8, 3, 0, 3, 8, 12, 3, 4, 28, 8, 9, 6, 9, 10, 2, 6, 1, 1, 7, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 19, 6, 1, 4, 15, 2, 1, 0, 1, 1, 2, 2, 13, 2, 13, 16, 9, 6, 5, 3, 0, 1, 1, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",15,0,13,0 +https://github.com/stan-dev/rstan,2013-05-22 21:47:02-04:00,9a7b769ac7de9361846019ff20fe34ab763cf803,"[1, 22, 13, 8, 2, 6, 3, 5, 4, 4, 9, 6, 2, 6, 31, 17, 5, 1, 7, 13, 20, 15, 4, 9, 6, 6, 2]","[0, 11, 9, 4, 2, 5, 0, 3, 2, 4, 5, 4, 0, 2, 17, 9, 1, 1, 3, 10, 13, 7, 1, 6, 2, 4, 0]","[38, 9, 6, 22, 5, 1, 10, 1, 3, 6, 4, 1, 1, 7, 2, 4, 7, 5, 1, 0, 15, 4, 9, 0, 0, 0, 0]","[10, 4, 0, 5, 2, 0, 1, 0, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 1, 1, 0, 0, 0, 0]",8,2,3,5 +https://github.com/Keruspe/GPaste,2011-01-18 21:42:01+01:00,9c4dd7c0b60875bc023e26a4873385cbf43e3f3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 52, 51, 19, 47, 22, 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 25, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jawnsy/Math-Random-ISAAC-XS.git,2009-04-07 00:25:30+00:00,86bf601b0d955086395a7f02a9761f910fc66acf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 12, 1, 2, 7, 0, 0, 1, 2, 0, 0, 0, 0, 0, 8, 3, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nichtich/Catmandu-Importer-getJSON.git,2014-01-21 11:58:10+01:00,843b72f4170286ebd040edaa205073acf066ae5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/mrash/fwknop.git,2008-11-28 00:57:59+00:00,0cdcbddf0d9f4dba786296288aa8f5c84ef3e413,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 2, 1, 7, 16, 2, 0, 0, 11, 7, 6, 4, 2, 2, 1, 3, 1, 1, 0, 2, 2, 0, 3, 1, 2, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://gitlab.freedesktop.org/hadess/iio-sensor-proxy,2014-07-09 15:57:16+02:00,1e8ef1a116556604d6c60eaaf8ed634ef54f0e2b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 3, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/williamh/speechd-up.git,2004-01-22 21:30:03+00:00,d519a2abb5d069c503e14b4e9dfc1a5498d5b9f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/libpwquality/libpwquality.git,2011-09-16 19:02:43+02:00,e745294c1839de3b0886c6cbe5d8601c56dd3dcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 4, 0, 0, 0, 2, 9, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/hughsie/libjcat.git,2020-02-27 18:10:10+00:00,f6003d8a7bda4f361282db617ccaf795f304920b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 6, 0, 2, 7, 2, 5, 2, 2, 0, 0, 0, 1, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/P-H-C/phc-winner-argon2,2015-10-04 10:25:27+02:00,72d0a2dc2a98e04aa52634b53fbb234ae6cd09d8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 58, 46, 52, 59, 12, 3, 8, 12, 5, 0, 7, 6, 11, 16, 19, 12, 11, 6, 33, 6, 8, 13, 5, 8, 6, 1]","[0, 3, 1, 1, 13, 5, 0, 1, 1, 0, 0, 1, 3, 5, 7, 6, 4, 3, 2, 3, 3, 2, 6, 0, 1, 3, 1]",1,7,32,0 +https://github.com/kodi-pvr/pvr.iptvsimple.git,2015-02-24 16:23:03+00:00,5f3455eb613052d33d9958a6a78a9524b6357aaa,"[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 4, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 3, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 2, 17, 2, 0, 3, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 2, 7, 0, 9, 0, 0, 2, 1, 1, 0]","[0, 3, 1, 5, 1, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0]",6,4,7,0 +https://github.com/systemd/python-systemd,2012-06-25 16:58:29-07:00,7bcd8598958496d67dada85ab58119a7528b95d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 13, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/easystats/parameters.git,2019-02-09 12:17:43+08:00,5417f314a36dfee79b133defe48547edd2e203e7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 16, 16, 20, 2, 3, 1, 2, 8, 9, 12, 16, 17, 2, 19, 29, 19, 0, 24, 15, 2, 5, 24, 23, 8, 56, 1]","[5, 4, 4, 2, 1, 0, 0, 1, 0, 2, 1, 1, 3, 0, 2, 2, 2, 0, 2, 4, 1, 0, 2, 5, 1, 7, 0]",1,3,2,0 +https://github.com/webpy/webpy.git,2007-12-24 20:50:02+05:30,dd6e1af5451243b26009cfbea72b9968eec69cf7,"[1, 0, 0, 2, 1, 0, 3, 3, 2, 1, 2, 5, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 3, 15, 4, 2, 2, 1, 0, 4, 2, 5, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +https://github.com/nichtich/Pandoc-Elements.git,2014-10-23 21:34:21+02:00,c018b7cf5e1e7960e968d73ad9e05f4a05f76e6f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jaqx0r/filtergen,2004-06-09 01:40:18+00:00,ab5e8d6ac02352b83eefbf531cd57d882013cd06,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 4, 3, 0, 5, 0, 0, 0, 0, 0, 24, 0, 1, 0, 0, 0, 0, 0, 20, 5, 21, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/mate-desktop/python-caja.git,2012-01-13 23:18:04+01:00,ca0a8f4d6cc24707bc07c3013bff321e2f0c24fd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/njh/twolame,2005-04-15 01:10:16+00:00,5f3700de03bdf33884411af90275dab92fa11403,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mate-desktop/caja-actions,2012-03-18 00:09:29+01:00,ac7397db52e1e4ed447bbe0bc7b250570a20b898,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/xmendez/wfuzz.git,2014-10-22 22:23:49+01:00,221fe3e1fbd5a6df8c57b5ac03ec8abfb9277a3b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 10, 10, 6, 1, 0, 0, 1, 0, 0, 0, 0, 1, 6, 8, 13, 14, 8, 0, 9, 4, 12, 3, 0, 0, 0, 0]","[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0]",2,3,6,0 +https://github.com/PyCQA/pylint-plugin-utils.git,2013-10-04 23:47:06-07:00,aaa393e8a77b8329faff65d7c48b29033d695824,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://salsa.debian.org/emacsen-team/magithub,2016-09-15 23:35:12-05:00,9de8c157fce3628b5b15a70a5ccdee592185e37c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[96, 38, 6, 31, 2, 2, 1, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 22, 5, 0, 0, 0, 0]","[4, 7, 1, 3, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,8,0 +https://gitlab.com/compiz/compiz-core.git,2006-02-09 06:03:09+00:00,9959c2b13ded64a5e66359a8097250dc9d87fc1c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 7, 14, 12, 13, 4, 17, 17, 26, 19, 24, 12, 18, 13, 14, 15, 7, 8, 0, 28, 6, 15, 38, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0]",2,2,6,0 +https://gitlab.gnome.org/GNOME/cantarell-fonts.git,2010-11-05 01:42:09-04:00,da84af9ea68dc27b939992888a6859c596db1969,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 20, 0, 1, 0, 0, 0, 7, 9, 0, 3, 5, 4, 4, 32, 3, 0, 20, 1, 4, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/joewing/jwm,2005-09-05 19:01:43+00:00,fec2cba77c3fd7b03208c176fdc158171358f2ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 14, 2, 7, 13, 3, 10, 3, 25, 16, 0, 0, 0, 0, 0, 4, 6, 26, 0, 0, 10, 1, 0, 0, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/yappo/p5-String-Diff.git,2008-10-23 02:14:41+00:00,605d3e56c68d6ff500d469b414b6926f1213b6ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bneijt/ccbuild.git,2006-07-21 13:22:22+00:00,967b3051e4fe51372514bb68afd64144bfb904ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gpodder/mygpoclient,2010-01-17 23:01:58+01:00,a5c655881f02f064837fc3b76f054c2674196c6b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 1, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 1, 2, 1, 0, 1, 0, 3, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/x90skysn3k/brutespray,2017-03-31 21:00:19-05:00,f637ea3fc2f3ff7111c81acb317505608fc66758,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 5, 4, 22, 1, 3, 27, 13, 1, 1, 1, 0, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]","[0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,4,0 +https://github.com/Libvisual/libvisual.git,2007-10-24 21:53:00+00:00,bff24ac0f772b61ec28bcf247ea1edbc0dbeb3c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ericflo/django-pagination,2008-05-29 02:32:45+00:00,587bdd45aceb2d66bf91d5ea611d939ace8b9c55,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 1, 0, 1, 0, 7, 1, 0, 1, 0, 2, 0, 5, 2, 0, 1, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/mikeal/tunnel-agent,2013-04-21 23:08:06+12:00,cf2a352a751c4106944444f4c50dfd739dcf312d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1]","[3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,2,1 +https://github.com/Fluidsynth/fluidsynth.git,2003-03-11 16:56:45+00:00,b2a5d37109b7c6fdf8d7496b3e09421e124b875d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 4, 4, 5, 0, 1, 0, 0, 2, 0, 1, 1, 3, 2, 1, 0, 0, 1, 0, 0, 0, 0, 3, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/gosa-project/gosa-plugins-netgroups,2017-12-15 09:09:57+01:00,52ccec02b66b0ae471f722508b2ea52de93802a9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/gvvaughan/lyaml,2013-03-17 19:54:02+07:00,b7d82cff378ff8e3e75e87bc2d94fb6cf74feaeb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/jas/libntlm,2002-10-01 02:36:53+00:00,adcf55e477ba092befff3be9473a90b8080aa769,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 10, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/igrigorik/em-synchrony,2010-03-16 21:45:08-04:00,036e1d5b6caf3d5827ed78ff70ad0419afa487bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 1, 0, 0, 9, 0, 0, 2, 0, 0, 1, 0, 1, 1, 2, 0, 2, 0, 1, 1, 5, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/kitone/subtitleeditor,2008-02-05 13:17:58+00:00,6138789ae55172b7d9de3a96ce54a448844cb3bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 5, 0, 1, 0, 12, 15, 0, 4, 3, 2, 1, 6, 20, 6, 6, 3, 0, 9, 9, 6, 4, 1, 6, 7, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/alexdantas/pacman4console.debian,2013-05-28 15:52:41-03:00,bf527c534188bc38934d62d86343a03da3995b45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/mvidner/ruby-dbus,2007-02-22 14:49:56+00:00,7685ea7c2966d9949bddac1ffd440d11890e5576,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/trackballs/trackballs.git,2017-04-30 10:37:50-04:00,3744bb64ad2b66019c33521d58b46e6915eba79e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 10, 15, 13, 25, 25, 6, 21, 4, 0, 0, 3, 2, 0, 1, 4, 0, 1, 4, 1, 3, 1, 0, 1, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/Ranks/emojione,2014-09-01 12:02:43-06:00,4bb99dac1e372e170b7bece1ede669a5070a8f4a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[59, 65, 56, 40, 8, 2, 2, 2, 8, 1, 0, 1, 0, 6, 1, 5, 0, 0, 3, 1, 0, 0, 2, 0, 0, 0, 1]","[6, 14, 10, 9, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1]",2,4,19,1 +https://github.com/weiss/nsca-ng.git,2013-02-08 21:38:00+01:00,c1af9968c9d2a7926b1e412b5cdb898bd68fa938,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 15, 11, 14, 5, 3, 1, 0, 9, 6, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 0, 0, 4, 0, 8, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/major/MySQLTuner-perl,2019-10-02 01:36:56+02:00,53876a69dc533c27dc8f699685243f9d258b54c4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/juliangruber/constants-browserify,2013-07-10 17:37:58+02:00,f9d5f2dd8185e165054c031ca7c6b7b7500e346f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/grobian/html2text,2020-02-24 17:15:40+01:00,c8b579cac0d9d4e45e37fa1702fbd130b98b4305,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 6, 0, 8, 2, 21, 0, 2, 5, 0, 4, 0, 0, 5, 3, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,4,0 +https://github.com/rcairo/rcairo,2004-09-01 15:29:25+00:00,24ef6d4df921c97293e7efd872f977f2967a5d57,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lxqt/lxqt-panel.git,2016-09-07 18:14:48+02:00,46ecc301febd0a2dae4f96d05912e936cfe3488d,"[3, 0, 1, 6, 14, 8, 5, 7, 2, 3, 0, 4, 2, 0, 1, 6, 2, 4, 2, 1, 0, 2, 1, 2, 2, 3, 2]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 1, 1, 0, 1, 0, 2, 3, 0, 1, 1, 5, 0, 1, 1, 3, 0, 5, 1, 3, 0, 2, 0, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",9,0,7,0 +https://github.com/Unidata/cftime,2016-11-08 15:54:32-08:00,aea9c66fc24de2aaa57ecd162030ab5dc1e2142c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 10, 19, 2, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[2, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,1,1 +https://github.com/ocamllabs/ocaml-ctypes.git,2013-04-30 16:00:09+01:00,d535b614e55fdac6a9565bcac26417b3e3495f49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 24, 46, 13, 66, 22, 3, 1, 11, 4, 9, 0, 6, 2, 36, 22, 1, 3, 14, 0, 3, 0, 1, 1, 18, 11, 1]","[0, 1, 6, 1, 4, 0, 0, 0, 2, 1, 2, 0, 4, 0, 5, 6, 0, 1, 3, 0, 1, 0, 0, 0, 0, 2, 0]",1,3,6,0 +https://github.com/fent/node-ytdl-core.git,2012-07-16 15:58:43-07:00,e79fdc4c72c55b6c5221032b8ec40186f7154ae9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/esheldon/fitsio,2011-09-12 01:39:11-04:00,fb34e1e167accc35af76c8df5ff5190627d1b6ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[75, 61, 19, 24, 16, 2, 3, 2, 0, 3, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1]","[2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/jaap-karssenberg/zim-desktop-wiki.git,2008-09-22 23:46:06+02:00,89cbf169e76d834515cb8a8385654323222ecee0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 3, 2, 1, 0, 2, 4, 7, 5, 1, 4, 3, 2, 1, 1, 1, 1, 3, 1, 2, 0, 1, 4, 4, 5, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",2,1,1,0 +https://github.com/brunoos/luasec,2012-05-30 10:26:40-07:00,0bae6dedd9ee7fc2909149aa1ffebe1ca7a47219,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/rabbitvcs/rabbitvcs.git,2008-06-20 09:20:20+00:00,741959d3f2c711784460a2c64eb3d18cc8a29f90,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bhollis/maruku,2010-03-02 20:56:07-08:00,77f4a7531ad5dddc03dd9bc5321431c87d6b4793,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/Backblaze/B2_Command_Line_Tool,2015-11-16 08:44:35-10:00,4fd290c0d4b4b252c749898a373beaca7d60fbad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 12, 6, 6, 16, 39, 27, 17, 9, 19, 5, 1, 37, 10, 22, 77, 30, 18, 46, 36, 41, 47, 35, 17, 20, 0]","[1, 0, 1, 2, 1, 2, 9, 9, 7, 2, 5, 1, 0, 8, 2, 5, 10, 5, 0, 9, 11, 6, 9, 5, 2, 6, 0]",1,4,14,0 +https://gitlab.com/ppentchev/feature-check,2018-04-13 10:29:14+03:00,aec200c41b5b3e1f436172a66c322cfbae421a8b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 5, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/lv2/suil.git,2011-02-22 04:13:05+00:00,b2a6120d19163cdca60565d3c26d71cf95d97230,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 0, 7, 5, 1, 0, 2, 6, 3, 0, 1, 2, 12, 3, 2, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Jeija/gtkterm.git,2010-08-13 00:03:25-05:00,917f439c881e4a84a22522e87610bebed17d9598,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 5, 4, 0, 1, 0, 0, 0, 0, 0, 0, 2, 4, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 3, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/worldforge/wfmath,2001-12-12 22:19:17+00:00,a750140c4fc55d660ef85b9bf6c5a3778c4dc677,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 6, 4, 3, 3, 3, 1, 2, 4, 6, 3, 5, 0, 2, 2, 10, 0, 1, 2, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/github/git-lfs.git,2014-06-02 09:33:03-06:00,d8f780329b64e789553bc8ccccfb993ebc430325,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[296, 18, 1, 31, 0, 0, 0, 32, 15, 46, 11, 10, 0, 9, 14, 16, 19, 25, 19, 1, 8, 11, 0, 0, 0, 0, 0]","[15, 4, 1, 2, 0, 0, 0, 9, 0, 4, 0, 4, 0, 2, 5, 1, 0, 3, 2, 1, 1, 1, 0, 0, 0, 0, 0]",1,2,5,0 +https://github.com/libssh2/libssh2,2004-12-07 21:17:20+00:00,7a5ffc8cee259bbde82ab92515cd8fea2166854b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 11, 12, 12, 12, 3, 13, 1, 2, 6, 5, 1, 1, 0, 3, 6, 5, 2, 0, 0, 2, 9, 8, 4, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/coin-or/CoinUtils,2008-01-07 01:41:56+00:00,e4fa51c9962f3fd7167f2ca962fc5ab0b4ff6c58,"[2, 0, 5, 2, 2, 1, 2, 5, 4, 0, 1, 2, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 3, 14, 2, 3, 8, 6, 1, 0, 9, 3, 5, 21, 0, 4, 2, 0, 1, 7, 0, 0, 4, 0, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/theory/pgtap,2008-06-07 00:55:01+00:00,96e44c0062d399baddec6de52a367d23c808febd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 7, 9, 0, 4, 0, 0, 0, 1, 4, 41, 0, 22, 2, 39, 28, 0, 4, 25, 5, 9, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lxctl/lxctl,2011-07-13 02:39:12+04:00,3b102bbe48d01c4593a56f27ac5a13d2ea781e69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 18, 7, 4, 8, 3, 1, 2, 1, 32, 16, 4, 9, 35, 4, 9, 1, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,8,0 +https://github.com/PracticallyGreen/omniauth-saml.git,2012-02-13 20:56:41-05:00,0eeb956149e98eba8ba23c60d7d6123868e96182,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/kaelzhang/node-ignore.git,2013-09-01 18:55:04+08:00,9793e5643b5e7a71a004f440820bb6014853ff6d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/Sheeprider/BitBucket-api,2012-06-08 09:24:43-07:00,4d2ccc99b9aa4b2ad2a3c0f0258d136adba8aa9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/pixel/hexedit.git,2017-02-24 14:08:46+01:00,dbd7b94e4bfee41eaa21b5b407ab01ad6e4501b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 +https://github.com/nitrokey/libnitrokey.git,2016-04-13 22:34:27+02:00,92b929f86dc1d1712f515c164e5e77ad21ad8ff6,"[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 6, 0, 13, 0, 4, 4, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 92, 69, 1, 0, 0, 0, 8, 1, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",2,3,3,0 +https://github.com/SpintroniK/libeXaDrums,2017-09-27 22:32:32+01:00,26072a3350e677a4cdea3274e709cb7284453812,"[0, 0, 0, 1, 1, 5, 2, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 4, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 4, 2, 3, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/savonet/ocaml-ssl.git,2008-10-15 17:30:33+00:00,fe7d257610d6ce9e404c4f0648b64ba1d659a388,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nichtich/Pandoc-Wrapper.git,2016-10-10 10:32:25+02:00,cfbe5e274897b420ef2155de51ab2a082f8e0047,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 29, 5, 18, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jeffreykegler/Marpa--R2.git,2011-10-21 19:03:14-07:00,783a9064c10ddd644802c55520206f771dd77a75,"[0, 0, 136, 36, 24, 17, 19, 18, 13, 20, 17, 45, 27, 43, 28, 43, 18, 27, 61, 45, 12, 7, 11, 16, 29, 59, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1]","[89, 16, 23, 62, 6, 9, 14, 18, 42, 31, 5, 17, 93, 16, 29, 42, 132, 29, 5, 13, 17, 83, 14, 29, 48, 26, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",1,0,0,1 +https://github.com/doctrine/instantiator,2014-06-13 15:17:26+02:00,01a6505adf922ad9cfe08d8de8469caba37f37ce,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 11, 0, 1, 0, 67, 0, 32, 3, 3, 0, 0, 0, 0, 0, 9, 3, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[2, 0, 0, 0, 0, 0, 2, 0, 2, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,2,5,0 +https://github.com/ugexe/zef.git,2013-07-02 17:12:15-07:00,a6cbe4c00ea995712cc22bb9c2788ca63f4eeecc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 8, 6, 43, 12, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/bluesabre/mugshot,2013-07-25 06:34:56-04:00,316f70846ca08d71f044418f2dd594b27563cbc7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/tmate-io/tmate,2013-02-23 15:15:20+00:00,dc50de782a108d37b94de16e3407e2e8742334ed,"[9, 29, 1, 4, 18, 11, 10, 3, 8, 1, 5, 0, 7, 12, 3, 5, 1, 5, 1, 0, 12, 0, 5, 7, 31, 63, 1]","[0, 0, 1, 1, 5, 2, 3, 1, 2, 0, 2, 0, 3, 2, 0, 1, 0, 0, 1, 0, 3, 0, 1, 2, 0, 11, 0]","[13, 17, 24, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 1, 2, 0, 2, 0, 4, 1, 0, 5, 0, 0]","[2, 2, 4, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,2 +https://github.com/libsigcplusplus/libsigcplusplus.git,2003-01-13 18:56:56+00:00,d8019fcd745bbdb383bbaef45dd56dbc64dd1c99,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 6, 17, 3, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 4, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://git.launchpad.net/planetfilter,2015-02-08 23:08:15+13:00,1b805444dfc48f11ad72fb19dd2fbe7ae549929e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 18, 8, 0, 0, 0, 1, 8, 0, 2, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/fontforge/libuninameslist,2012-08-23 06:25:19+02:00,67ed3ed9d9afcb34077d0337923dbb0d599befe6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://gitlab.com/virt-viewer/virt-viewer.git,2007-07-20 15:26:08-04:00,07c89c3f5ef84aaee6faded8b78a07c87ba25d7e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 4, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/wxMaxima-developers/wxmaxima,2005-01-29 10:15:26+00:00,a96b09c95a3d71db9d4632ef177c6e5a282bc67a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 15, 14, 9, 17, 20, 7, 6, 13, 18, 1, 13, 5, 12, 16, 12, 1, 12, 4, 0, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/jonschlinkert/is-glob,2014-12-18 05:41:22-05:00,69c7e5e18b9ab7306191cc13beecc3939dfba934,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 7, 5, 0, 0, 0, 0, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/virt-manager/virt-manager,2006-03-29 06:40:14-05:00,bd66e954738af7fec08cf788979757bcbc3450ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 2, 0, 0, 0, 0, 1, 0, 4, 22, 8, 12, 6, 22, 35, 6, 13, 23, 39, 13, 16, 2, 11, 16, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 5, 0, 3, 2, 7, 2, 3, 0, 1, 3, 0]",1,4,3,0 +https://gitlab.gnome.org/gnome/gnome-shell.git,2008-10-31 04:22:44+00:00,4ba985b4844b7efeed1c64276759aa2632b86472,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 9, 25, 18, 30, 6, 8, 6, 1, 4, 4, 16, 9, 16, 11, 11, 19, 1, 13, 4, 5, 4, 12, 4, 14, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,19,0 +https://github.com/lumean/svg-graph2,2009-08-20 19:37:02+00:00,5689c48b5489a934cbbb37d5350f261329f0f008,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/calamares/calamares.git,2014-06-03 22:03:07+02:00,f7f7167f20b16c51ba1028c54c5dad8b0096dc98,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 13, 17, 58, 56, 55, 68, 73, 65, 58, 33, 20, 5, 0, 0, 1, 0, 35, 22, 17, 16, 27, 57, 44, 23, 43, 1]","[0, 0, 0, 0, 2, 1, 1, 0, 0, 2, 6, 5, 1, 0, 0, 1, 0, 0, 1, 1, 2, 1, 7, 4, 1, 4, 0]",1,4,10,0 +https://github.com/darold/pgbadger.git,2012-04-12 18:05:23+02:00,1b880c9f6af20694e3a2b9b5acf99b374310343f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 5, 5, 9, 0, 9, 1, 7, 8, 0, 14, 21, 12, 1, 4, 3, 0, 6, 10, 3, 2, 15, 2, 4, 0, 9, 1]","[0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0]",2,3,11,0 +https://github.com/babel/gulp-babel.git,2018-04-19 16:38:34-04:00,0983ecf0718702b2c647f7c8ffa7ad30c7003a00,"[1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,0 +https://github.com/google/highwayhash,2016-03-01 15:44:10+01:00,13716d8b48c8380e3e0eb962a9ea2d452182db57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 2, 3, 3, 0, 1, 1, 2, 1, 4, 0, 0, 0, 4, 5, 3, 0, 0, 0, 0, 3, 1, 0, 0, 0]","[2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/mbeijen/File-MimeInfo.git,2013-06-03 21:02:41+02:00,1a04ed2322bf4343e9d9fca99ccf94b8bdec0574,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 4, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/runehaubo/lmerTestR.git,2018-01-17 17:28:44+01:00,f92539f00e825af65bc4abdb57453bf1189a8156,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 15, 11, 2, 4, 11, 14, 9, 5, 12, 4, 0, 0, 14, 10, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/royriojas/file-entry-cache.git,2015-03-01 21:58:29-08:00,3d5f42bae08d9da814f8efe00c80901b1a98263d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,2,0 +https://github.com/Qucs/ADMS.git,2012-10-03 11:51:12-04:00,a9b65bc15b5711b7082ce27f4c38e288f52d67db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sbt/launcher.git,2015-03-25 08:40:15-04:00,8e0998a0ce26c7d91c3697e439ec9148a768ea55,"[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 1]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/libratbag/piper,2016-02-12 11:34:22+10:00,3cd3f4e1a50022c4d44a562c5328c723b654d541,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 24, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/davidcelis/api-pagination.git,2013-06-29 16:36:10-07:00,9498645e36ee4252484d565640c5b00375e36872,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/httpie/httpie,2012-02-25 13:39:38+01:00,b966efa17d837dc62c23d5f8064e184e22b14c2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 37, 16, 1, 0, 1, 4, 5, 11, 0, 0, 0, 0, 0, 1, 14, 4, 8, 1, 4, 38, 20, 21, 20, 17, 3, 0]","[6, 6, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 0]",1,3,21,0 +https://github.com/mlpack/ensmallen,2018-10-02 22:39:31-04:00,dd847db64195efbfa3471c29a505c336b248c2f0,"[5, 10, 5, 11, 4, 2, 9, 3, 4, 6, 5, 8, 4, 7, 3, 4, 0, 5, 0, 0, 0, 0, 3, 1, 2, 2, 2]","[5, 9, 4, 9, 3, 2, 9, 2, 1, 5, 4, 7, 4, 7, 3, 2, 0, 5, 0, 0, 0, 0, 3, 1, 2, 1, 1]","[49, 95, 84, 8, 4, 11, 10, 21, 25, 13, 6, 0, 11, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0]","[1, 14, 10, 1, 0, 2, 2, 2, 8, 5, 2, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,1,4,2 +https://github.com/GreycLab/CImg.git,2015-05-29 09:59:12+02:00,c3bf53b5a82a886fce05ee7a9eb5e8c1f8a3b7b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 12, 24, 2, 6, 5, 6, 0, 2, 2, 2, 38, 31, 6, 26, 44, 19, 51, 16, 16, 11, 2, 6, 9, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,6,0 +https://github.com/kohler/gifsicle,1998-03-01 21:19:24+00:00,579959b9fa696ce3c288ad6034bd57101a49103d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 9, 12, 7, 6, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/robint99/dock-applet.git,2015-05-04 10:15:58+01:00,052c745e46fffa63105d93b8ecd603e3d9195e87,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 5, 14, 4, 1, 6, 6, 2, 4, 0, 10, 3, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 2, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/cbm755/octsympy.git,2014-02-24 23:22:37+00:00,f99a9e773e3d54f8d3ea19cc938ab3c7591bd793,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 4, 0, 0, 29, 18, 74, 93, 20, 23, 9, 24, 24, 0, 0, 0, 0, 0, 6, 24, 2, 21, 30, 11, 23, 31, 1]","[0, 0, 0, 0, 0, 1, 4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,0,0 +https://github.com/casacore/observatories-table.git,2016-11-01 12:18:53+01:00,42b043597dabde67ba1bdc8a9dab77e6ed28c0bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/fog/fog-libvirt,2015-04-09 09:24:46+02:00,192adc0808d1d30c867f9fdb1a35a57193cc22b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://gitlab.com/crosswire-bible-society/strongsgreek,2021-01-17 14:48:10+00:00,99f66bb8f8b805c063a5e11bfb118bc799327a69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/linux-man/caja-mediainfo-tab,2018-06-04 23:22:50+01:00,d0db385997b5659a35334db7400ace1832e3dea0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/a-detiste/cruft-ng,2014-10-15 09:41:16+02:00,470a2593775a13e41bc8ce06a510637ba4853d60,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 2, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dirkvdb/ffmpegthumbnailer,2007-02-24 14:13:59+00:00,a5c90b822b22e58ecfa588ca034f12f4abfabfc1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/google/xsecurelock,2014-06-25 20:26:36+02:00,d1041acfbaabe3df0642f3312f9f0148fe819a7a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 4, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://gitlab.com/coringao/osmose-emulator,2017-01-11 12:20:12-02:00,0f00f3d37a311a94753fe800222c67a3ba5879f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 14, 1, 0, 0, 0, 7, 0, 9, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/nichtich/RDF-NS.git,2011-10-28 14:54:40+02:00,04a1886057e659f455c734ce557e1c4a87e7a2d1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/pinax/pinax-notifications,2009-01-04 08:35:29+00:00,f4d526cb2a61a6830b4782edc4ce991e47e83035,"[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 0, 7, 2, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 +https://github.com/requests-cache/requests-cache,2012-04-08 22:42:01+04:00,1e9fc768cea39fda27358ef603cde0956a1f7945,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 2, 0, 30, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://gitlab.gnome.org/GNOME/libsecret.git,2011-08-08 17:43:47+02:00,3dfd7aa70f64f4ec13c2684a80771b07a2b5843d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 9, 1, 2, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 16, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/processone/eimp.git,2017-09-11 09:31:58+03:00,3d510421c671ea48807543a1929adb8ee41755d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 2, 4, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/georgd/EB-Garamond.git,2010-07-02 15:59:44+02:00,d55bd762e7321d349da4421f61aaec40343b9b5d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/estools/escodegen,2012-03-04 00:14:16+09:00,50831c28d2569abd5fd758b51111e7fbe03cdeda,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 3, 0, 0, 0, 0, 0, 0, 3, 0, 6, 0, 8, 3, 1, 0, 0, 0, 25, 4, 2, 23, 3, 1, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 4, 1, 0, 9, 1, 0, 0, 0]",1,1,8,0 +https://github.com/imacat/Locale-Maketext-Gettext.git,2019-09-09 19:50:18+08:00,db7e22c83b8c1d6da2399170fbf6259abfbd29c0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ValveSoftware/openvr.git,2015-04-29 19:57:55-07:00,f87667074cabc24f643170069d176dadb390dbb7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/libgit2/pygit2,2010-11-04 13:59:18-07:00,4940678d9f7d1e71a3a77383a9a84b2c40c41daa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/edwardgeorge/virtualenv-clone,2011-03-15 07:20:25+00:00,374e1f086bb63cf1775c39e069f51fa87e276313,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-packagekit,2007-08-23 15:56:28+01:00,c2686bc79afbfb8a8f0bf29f6c829795ff3a6632,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 15, 14, 19, 19, 26, 43, 68, 38, 41, 29, 30, 11, 9, 10, 2, 1, 5, 45, 25, 3, 15, 17, 8, 4, 15, 1]","[0, 1, 0, 0, 0, 0, 0, 3, 2, 1, 2, 0, 0, 0, 2, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 1, 0]",1,5,17,0 +https://github.com/venthur/dotenv-cli,2018-10-14 18:24:18+02:00,d249f5aef19f99095546d918e1f819f3833f01e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0]",1,2,1,0 +https://github.com/tdiary/tdiary-style-gfm,2013-08-26 13:06:52+09:00,cabb959e8f1ff8bde2fcc74c5b12e89cd78c5256,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 11, 0, 0, 0, 1, 0, 2, 3, 1, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 7, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,2,2,0 +https://github.com/jorgemanrubia/truncato,2012-11-09 23:30:26-08:00,5054c18e41f658a7f48f82fc9a2c396d346a45f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 4, 9, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,1,5,0 +https://github.com/ocsigen/js_of_ocaml.git,2010-06-10 16:03:08+02:00,d4457c2f9404b54ed8d89db3283c6b6a0868e42a,"[0, 0, 0, 0, 0, 0, 0, 6, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 35, 9, 12, 21, 22, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 16, 22, 3, 4, 3, 15, 12, 2, 5, 0, 0, 1, 1, 0, 0, 0, 3, 3, 3, 7, 5, 2, 4, 4, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/rails/actionpack-xml_parser,2013-02-19 19:25:33-05:00,4546cb414acd9f05254643df8f83ef846fb3f851,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/shadowsocks/shadowsocks-libev,2012-10-15 14:55:46+08:00,c420ac9c92046c10d9e6a442fb02ebe77fd3e8fe,"[0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 12, 2, 0, 3, 1, 0, 1, 1, 1, 1, 5, 1, 6, 44, 6, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 +https://github.com/andrewrk/libsoundio.git,2015-06-30 13:49:36-07:00,db713885095ed2efb41770177723da743173259b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 11, 23, 23, 39, 14, 11, 19, 23, 37, 14, 5, 4, 1, 8, 0, 1, 4, 4, 4, 7, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://gitlab.com/compiz/compiz-plugins-experimental.git,2016-01-10 21:40:53+03:00,d535b1fba51ea919900311f0a48c54744a131842,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 5, 0, 0, 1, 0, 1, 0, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/deeptools/pyBigWig.git,2015-07-31 14:07:36+02:00,431de3b553e6abed97325705cfe2196206fa147d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 1, 0, 0, 0, 8, 15, 6, 0, 11, 5, 12, 11, 8, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 2, 0, 1, 0]",2,3,4,0 +https://github.com/jwiegley/use-package.git,2012-06-17 04:40:25-05:00,7ee0fcd0a09c2934e77bf5702e75ba4acba4299c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0]",1,1,2,0 +https://github.com/ros-planning/navigation_msgs,2015-03-16 12:20:17-07:00,a2a42c0486f4caa3f430d0db0d539aaa82a089b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/hlandau/acmetool,2015-11-15 01:56:58+00:00,bc1de30d582786f0882b9d6c07f755e88c93e77c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 7, 10, 4, 4, 0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/chrender/fizmo-ncursesw,2010-11-19 10:20:24+00:00,f5f64c9e91bf5670153e9b1271def3bf5422624f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 14, 5, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 1, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/netty/netty,2012-03-12 15:13:41+11:00,91463cad47f792a594f221e6e782b6fe0ff2504a,"[0, 0, 1, 0, 15, 11, 3, 8, 8, 0, 16, 9, 39, 10, 0, 1, 2, 10, 7, 2, 22, 6, 3, 5, 33, 16, 1]","[0, 0, 0, 0, 1, 2, 0, 2, 1, 0, 1, 1, 4, 3, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 2, 0]","[9, 12, 24, 12, 19, 25, 36, 40, 18, 50, 24, 39, 23, 21, 19, 11, 21, 13, 11, 13, 13, 13, 20, 21, 29, 13, 1]","[1, 0, 2, 0, 2, 0, 4, 1, 3, 4, 1, 2, 2, 3, 3, 1, 1, 2, 1, 2, 1, 4, 4, 3, 3, 1, 0]",8,3,10,4 +https://github.com/dh4/cen64-qt-debian,2015-10-28 15:23:02+01:00,4d91978bfdf4b6fd5ae442138a6a81a8e2911172,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/karlkleinpaste/biblesync.git,2014-05-11 06:46:39-07:00,25d9b2458a44c8a28c541ccb1ed383ff947f126e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 0, 1, 4, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/zeromq/pyzmq.git,2010-02-11 14:04:41-08:00,08c4dbb82205f6dbb3e3e1c024a10741bdc632d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 11, 6, 0, 17, 32, 2, 0, 0, 4, 12, 3, 1, 10, 11, 1, 1, 0, 0, 0, 15, 0, 0, 0, 1, 0, 0]","[0, 1, 1, 0, 2, 2, 0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]",1,3,6,0 +https://github.com/mikaelgrev/miglayout,2015-06-04 07:51:27+02:00,fadfb3e9e1a88e2d0019536ec6f7a22e7ba952ff,"[0, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 3, 1, 0, 0]","[8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",3,1,1,0 +https://github.com/Unidata/netcdf-fortran.git,2011-08-17 19:07:39+00:00,e2473fe98a1d4fd915c3b79da911691370a67c2d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 1, 2, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/20kly/20kly.git,2011-08-26 22:10:24-05:00,83e667532c14d1ca504b44445278009fa6ab361d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/whm/libnet-ldapapi-perl,2016-08-14 00:54:20-07:00,fc4d04018c3a527bb9e43f2fdec959f85270fc74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/rails/rails-html-sanitizer,2013-09-24 21:53:23-03:00,94145e1c6c3140b30235d1667a11b51de807f650,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 2, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 12, 5, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 0]",1,3,4,0 +https://github.com/pear/text_password.git,2016-01-31 13:00:25-04:00,d5dc9698780768d2ab3ede2ff330c9031194a1d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,2,0 +https://github.com/droe/sslsplit,2012-04-13 14:47:30+02:00,4cfdef405a15c4449d502516cbf82d09a5fc636a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 16, 14, 0, 14, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 7, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Maproom/qmapshack.git,2019-04-02 11:00:37-07:00,1543a81b363f85fb44143257fd0ed606bbbab928,"[5, 3, 1, 1, 6, 2, 1, 12, 6, 12, 6, 10, 6, 0, 14, 13, 7, 18, 7, 3, 15, 14, 3, 12, 16, 11, 2]","[1, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 4, 2, 1, 3, 1, 0, 2, 4, 0, 2, 3, 2, 1]","[32, 15, 18, 8, 3, 8, 1, 1, 11, 13, 2, 6, 11, 1, 20, 28, 16, 22, 13, 13, 14, 9, 2, 23, 0, 15, 1]","[4, 1, 5, 1, 0, 1, 0, 0, 2, 1, 0, 2, 2, 0, 5, 3, 2, 3, 3, 2, 1, 3, 0, 1, 0, 0, 0]",3,2,11,1 +https://github.com/ocaml/caml-mode.git,1997-02-23 16:23:00+00:00,bf4ed0f926f3181a06b93396b2c59662da1e2711,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/vouillon/coinst,2013-10-21 14:22:28+02:00,7333a3a2bda701ae1996aa4ccaeaad0c3ee51036,"[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 4, 15, 0, 4, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 4, 6, 0, 3, 7, 6, 1, 0, 0, 0, 2, 13, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,3,3,0 +https://github.com/Sigil-Ebook/Sigil.git,2009-08-06 21:45:20+02:00,7f76ce802f21592586e910286bf9754c05e9f32d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[27, 12, 8, 17, 23, 15, 4, 7, 16, 16, 2, 2, 1, 7, 1, 21, 6, 32, 7, 11, 20, 1, 0, 0, 4, 1, 1]","[0, 0, 2, 2, 5, 3, 0, 0, 1, 2, 0, 0, 0, 1, 0, 4, 0, 3, 1, 2, 3, 0, 0, 0, 0, 0, 0]",2,1,2,2 +https://github.com/strengejacke/ggeffects.git,2017-06-01 07:54:13+02:00,5548d7dd9482e2cf140cf3ff6fab4c60d16f6a15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 6, 7, 3, 2, 1, 1, 3, 5, 9, 0, 3, 2, 0, 1, 4, 1, 2, 3, 2, 2, 2, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/iputils/iputils.git,2014-04-18 16:26:30+02:00,7238279fabe59be9417da1a41d5208d19ff66d72,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 +https://github.com/nicotine-plus/nicotine-plus,2006-07-06 18:15:15+00:00,b8fa28b5dd27eafd44f2734ea9cb495a3cdf2e07,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 2, 0, 4, 1, 16, 5, 4, 10, 22, 7, 6, 4, 14, 20, 5, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/jeanparpaillon/averell,2014-09-10 13:55:16+02:00,a0eaa13414cebe978a30f36bbc7eb83aa1c2f0ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/e2guardian/e2guardian,2013-08-13 16:26:58+01:00,b8056eb74e839386ae6dd836ff662f9b787d94f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 16, 9, 2, 8, 0, 2, 2, 2, 8, 4, 0, 5, 11, 7, 2, 0, 1, 0, 0, 0, 1, 3, 0, 6, 0, 1]","[0, 1, 0, 0, 2, 0, 1, 0, 1, 2, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,4,7,0 +https://github.com/grml/grml-debootstrap,2014-04-19 02:13:15+02:00,bba7c1961b43afcbe30097fc3fbbf6c53c57b1ac,"[1, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 1, 2, 0, 4, 0, 0, 2, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 21, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/cbrnr/sigviewer.git,2010-03-03 18:49:47+00:00,446ca9ffb1d7036a20e27984826728e0d1b26d69,"[0, 0, 0, 0, 1, 2, 0, 1, 0, 3, 7, 1, 3, 6, 0, 3, 0, 0, 0, 1, 3, 2, 2, 0, 8, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 9, 6, 8, 9, 14, 7, 14, 18, 28, 7, 8, 17, 3, 18, 10, 3, 5, 8, 25, 13, 26, 12, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/gjwgit/wajig,2010-07-11 19:24:15+10:00,9cbf240e2a5ddd34c7f28b1c94f51465dea5c633,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 3, 0, 9, 9, 21, 0, 44, 44, 49, 26, 19, 14, 16, 0, 14, 2, 0, 3, 2, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://gitlab.gnome.org/GNOME/gnome-autoar,2021-04-26 12:58:10+00:00,8a42884242d4e43beec0038c70eda0d882335267,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 10, 0, 0, 1, 23, 0, 1, 0, 0, 0, 5, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 2, 0, 4, 1, 0, 1, 0, 0, 1, 1, 0, 0, 10, 11, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,0 +https://github.com/cyu/rack-cors,2010-06-02 21:21:19-04:00,8b1b6ed6c2f192db4b6df108f136d3cb4a22b8ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/node-modules/address.git,2013-07-30 23:09:20+08:00,73accf56995c0fadf862f5ef2e7fe1b479b5afd0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/AzureAD/azure-activedirectory-library-for-python.git,2015-05-05 09:43:25-07:00,9f4cbe19ee8be03f65cb59911897d697975286a0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 10, 0, 6, 7, 11, 25, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 2, 4, 0, 0, 0, 0, 0]","[5, 2, 0, 1, 2, 5, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]",1,4,7,0 +https://github.com/robert7/nixnote2,2012-07-08 12:37:14-07:00,9cc08b2e1d8454253f33b6ec16664ceff6154a89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 4, 1, 0, 0, 0, 2, 14, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/explosion/thinc.git,2014-11-18 16:27:50+11:00,82c85d13409c7fb53875df53ca34f3d18c674234,"[0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 18, 1, 18, 6, 4, 6, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[11, 11, 3, 4, 11, 10, 48, 7, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/jonnenauha/prometheus_varnish_exporter.git,2016-02-19 14:19:28-08:00,efc5b2816348c0eed10f43f251a96db191145b9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://git.samba.org/socket_wrapper.git,2013-02-07 16:58:18+01:00,237c6e951a8268afeaa288d8ddf0c79da32f6fd1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 0, 0, 4, 24, 11, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ruby-concurrency/thread_safe,2012-04-25 19:00:11-05:00,bb5003d7ff799fccd5e184eec8fc823a894d5d9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 16, 11, 1, 0, 0, 0, 8, 0, 3, 16, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/dankogai/p5-encode.git,2007-11-18 10:16:11+00:00,8106c01862a9143868b9e90b62eb5c908c0cc291,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/foutaise/texttable,2015-11-16 10:54:06+01:00,df2b72868fd903b9520267185a298bb7c1555ad7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/asweigart/pyperclip,2011-06-14 18:12:32-07:00,a97030079fd47d274f1f439dc932d0f2c7ac2e72,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/FeralInteractive/gamemode,2018-03-05 17:32:01+00:00,c459c0507698aa4f8863c201bba283093b3b00b5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 7, 0, 1, 19, 0, 14, 3, 6, 13, 4, 0, 4, 0, 3, 5, 5, 3, 4, 5, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,15,0 +https://github.com/eonpatapon/gnome-shell-extension-caffeine,2012-06-07 20:38:27+02:00,91a1ef27f107281b594e57eaedfadec354afe4b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/freifunk-gluon/ecdsautils,2012-12-07 02:00:20+01:00,10314fbda5fd7f882c9ec846e97e2b486c0ee233,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 5, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/AprilRobotics/apriltag.git,2018-09-18 15:25:09-04:00,0844f5e489c13c1bda8679d17cc934ed2c58515d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 1, 1, 1, 6, 1, 4, 0, 0, 5, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,1,4,0 +https://github.com/lastpass/lastpass-cli,2014-10-22 10:43:10-04:00,0fcb6d26cca644676ea59db34234dc14bbb5f779,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 9, 6, 1, 4, 0, 1, 0, 0, 2, 0, 1, 7, 0, 0, 2, 0, 0, 3, 0, 5, 4, 0, 0, 1, 0, 0]","[10, 3, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,2,25,0 +https://github.com/RiotGames/buff-extensions,2013-06-16 23:34:54-07:00,9d703c776a40162c0e3e7f555a9ed9e8bb8c3cbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/threerings/openvpn-auth-ldap,2006-07-22 20:01:29+00:00,46042c7cd5796af406ce31e4aa8c8d4f823a0356,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 15, 0, 0, 18, 0, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/Ultimaker/libSavitar.git,2017-02-07 15:52:05+01:00,c8e6eabb188a8f8bd6caa0a57e7e9a833f6d76e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,4,0 +http://github.com/G-Node/python-neuroshare,2011-03-22 15:02:38+01:00,4319dd124773e7443bf7d8a0d17888c8060ce8e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,2,0 +https://github.com/kanedo/gzstream.git,2014-05-15 10:43:48-07:00,0e1bad5412bbae32a38cfe56ff22ba37b2180cd9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/python-bugzilla/python-bugzilla,2007-09-07 11:43:03-04:00,9d245a9748637335439b16ca419d83089e1e2d45,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 29, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 5, 2, 0, 7, 5, 1, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/ribozz/sphinx-argparse,2013-09-03 22:48:46-07:00,461a88a6701486634d9715e5043cd172c2a9a291,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 3, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 5, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/silnrsi/grcompiler.git,2006-01-06 20:56:10+00:00,5672dca6ac86e33300e89363481b83b1aac7f22e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 2, 4, 3, 0, 1, 0, 3, 1, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/disco-stu/pg-rage-terminator-pkg,2015-03-06 14:04:21+01:00,6f5b6ad5c2bf7bca6a1466bf86ea5aa5c731a41b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/gregwar/fatcat,2013-10-22 10:54:32+02:00,1d189cb8fe0b8b77c82a2c0f42973f60b6d1fbb6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[149, 50, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/USCiLab/cereal,2013-06-25 23:49:32-06:00,c4b8fb092fb0b3f252653000d7e413ce7f4184c5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 26, 28, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,2,4,0 +https://github.com/x42/harvid.git,2013-01-30 22:40:27+01:00,3beceaa9a72455de2ba2f8eb385886da58a60de8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 30, 56, 50, 18, 13, 7, 14, 2, 20, 4, 0, 2, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/celiao/tmdbsimple,2013-12-04 23:33:36-08:00,779664dca66032e40b34612c0f890c91f1106890,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/tlsa/libcyaml.git,2017-12-17 14:43:22+00:00,a15df3ffcaa0e3ff947bf91eed03ad2ee54770b9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 29, 10, 1, 0, 0, 2, 15, 1, 3, 4, 16, 42, 47, 16, 6, 0, 0, 0, 6, 30, 40, 9, 30, 18, 7, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 7, 3, 2, 0, 0, 0, 2, 6, 4, 3, 6, 3, 1, 0]",1,1,1,0 +https://invent.kde.org/office/ghostwriter,2015-08-22 02:14:37-07:00,fdd6266f00a85891e015b7133fc092dac088546b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 16, 28, 14, 2, 11, 0, 2, 0, 0, 1, 2, 0, 0, 2, 0, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1]","[0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/tari01/caja-rename,2020-10-11 17:10:23+02:00,2ebf9466b1afb35aba891e45560c2454ae730d1e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/google/gemmlowp,2015-06-25 15:53:04-04:00,75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 6, 13, 1, 0, 10, 11, 13, 6, 2, 15, 6, 28, 22, 20, 2, 15, 17, 2, 0, 4, 2, 5, 3, 0, 5, 0]","[0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 7, 5, 0, 5, 4, 0, 0, 2, 1, 0, 2, 0, 0, 0]",1,7,8,0 +https://github.com/juzzlin/DustRacing2D.git,2010-12-14 02:46:35+02:00,a7c1b89d44cde99b366ea48d92166e4ab617276a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 5, 6, 3, 0, 0, 0, 3, 7, 1, 3, 0, 0, 4, 3, 3, 2, 1, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jviereck/regjsparser.git,2013-11-03 17:30:09+01:00,759105797353898ba085b122b9981b04555fd11d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 9, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0]",1,2,3,0 +https://github.com/b20n/bernhard.git,2012-05-02 11:14:36-07:00,536ba39dc6d50ccb9af51c094eef3fa5dd9ef23f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mysecureshell/mysecureshell,2014-07-29 21:29:15+02:00,a78752bd9563d4b1e0e1b0ea36a2102bd0e4c654,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[11, 9, 12, 7, 7, 4, 3, 7, 3, 9, 3, 0, 10, 1, 2, 1, 7, 2, 4, 0, 0, 0, 1, 0, 0, 0, 0]","[1, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,1 +https://github.com/brianmario/escape_utils.git,2010-06-08 21:35:26-07:00,663fd5a8e8205d4a76e5096d32ed618c617a4aa0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[39, 3, 5, 1, 7, 0, 0, 0, 0, 1, 4, 0, 3, 0, 0, 0, 12, 0, 3, 0, 0, 1, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/ros/kdl_parser,2017-05-04 09:42:04-07:00,3fa7b87abe085a79d1b2fe9d451c2805df3702cd,"[0, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 1, 4, 2, 2, 0, 0, 0, 0, 2, 4, 0, 0, 0, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",11,0,1,0 +https://github.com/aperezdc/signify.git,2014-01-14 15:42:40+02:00,72444343640c443540122bc4d89e39c6b0925ffc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tinti/pam-encfs,2006-08-05 01:33:30+00:00,40322f8b9548b537c6f13fd91154543b2ae62e85,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Komzpa/twms.git,2010-03-05 10:20:48+02:00,ce01aed07b66918fcdc9ea03f30fcab1db4678a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/nginxinc/nginx-prometheus-exporter,2018-05-30 14:49:53+01:00,8d90a86cdf4da7bc1ea520ef5701a63780638c13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 1, 1, 0, 2, 0, 0, 2, 2, 0, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,7,0 +https://github.com/spyder-ide/spyder-kernels,2018-06-18 10:29:36-05:00,31ebaf461cfb3aa6f969ada2c2158d3ae9ca1e65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[54, 9, 0, 5, 12, 0, 22, 30, 25, 13, 4, 14, 12, 25, 3, 15, 5, 8, 16, 0, 0, 0, 5, 0, 0, 0, 0]","[14, 3, 0, 2, 4, 0, 4, 9, 8, 4, 0, 1, 1, 5, 1, 8, 0, 4, 6, 0, 0, 0, 1, 0, 0, 0, 0]",14,3,2,0 +https://github.com/dimitri/pgextwlist,2011-12-11 14:12:00+01:00,a744db9a793caa41d34669af2c623ea6a8b8c71e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/OpenShot/libopenshot-audio.git,2012-06-15 17:45:27-05:00,c0e605fafed2095208d7daeb37dd50e90499b8d5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/puppetlabs/puppetlabs-apache,2012-06-16 21:34:50+01:00,a79baf6990cc8ef84026aefecc78a8f85b568885,"[0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 3, 0, 11, 1, 0, 0, 3, 8, 2, 0, 4, 0, 1, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6, 1, 0, 0, 1, 3, 1, 0, 2, 0, 0, 0, 0, 4, 1]","[6, 2, 6, 2, 2, 7, 4, 52, 25, 19, 2, 0, 0, 0, 7, 6, 3, 4, 0, 4, 9, 5, 0, 2, 0, 6, 0]","[3, 0, 3, 0, 0, 3, 1, 22, 8, 6, 1, 0, 0, 0, 1, 3, 2, 2, 0, 1, 3, 2, 0, 1, 0, 1, 0]",15,6,26,5 +https://github.com/openstreetmap/OSM-binary.git,2011-04-13 22:40:46+02:00,c7dce29491432e150739b852e1e83f69ef46c759,"[1, 0, 0, 0, 2, 0, 0, 0, 9, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 13, 7, 11, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 1, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]",1,4,3,0 +https://github.com/emancu/toml-rb.git,2013-02-24 08:56:27-08:00,b36b370ee11769cceb53144708b0f87006499fbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[63, 23, 0, 0, 0, 1, 9, 8, 0, 0, 1, 0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[10, 4, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,4,0 +https://github.com/c-w/ghp-import.git,2010-02-19 13:59:19-05:00,7b4d23db8fba985289075189cf5e540fb8cb42a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/wharris/esmre.git,2008-01-28 14:17:08+00:00,8bad5b90e1a70c4d288ab8129c5d55c177d2b007,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 1, 0, 0, 11, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/jmk-foofus/medusa,2015-05-27 21:50:49-05:00,61b9ed6723ba95e92e04772f22cf2131a8e0ac1f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/matthewdeanmartin/terminaltables,2014-09-01 21:02:49-07:00,df6d28a1974c99ed7adc26cba122fd673f241502,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 11, 2, 0, 0, 0, 1, 0, 6, 2, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]",1,1,1,0 +https://github.com/r-lib/callr.git,2016-05-13 11:24:23+01:00,32693921097092b5512f76ba6c2e142c55103c79,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/elves/elvish.git,2013-06-16 16:45:22+08:00,6ef2ab157fc0999ae991a2f52ac0a333c5961d20,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 26, 3, 0, 4, 1, 4, 0, 8, 2, 0, 15, 12, 42, 31, 52, 6, 33, 7, 33, 0, 10, 38, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.xfce.org/panel-plugins/xfce4-timer-plugin.git,2005-12-01 07:49:54+00:00,48ed59f5e84b2d7549b680362ef760a04a06fcf1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 6, 2, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/shekyan/slowhttptest,2015-03-14 20:07:23-07:00,5762f5989c807378acc6fad92cf26c9ab1b646fa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/erlware/erlware_commons.git,2011-10-16 22:26:43-04:00,2b320a34a562fcb18243e96b632c9a77c1415a83,"[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,3,0 +https://github.com/codereader/DarkRadiant.git,2006-03-03 19:46:06+00:00,d6422030a6f53b612a744636fe02f1eaf61894df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 17, 13, 28, 5, 2, 2, 4, 13, 8, 10, 8, 18, 12, 16, 13, 3, 8, 14, 25, 14, 11, 7, 11, 13, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/asb2m10/jsusfx.git,2014-08-02 02:22:41-04:00,f798c05a36b410c62698569a4555bd0c1a94e074,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/besser82/libxcrypt.git,2015-05-12 20:10:30+02:00,27fa0cb49d585aff8ea25c380eb43d0679784f58,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/radare/valabind,2009-12-26 12:02:43+01:00,046a0de6f30c1a5c133775e05d4945364babc153,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 11, 10, 2, 7, 0, 4, 4, 1, 8, 13, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,2,0 +https://github.com/r-lib/devtools.git,2010-05-02 23:16:14-05:00,78a3ebaf8da61d1c0175e45a698dfa6f5c45282f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 9, 0, 0, 2, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/spanezz/django-housekeeping.git,2014-05-14 11:53:17+02:00,fe18a0159ca13659d3f79124bf8f3d9dec0c593f,"[0, 0, 0, 0, 0, 6, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/pydot/pydot.git,2007-07-09 22:27:24+00:00,c0233c6aae32d11d2dc1e0f836c0bcf8b2fab6d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ahmetb/kubectx,2017-03-29 00:30:12-07:00,6de838135f670a66e29e5bd8bf0a66bcf38d9e9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 3, 3, 0, 10, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/tikzit/tikzit.git,2012-01-06 13:44:40+00:00,2ed61cfb3ad3d404b9a44bbb3f4c8083b469ae22,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 19, 5, 7, 6, 1, 0, 1, 2, 7, 0, 1, 0, 0, 5, 0, 8, 1, 0, 14, 3, 0, 9, 0, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/pgmodeler/pgmodeler.git,2012-08-23 20:59:29-03:00,daa8f9f4729241779ad1318dfed499144dbeb8e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 12, 4, 5, 5, 3, 16, 30, 5, 23, 30, 4, 18, 25, 9, 13, 26, 10, 19, 27, 19, 25, 25, 30, 13, 24, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 8, 1, 4, 1, 8, 2, 2, 0]",1,4,6,0 +https://github.com/ipython/ipython_genutils,2015-04-08 15:06:03-07:00,6cf40ccc0e77a41d9e4909ff3e8ea1e753b0a69e,"[1, 1, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 3, 14, 2]","[0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0]","[8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jcomellas/getopt,2009-10-13 17:42:55-03:00,6cf2a8c0dd4f0f59d4027435740ce704bc9d08f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lanmaster53/recon-ng.git,2013-01-22 11:03:18-05:00,70d43147a7c6c82a2850cb668c6d2126f86621a2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 8, 3, 8, 1, 0, 2, 1, 0, 0, 0, 1, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[38, 27, 80, 30, 30, 39, 19, 19, 6, 8, 9, 8, 10, 4, 9, 2, 2, 0, 5, 6, 1, 2, 1, 7, 7, 6, 1]","[10, 9, 31, 8, 10, 15, 10, 7, 2, 3, 5, 3, 1, 0, 2, 0, 0, 0, 1, 3, 0, 1, 0, 1, 2, 0, 0]",1,10,18,0 +https://github.com/bleakgrey/tootle.git,2018-04-14 15:09:06+03:00,30f8348286f4fe690b309409d7c438821710b8b2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 15, 25, 30, 15, 21, 28, 13, 7, 29, 3, 2, 5, 1, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 2, 1, 0, 4, 1, 2, 3, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,2,11,0 +https://github.com/syncthing/syncthing.git,2013-12-15 11:43:40+01:00,bfe935b5ab3518cac083c9b748715b6aabb50215,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 15, 40, 46, 8, 14, 9, 8, 15, 5, 10, 30, 9, 21, 13, 15, 18, 31, 16, 28, 6, 62, 63, 40, 29, 27, 1]","[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 0, 0, 0, 0, 1, 0, 7, 3, 5, 1, 1, 0]",1,2,14,0 +https://github.com/dgasmith/gau2grid,2017-11-01 15:39:47-04:00,1b4e2291c801156fe9814d3641af63ebbee82499,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 36, 43, 22, 4, 35, 10, 8, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 21, 5, 4, 0, 0, 0]","[0, 5, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0]",2,2,1,0 +https://github.com/ignitionrobotics/ign-cmake.git,2017-09-19 20:05:04+00:00,27d4c7063cbda1614b7b371beb333eefe46b19d0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 24, 26, 14, 13, 32, 10, 17, 10, 13, 37, 25, 10, 8, 1, 45, 69, 19, 2, 10, 11, 0, 6, 0, 0, 7, 1]","[0, 1, 6, 4, 2, 7, 0, 3, 0, 3, 11, 6, 1, 2, 1, 11, 17, 5, 1, 4, 3, 0, 1, 0, 0, 2, 0]",2,10,15,0 +https://github.com/rhinstaller/efivar.git,2012-08-16 11:10:11-07:00,eab7633042b5979582208cca36ce80989fb555e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[26, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/aperezdc/notmuch-addrlookup-c,2014-01-31 16:36:48+02:00,d545ab733466d412d0e20ba6de009372e4a8d7f7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/saz/puppet-memcached,2011-11-20 14:38:05+01:00,3724c499f66b1da82c3ca99a70c12b612ed10d99,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 2, 8, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/venthur/python-debianbts,2015-10-13 10:12:41+02:00,fb8a8039c4ff31eb3f8c3521d17cba0627bdb4cb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 2, 0, 0, 9, 17, 24, 1, 0, 6, 9, 2, 14, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 3, 2, 0, 0, 2, 2, 1, 2, 0]","[13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,1,1 +https://github.com/json-c/json-c,2007-03-13 08:26:18+00:00,f0d08887b857fce1fe95a68d29eb7a07cd527d7c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-multi-writer.git,2015-01-02 15:22:18+00:00,2c93f497244581b6d3a113a0c95726834a05af35,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[79, 23, 12, 14, 7, 5, 0, 5, 7, 0, 3, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0]","[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,23,0 +https://github.com/johanmattssonm/birdfont.git,2012-05-18 09:01:47+02:00,0c5880f197f32b50062a888c07a069409a1b78db,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 7, 0, 0, 0, 0, 0, 9, 15, 11, 13, 29, 15, 21, 31, 27, 32, 18, 8, 4, 0, 16, 15, 7, 6, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/Rich-Harris/sourcemap-codec,2015-10-10 00:49:04-04:00,a8698dc52b265fb93c30a922a14263ba94dfa7d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 4, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/zeux/pugixml,2014-02-09 00:28:29+00:00,7b41dce85e8f8788027672845fd2867dd9e2b27a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 2, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mobile-shell/mosh,2012-02-05 02:21:37-05:00,da2f481eea0ededfa3e4d256b7e4e00b50164be2,"[61, 15, 10, 0, 0, 6, 0, 10, 0, 26, 3, 3, 3, 0, 0, 0, 0, 0, 4, 1, 0, 7, 2, 2, 1, 24, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 22, 18, 12, 63, 48, 47, 30, 16, 36, 77, 31, 16, 8, 16, 18, 1, 0, 6, 1, 0, 0, 1, 10, 6, 0, 1]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,20,0 +https://github.com/LibreCat/Catmandu-Atom.git,2013-06-10 16:22:32+02:00,d094a1c776be12bfecb6f2440c45121839f0dffc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ioquake/ioq3,2012-01-31 13:41:34-06:00,dbe4ddb10315479fc00086f08e25d968b4b43c49,"[16, 7, 1, 7, 0, 10, 10, 3, 6, 0, 2, 1, 6, 3, 1, 3, 2, 2, 8, 1, 1, 0, 0, 0, 2, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 4, 0, 0, 0, 0, 0, 8, 8, 4, 0, 0, 5, 1, 1, 0, 1, 0, 34, 1, 10, 5, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gildor478/ounit.git,2010-05-24 23:49:19+02:00,bac217e81e7766e52ed0d83ee611d456a563aac3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://android.googlesource.com/platform/system/tools/hidl,2016-08-15 14:55:21-07:00,1aa476ba26601828117428c4bdd3367fbf999fec,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 4, 2, 0, 1, 0, 9, 4, 1, 5, 2, 4, 14, 39, 12, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 0, 3, 0]","[43, 16, 29, 153, 91, 85, 198, 117, 57, 95, 110, 126, 107, 81, 36, 59, 78, 97, 104, 15, 93, 128, 61, 60, 70, 75, 1]","[15, 4, 12, 126, 73, 66, 165, 96, 49, 73, 91, 102, 88, 68, 28, 44, 66, 76, 84, 9, 75, 103, 51, 49, 57, 62, 1]",13,2,14,1 +https://github.com/BioPP/bpp-qt,2020-03-15 14:14:10+01:00,9af840add9bf10874a7099de87f455bb2311e84d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://gitlab.gnome.org/GNOME/gnome-online-accounts.git,2011-04-19 17:16:00-04:00,118987fabb024253183e381292898f297f2b149b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 24, 2, 10, 20, 28, 1, 10, 1, 9, 4, 0, 1, 2, 0, 0, 0, 0, 4, 23, 14, 11, 19, 4, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,58,0 +https://github.com/LibreCat/Catmandu-MARC.git,2012-05-07 08:54:07+02:00,8141e284d8cf520be9fe09ee98a891c7f15c6890,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 2, 2, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,2,1,0 +https://gitlab.com/drobilla/fomp.git,2012-08-20 05:16:04+00:00,734a9f490f2f8cb4552c71bfac8fc779f836c436,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 1, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/analogdevicesinc/libiio.git,2015-04-02 14:37:04+02:00,bb51a9844c6bf26de2e0f78aa6ed5fcc8cdde064,"[0, 0, 2, 9, 7, 8, 5, 8, 9, 11, 2, 0, 1, 1, 9, 1, 3, 3, 7, 2, 8, 12, 8, 51, 14, 10, 2]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0]","[2, 5, 7, 8, 3, 16, 5, 8, 0, 6, 1, 2, 15, 1, 1, 4, 1, 6, 3, 2, 0, 0, 0, 2, 0, 0, 0]","[0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,3,2 +https://github.com/jlaine/python-netfilter.git,2013-03-05 10:40:15+01:00,10699a37f1930e89d18ad27c1ca99f1fa48e1593,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/TokTok/c-toxcore,2013-06-23 17:12:13-07:00,f8ccb9adb99fc143e11927a461d06da1b3d5bcba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[77, 42, 55, 91, 107, 379, 240, 156, 98, 65, 40, 99, 60, 36, 28, 15, 25, 26, 26, 16, 24, 24, 23, 24, 15, 10, 1]","[8, 1, 12, 29, 32, 137, 89, 42, 32, 16, 12, 25, 21, 8, 3, 5, 7, 5, 6, 5, 8, 5, 6, 8, 4, 2, 0]",1,25,139,0 +https://github.com/iptux-src/iptux,2009-02-13 13:40:43+00:00,2ee00029158ed1c2c3fb405513097278aa1f4a31,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 7, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/apache/avro,2009-04-09 19:25:42+00:00,9a0bad0604f93cb5733958532c8cc9dac2b605d7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 2, 4, 0, 4, 4, 8, 7, 3, 2, 8, 5, 13, 3, 4, 3, 3, 2, 7, 2, 5, 5, 1, 6, 10, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/rime/brise,2013-02-02 08:35:48+08:00,f71015bac6085b1c380c4197d19568c1e5249059,"[1, 4, 1, 2, 4, 5, 0, 2, 0, 1, 7, 5, 0, 0, 0, 3, 2, 1, 1, 5, 3, 2, 2, 8, 5, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[3, 2, 5, 9, 8, 8, 14, 2, 9, 3, 2, 10, 3, 1, 3, 1, 3, 5, 1, 4, 1, 4, 3, 0, 6, 1, 1]","[0, 0, 1, 0, 0, 0, 3, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",0,1,3,1 +https://github.com/linuxdeepin/deepin-icon-theme.git,2014-12-03 17:16:42+08:00,7a059612fb9617121de16f34285c148bff35ac10,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/tmuxinator/tmuxinator,2010-12-08 10:25:22+01:00,91b18206cee141bf3d95f68c5cacfaf2b754ae80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 16, 4, 0, 0, 1, 2, 0, 0, 6, 0, 2, 3, 1, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0]",1,1,9,0 +https://github.com/ltsp/ltsp,2019-08-18 20:40:16+03:00,dec892918162be7ff2cb00b509dff1f433dbd50d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 12, 6, 6, 1, 6, 1, 1, 11, 1, 7, 2, 6, 4, 4, 3, 3, 5, 2, 0, 0, 3, 1, 15, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/lstein/LibIO-Interface-Perl.git,2004-03-26 23:18:31+00:00,fd77c1f62df1d660ff9b6038a7d8c93ca8eab89d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libratbag/libratbag.git,2015-08-13 11:55:07+10:00,3fefe97451243c486953ac9cef844195ea0bd049,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[83, 165, 71, 41, 107, 12, 2, 17, 43, 46, 20, 0, 10, 2, 4, 17, 3, 15, 4, 0, 0, 4, 0, 0, 0, 14, 1]","[0, 0, 3, 1, 10, 3, 0, 0, 2, 4, 2, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0]",1,3,9,0 +https://github.com/simd-everywhere/simde,2017-03-28 12:14:46-07:00,76e3e25fd0fac7efe63b89ea8c09adfe539749cd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 0, 35, 49, 25, 18, 32, 13, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/kilobyte/pmemkv,2017-01-05 20:32:36-07:00,56b72f96038c240012f92ea4ff96880b0aa7528d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 7, 12, 1, 4, 11, 2, 3, 1, 0, 4, 7, 6, 0, 8, 6, 8, 2, 12, 0, 0, 0, 0, 5, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1]",2,1,5,0 +https://github.com/justmoon/node-extend,2012-11-07 12:13:42-08:00,f65c443d4ce3934d6cedcffdf0037a8396c59e03,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,1 +https://github.com/benningm/mtpolicyd.git,2014-08-29 16:35:17+02:00,9c4c8d717609fe5c95be0ef2fe3b16ad0e707150,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 2, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/hiracy/serverspec-runner,2014-06-15 18:13:52+09:00,746f14d974677a6f6fc1b30504b01be0cc1ca758,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 2, 0, 0, 2, 1, 0, 9, 13, 0, 0, 0, 0, 0, 12, 21, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/sebastianbergmann/php-code-coverage,2010-04-03 16:35:09+02:00,94388af0c483b94353a81fa1973de8a663a01eb1,"[0, 0, 0, 0, 1, 16, 20, 17, 9, 14, 10, 2, 2, 6, 0, 17, 1, 2, 0, 0, 0, 0, 1, 0, 9, 49, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]","[8, 5, 7, 1, 0, 21, 3, 0, 1, 3, 0, 6, 1, 1, 0, 2, 2, 0, 0, 2, 0, 1, 0, 0, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 +https://gitlab.freedesktop.org/spice/spice-gtk.git,2010-11-23 17:00:17+01:00,d960229a091a7bd5b3ce4a29ae5f5648978af51c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[124, 38, 3, 29, 12, 8, 13, 30, 31, 8, 1, 0, 13, 0, 3, 2, 14, 9, 21, 28, 9, 0, 5, 11, 11, 14, 1]","[0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0]",2,1,7,0 +https://github.com/firehol/iprange.git,2015-11-15 14:42:37+00:00,84a06f67597c2c4926e3649642bc037ed660da3f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 4, 0, 0, 0, 3, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[7, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,4,3,0 +https://github.com/Lawouach/WebSocket-for-Python.git,2011-08-08 22:55:33+02:00,491ba8df12d70661b3e1fbad0e52196a166e1ec5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 20, 20, 2, 5, 1, 14, 5, 3, 0, 0, 0, 2, 1, 0, 2, 0, 0, 9, 0, 1, 2, 0, 0, 0, 6, 1]","[0, 0, 2, 1, 0, 0, 4, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,6,0 +https://github.com/gauteh/lieer,2017-03-05 15:56:38+01:00,45047cd988e95c3c353c2657eaa46df48f9b7eb8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 11, 0, 10, 3, 0, 0, 2, 3, 3, 3, 0, 3, 1, 1, 0, 0, 0, 0, 0, 1, 1, 6, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/angband/angband,2009-01-22 01:08:05+00:00,f594182282f3cd65a3b29e4fc366ee090bfee171,"[0, 1, 0, 1, 0, 0, 0, 0, 3, 24, 8, 2, 0, 0, 0, 0, 6, 4, 0, 0, 0, 28, 5, 30, 11, 28, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[46, 38, 36, 14, 3, 4, 1, 0, 0, 12, 16, 40, 17, 1, 0, 8, 20, 10, 11, 11, 8, 10, 2, 24, 5, 14, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/janmojzis/dq.git,2015-01-01 11:30:21+01:00,104cf888c72ea28f4c5e73a841e92c989c7632e2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ukui/ukui-indicators,2017-01-20 14:23:05+08:00,865546e5830e12445a34b3e27f3a86466dd7304a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 4, 0, 4, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/antanasbruzas/abGate.git,2017-01-05 18:04:40+02:00,e803054b87ef7dd8a9a5ee2499bd1e9dba8bfec3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/firewalld/firewalld.git,2013-06-12 12:46:55+02:00,7f9095c745fec8c8db67b4be6dde3c47cc4293e1,"[9, 1, 0, 1, 20, 4, 1, 6, 7, 11, 6, 2, 5, 14, 20, 14, 1, 5, 7, 10, 7, 3, 12, 5, 18, 21, 2]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]","[11, 16, 14, 6, 8, 18, 34, 8, 0, 22, 13, 4, 10, 5, 5, 18, 24, 10, 17, 27, 5, 5, 10, 2, 10, 2, 1]","[0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,1,2,0 +https://github.com/cyrusimap/cyrus-sasl.git,1998-11-16 20:06:36+00:00,6f4b36e25a44e5f9a4627340920b88816507961c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[35, 22, 3, 1, 1, 0, 0, 1, 7, 1, 0, 9, 7, 5, 2, 10, 5, 1, 16, 22, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/sybrenstuvel/python-rsa,2011-07-30 19:58:25+02:00,d94c677a45b981a852f3ea7b1d5ad12ef31e9edf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 23, 18, 16, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0]","[50, 27, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,1 +https://github.com/rncbc/qxgedit.git,2009-07-20 23:04:08+00:00,04f2c0f7acf5ddeb409f6463e015061e91777127,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 9, 8, 6, 6, 15, 18, 12, 9, 13, 1, 0, 0, 0, 1, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/itamae-kitchen/itamae,2013-12-22 15:40:52+09:00,815f39ca717313d3bc94d6e6a500074ea2a89cf7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/LibreCat/Catmandu-FileStore.git,2018-06-25 11:56:55+02:00,5e985d798ebba722483e300fa5f454db170da123,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,1,0 +https://github.com/mmottl/gsl-ocaml.git,2009-07-12 19:43:24-04:00,e326c5d3902f7f617f8d415b82727d133267cd69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/webhippie/gettext_i18n_rails_js,2012-08-20 17:30:00-03:00,d78d6b2df13cd3a5170ec72c0c32c1f538f54204,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[2, 0, 0, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,0,2,1 +https://gerrit.wikimedia.org/r/integration/uprightdiff.git,2015-11-16 15:44:13+11:00,b8b489ea3775fa8c17dc51d361954fc7c1895613,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 6, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://gitlab.dune-project.org/staging/dune-typetree,2013-08-26 20:33:50+02:00,c276879fa715b2045ef0e9fe9c42a67e6559ebf4,"[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 5, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[20, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 3, 6, 1, 0, 3, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,6,0 +https://github.com/savoirfairelinux/opendht.git,2014-11-20 01:21:09-05:00,4f81ea2603d1af16a183cd0be82d99cac998dd3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 6, 35, 13, 1, 4, 2, 3, 3, 3, 2, 0, 4, 8, 3, 5, 6, 9, 15, 14, 2, 12, 4, 3, 1, 4, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0]",1,1,8,0 +https://invent.kde.org/plasma/plasma-workspace.git,2014-03-31 01:31:46+02:00,da27b276789a213775f1d1fdba20e5ca91430af2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[43, 69, 31, 42, 31, 107, 62, 39, 67, 82, 61, 130, 74, 38, 43, 17, 10, 4, 7, 7, 5, 8, 6, 2, 1, 0, 0]","[1, 0, 0, 0, 1, 5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,3,39,0 +https://github.com/sebastianbergmann/php-invoker,2011-03-09 10:22:06-05:00,c171b14f9744a4875fa725be80dd3bc678f35a13,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/qTox/qTox,2014-06-24 22:19:37+02:00,3dd7065378424295c173c6d555de1820b931a937,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[142, 134, 47, 10, 33, 21, 23, 22, 5, 87, 64, 90, 13, 103, 90, 71, 143, 75, 96, 159, 167, 47, 46, 32, 18, 14, 0]","[23, 43, 8, 4, 11, 3, 3, 5, 2, 15, 10, 18, 6, 21, 18, 19, 44, 16, 27, 38, 28, 15, 11, 11, 8, 6, 0]",1,20,71,0 +https://gitlab.com/man-db/man-db.git,2001-04-26 17:31:14+00:00,190b315e1caed82966c31306213aa58ab62abdf8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 6, 17, 3, 6, 1, 4, 4, 13, 8, 4, 3, 1, 1, 3, 0, 6, 3, 7, 3, 2, 1, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/srikanth-lingala/zip4j.git,2019-05-04 14:27:40+02:00,3d40c8c0595b0ee564190a40970dbe3b59cf9f5a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 1, 11, 8, 13, 4, 6, 30, 8, 11, 3, 7, 5, 9, 5, 2, 1, 4, 10, 1, 0, 5, 10, 8, 1, 0, 1]","[0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 0, 1, 3, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,11,0 +https://github.com/voyageur/wmsysmon.git,2017-12-06 13:46:20+01:00,5b62cd9db804a2e7e14cdc4c8a81f475fda15619,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sobolevn/django-split-settings,2013-05-17 09:05:09+03:00,454775cce320386f7466d3866efbffdc3c3d51f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",2,1,3,0 +https://github.com/gpertea/gclib,2015-09-04 15:06:38-04:00,ae32a9ebae00a1827b14ea3d3224a72272590722,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/bzed/debian-ksmtuned,2015-01-31 00:54:12+01:00,c519671361b6ddad2c6d14f2099fd9a27a7091e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/tox-dev/tox.git,2010-07-12 12:50:27+02:00,6b669316711207812419a7dc747eb1af157631d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 4, 2, 27, 28, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1]","[29, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 10, 12, 0, 2, 8, 0, 8, 0, 0, 0, 1, 0, 3, 1]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,1 +https://gitlab.com/fkrull/quark-sphinx-theme,2016-02-24 03:30:30+01:00,b6f260d987e07d755bedb560a96fd2a5fa0f8eb2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 23, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/TomKellyGenetics/vioplot,2016-03-17 17:27:07+13:00,0ebf607f477473327fe4e47644e7aa52205afecf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 32, 0, 0, 4, 0, 1, 8, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/ImageOptim/libimagequant.git,2011-12-26 21:31:04+00:00,74f5b43759234f741cb72aadb2a4a89cf0b112f9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,0,0 +https://github.com/thp/minidb.git,2010-10-30 13:58:42+02:00,bfd84cbe29deaa7a94bf960f329d16a1d4a5659f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/P403n1x87/austin,2018-09-23 01:13:53+01:00,48c142e85d6e08edba82f7ef453cb07783dae911,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 8, 3, 0, 3, 3, 0, 5, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/seb-m/pyinotify.git,2009-11-03 08:48:22+01:00,288efd44da7762dcc6b1ae33328df369491396da,"[0, 1, 1, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 5, 0, 0, 1, 1, 1, 1, 3, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 5, 0, 1, 0, 0, 0, 2, 7, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/felixge/node-formidable.git,2019-12-06 09:55:06+02:00,e658324ea5e64a0f7746f58e0331cac0bc873511,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 1, 0, 0, 63, 11, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,1,5,0 +https://github.com/pixelb/crudini,2013-01-26 00:41:41+00:00,fa83e1d2f0d4b01a18c9e8846f01655b42485b39,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mate-desktop/mate-utils.git,2011-12-14 10:13:54+01:00,ef0467789bfc8406b57ba553e4d59f4d6c3f9be8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,1,0 +https://gitlab.com/arcmenu/ArcMenu.git,2020-09-20 09:26:43-04:00,f65d8a6bed05de3e636f75e14167d032ae247be2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 17, 10, 15, 9, 20, 0, 2, 7, 1, 5, 0, 0, 0, 2, 0, 1, 24, 0, 0, 3, 4, 1, 5, 1, 6, 1]","[2, 5, 3, 5, 2, 4, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0]",2,1,11,0 +https://github.com/tidyverse/lubridate.git,2010-08-31 09:39:53-05:00,0f0bb7d04dfa1486e6c2880beb1bf6403f8d2c40,"[0, 1, 1, 8, 3, 5, 7, 3, 2, 21, 5, 0, 0, 0, 1, 17, 0, 0, 0, 5, 18, 12, 0, 17, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0]","[2, 0, 0, 0, 0, 7, 23, 17, 6, 0, 7, 0, 0, 6, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/google/python-subprocess32,2012-11-15 18:25:39-08:00,ac220bfe4603901bb577116286325cc30217ea25,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/compuphase/minIni,2015-03-13 13:35:09+01:00,d9d04c43be01e673e4daa283f897751ba280bda7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/babelouest/ulfius,2015-11-02 18:15:36-05:00,d8231fc57b4f07ef45ac8b9fd1dbdf5cc0397bee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 10, 0, 0, 1, 3, 2, 6, 1, 4, 0, 3, 5, 0, 7, 2, 3, 1, 0, 2, 7, 1, 0, 4, 2, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/volkszaehler/libsml,2011-06-16 12:26:21+02:00,d105cd39b103ba7b73900cd7db89df41a696e3bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 7, 1, 11, 30, 6, 0, 0, 0, 20, 8, 9, 2, 0, 3, 15, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,1,0 +https://github.com/py-pdf/pypdf,2011-12-30 09:04:56-06:00,c59a212a4cda512c184a987312970b464404d17b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 0, 0, 5, 0, 0, 1, 0, 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/ipython/traitlets.git,2015-04-08 16:33:28-07:00,e722b4788b076c8f7b4b38c4926e49c15cbf4423,"[1, 1, 1, 1, 15, 13, 3, 4, 0, 8, 0, 0, 0, 0, 1, 3, 5, 0, 5, 5, 5, 1, 4, 41, 17, 30, 2]","[0, 1, 0, 1, 1, 3, 1, 2, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 0, 0, 2, 13, 4, 10, 0]","[6, 13, 3, 1, 4, 5, 7, 17, 10, 27, 3, 6, 1, 8, 4, 22, 1, 6, 6, 4, 11, 11, 10, 17, 8, 15, 1]","[1, 4, 1, 0, 2, 0, 2, 6, 5, 7, 1, 2, 0, 3, 1, 4, 0, 2, 2, 1, 2, 1, 2, 7, 1, 5, 1]",4,2,6,0 +https://github.com/rails/jbuilder,2011-11-27 15:02:46+01:00,65112058afb52a7a9345f24b8735dcba7df1f871,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 5, 1, 0, 0, 0, 1, 0, 10, 0, 4, 0, 4, 0, 1, 0, 9, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,15,0 +https://github.com/mootools/mootools-core.git,2008-04-22 00:26:49+02:00,d14ac127a614c8f0106a620b735823f7c0b1162e,"[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tpm2-software/tpm2-tools,2015-08-21 09:07:28+08:00,d4069d9279a3cd5a10e6919f157f66d625ba1b48,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 1, 2, 2, 0, 0, 0, 2, 3, 1, 3, 4, 8, 10, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 2, 3, 0]",1,1,5,0 +https://github.com/osdlyrics/osdlyrics.git,2009-05-10 08:53:39+00:00,860a8e626d49da8007a57830c03572514cb75bf9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 5, 3, 1, 6, 3, 1, 2, 8, 5, 3, 4, 2, 3, 3, 6, 1, 1, 8, 3, 0, 2, 4, 1, 16, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]",2,1,2,0 +https://github.com/n2ygk/aprsdigi.git,2004-02-24 21:34:05+00:00,c6b2a1c45f9881ef04af0cff03736662e697f9ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gohugoio/hugo.git,2013-07-04 08:26:26-07:00,50a1d6f3f155ab837310e00ffb309a9199773c73,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 7, 9, 9, 27, 51, 27, 12, 26, 2, 16, 6, 11, 30, 2, 4, 16, 11, 11, 6, 3, 4, 10, 6, 2, 10, 1]","[3, 0, 2, 0, 7, 15, 11, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,37,0 +https://github.com/x42/libltc,2012-08-13 05:32:44+02:00,3b26fe05b980903959289bf3e09870dfa4a9ae41,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 3, 0, 0, 0, 0, 0, 2, 6, 10, 14, 15, 11, 13, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sciurus/vagrant-mutate,2013-10-19 14:57:14-05:00,0d1c20d0b66b7b19503e1849010903e00818dda5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 7, 1, 10, 6, 13, 7, 6, 0, 13, 1, 0, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,2,0 +https://github.com/heynemann/pyvows.git,2011-04-17 21:24:51-03:00,a606f0132cb4e4702001d759b296a1388ab22ce1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[17, 71, 16, 8, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 19, 9, 2, 23, 4, 0, 0, 2, 0, 0]","[0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,4,0 +https://github.com/CoreSecurity/pcapy.git,2014-03-13 12:01:03-03:00,c7ae110ade63df9476357a8762ceff7549f990d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lcdproc/lcdproc,1999-12-09 23:15:14+00:00,2635c3085d0efae33ca91cf89d8d1eceff03dccd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://gitlab.com/gnutls/libtasn1,2002-04-05 19:57:55+00:00,c379ce7b913aaaa136c3f3ac4542770068fc2ddc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 4, 0, 2, 0, 8, 7, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/php-fig/link-util,2016-08-04 14:47:59-05:00,08b67e55dbb02e91e88729417acdac0cc871efe1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/pauldmccarthy/indexed_gzip.git,2016-03-10 23:03:47+00:00,ec713e934be910fa4cde6ac09321bf90bd3d8ef3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 5, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/OpenPrinting/pycups.git,2007-07-05 16:44:04+00:00,165a48029fa26441cc1815eee32a00f2b6910bec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[210, 0, 0, 0, 0, 0, 0, 10, 1, 8, 3, 0, 0, 0, 3, 0, 0, 0, 6, 11, 2, 1, 3, 3, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/rtsisyk/msgpuck,2013-11-12 18:41:41+04:00,9f3a5b33c4329300fd351bd04bc804cf808db279,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/orcasgit/python-fitbit,2012-02-17 10:59:34-08:00,b09fe0bcf65b617f8fd214d3e718e731bc54207c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://invent.kde.org/plasma/breeze-gtk,2015-05-12 12:40:27+02:00,9e43116d311c6271713f87a965c5e446802a3405,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 21, 1, 12, 0, 2, 0, 0, 0, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 1, 4, 0]","[0, 4, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,10,0 +https://github.com/steveire/grantlee.git,2009-05-12 19:29:06+01:00,3569595094a0b2826b260dc9681307cceb5c16ad,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 42, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 44, 18, 51, 24, 29, 0, 9, 3, 0, 0, 0, 5, 0, 6, 3, 16, 4, 6, 17, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/jonathanio/update-systemd-resolved,2016-06-14 21:54:19+01:00,208686005394a592827d81f13046a05b0fe2305e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 1, 0, 1, 0, 0, 0, 3, 3, 0, 39, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0]","[1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,4,0 +https://github.com/xmoto/xmoto,2007-02-05 19:58:16+00:00,4bf4d785fa19a4d6d648d33207b33e5531a141be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 41, 44, 40, 6, 27, 14, 28, 2, 32, 24, 24, 37, 19, 9, 7, 7, 8, 19, 8, 19, 5, 1, 4, 17, 21, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,4,0 +https://github.com/simsong/tcpflow.git,2012-04-01 01:04:40-04:00,3043e4586bb1c977aa02ad7f6c50d259a9185c37,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 1, 2, 0, 0, 0, 3, 1, 0, 0, 3, 2, 4, 7, 0, 5, 5, 6, 2, 2, 8, 0, 0, 0, 0, 0, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]",2,3,6,0 +https://github.com/intjelic/python-sfml,2011-02-12 21:54:34+01:00,eebbf987a08ca2a0c1d068be0c4e237ad496e748,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 12, 22, 7, 0, 0, 0, 9, 8, 4, 3, 0, 8, 2, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,2,3,0 +https://github.com/claytonotey/libsbsms.git,2021-01-17 20:59:55-08:00,d0dfda337a8aee8e33f7da22d66a464d997e4073,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,3,0 +https://github.com/webcamoid/webcamoid.git,2012-02-25 12:11:41-03:00,b8ac2286446a2a35bf6a090b1fb00e4706038272,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 0, 1, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 5, 3, 0, 0, 1, 4, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/OpenPrinting/cups-filters,1999-05-14 17:03:06+00:00,cb41960921511ebaa9dac722b53b96708f81c655,"[1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 11, 5, 12, 1, 9, 11, 11, 0, 22, 9, 14, 1, 52, 18, 12, 31, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 14, 5, 18, 24, 61, 16, 26, 27, 9, 37, 15, 11, 7, 11, 14, 14, 5, 15, 31, 1, 10, 10, 25, 17, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/linbox-team/givaro,2004-05-12 16:08:24+00:00,ae1e50dc95940d3a1c986344973a10a30040e3b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 2, 9, 0, 2, 7, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 15, 0, 2, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/inverse-inc/sogo.git,2006-06-15 19:34:10+00:00,f18c764ffad13c8e3dbda85019025b65d71f614d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 12, 29, 5, 0, 35, 54, 27, 49, 37, 39, 30, 59, 33, 46, 38, 96, 56, 68, 49, 59, 19, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,1,0 +https://github.com/moment/moment.git,2011-02-28 18:53:16-08:00,52e2408c33bcedf9907f987b7b95aa7efbfeb7bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 9, 6, 4, 0, 7, 0, 0, 3, 5, 0, 0, 0, 0, 6, 6, 6, 0, 3, 0, 0, 0, 0, 0, 1, 1, 1]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/taem/cd-discid,2009-08-07 11:44:30+06:00,3c31b32079a65133abd0219fd20a6ceb6dc1c8f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 19, 13, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://github.com/radio-astro-tools/radio_beam,2014-04-11 15:26:05-04:00,67ea938f4d2d8931fe01fa6d915838b02dbba1c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/fkei/JSON.minify,2010-06-22 07:38:49-05:00,807ef4d90048a5f150c10fd8a722ef4758589154,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/silnrsi/font-andika,2017-06-05 10:29:42+01:00,27cc747e54a6c689a47d4e4d0faacd37abed9052,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 7, 8, 3, 0, 0, 1, 3, 3, 12, 1, 0, 0, 1, 0, 2, 2, 11, 1, 7, 1, 0, 0, 2, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/shesek/iferr,2014-04-11 09:07:19-07:00,b95cb0010d4aba2eac3363bb505b483a6d8c1e93,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/prometheus/blackbox_exporter,2015-09-05 18:37:28+01:00,1788a049dcaacbc9b81e44b3d3745a8e2c26df3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 2, 0, 0, 0, 0, 7, 0, 0, 3, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0]","[1, 1, 0, 0, 0, 0, 3, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0]",1,2,9,0 +https://github.com/iarna/DBIx-Abstract.git,2011-08-18 13:49:16-04:00,4134d4e35ba8f8582855ea2a52d4556cc73cdca7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/mchehab/zbar,2007-02-19 00:37:11+00:00,ae0168b2547dea5136416d9d0c5e90587532d2b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 4, 0, 0, 1, 3, 4, 0, 3, 2, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ggruen/Chatbot-Eliza,2009-12-09 22:14:13-08:00,aaa0ca11abc686120aaff57627f020f52ba43a31,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ifcquery/ifcplusplus,2018-02-05 12:09:40+01:00,841a5254392b74fa370d43567b35c2da9755d20e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 6, 0, 0, 1, 0, 1, 2, 4, 0, 0, 2, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0]","[7, 6, 1, 8, 1, 11, 0, 0, 0, 0, 0, 2, 7, 5, 4, 1, 0, 1, 9, 0, 0, 0, 1, 0, 0, 4, 0]","[2, 2, 0, 2, 1, 3, 0, 0, 0, 0, 0, 1, 1, 1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,2,1 +https://github.com/sdsykes/fastimage,2009-06-10 16:58:57+03:00,fab2f9939bdf634ed00c0e253890473affefc857,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lxc/python3-lxc.git,2018-02-14 18:34:35+01:00,8c49ddee6fe467618bc30a26cdde02dd1cd6cb21,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 6, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/drobilla/sord.git,2011-01-27 19:29:55+00:00,0c67a1bd0cd5f40fe93584a2e3713cb8963d6835,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 8, 15, 2, 5, 12, 3, 8, 6, 0, 0, 2, 23, 6, 5, 12, 25, 0, 2, 1, 1, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/r-lib/testthat.git,2010-08-25 13:30:20-05:00,a83e97fa6ab26528e630f9d7b89828857a675422,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 0, 0, 0, 2, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,1 +https://github.com/browserify/browserify-sign,2015-08-14 07:38:24+10:00,dd76c988ce7d1a6ff24e5ea55408d1771aa62380,"[0, 0, 0, 19, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]","[0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 16, 0, 0, 0, 0, 3, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,2 +https://github.com/expressjs/media-typer.git,2014-06-13 15:11:05-04:00,aefafa3ae59574bf8b16c57d529bd1d930106ad9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/alexei/sprintf.js,2013-04-02 20:43:49+03:00,2d3b0f433ae3fd74f0075d4b1627cddeae92e805,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/ropensci/taxize.git,2011-05-19 10:06:16-05:00,667004eac329869099fdccb481138f572576cb69,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 2, 0, 1, 1, 3, 1, 1, 1, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/keymanapp/keyman,2014-11-02 08:03:05+11:00,a3226706909bb151d454e2c86e2ea4f2aa26f52c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[10, 5, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,1 +https://github.com/plastex/plastex,2004-11-02 15:14:12+00:00,9c40f2ecd5ba8c40bce695ca7e81eaaa7647c6dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 0, 0, 0, 3, 3, 5, 3, 8, 10, 6, 5, 2, 3, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Nheko-Reborn/nheko.git,2017-04-06 04:03:46+03:00,227a46c32ae02130442a2769475d7a6b217ba455,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 10, 22, 10, 20, 11, 12, 18, 7, 0, 0, 0, 7, 4, 2, 0, 6, 14, 9, 3, 4, 3, 3, 4, 9, 23, 1]","[0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0]",1,2,16,0 +https://github.com/kilobyte/qjoypad,2004-01-08 18:53:25+00:00,7c82c85c713185d67154cf52f4f3701aaf8676da,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/psi-im/psi.git,2007-04-08 08:11:44+00:00,5a8c722526af975db6f3f9b9150d240dbf984ea3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[609, 7, 8, 42, 32, 11, 3, 4, 5, 0, 8, 8, 4, 9, 9, 1, 0, 5, 4, 0, 0, 4, 1, 2, 1, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,5,0 +https://github.com/d3/d3-color,2015-06-02 09:48:44-07:00,404caef01faa1edacb3dcdf29a96ec5c3c532ab8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[74, 3, 6, 0, 1, 5, 10, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 3, 2, 0, 4, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/hbons/SparkleShare,2010-04-27 15:35:52+01:00,5951657dbc8280f251fec40423e70f517ea8118f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[85, 38, 32, 51, 21, 16, 64, 93, 18, 51, 21, 22, 40, 57, 37, 31, 14, 35, 14, 31, 8, 10, 16, 33, 2, 20, 1]","[0, 0, 0, 0, 0, 0, 5, 6, 2, 9, 2, 3, 3, 5, 1, 3, 1, 3, 1, 2, 0, 1, 0, 1, 0, 2, 0]",1,3,45,0 +https://github.com/siracusa/rose.git,2015-03-17 19:09:18-04:00,6851ef5298e983609d7b71b7896fbcdbba13a281,"[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/jtzemp/base62.git,2008-10-04 15:54:23-06:00,958c6691e3cd88a3ca101aa8892b77c74d135bd3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/varnish/hitch,2011-06-09 20:13:39-07:00,60084bb62961f295c619d26ae0315b22b4dcaae4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 3, 3, 21, 5, 2, 0, 2, 19, 6, 2, 5, 15, 1, 6, 1, 13, 1, 0, 6, 1, 0, 0, 0, 0, 1]","[3, 0, 1, 0, 2, 2, 0, 0, 0, 5, 3, 0, 1, 2, 0, 0, 0, 6, 0, 0, 3, 0, 0, 0, 0, 0, 1]",2,6,23,0 +https://github.com/ktbyers/netmiko,2014-11-28 13:42:52-08:00,87bdbe14668b08177b5f0c887856e36c95f7e6be,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[60, 21, 54, 10, 0, 3, 0, 2, 20, 7, 3, 8, 4, 17, 35, 12, 20, 9, 6, 13, 0, 28, 53, 16, 15, 8, 0]","[0, 3, 8, 0, 0, 1, 0, 0, 4, 1, 0, 1, 1, 4, 8, 2, 1, 0, 0, 0, 0, 1, 5, 3, 2, 0, 0]",1,4,13,0 +https://github.com/awslabs/amazon-ecr-credential-helper,2016-05-21 14:10:06-07:00,34df182b2881796da2a08a01390434a8962ae741,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 3, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/gosa-project/gosa-plugins-pwreset,2015-10-29 15:18:15+01:00,4163e5f5c1fdff4828c8da45dd09cee5bc52bff8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Infinidat/munch.git,2010-01-25 22:18:43-05:00,e4f155052194f7d316db5e7c449b76acb58b96c7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/XQF/xqf,2000-11-05 20:40:48+00:00,ecdf6d7869c4b9e5690707390c0f0cbdcc7ef54b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 4, 1, 1, 1, 0, 3, 4, 3, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/x42/x42-plugins,2013-05-22 01:33:53+02:00,94b9db87700f43bf4a0d4438e78bbe817b5f81ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 0, 7, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/cea-hpc/clustershell,2009-01-20 21:40:55+00:00,c3fa5146abe51435c3912f53727db3ca0f67f165,"[0, 0, 1, 0, 0, 0, 0, 0, 0, 10, 8, 1, 6, 0, 0, 0, 0, 3, 8, 0, 1, 0, 0, 0, 6, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 4, 10, 5, 3, 0, 0, 1, 0, 4, 1, 2, 0, 0, 2, 0, 0, 0, 0, 11, 4, 1, 3, 18, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,1,0 +https://github.com/credativ/pg_checksums.git,2018-04-16 12:44:43+02:00,190e8b9301ef5623d8b9173a67c235c54ca70e91,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 3, 2, 1, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 7, 0, 0, 0, 0, 5, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://gitlab.com/rhendric/puka,2017-09-29 20:34:10-04:00,abed3cdef4a921092b552733305bdd2070663eca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/lxc/lxcfs.git,2014-12-12 14:44:09+02:00,60f73aff3126dc2850a4fb698f911e4279ba46b0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 1, 5, 5, 5, 4, 9, 1, 0, 4, 2, 0, 1, 1, 0, 1, 14, 2, 6, 1, 3, 3, 2, 0, 1, 0, 0]","[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0]",2,4,6,0 +https://github.com/fadecut/fadecut,2011-01-21 13:58:51+01:00,c99da0bfec99a038f58cee7e5c020e46eb9b0bd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[78, 120, 40, 24, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 18, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,5,6,0 +https://github.com/prehor/amavisd-milter,2005-05-10 21:37:59+00:00,4127f425fbb170317bf14f36240d91b0fe529dcc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 7, 2, 2, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Wiimm/wiimms-iso-tools,2020-07-24 00:35:40+02:00,41ad6ec89f3a65c39f3f32bfcb25679c518d017c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/libvips/ruby-vips.git,2010-08-05 00:01:37-07:00,6e418e93b11fb0538b29f034c6017b11147207c1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 5, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/jch/html-pipeline,2012-08-24 12:49:28-07:00,4c064381a184791c49eb7ac3d388b445d4195aa1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 12, 16, 6, 10, 0, 0, 0, 24, 3, 0, 37, 7, 8, 0, 0, 2, 0, 0, 0, 5, 3, 0, 0, 0]","[0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 2, 1, 0, 8, 4, 2, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0]",26,5,15,0 +https://github.com/wojtekka/6tunnel,2005-05-08 10:39:22+00:00,5bc8c3b3c2270fdc6e6ec8717e215119738194d9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/samg/diffy,2010-06-28 20:12:26-07:00,33f33fce0a5ccc085a36c5e5ddf83c4ce9424d18,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 16, 2, 0, 5, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jryans/timers-browserify,2012-05-25 21:34:11-05:00,94cfa2b49f817237460c6e3807b287162de6f8bd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dh4/cen64-debian,2015-04-15 22:38:26+02:00,5296a55ee5704611b84fb444575fe59d775a62b7,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/oetiker/SmokePing.git,2005-02-11 20:22:38+00:00,3623e33d0ae10eaeca653e00a3796495dbc0f713,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 12, 7, 9, 0, 0, 0, 0, 4, 0, 0, 0, 8, 2, 4, 9, 0, 0, 0, 0, 4, 0, 0, 2, 0, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/sinatra/sinatra.git,2007-09-11 01:14:00+00:00,208158a7dafa0af88b443be51f9ce985e857ad16,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 4, 9, 22, 1, 0, 15, 0, 0, 0, 41, 34, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 1, 17, 2, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,6,0 +https://github.com/kometbomb/klystrack,2016-08-04 20:10:11+03:00,07073d8286ef5e2524d3a2905dccef983b2ff4dd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 3, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,1 +https://github.com/LibreCat/Catmandu-Store-MongoDB.git,2012-05-04 15:27:30+02:00,f8ca7a8743865fe6c1896c64e64cde1294dd2687,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/shibatch/sleef.git,2016-04-24 14:47:06+09:00,87a08c98052caf7ba86391748a938c2534f46a4d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +http://github.com/yarikoptic/vowpal_wabbit,2009-04-29 16:16:59-07:00,89b6cd6a38264153ae425117e09ceff3d4d92b3e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/theturtle32/WebSocket-Node,2011-04-09 03:22:13-07:00,071a49fb506e6e81f7918c0ff6e0b85952e243e9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 2, 25, 0, 0, 0, 0, 0, 2, 0, 9, 0, 4, 0, 43, 0, 4, 19, 18, 11, 2, 2, 0, 0, 4, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://gitlab.gnome.org/GNOME/libgdata.git,2009-01-03 10:02:43+00:00,3ea04f77323acbd85b95d863dd730e2fd8f009ed,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 3, 0, 1, 1, 13, 3, 6, 3, 9, 10, 11, 12, 44, 5, 7, 11, 13, 5, 12, 2, 4, 2, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,11,0 +https://github.com/janmojzis/tinyssh.git,2015-01-01 11:55:33+01:00,97dd9e05f52482e46d660af81547c7c02669c1a2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 4, 21, 13, 2, 29, 6, 17, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/libtom/libtomcrypt,2010-06-16 12:37:53+02:00,b8b6e1ad589e59f0ef442c826a3c96c2a24b9cda,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/GostCrypt/linux-crypto.git,2018-10-09 10:13:51+03:00,387b43883b9ee3d1cce06e456d7919da1f4b71f4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 27, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[1, 10, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/r-lib/rlang.git,2014-08-12 10:08:31-05:00,737124817f8f35c8b2c72c86fa0e361950f08e48,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 16, 0, 0, 17, 45, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1]","[1, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",1,2,7,0 +https://github.com/hanslub42/rlwrap,2014-02-23 18:32:53+01:00,f3d3ae405f20b0f78681add144735dbfd81f8a6a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[34, 16, 0, 0, 0, 0, 0, 0, 0, 0, 23, 35, 5, 13, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]",1,0,1,1 +https://gitlab.xfce.org/xfce/xfce4-panel,2002-05-20 14:56:42+00:00,d7074befadf86788e4aa3cc56f451231acf02569,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 4, 4, 12, 0, 8, 1, 4, 9, 4, 9, 1, 0, 0, 8, 7, 26, 36, 11, 10, 1, 9, 0, 20, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,3,0 +https://github.com/OpenHMD/OpenHMD,2013-05-28 17:02:26+02:00,a1662d7816171e7903e3facfbc4edf5698f0bead,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 5, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git,2009-10-13 00:00:10-07:00,a376dd57a19e7f2270b8e77886bb3bc0acd1ea4b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 9, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/hroptatyr/dateutils,2014-02-03 11:45:20+00:00,9d31f420674b2adae959f50df341a7452d6fabd4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 12, 2, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gkz/LiveScript,2013-12-06 16:33:58-08:00,05be2735ca7b4b2c6bf1349a0756b43c02cfebb2,"[2, 2, 0, 0, 12, 8, 9, 5, 0, 6, 2, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 1, 0, 1, 1, 6, 1]","[1, 1, 0, 0, 1, 1, 4, 0, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0]","[0, 0, 0, 2, 0, 0, 0, 1, 2, 1, 0, 0, 0, 7, 2, 6, 10, 3, 0, 2, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,0,1 +https://github.com/warner/python-ecdsa.git,2010-04-18 19:10:33-07:00,0fa0573419c4736e34c093131b75109b44b65ac9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/swaywm/swayidle,2019-01-12 09:26:38-05:00,6c78c679257f298b983a44ae41a2d0ce986d8bd7,"[1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 2, 0, 2, 5, 0, 1, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[22, 4, 1, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 0]","[7, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",7,1,9,0 +https://github.com/beanstalkd/beaneater,2012-10-11 01:41:41-07:00,1b67c68eae7af0d3dfff42a8bddc869209d2f4d2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 24, 107, 56, 14, 0, 0, 7, 0, 0, 0, 0, 0, 3, 11, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]",2,1,6,0 +https://github.com/jkraemer/mail-gpg,2008-11-22 14:17:14+11:00,e50471eaccdfc457ddad16c74e11353f74b1340a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/Coin3D/pivy,2015-11-11 19:03:11+01:00,b0468aaf4fa7e8f4c0641b0cc64457bdbae6b00d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/flonatel/pipexec.git,2014-03-16 11:34:35-07:00,51012e65db0fbef389132fc3d981c2a917ad1446,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 8, 51, 5, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,1,0 +https://github.com/fangfufu/httpdirfs.git,2018-07-18 16:26:26+01:00,cd097dc4f1a629c1320085efcc5b78d41228d01d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[88, 19, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[1, 2, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/mvexel/overpass-api-python-wrapper.git,2014-08-24 10:18:09-06:00,fa4ae000535ca71c80cf1828f4a6813b813a8d14,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[7, 0, 0, 1, 8, 1, 12, 6, 5, 0, 1, 1, 8, 3, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 5, 3, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,1 +https://salsa.debian.org/ruby-team/ruby-omniauth-github,2014-04-22 11:41:54+02:00,f03645c9a8298a3e6a8285395983fff62c30675b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bruce/node-temp,2010-05-31 20:53:18-07:00,269481630fb37310cd7d4798dc852e05a7201cf6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/theseer/phpdox,2011-03-20 14:30:57+01:00,7cd606b0767eeab03d7c5e21a32817fc05fb8d4d,"[2, 4, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 6, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 10, 1, 0, 1, 8, 6, 2, 0, 5, 48, 6, 1, 2, 44, 22, 5, 1, 0, 0, 13, 2, 1, 0, 1, 0]","[2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 10, 1, 1, 1, 3, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]",3,4,7,0 +https://github.com/laminas/laminas-stdlib,2009-04-28 10:23:49+00:00,933de80315ccd64f5f89dd4cd44bf20d5100579a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/joenoon/url_safe_base64,2008-08-21 11:52:36-07:00,74b507fa63935e6ecb7954fded63e857d0256a65,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/codehelp/perl-cross-debian,2012-11-25 05:36:03-08:00,e60a9d01fe92f93fee1d9482be5268b66ebc0b29,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 9, 12, 0, 0, 10, 9, 0, 0, 5, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mupen64plus/mupen64plus-core.git,2009-10-02 00:10:43-04:00,4fcb71627ccb49c12c56145474c893660e2afb57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 10, 15, 6, 8, 6, 20, 11, 17, 5, 19, 4, 6, 10, 7, 4, 4, 0, 0, 4, 3, 9, 0, 5, 2, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/wedesoft/aiscm,2013-12-27 13:00:00+00:00,e6592c68e06bb723650dc9360d1a06e173b42087,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 13, 26, 16, 9, 15, 8, 16, 11, 17, 11, 12, 11, 8, 12, 1, 5, 8, 12, 1, 0, 3, 2, 2, 3, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/EttusResearch/uhd,2010-01-07 16:46:00-08:00,67a502ec0fb92b14db5eedf2cff36caacbb0efbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 22, 11, 7, 10, 21, 20, 12, 7, 15, 17, 29, 17, 35, 25, 33, 29, 21, 36, 8, 24, 27, 18, 13, 10, 39, 1]","[1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 1, 2, 5, 2, 5, 5, 4, 4, 1, 2, 2, 4, 4, 0, 3, 0]",1,1,3,0 +https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux.git,2015-07-08 00:07:11+02:00,46e8a0b638501ea8559ae254892507d6ae5662ac,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://invent.kde.org/plasma/sddm-kcm.git,2013-02-03 22:18:19+09:00,57c770571916c36cf9cce1ee7793e7ebc08f03ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 13, 11, 0, 1, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/ardentryst/ardentryst,2014-12-31 02:57:54+01:00,799470bfdee147b4b41eda94e4a508d58a90f018,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/derf/feh.git,2010-02-05 17:52:34+01:00,21c4996c71d76b01a4333ef9905589b3fffa687d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[51, 18, 10, 11, 5, 6, 21, 5, 2, 7, 9, 0, 21, 4, 1, 3, 25, 22, 32, 21, 3, 8, 3, 2, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://gitlab.gnome.org/GNOME/tracker-miners,2005-12-14 11:11:14+00:00,3ba8f30898be054c2949c8842cee243ccf39ddee,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 2, 7, 5, 5, 3, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/timothycrosley/isort,2013-09-02 15:22:53-07:00,af493c9bce862bd07537eb09b10c44bc50dbf2fc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[57, 34, 10, 2, 9, 7, 29, 20, 23, 6, 24, 0, 10, 26, 0, 14, 0, 35, 8, 9, 18, 38, 16, 2, 69, 2, 1]","[22, 13, 2, 1, 3, 4, 12, 6, 11, 2, 6, 0, 3, 9, 0, 5, 0, 10, 3, 2, 5, 12, 6, 1, 16, 1, 0]",2,2,15,0 +https://github.com/eclipse-ee4j/eclipselink.git,2013-04-14 16:05:26-04:00,2715b9d400e57fae8454331730945abaf47c7a00,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 20, 7, 20, 21, 23, 24, 26, 22, 32, 20, 14, 17, 14, 17, 12, 7, 17, 17, 21, 9, 22, 20, 8, 2, 6, 1]","[1, 1, 0, 1, 1, 1, 0, 0, 1, 2, 0, 0, 2, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0]",0,1,1,0 +https://github.com/npm/abbrev-js,2010-03-09 13:15:25-08:00,a19cb746c0a21cfd00dcac29f4b98c62b3d2956d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/maxbube/mydumper.git,2009-02-20 23:56:21+02:00,b8104ebad02168495864bdf0ef28e5123ad2f533,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 1, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]","[0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]","[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,2,1 +https://github.com/rstudio/httpuv.git,2013-02-26 16:21:06-08:00,846fae24a957cec16ccbac491f41fc7352a71c8e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 15, 14, 21, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 13, 0, 1, 1, 2, 0, 1, 3, 0, 6, 2, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 12, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,2,4,0 +https://github.com/ledgersmb/PGObject-Type-DateTime.git,2013-11-13 00:43:16-08:00,db77cea7b44695efd6fd1edbca4414ad6da209b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/knxd/knxd,2014-11-25 18:06:28+01:00,41f495fd84f81dbfe1354a8b521adba45ac06d43,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 34, 9, 0, 8, 40, 6, 2, 1, 23, 2, 14, 7, 2, 15, 0, 0, 3, 26, 0, 11, 7, 1, 60, 41, 1]","[0, 0, 1, 3, 0, 3, 4, 2, 0, 1, 4, 0, 3, 0, 1, 5, 0, 0, 1, 0, 0, 0, 1, 1, 4, 4, 0]",1,9,19,0 +https://github.com/pypa/pipenv.git,2017-01-19 19:44:22-05:00,be4b70e646e6232834e9f9917fdc1adde2156f47,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[411, 248, 35, 36, 12, 20, 9, 33, 16, 8, 8, 3, 13, 30, 1, 2, 29, 19, 24, 16, 24, 6, 5, 3, 0, 1, 1]","[31, 30, 3, 6, 2, 4, 2, 3, 3, 2, 1, 0, 2, 6, 0, 1, 6, 5, 2, 5, 4, 1, 1, 0, 0, 0, 0]",1,6,48,0 +https://github.com/libsndfile/libsamplerate,2004-01-22 11:16:39+00:00,361a1044c3442b00b92da698bb1cdae6ed8eeb98,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 3, 0, 2, 4, 4, 1, 9, 0, 3, 0, 0, 1, 0, 0, 0, 0, 7, 4, 1, 2, 0, 5, 6, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/sebastianbergmann/php-timer,2010-05-25 13:08:49+02:00,49fb6962c3b82515b918f3d619a1ef6c89176287,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rocky/Perl-Device-Cdio.git,2006-02-08 05:06:05+00:00,fa70782774fa56bd9e2921b218e2f02f5cebc770,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 7, 30, 2, 5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/phpDocumentor/TypeResolver,2015-06-10 21:17:01+02:00,1c9fdcd72471ff91805eb7427a58c6d89416046f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 6, 3, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[5, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,2,4,0 +https://github.com/ionos-cloud/netconsole,2018-10-30 17:26:51+01:00,d2a2e037a1fb680ebaf353c2a8f2b76fca110ef6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/resque/redis-namespace,2009-10-13 14:48:51-07:00,a8f5e4bec68a5fec1b82c4e3aa844cb6fc17a487,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 3, 0, 0, 3, 0, 0, 1, 5, 0, 3, 2, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/thoughtbot/shoulda-context,2007-03-14 18:12:55+00:00,7a4202f9b8fa77318694864af9d1bcfde4084deb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 3, 13, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 6, 0, 0, 3, 12, 0, 4, 2, 2, 6, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ukui/ukui-settings-daemon,2017-12-12 10:52:40+08:00,e545c66ef3938195eb858ea34ec2b1fab64be9b8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 2, 0, 1, 3, 1, 6, 0, 0, 0, 0, 0, 1, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/sddm/sddm.git,2013-01-18 00:46:14+00:00,35e2bf71c50df8c695c3b05a7ff7a8ee19b9c86c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 38, 22, 41, 48, 23, 20, 27, 49, 65, 35, 9, 1, 0, 0, 0, 0, 6, 13, 0, 0, 0, 8, 0, 21, 5, 1]","[0, 1, 3, 1, 1, 0, 0, 1, 6, 5, 1, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 1, 0, 4, 2, 0]",1,2,11,0 +https://github.com/altdesktop/playerctl,2014-04-15 04:31:16-04:00,e97f14603b092a47eed18fb7926afc1c82db41bc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 4, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",1,1,1,0 +https://github.com/mypaint/libmypaint,2009-10-23 21:34:52+02:00,d061f4ae870692445c4fb190c9ca6c64cb05fd41,"[0, 2, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 4, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,1 +https://github.com/psi-im/qconf.git,2008-05-30 06:17:35+00:00,cc8132a8d37c68f97201179de9b0befc7389820e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rspatial/raster.git,2018-07-30 19:08:04-07:00,13872842e0c6feaea00103e1fcf391ecc76962cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 14, 6, 2, 0, 9, 9, 7, 46, 10, 9, 0, 4, 1, 0, 0, 0, 1, 0, 10, 1, 1]","[0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 2, 1, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0]",1,4,8,0 +https://github.com/evandelisle/showq.git,2011-04-10 20:13:56+02:00,2449bac834a403efa3f54100f3eee3815c45b9d3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://anongit.kde.org/kfourinline.git,2000-06-18 14:00:37+00:00,e3fd91a7bba031d77dc5683929bcd2c6c55e23cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 6, 1, 0, 1, 3, 10, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,8,0 +https://github.com/jmoiron/humanize,2011-10-07 19:49:53-04:00,4267a54777e2ef1c71146d516429c6047a6de983,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mruby-debian/mruby,2012-04-19 02:11:15-07:00,54ad561098ed353ada70205c39b2c42a2a2eb9e5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[139, 64, 87, 102, 120, 76, 161, 78, 90, 56, 33, 37, 65, 27, 79, 24, 37, 32, 13, 34, 43, 13, 6, 11, 3, 22, 1]","[35, 19, 17, 23, 22, 15, 36, 7, 20, 18, 5, 14, 15, 9, 18, 6, 9, 10, 4, 5, 14, 4, 1, 2, 1, 6, 0]",2,10,56,0 +https://github.com/mika/jenkins-debian-glue,2011-08-06 13:09:15+02:00,a34610068dbc08745c810ea415fa65f43249555c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[29, 0, 11, 1, 1, 3, 0, 0, 1, 1, 0, 0, 1, 19, 17, 23, 4, 1, 1, 0, 1, 4, 3, 10, 0, 3, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/babelouest/glewlwyd,2016-11-27 17:57:35-05:00,ce40297eec802c346753511992b60cc52bb3af9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 18, 11, 7, 3, 15, 30, 5, 6, 58, 12, 0, 7, 16, 11, 1, 4, 0, 0, 0, 0, 0, 0, 3, 3, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,2,3,0 +https://github.com/elastic/elasticsearch-ruby,2013-04-30 14:16:06+02:00,e6ae26aabcef0402d463b30e0ebcb062f884d0b6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 27, 0, 0, 0, 2, 87, 7, 0, 0, 0, 12, 0, 0, 0, 0, 0, 6, 1, 1, 13, 8, 5, 0, 22, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/lxqt/lxqt-about.git,2015-11-03 11:23:16+01:00,c6eb938c3476e9110665dc468580ee7740322410,"[0, 0, 2, 0, 7, 0, 3, 0, 1, 1, 9, 0, 1, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",5,0,3,3 +https://github.com/hughsie/libxmlb.git,2018-09-18 19:13:06+01:00,513a7fd4006f26ef3fe4c5d9f96e04268d697d35,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 18, 57, 27, 23, 2, 12, 9, 4, 5, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 4, 0, 0, 1, 5, 1, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/jwbargsten/perl-proc-processtable,2012-10-19 05:55:49-07:00,d65b758be29bf5abf80129b52a8ab743ea057a9d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 11, 10, 0, 0, 2, 1, 3, 1, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 1, 2, 1, 0, 0]",1,2,4,0 +https://github.com/jhawthorn/fzy,2014-07-11 21:48:29-07:00,a83b047f07d2adcc47555a510104910e526d0ce1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 1, 31, 11, 1, 18, 0, 7, 9, 28, 1, 16, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/greenbone/gvm-libs,2005-11-06 20:06:15+00:00,c5b2c133f7fc3e016511fbf7f851bf8f2580d249,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/frogatto/frogatto.git,2011-06-21 02:50:38-04:00,a66dcc4ecfc1daa8b4f11af99551f92f22b136f9,"[15, 16, 60, 43, 48, 46, 44, 22, 32, 24, 44, 18, 28, 46, 26, 32, 82, 47, 46, 64, 20, 15, 29, 24, 32, 66, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[24, 52, 28, 36, 104, 65, 26, 32, 37, 70, 71, 45, 31, 32, 40, 16, 43, 23, 26, 32, 40, 61, 41, 31, 24, 27, 1]","[2, 4, 2, 1, 10, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0]",4,9,17,0 +https://invent.kde.org/network/smb4k.git,2009-10-31 07:43:37+00:00,d7d2b1b413de843254a21dd42abfd52c529f8ccd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[15, 3, 3, 1, 1, 22, 9, 0, 0, 14, 12, 1, 22, 21, 6, 9, 14, 0, 1, 29, 2, 0, 0, 23, 8, 9, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/uclouvain/openjpeg.git,2005-12-07 21:28:11+00:00,4fb43c8af0ccd4533d83c586a44525bf3b2703d8,"[0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 1, 3, 8, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ofalk/libdnet,2001-10-11 04:14:42+00:00,43b6ade9980fe2b364f1e4919b6d87d7d12db221,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[81, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/python-cmd2/cmd2.git,2008-05-16 10:40:15-04:00,b55d45b4f2d8d5908368366987b80156ab8317b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 3, 4, 7, 0, 2, 2, 2, 1, 0, 3, 1, 0, 0, 0, 3, 0, 0, 2, 8, 0, 1, 0, 20, 2, 1, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/nichtich/Catmandu-Wikidata.git,2013-12-04 11:09:46+01:00,354799ea8ccdcf276e978bfd31dff1f853a1b1a3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/visionmedia/node-fresh.git,2014-09-07 22:39:46-04:00,9e6e67b206e3e29fbf64582f92bdd6ed7a1649cb,"[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",4,0,0,0 +https://github.com/zmartzone/mod_auth_openidc.git,2014-03-27 20:18:52+01:00,fff2a454fa2b0fe38c90add5d75e450564bd6c79,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 3, 20, 13, 12, 6, 5, 7, 3, 26, 21, 0, 1, 6, 0, 0, 5, 3, 7, 12, 13, 3, 11, 2, 12, 4, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/pyFFTW/pyFFTW,2012-01-26 20:28:54+00:00,7c7044e34af53ce9bb35fac7552081eb4e1646e0,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 3, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ZerBea/hcxdumptool,2018-02-25 09:18:41+01:00,00b2dad448f31a8f4e70eb1148beab7034cc67f2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 7, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 1, 2, 0, 1, 1, 12, 46, 21, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0, 0, 0]",1,1,5,0 +https://github.com/ShawnDEvans/smbmap.git,2015-04-22 17:10:48-04:00,4e1ca6d94d4ed31e009d940b8c4457cdaa41b5bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1]","[19, 1, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,1 +https://github.com/fln/gnarwl,2012-09-18 00:42:26-07:00,1f3c6ba92abd963293afbfa19189071276670b49,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]",2,1,1,0 +https://github.com/jschaf/pylint-flask,2015-06-27 16:41:46-04:00,3c63a37baf7127a12091ddd21e03793b0a446195,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/dds-bridge/dds.git,2014-11-25 07:50:09-05:00,b2dd7f60e2dc2678ea3db3197f2a08085b9223ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/oetiker/rrdtool-1.x.git,2001-02-25 22:25:02+00:00,37fc663811528ddf3ded4fe236ea26f4f76fa32d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 4, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 8, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/axel-download-accelerator/axel.git,2008-01-11 11:57:58+00:00,5a08bb42c630fe722ac118b54d32af288fe06205,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/DanielAdolfsson/ndppd,2011-09-13 21:26:12+02:00,7d84dbeb183fc8ebad431b57346cf2c288e53b74,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[27, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 2, 0, 0, 0, 3, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,3,0 +https://github.com/dhewm/dhewm3.git,2011-11-22 15:28:15-06:00,fb1609f5540e3578b579c5e3476de5613c45d3a6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 95, 44, 34, 25, 58, 27, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://gitlab.gnome.org/GNOME/hitori.git,2009-03-02 00:03:36+00:00,7e313950c8c6e82726856fe73abcf7b1da0ca134,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 8, 1, 1, 6, 1, 0, 4, 0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,9,0 +https://github.com/dbr/tvdb_api.git,2020-04-28 19:23:19+09:30,a53f750903906995741a520a59e86a6aac85f727,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 12, 4, 9, 12, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,1,1,0 +https://github.com/tokuhirom/Furl.git,2010-10-15 17:55:24+09:00,81b3c2c45723d5ccec750cd97987a1539437e923,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[125, 276, 89, 5, 3, 17, 7, 4, 2, 9, 0, 0, 2, 0, 3, 2, 2, 4, 8, 5, 0, 0, 0, 0, 0, 0, 0]","[13, 43, 9, 1, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,5,9,0 +https://github.com/ytdl-org/youtube-dl.git,2011-08-05 19:14:13-04:00,6bcd846b5212b41877b80358125b2210432e080d,"[0, 2, 10, 2, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 3, 2, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 1, 14, 9, 20, 48, 5, 9, 2, 2, 11, 0, 2, 5, 10, 15, 12, 8, 3, 2, 0, 5, 5, 2, 0, 0, 0]","[0, 0, 3, 3, 1, 3, 1, 0, 0, 0, 2, 0, 1, 0, 3, 0, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]",2,1,15,0 +https://github.com/mvo5/synaptic,2003-02-02 14:10:39-03:00,f45c3866e88fab6231b2841b7f3944eb5d253ba3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 7, 6, 14, 11, 20, 14, 7, 7, 10, 5, 6, 2, 0, 5, 14, 9, 6, 4, 7, 7, 3, 5, 9, 6, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/marcelm/alignlib.git,2018-11-27 13:31:50+01:00,75fd77f1b212ae02191247c1bfe947dff6c8f823,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/sebastinas/python-libdiscid.git,2013-04-10 18:18:21+02:00,d4baaa820406cc9267292c0dcfb76c25b94c3db8,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 1, 3, 0, 3, 0, 0, 0, 0, 0, 0, 26, 11, 0, 0, 0, 0, 6, 0, 0, 0, 17, 0, 0, 3, 4, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0]",1,1,2,0 +https://gitlab.com/DavidGriffith/frotz,2000-11-11 04:46:09-08:00,cf94b9e473718dc4981a1a9789a37945cc14d362,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/ge-ne/bibtool.git,2007-02-07 21:26:17+00:00,afd612dc4db0f7da8cc3bf04df007dae618756e3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mogaal/sendemail,2010-09-12 12:09:43-04:30,f06d6953a7972d02c24a7764652df3c6c5ed6528,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/drowe67/freedv-gui,2015-08-13 13:07:43+00:00,a362d8ebe7efd9604edf537d7d81af97a8176baa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 11, 5, 9, 42, 30, 35, 16, 20, 20, 12, 2, 11, 2, 2, 5, 1, 48, 19, 22, 22, 13, 13, 29, 15, 15, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,4,0 +https://github.com/gnustep/apps-gorm,1999-12-08 15:55:48+00:00,a44ba184470353ae009945c28af5b9282596e4ba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 38, 5, 8, 8, 10, 0, 0, 5, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/prometheus/node_exporter,2013-04-18 07:44:52-07:00,051b651fa86e9e7038b8554a93a8248ce1f5f9f6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,2,2,0 +https://github.com/tinfoil/devise-two-factor.git,2014-05-12 11:46:54-07:00,2a66a568cac25cadc9443c7ce09582f077630ce5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[33, 22, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1]","[2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",2,3,4,0 +https://github.com/pear/Crypt_GPG.git,2011-12-29 02:26:37-04:00,2f91d64139132e3d8c68af283ea69f7453873a07,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/csmith-project/csmith.git,2011-05-03 18:13:31-06:00,25b0a0c290fa55b9560a3b7184179d8f1bda144d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[93, 10, 13, 21, 2, 5, 9, 24, 15, 18, 2, 11, 8, 23, 12, 9, 3, 0, 0, 0, 0, 1, 0, 0, 6, 4, 1]","[1, 0, 1, 3, 0, 1, 0, 2, 3, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",1,3,9,0 +https://github.com/blitzpp/blitz,2016-01-18 18:32:18-10:00,c633a3441d0d838bf5d0749cdb8fd4b0e637cdb4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1821, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,11,0 +https://github.com/porridge/bambam,2014-02-12 20:45:51+00:00,6bab5a984fe9c52f62344fda5b48c6986e287d42,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/connorimes/powercap,2016-06-22 10:30:48-05:00,b7701e4cdd01295f7d1b8ad074788d2d2c313b57,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/gildor478/ocaml-fileutils.git,2019-09-14 01:25:34+02:00,0cb8c2e28890fe94d25b47be69896697886c3482,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/bbatsov/powerpack.git,2013-07-12 15:44:22+03:00,65f3a9412e198262d900ec35e21c988cf0e534a2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 1, 9, 12, 14, 12, 14, 5, 1, 2, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 4, 1, 2, 3, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,9,0 +https://gitlab.com/libpipeline/libpipeline.git,2010-10-12 01:13:11+01:00,d7d0b4341cf1f5ce5773f905677bcb196e125afc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 17, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 17, 13, 1, 0, 1, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git,2008-07-31 09:43:00+03:00,cc31458b18e8c274641cf124f5bf7ec6fe506dfb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 2, 1, 7, 11, 1, 18, 3, 0, 0, 1, 11, 6, 7, 0, 2, 1, 3, 4, 6, 0, 0, 0, 4, 1, 5, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/pypa/pipx.git,2018-10-07 22:35:38-07:00,c28613389d4e70dd82c85efe2f9d9c054740fc17,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 28, 23, 6, 1, 3, 5, 14, 3, 7, 3, 0, 1, 1, 2, 5, 12, 6, 18, 14, 4, 6, 0, 0, 3, 2, 0]","[0, 4, 2, 1, 0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0]",1,2,16,0 +https://github.com/Blosc/c-blosc,2009-07-22 17:19:25+00:00,718a002761f8137e350ebe9d77c9cecf23f45066,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 5, 1, 0, 0, 0, 2, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/invesalius/invesalius3.git,2009-06-10 17:30:02+00:00,8da812b0a127e1b2e4af912e9bb5ce0332e59850,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 34, 5, 2, 2, 14, 35, 4, 33, 45, 48, 43, 21, 12, 1, 7, 32, 6, 37, 12, 11, 15, 32, 44, 7, 11, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://gitlab.gnome.org/GNOME/atkmm.git,2010-06-23 01:55:10+02:00,34e918d40d39a2db143d851eeb64f6a1d275d246,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,1,0 +https://github.com/christophgysin/pasystray.git,2011-10-07 23:54:18+03:00,85e00308c105586dca86c93cf862c06c0d5ef37c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 7, 0, 2, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 0, 0, 0, 26, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/CESNET/libyang,2018-11-09 18:41:15+01:00,70cdc097672cc632be980b3661c1476f4a021b39,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/leamas/ddupdate,2017-12-25 17:50:56+01:00,83dbafcf24f631fc2c7245607f13bc44cd41b8bf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[65, 51, 9, 52, 27, 16, 4, 8, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 0]","[1, 2, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,1,0 +https://github.com/sebastianbergmann/php-text-template,2009-11-19 12:48:18+01:00,a480a20560937062e15d89e459c0df2c847cc329,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://gitlab.com/drobilla/ganv.git,2011-12-06 21:01:38+00:00,0731f12beaa0cfc0de56dc05ca3814143fd394a5,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[31, 12, 3, 0, 3, 4, 1, 1, 2, 0, 0, 0, 0, 2, 0, 3, 1, 1, 3, 13, 12, 0, 5, 1, 6, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jupyter/jupyter-sphinx-theme,2011-12-07 09:55:00-05:00,efc9408bcd84cc6156f824e89014f79221af1b2f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]",1,1,2,0 +https://github.com/ocrmypdf/OCRmyPDF.git,2013-04-09 09:44:46-07:00,7972a156fc441c33cd6ddd60c9ff793fc523c3ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 22, 37, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/andrew-bibb/cmst.git,2014-05-10 14:17:37+00:00,566f7f239ef9a15a5353d1e32d071bd661401ae9,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 1, 2, 1, 0, 0, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]","[2, 4, 9, 15, 2, 8, 3, 13, 14, 19, 2, 4, 4, 4, 0, 2, 0, 0, 0, 0, 4, 6, 4, 16, 12, 12, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,0,1,2 +https://github.com/Seldaek/jsonlint,2011-12-13 18:05:01+01:00,44a4df33dd2e3bb370ff50aeb12621a8f1a77cfa,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/geopython/stetl.git,2012-08-28 11:29:43+02:00,3e6f0e8416f6d5961377a438c0d4972b26d43e5c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 5, 2, 0, 1, 3, 7, 0, 0, 2, 4, 3, 0, 0, 0, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,0,0 +https://github.com/gkz/type-check.git,2013-09-29 11:32:18-07:00,2011e3c2ee9b669a653e39eaa0dde012d300a1b4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/ossimlabs/ossim.git,2015-09-02 16:20:52-04:00,e4d3c664cca5261541dc7f058424cef8c5c20bcf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[20, 32, 13, 19, 26, 0, 16, 15, 11, 21, 3, 12, 14, 70, 22, 32, 0, 19, 32, 27, 22, 20, 20, 13, 27, 26, 1]","[2, 5, 1, 2, 2, 0, 2, 0, 2, 5, 0, 0, 1, 4, 4, 3, 0, 2, 5, 3, 2, 1, 4, 3, 4, 8, 0]",2,5,7,0 +https://gitlab.gnome.org/GNOME/libmediaart.git,2013-08-13 07:28:43-07:00,c041d3813ff04d45677463a39d4f9e206be5676b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 7, 62, 0, 0, 0, 4, 6, 1, 12, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13, 0]","[1, 2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,15,0 +https://github.com/mikeboers/PyMemoize,2010-09-17 06:39:39-04:00,64e3d6db904a1e2798e5d169a41b22ac97b587e6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/canonical/lightdm.git,2010-04-29 21:08:26+10:00,9e8fcfa450e52155dd5f664f954ebb2ec3e39768,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[36, 3, 0, 0, 1, 0, 18, 18, 25, 3, 22, 36, 13, 36, 0, 9, 14, 2, 0, 3, 0, 0, 0, 0, 8, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,3,0 +https://github.com/jekyll/jekyll-watch,2014-06-26 18:45:47-04:00,575ea9e326e2e0da366dde3b6fb16d8c5ce6faa6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 0, 0, 0, 0, 0, 21, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 6, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0]",1,2,1,0 +https://github.com/Kitware/KWStyle,2003-04-11 13:36:16-04:00,5b1cf3594a205fd22a4e76daf0a6363e68e41e9a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/residuum/PuRestJson.git,2011-08-23 23:44:38+02:00,965b9df46b58e0fafce1cf43aeaae579a993c158,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 11, 8, 11, 10, 1, 1, 5, 1, 0, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 25, 9, 6, 0, 0]","[0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]",1,1,1,0 +https://github.com/hynek/argon2-cffi,2015-12-07 17:14:57+01:00,2132ab8c3d2facc97d96c2668e1bf43c3ac666ff,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[40, 27, 16, 4, 1, 1, 2, 5, 0, 0, 3, 1, 0, 0, 1, 0, 2, 1, 2, 8, 1, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/ros/urdfdom_headers,2012-06-22 14:35:26-07:00,6ddbe9c36cd0cab527f5a77e1f73f0d0f00f2068,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/zmartzone/cjose.git,2016-03-14 15:38:19-06:00,230b6070aef5f64f396f90a74eb8f1165b3cd1f3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 3, 0, 0, 7, 0, 3, 2, 0, 0, 1, 0, 0, 0, 9, 17, 11, 10, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 2, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 0, 0, 0, 0, 0, 0]",1,2,3,0 +https://github.com/slgobinath/SafeEyes.git,2017-10-23 20:27:43-04:00,ada0834ddf7106ef88bd842b16352570b0aa1bcd,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/chrys87/simple-orca-plugin-system.git,2016-01-05 20:35:41+01:00,12b4c8437580257d967f2d7b20809f62f9b0e6c2,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[108, 4, 29, 9, 0, 1, 0, 0, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0]","[10, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,2,3,0 +https://github.com/ros/robot_state_publisher,2017-03-22 13:59:01-07:00,4988ec4dbf413c6ec2518991d96254f4869ed954,"[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/akopytov/sysbench.git,2006-01-20 16:13:23+00:00,d224c6368ab20de3a87f5c9341ceeb5fb48730ca,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 8, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/savonet/ocaml-ffmpeg.git,2012-10-12 02:10:24-07:00,7b3dfe212d56d651c47045813f2d1b5d98ae499d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/jlmelville/uwot.git,2018-06-12 07:34:53-07:00,291d4c26e93a795692e3c2e02d30ee90ed90d412,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[52, 22, 54, 4, 5, 4, 5, 57, 6, 3, 1, 1, 0, 0, 13, 1, 1, 8, 10, 5, 2, 2, 1, 17, 5, 41, 1]","[0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0]",1,2,2,0 +https://github.com/jhnc/findimagedupes.git,2006-09-20 12:45:30+01:00,0534ec6a782b40d145695d3f23f49acbe31f5039,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/myriadrf/gr-limesdr.git,2018-04-24 12:37:35+03:00,a0bf587bd99f90a97686f7cfd288db98e5ddfdef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 1, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,6,0 +https://github.com/dvehrs/podget.git,2015-11-09 15:58:35-07:00,37bc6bf9d1235f92157b9b3451aa71c742097b28,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 11, 3, 4, 0, 0, 0, 8, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/deiv/driftnet,2012-06-14 20:35:05+02:00,1357cd4ec4f89fa180cf1e2637c8ab165d8a4a9c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/tduehr/omniauth-cas3,2011-12-14 16:14:25-05:00,1297194de6e78bee57a9defc0b37558b880a2a3c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 0, 2, 0, 5, 7, 0, 2, 4, 4, 0, 0, 5, 0, 0, 1, 0, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/phar-io/manifest.git,2016-11-24 17:35:20+01:00,8f8de1f8c5920b1148d620f69a4e6bde58f86fa4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/maxmind/libmaxminddb,2012-12-31 15:21:11+01:00,48321c4d84e874dc0c1b406129a5baa55cab7d11,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 31, 32, 9, 20, 0, 0, 0, 18, 12, 22, 2, 1, 0, 0, 0, 0, 6, 0, 0, 0, 1, 0, 27, 24, 3, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/cespare/reflex.git,2013-05-20 19:09:33-07:00,6f5967b16b63439e3ebb4a36e2ddcc9cec9ea52e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/flareteam/flare-engine,2011-06-03 22:02:11-05:00,2866148a6da4e8d9c309423a843de005a27847fb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[37, 34, 30, 21, 31, 23, 24, 15, 9, 0, 0, 2, 0, 0, 0, 5, 1, 0, 2, 0, 11, 12, 18, 7, 83, 14, 1]","[10, 13, 6, 4, 9, 5, 11, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 6, 2, 21, 6, 1]",1,8,15,0 +https://github.com/savonet/ocaml-alsa.git,2008-10-15 17:30:33+00:00,8494698bf376381803458e369cf3e37144384b10,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,0,0 +https://github.com/jonschlinkert/global-modules,2015-03-06 08:15:23-05:00,9cf00ecb75c1da4f0f89bb79e51f9601ca87ef89,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/danfruehauf/NetworkManager-ssh,2013-02-04 12:18:42+11:00,1984e3d762b40e0412cbb01464f55a4f48562f15,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[32, 18, 28, 12, 4, 1, 6, 14, 3, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 7, 13, 6, 3, 2, 0, 5, 0]","[1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0]",1,1,1,0 +https://github.com/sstrigler/JSJaC.git,2004-10-08 16:45:37+00:00,73bcbae2dc8988cd63653b42fbb8ca605083c1d4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 4, 13, 2, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 2, 5, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/EasyScreenCast/EasyScreenCast.git,2013-06-29 12:59:07+02:00,e134b23c9d59842497727f0f41facd5f1a23112f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/edicl/hunchentoot,2008-05-26 14:22:29+00:00,a07b44baed0220868d52c84ebf8f770de0aee5dc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[11, 1, 3, 0, 10, 0, 3, 1, 1, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/rails/sass-rails,2011-05-25 06:36:16-07:00,2e793da2132b7735bdddf9e0f18da5b90b47c567,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[28, 2, 1, 2, 7, 7, 2, 0, 9, 9, 0, 11, 8, 4, 0, 9, 12, 6, 6, 0, 6, 0, 0, 1, 1, 0, 0]","[3, 0, 0, 0, 0, 1, 0, 0, 5, 1, 0, 0, 1, 0, 0, 3, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0]",2,4,16,0 +https://github.com/chartjs/Chart.js.git,2014-07-02 21:39:44+01:00,95844701bd235a42dd99180a6543e0166f5d8d70,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0]","[12, 3, 2, 9, 4, 0, 6, 1, 0, 2, 3, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 14, 1]","[0, 0, 1, 5, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]",2,3,10,0 +https://github.com/WorkflowConversion/CTDConverter,2014-02-18 02:42:10-08:00,dae594c8218243f98593eba242253656aeb796ec,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 7, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/einaros/tinycolor.git,2011-12-10 13:21:55+01:00,5d9435151e62c6544d83c6031c6434f8908e61cf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/viraptor/arpy.git,2013-06-30 22:10:07+01:00,e936d0423488dad54367f480d04c700d8c064d9f,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 7, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,0,1,1 +https://framagit.org/simgrid/simgrid.git,2004-01-27 19:53:06+00:00,ff021a73f0cd26b2f27ca729783aa486393f9b3a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[19, 8, 5, 0, 11, 11, 0, 0, 0, 0, 20, 1, 5, 2, 0, 0, 0, 0, 7, 11, 35, 3, 44, 89, 20, 51, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/xaicron/p5-JSON-WebToken.git,2012-06-26 22:28:10+09:00,0f94f8fd796998513989b9b550aad2f3ad8f5f84,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jonathanhogg/usepackage.git,1995-10-06 16:06:58+00:00,75b86134cfbd88d44789655fe0506a33225cb89a,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 10, 10, 0, 0, 0, 1, 3, 4, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 5, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 1, 0, 6, 4, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/jnunemaker/flipper,2012-07-22 12:39:38-07:00,8257cc68a9a2ff6fb6b3ae6c497b15309c4d0d7b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[45, 64, 24, 0, 0, 0, 0, 38, 3, 0, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0, 3, 48, 31, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0]",2,1,3,0 +https://github.com/Storyyeller/enjarify,2015-06-04 12:13:55-07:00,02c417d33da3c237ecf65afe84d4fb0c6f1b4286,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 1, 2, 3, 0, 2, 3, 4, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]",1,1,3,0 +https://github.com/pgbackrest/pgbackrest,2013-11-11 13:08:39-08:00,4a562eb55a691c0658b2f148703afacb38587b0d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 7, 2, 10, 15, 4, 0, 5, 20, 3, 8, 18, 19, 51, 14, 5, 12, 0, 0, 8, 8, 3, 0, 1, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0]",2,1,3,0 +https://anongit.kde.org/knavalbattle.git,2000-11-05 00:12:44+00:00,5ccdbce22406fbef0aace58d1ee4c4d8631ba003,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 39, 42, 5, 7, 5, 5, 14, 3, 0, 0, 4, 0, 6, 3, 7, 5, 0, 36, 14, 32, 2, 22, 23, 7, 22, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,15,0 +https://github.com/horde/mnemo.git,2010-04-07 09:51:45+02:00,ea2a9fb25f188f7ba1360757d6e48858db41b435,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[5, 4, 1, 1, 2, 16, 3, 1, 2, 0, 0, 5, 1, 2, 4, 2, 6, 0, 4, 9, 6, 4, 4, 0, 3, 7, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,5,0 +https://github.com/Electrostatics/apbs,2014-01-02 08:58:28-08:00,c86065cd47918595643d7971f79e6b8297c45c2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 2, 6, 2, 0, 0, 0, 0, 0, 0, 6, 3, 3, 0, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,4,0 +https://github.com/Yelp/py_zipkin,2016-08-04 10:58:27-07:00,db49ea751cbf763a51f53175357bed7ab5a9e96d,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 1, 0, 3, 15, 7, 0, 8, 3, 10, 5, 3, 4, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1]","[0, 0, 0, 0, 0, 1, 2, 0, 2, 1, 3, 2, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]",1,2,9,0 +https://github.com/mapbox/mapnik-vector-tile.git,2013-04-12 20:19:13-07:00,2ae215acc3757d9d96d569a565800155d64668b1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 2, 2, 2, 3, 0, 0, 2, 8, 0, 0, 2, 5, 9, 7, 1, 0, 0, 2, 0, 0, 0, 4, 2, 0, 0, 1]","[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0]",1,2,5,0 +https://github.com/lxqt/compton-conf.git,2013-11-08 17:43:56+08:00,012d32679b613047cd8882454cf9cb2b48f604ae,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/TooTallNate/node-bindings,2012-01-28 12:24:24-08:00,0becd8255f46985d677695a24feb55d6db438451,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[23, 6, 10, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/chef/ffi-yajl.git,2013-10-23 21:37:05-07:00,872073ee055ff8e72251e6483a7c4d7c1558013e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[9, 0, 0, 86, 25, 0, 19, 12, 33, 11, 9, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/01org/isa-l.git,2016-02-24 14:54:34-07:00,00c1efc109512678cb9536245032d995215e40d6,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[6, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/stompgem/stomp.git,2005-10-14 18:52:08+00:00,6991b0a97dcb607ec8e83d7301cd91d771cc5cef,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,2,0 +https://github.com/ebiggers/libdeflate.git,2014-12-27 23:11:49-06:00,6a982b7ac73f52be4832b18cc159c5405ab94a80,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/diyan/pywinrm.git,2012-07-06 08:25:55-07:00,f2479292f3a8e9fc00ffb871f8d1925e3e1a636c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 13, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]",1,1,0,0 +https://github.com/borntyping/python-colorlog.git,2012-09-05 18:57:08+01:00,430a6143b84fa18e3dd8ff29ff8aa1e164f35fc3,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[8, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,1,2,0 +https://github.com/libpd/abl_link.git,2016-11-04 09:58:28+01:00,6e4f4284e395321be95b558a2803afe3b0214a2e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 28, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[2, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",3,2,3,0 +https://github.com/digitalbazaar/rdf-canonize.git,2016-02-15 15:04:58-05:00,4bf24349b901769d0e568af656ceb69aee9616f1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/jaspernbrouwer/powerline-gitstatus.git,2015-01-29 21:13:57+01:00,5e88a900727c588fb4b5be2e1e2584ce55a00056,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/mnooner256/pyqrcode.git,2013-06-07 11:37:36-05:00,7c6340807ca02f6aa5f4e8d6a68c7318208f5fbb,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[14, 1, 4, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/aquynh/capstone,2013-11-26 18:32:11-08:00,0c91f8f0e7c0ed1f1b97911d52fa5504af5c60df,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[150, 69, 63, 58, 37, 68, 62, 56, 37, 11, 7, 14, 73, 61, 63, 16, 47, 69, 5, 50, 10, 32, 23, 74, 53, 34, 1]","[16, 7, 6, 6, 2, 4, 3, 2, 6, 1, 0, 3, 4, 3, 7, 5, 1, 4, 0, 5, 0, 1, 5, 7, 8, 3, 0]",1,4,20,0 +https://github.com/un33k/python-slugify,2012-10-14 18:44:50-07:00,be60050791262776db3c59ff6c4bf7da7c2a1b43,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,0,0,0 +https://github.com/swaywm/wlroots,2017-04-25 11:32:52-04:00,52e6ed54cbaf05cd1829099e04427d1706ca0da4,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[12, 12, 13, 0, 0, 21, 31, 25, 45, 10, 11, 11, 4, 6, 39, 138, 72, 52, 26, 22, 19, 61, 155, 144, 55, 79, 1]","[0, 0, 4, 0, 0, 3, 2, 4, 6, 1, 1, 2, 2, 3, 5, 27, 20, 4, 5, 6, 1, 10, 24, 36, 13, 30, 0]",1,6,18,0 +https://github.com/Talinx/jp2a,2006-06-23 11:07:55+00:00,40e1edcdc36c0347cbef7091d41860c127ce7d47,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[44, 0, 139, 100, 64, 32, 0, 11, 0, 12, 5, 1, 6, 11, 3, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/davesteele/aioprocessing,2014-07-28 19:51:59-04:00,79eceb06286d2a800e9cfa49c017ba7a7df4b40b,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[18, 6, 13, 8, 0, 11, 20, 7, 1, 6, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",2,1,0,0 +https://gitlab.gnome.org/GNOME/gnome-chess.git,2006-10-28 16:37:30+00:00,3ab0fee0434bce55452e70c5d73ef713e0de214c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 9, 4, 3, 7, 8, 7, 5, 6, 15, 5, 2, 3, 6, 1, 4, 0, 0, 0, 6, 4, 1, 0, 1, 0, 8, 1]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,5,0 +https://github.com/cloudpipe/cloudpickle,2015-04-13 12:33:00-04:00,7e3123747f3817552845fa3b59f4db987eac1cba,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[83, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 1, 0, 0, 0, 0, 0, 1]","[24, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]",2,4,6,0 +https://github.com/puppetlabs/puppetlabs-mysql,2011-05-31 20:47:19-07:00,344d644d5c92c69fa53d448ded087dc32b3cc3e1,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[7, 0, 12, 10, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 1]","[1, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0]",1,3,8,0 +https://github.com/MatMoul/g810-led.git,2016-06-12 22:16:07+02:00,fdc8220e70db692a40ae0fb5452bbed779ccef78,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[25, 1, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 3, 7, 1, 0, 15, 8, 1]","[1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 2, 0]",1,2,7,0 +https://github.com/UbuntuBudgie/budgie-indicator-applet,2016-10-29 13:40:37+01:00,caf95a9e6f84ddd426208d7ad275e1ce124c156e,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 17, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",0,0,2,0 +https://github.com/mhekkel/libzeep.git,2008-11-21 14:52:04+00:00,5fd2b004a10ad1def71c3cb6acfdaca1062afa6c,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 18, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[16, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,0,0 +https://github.com/rvagg/node-errno,2012-04-30 14:10:12+10:00,399d0cacbdab29ea54fcf19239a4301cd7b24fbf,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]",1,0,1,0 +https://github.com/fossfreedom/alternative-toolbar,2014-12-22 23:19:52+00:00,267c6eb020e60f303b30d333612b4ccf5b6182cc,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[13, 0, 5, 9, 4, 0, 2, 0, 2, 2, 0, 3, 7, 7, 19, 8, 20, 20, 12, 28, 11, 20, 11, 3, 1, 0, 1]","[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 1, 1, 1, 0, 0, 0, 0]",2,2,2,0 +https://github.com/awesomeWM/awesome.git,2007-09-05 20:15:00+02:00,f7173bd79df77a155444663a262dfc5b0f9f0f42,"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]","[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]","[87, 119, 35, 72, 41, 76, 16, 51, 1, 96, 28, 16, 6, 8, 99, 28, 127, 132, 42, 129, 93, 35, 43, 0, 14, 16, 1]","[2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]",1,1,22,0