From e8dc51b0ce20eab43062eb39b791dca1bfd42147 Mon Sep 17 00:00:00 2001 From: mose Date: Thu, 5 Sep 2019 06:52:47 +0800 Subject: [PATCH] various small adjustments, renaming tsunamis by topics because we gonna extend it to the categories at some point --- scripts/common/charthelper.py | 36 +++++----- scripts/generate_chat_stat_daily.py | 32 ++++----- scripts/generate_chat_stat_monthly.py | 32 ++++----- site/coastats.html | 6 +- site/coastats.js | 100 +++++++++++++------------- site/data/chat_stat_daily.json | 2 +- site/data/chat_stat_monthly.json | 2 +- site/site.webmanifest | 34 ++++----- 8 files changed, 124 insertions(+), 120 deletions(-) diff --git a/scripts/common/charthelper.py b/scripts/common/charthelper.py index e5aad4a..bfbbb39 100644 --- a/scripts/common/charthelper.py +++ b/scripts/common/charthelper.py @@ -13,32 +13,32 @@ def createElement(label, color, data) : "data": data } -def setTsunamyInfo(tsunamy, messagesDataTsunamy, id, length): - if tsunamy & Tsunami.GLOBAL: - messagesDataTsunamy[Tsunami.GLOBAL][id] += length - if tsunamy & Tsunami.PROJECT: - messagesDataTsunamy[Tsunami.PROJECT][id] += length - if tsunamy & Tsunami.DEMOCRACY: - messagesDataTsunamy[Tsunami.DEMOCRACY][id] += length - if tsunamy & Tsunami.ECOLOGY: - messagesDataTsunamy[Tsunami.ECOLOGY][id] += length - if tsunamy & Tsunami.TECHNOLOGY: - messagesDataTsunamy[Tsunami.TECHNOLOGY][id] += length +def setTopicInfo(tsunamy, messagesDataTopic, id, length): + if tsunamy & Topics.GLOBAL: + messagesDataTopic[Topics.GLOBAL][id] += length + if tsunamy & Topics.PROJECT: + messagesDataTopic[Topics.PROJECT][id] += length + if tsunamy & Topics.DEMOCRACY: + messagesDataTopic[Topics.DEMOCRACY][id] += length + if tsunamy & Topics.ECOLOGY: + messagesDataTopic[Topics.ECOLOGY][id] += length + if tsunamy & Topics.TECHNOLOGY: + messagesDataTopic[Topics.TECHNOLOGY][id] += length -def getTsunamy(channel): - value = Tsunami.GLOBAL +def getTopic(channel): + value = Topics.GLOBAL if 'description' in channel: if channel['description'].find("#projet") != -1: - value |= Tsunami.PROJECT + value |= Topics.PROJECT if channel['description'].find("#democratie") != -1: - value |= Tsunami.DEMOCRACY + value |= Topics.DEMOCRACY if channel['description'].find("#ecologie") != -1: - value |= Tsunami.ECOLOGY + value |= Topics.ECOLOGY if channel['description'].find("#technologie") != -1: - value |= Tsunami.TECHNOLOGY + value |= Topics.TECHNOLOGY return value -class Tsunami: +class Topics: GLOBAL = 1 << 0 PROJECT = 1 << 1 DEMOCRACY = 1 << 2 diff --git a/scripts/generate_chat_stat_daily.py b/scripts/generate_chat_stat_daily.py index 3014183..e433de6 100644 --- a/scripts/generate_chat_stat_daily.py +++ b/scripts/generate_chat_stat_daily.py @@ -11,7 +11,7 @@ import random from datetime import datetime, timedelta from common.rocketchathelper import getAllChannels, getAllMessages, Connection from common.savehelper import save -from common.charthelper import createElement, getColor, setTsunamyInfo, getTsunamy, Tsunami +from common.charthelper import createElement, getColor, setTopicInfo, getTopic, Topics begin = datetime.now() end = datetime.now() @@ -25,12 +25,12 @@ def main(): labels = [None] * nbElements messagesByChannel = [] usersByChannel = [] - messagesDataTsunamy = { - Tsunami.GLOBAL: [0] * nbElements, - Tsunami.PROJECT: [0] * nbElements, - Tsunami.DEMOCRACY: [0] * nbElements, - Tsunami.ECOLOGY: [0] * nbElements, - Tsunami.TECHNOLOGY: [0] * nbElements, + messagesDataTopic = { + Topics.GLOBAL: [0] * nbElements, + Topics.PROJECT: [0] * nbElements, + Topics.DEMOCRACY: [0] * nbElements, + Topics.ECOLOGY: [0] * nbElements, + Topics.TECHNOLOGY: [0] * nbElements, } usersGlobal = [] @@ -38,16 +38,16 @@ def main(): date = datetime(now.year, now.month, now.day, 0,0,0) info = { - "updated": "updated {:02}/{:02}/{:04}".format(now.day, now.month, now.year), + "updated": "{:02}/{:02}/{:04}".format(now.day, now.month, now.year), "labels": labels, "messagesByChannel": messagesByChannel, "usersByChannel": usersByChannel, - "messagesByTsunamy": [ - createElement("global", getColor(), messagesDataTsunamy[Tsunami.GLOBAL]), - createElement("project", getColor(), messagesDataTsunamy[Tsunami.PROJECT]), - createElement("democratie", getColor(), messagesDataTsunamy[Tsunami.DEMOCRACY]), - createElement("ecologie", getColor(), messagesDataTsunamy[Tsunami.ECOLOGY]), - createElement("technologie", getColor(), messagesDataTsunamy[Tsunami.TECHNOLOGY]) + "messagesByTopic": [ + createElement("global", getColor(), messagesDataTopic[Topics.GLOBAL]), + createElement("project", getColor(), messagesDataTopic[Topics.PROJECT]), + createElement("democratie", getColor(), messagesDataTopic[Topics.DEMOCRACY]), + createElement("ecologie", getColor(), messagesDataTopic[Topics.ECOLOGY]), + createElement("technologie", getColor(), messagesDataTopic[Topics.TECHNOLOGY]) ], "usersGlobal": usersGlobal } @@ -61,7 +61,7 @@ def main(): begin = date - timedelta(nbElements) end = begin + timedelta(nbElements) - tsunamy = getTsunamy(channel) + tsunamy = getTopic(channel) messages = getAllMessages(rocket, channel['_id'], begindate= begin, enddate= end, count= channel["msgs"]) end = begin + timedelta(1) @@ -77,7 +77,7 @@ def main(): dataMess.append(length) if length > 0: - setTsunamyInfo(tsunamy, messagesDataTsunamy, id, length) + setTopicInfo(tsunamy, messagesDataTopic, id, length) users = [] for mess in resultMess: diff --git a/scripts/generate_chat_stat_monthly.py b/scripts/generate_chat_stat_monthly.py index 602874a..34fc9c8 100644 --- a/scripts/generate_chat_stat_monthly.py +++ b/scripts/generate_chat_stat_monthly.py @@ -12,7 +12,7 @@ from datetime import datetime from monthdelta import monthdelta from common.rocketchathelper import getAllChannels, getAllMessages, Connection from common.savehelper import save -from common.charthelper import createElement, getColor, setTsunamyInfo, Tsunami, getTsunamy +from common.charthelper import createElement, getColor, setTopicInfo, Topics, getTopic begin = datetime.now() end = datetime.now() @@ -26,12 +26,12 @@ def main(): labels = [None] * 12 messagesByChannel = [] usersByChannel = [] - messagesDataTsunamy = { - Tsunami.GLOBAL: [0] * 12, - Tsunami.PROJECT: [0] * 12, - Tsunami.DEMOCRACY: [0] * 12, - Tsunami.ECOLOGY: [0] * 12, - Tsunami.TECHNOLOGY: [0] * 12, + messagesDataTopic = { + Topics.GLOBAL: [0] * 12, + Topics.PROJECT: [0] * 12, + Topics.DEMOCRACY: [0] * 12, + Topics.ECOLOGY: [0] * 12, + Topics.TECHNOLOGY: [0] * 12, } usersGlobal = [] @@ -39,16 +39,16 @@ def main(): date = datetime(now.year, now.month, now.day, 0,0,0) info = { - "updated": "updated {:02}/{:02}/{:04}".format(now.day, now.month, now.year), + "updated": "{:02}/{:02}/{:04}".format(now.day, now.month, now.year), "labels": labels, "messagesByChannel": messagesByChannel, "usersByChannel": usersByChannel, - "messagesByTsunamy": [ - createElement("global", getColor(), messagesDataTsunamy[Tsunami.GLOBAL]), - createElement("project", getColor(), messagesDataTsunamy[Tsunami.PROJECT]), - createElement("democratie", getColor(), messagesDataTsunamy[Tsunami.DEMOCRACY]), - createElement("ecologie", getColor(), messagesDataTsunamy[Tsunami.ECOLOGY]), - createElement("technologie", getColor(), messagesDataTsunamy[Tsunami.TECHNOLOGY]) + "messagesByTopic": [ + createElement("global", getColor(), messagesDataTopic[Topics.GLOBAL]), + createElement("project", getColor(), messagesDataTopic[Topics.PROJECT]), + createElement("democratie", getColor(), messagesDataTopic[Topics.DEMOCRACY]), + createElement("ecologie", getColor(), messagesDataTopic[Topics.ECOLOGY]), + createElement("technologie", getColor(), messagesDataTopic[Topics.TECHNOLOGY]) ], "usersGlobal": usersGlobal } @@ -64,7 +64,7 @@ def main(): messages = getAllMessages(rocket, channel['_id'], begindate= begin, enddate=date, count= channel['msgs']) - tsunamy = getTsunamy(channel) + tsunamy = getTopic(channel) for id in range(0, 12): if uniqueUserGlobal[id] == None: @@ -77,7 +77,7 @@ def main(): dataMess.append(length) if length > 0: - setTsunamyInfo(tsunamy, messagesDataTsunamy, id, length) + setTopicInfo(tsunamy, messagesDataTopic, id, length) users = [] for mess in resultMess: diff --git a/site/coastats.html b/site/coastats.html index fec7ab0..8053657 100644 --- a/site/coastats.html +++ b/site/coastats.html @@ -56,7 +56,7 @@
- +
@@ -67,11 +67,11 @@
- + - +
diff --git a/site/coastats.js b/site/coastats.js index 410a31d..2518956 100644 --- a/site/coastats.js +++ b/site/coastats.js @@ -1,55 +1,59 @@ $(document).ready(function () { - $.getJSON("data/chat_stat_monthly.json", function (data) { - updated = data.updated; - labels = data.labels; - graphDisplay($('#byChannel'), data.messagesByChannel, "Nombre de messages par canal sur 1 an (" + updated + ")"); - graphDisplay($('#byTsunamy'), data.messagesByTsunamy, "Nombre de messages par Tsunami sur 1 an (" + updated + ")"); - graphDisplay($("#usersByChannel"), data.usersByChannel, "Nombre d'utilisateurs actifs par canal sur 1 an (" + updated + ")"); - graphDisplay($("#usersGlobal"), data.usersGlobal, "Nombre d'utilisateurs actifs sur 1 an (" + updated + ")"); - }); - $.getJSON("data/chat_stat_daily.json", function (data) { - updated = data.updated; - labels = data.labels; - graphDisplay($('#byChannel_daily'), data.messagesByChannel, "Nombre de messages par canal sur 30 jours (" + updated + ")"); - graphDisplay($('#byTsunamy_daily'), data.messagesByTsunamy, "Nombre de messages par Tsunami sur 30 jours (" + updated + ")"); - graphDisplay($("#usersByChannel_daily"), data.usersByChannel, "Nombre d'utilisateurs actifs par canal sur 30 jours (" + updated + ")"); - graphDisplay($("#usersGlobal_daily"), data.usersGlobal, "Nombre d'utilisateurs actifs sur 30 jours (" + updated + ")"); - }); + + $.getJSON("data/chat_stat_monthly.json", function (data) { + updated = "mise à jour " + data.updated; + labels = data.labels; + console.log(data); + graphDisplay($('#byChannel'), data.messagesByChannel, "Nombre de messages par canal sur 1 an (" + updated + ")"); + graphDisplay($('#byTopic'), data.messagesByTopic, "Nombre de messages par thème sur 1 an (" + updated + ")"); + graphDisplay($("#usersByChannel"), data.usersByChannel, "Nombre d'utilisateurs actifs par canal sur 1 an (" + updated + ")"); + graphDisplay($("#usersGlobal"), data.usersGlobal, "Nombre d'utilisateurs actifs sur 1 an (" + updated + ")"); + }); + + $.getJSON("data/chat_stat_daily.json", function (data) { + updated = "mise à jour " + data.updated; + labels = data.labels; + graphDisplay($('#byChannel_daily'), data.messagesByChannel, "Nombre de messages par canal sur 30 jours (" + updated + ")"); + graphDisplay($('#byTopic_daily'), data.messagesByTopic, "Nombre de messages par thème sur 30 jours (" + updated + ")"); + graphDisplay($("#usersByChannel_daily"), data.usersByChannel, "Nombre d'utilisateurs actifs par canal sur 30 jours (" + updated + ")"); + graphDisplay($("#usersGlobal_daily"), data.usersGlobal, "Nombre d'utilisateurs actifs sur 30 jours (" + updated + ")"); + }); + }); function graphDisplay(ctx, data, title) { - new Chart(ctx, { - // The type of chart we want to create - type: 'bar', + new Chart(ctx, { + // The type of chart we want to create + type: 'bar', - // The data for our dataset - data: { - labels: labels, - datasets: data, - }, + // The data for our dataset + data: { + labels: labels, + datasets: data, + }, - // Configuration options go here - options: { - legend: { - display: false - }, - title: { - display: true, - text: title, - position: "top" - }, - responsive: true, - scales: { - xAxes: [{ - stacked: true - }], - yAxes: [{ - stacked: true, - ticks: { - stepSize: 500 - } - }] - } - } - }); + // Configuration options go here + options: { + legend: { + display: false + }, + title: { + display: true, + text: title, + position: "top" + }, + responsive: true, + scales: { + xAxes: [{ + stacked: true + }], + yAxes: [{ + stacked: true, + ticks: { + stepSize: 500 + } + }] + } + } + }); } \ No newline at end of file diff --git a/site/data/chat_stat_daily.json b/site/data/chat_stat_daily.json index 27dc759..4c39cb6 100644 --- a/site/data/chat_stat_daily.json +++ b/site/data/chat_stat_daily.json @@ -1 +1 @@ -{"updated": "updated 04/09/2019", "labels": ["08/05/19", "08/06/19", "08/07/19", "08/08/19", "08/09/19", "08/10/19", "08/11/19", "08/12/19", "08/13/19", "08/14/19", "08/15/19", "08/16/19", "08/17/19", "08/18/19", "08/19/19", "08/20/19", "08/21/19", "08/22/19", "08/23/19", "08/24/19", "08/25/19", "08/26/19", "08/27/19", "08/28/19", "08/29/19", "08/30/19", "08/31/19", "09/01/19", "09/02/19", "09/03/19"], "messagesByChannel": [{"label": "accueil", "backgroundColor": "rgb(19,65,235)", "data": [9, 77, 62, 10, 48, 97, 13, 20, 26, 1, 3, 9, 1, 9, 11, 14, 6, 108, 24, 4, 1, 42, 30, 3, 9, 38, 7, 0, 37, 15]}, {"label": "activite-et-travail", "backgroundColor": "rgb(29,78,181)", "data": [1, 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]}, {"label": "agenda", "backgroundColor": "rgb(190,67,56)", "data": [1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 4, 5, 9, 1, 6]}, {"label": "algoculture", "backgroundColor": "rgb(93,107,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "animation-crapauds", "backgroundColor": "rgb(18,155,170)", "data": [0, 0, 7, 5, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 6, 2, 0, 13, 51, 183, 9, 26, 0, 0, 0, 0]}, {"label": "aquaponie", "backgroundColor": "rgb(71,158,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(29,228,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(13,26,190)", "data": [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]}, {"label": "avoirouetre", "backgroundColor": "rgb(238,247,118)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(89,130,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bresil", "backgroundColor": "rgb(70,73,166)", "data": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 95, 0, 44, 3, 1]}, {"label": "burn-out", "backgroundColor": "rgb(173,234,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(244,19,187)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(115,216,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(103,65,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 3, 1, 2, 3, 0, 0, 1, 0]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(99,86,124)", "data": [0, 46, 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]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(235,19,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 3, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(217,202,216)", "data": [0, 0, 0, 0, 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 0, 26, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(220,142,249)", "data": [0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(56,211,178)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(199,99,225)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 9, 0, 1, 1, 0, 0, 0]}, {"label": "cercle-education", "backgroundColor": "rgb(251,36,18)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 23, 0, 0, 1, 0, 1, 0, 3, 15, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-electronique", "backgroundColor": "rgb(41,6,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(4,227,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(85,192,245)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(235,6,57)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(129,26,158)", "data": [0, 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, 5]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(69,159,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(25,105,34)", "data": [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]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(133,149,158)", "data": [0, 1, 0, 2, 10, 0, 0, 0, 0, 33, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(53,213,192)", "data": [0, 0, 0, 19, 0, 0, 0, 6, 2, 13, 1, 11, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 2, 7]}, {"label": "cercle-sante", "backgroundColor": "rgb(42,22,203)", "data": [0, 0, 3, 0, 0, 0, 5, 5, 3, 22, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(137,131,11)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(128,112,231)", "data": [0, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 63]}, {"label": "chanvre", "backgroundColor": "rgb(24,235,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(209,219,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(120,177,119)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(218,81,128)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(166,0,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(231,8,213)", "data": [0, 0, 9, 1, 0, 0, 5, 6, 3, 2, 8, 2, 1, 0, 29, 33, 15, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(228,127,101)", "data": [0, 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]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(239,63,36)", "data": [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]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(195,83,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(241,95,218)", "data": [0, 0, 23, 21, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 4, 3, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1]}, {"label": "cohorte-centre", "backgroundColor": "rgb(167,157,69)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(59,244,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(125,178,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(237,238,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(104,124,141)", "data": [1, 2, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 7, 3, 0, 0, 0, 0, 0]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(46,200,123)", "data": [0, 0, 41, 7, 1, 0, 0, 7, 31, 0, 0, 0, 16, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 3]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(129,140,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(73,136,156)", "data": [0, 5, 1, 41, 0, 1, 0, 0, 0, 1, 1, 3, 0, 0, 14, 9, 3, 17, 115, 1, 0, 8, 6, 0, 4, 2, 0, 0, 0, 0]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(89,229,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(102,146,65)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paca", "backgroundColor": "rgb(217,46,212)", "data": [0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(40,246,136)", "data": [0, 0, 0, 0, 0, 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]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(168,118,98)", "data": [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]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(219,252,236)", "data": [0, 0, 0, 0, 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]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(217,41,19)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(72,118,226)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(161,61,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(140,99,41)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(232,254,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(218,152,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 187, 173, 16, 26, 3, 0, 0, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(90,63,1)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 18, 15, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(144,63,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(22,28,54)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(8,135,98)", "data": [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]}, {"label": "developpement-personnel", "backgroundColor": "rgb(127,26,185)", "data": [0, 0, 1, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 1, 23, 1]}, {"label": "doughnut-economics", "backgroundColor": "rgb(118,151,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(167,197,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(97,109,151)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(208,72,13)", "data": [0, 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 11, 7, 10, 17, 3, 6, 1, 5, 0, 0, 0, 0, 0, 1, 1, 34]}, {"label": "education-populaire", "backgroundColor": "rgb(157,18,127)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(123,235,62)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(164,6,239)", "data": [0, 0, 0, 0, 0, 4, 4, 8, 0, 0, 8, 19, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(95,177,10)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(241,73,219)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(37,64,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(67,206,225)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(73,214,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(130,231,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(216,51,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(138,166,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(237,57,121)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(148,206,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(49,85,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(182,213,64)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(95,152,10)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(136,244,36)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(228,127,92)", "data": [5, 51, 101, 34, 7, 9, 102, 20, 5, 82, 5, 0, 86, 2, 29, 60, 90, 5, 16, 68, 15, 97, 17, 14, 15, 36, 57, 29, 200, 21]}, {"label": "geopolitique", "backgroundColor": "rgb(3,135,225)", "data": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(192,82,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(216,31,71)", "data": [0, 0, 4, 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]}, {"label": "godelescherbach", "backgroundColor": "rgb(218,86,39)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(243,213,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(108,121,221)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(79,101,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(0,51,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(46,190,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(119,114,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(110,214,200)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 96, 0, 5, 0, 0, 0]}, {"label": "impression-3d", "backgroundColor": "rgb(60,216,34)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(97,120,174)", "data": [0, 0, 0, 0, 0, 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]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(185,97,50)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "intelligence-collective", "backgroundColor": "rgb(58,15,72)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(213,108,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(220,83,189)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(113,220,193)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(245,141,78)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(94,38,78)", "data": [15, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 9, 3, 9, 0, 0, 0, 0, 0]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(245,178,7)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(188,99,150)", "data": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(195,234,222)", "data": [0, 0, 0, 0, 0, 0, 18, 22, 2, 0, 0, 1, 47, 24, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(223,75,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(139,16,198)", "data": [14, 24, 0, 0, 0, 0, 2, 3, 32, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 2, 7]}, {"label": "libre", "backgroundColor": "rgb(199,233,9)", "data": [0, 2, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188, 2, 2, 6, 21, 21, 3, 270, 12, 0, 0, 1, 8, 0, 37, 0, 0]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(145,207,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(97,18,25)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(139,17,96)", "data": [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, 0, 0, 0, 0, 0]}, {"label": "lucarn", "backgroundColor": "rgb(221,46,233)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 116, 8, 91, 2, 23]}, {"label": "manuel-terrien", "backgroundColor": "rgb(154,251,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(157,107,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(142,202,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "medusa", "backgroundColor": "rgb(22,22,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(123,22,41)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(90,155,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(30,189,191)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(123,82,153)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(50,162,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(215,20,169)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(125,72,48)", "data": [0, 0, 0, 0, 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]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(206,37,57)", "data": [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, 0, 0, 0, 0, 0]}, {"label": "no-gafam", "backgroundColor": "rgb(133,0,40)", "data": [0, 0, 7, 6, 3, 1, 0, 0, 0, 22, 18, 8, 0, 4, 85, 9, 29, 0, 0, 1, 0, 0, 1, 12, 1, 3, 0, 0, 3, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(177,7,188)", "data": [0, 0, 0, 0, 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]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(16,62,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(2,237,135)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(168,39,23)", "data": [0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(228,117,145)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(132,27,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "philosophie", "backgroundColor": "rgb(82,3,138)", "data": [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]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(63,47,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(146,117,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(33,145,81)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(214,218,55)", "data": [0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(42,15,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 44, 1, 0, 0, 0, 0, 0, 7, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(20,23,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(161,248,193)", "data": [0, 3, 1, 0, 109, 11, 0, 8, 0, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 1]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(124,93,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(101,236,215)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(142,143,73)", "data": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0]}, {"label": "pub-canaux", "backgroundColor": "rgb(243,128,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(62,47,215)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recherches-biologie", "backgroundColor": "rgb(246,103,161)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(6,231,7)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(19,55,104)", "data": [6, 1, 0, 6, 4, 0, 0, 4, 3, 150, 0, 0, 104, 2, 2, 25, 12, 3, 5, 0, 0, 36, 0, 0, 2, 0, 36, 1, 0, 0]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(106,226,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 48, 10, 22, 63, 94, 94, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(206,78,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(229,62,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(145,211,102)", "data": [0, 210, 22, 44, 3, 225, 41, 5, 0, 0, 0, 0, 6, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 1, 0, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(132,243,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(132,38,83)", "data": [96, 30, 4, 36, 31, 28, 56, 40, 53, 30, 10, 50, 21, 24, 16, 23, 63, 33, 31, 0, 0, 62, 33, 68, 20, 47, 14, 112, 7, 118]}, {"label": "siteweb", "backgroundColor": "rgb(45,28,38)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 24, 3, 48, 8, 16]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(150,135,50)", "data": [1, 5, 0, 0, 0, 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]}, {"label": "solucracy", "backgroundColor": "rgb(250,219,127)", "data": [0, 9, 6, 5, 8, 43, 0, 0, 9, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 26, 0, 0, 0, 1, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(130,211,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(146,197,60)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(204,71,215)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(220,35,113)", "data": [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, 0, 0, 0]}, {"label": "techos", "backgroundColor": "rgb(79,150,210)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 23, 17, 0, 0, 1, 378, 161, 55, 20, 112, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(112,172,49)", "data": [0, 0, 0, 0, 0, 8, 5, 10, 10, 1, 13, 39, 0, 0, 14, 12, 0, 0, 0, 0, 2, 79, 0, 0, 0, 5, 10, 0, 0, 1]}, {"label": "testbot", "backgroundColor": "rgb(134,41,156)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(24,170,225)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 11, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(222,167,228)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(32,239,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(192,12,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(183,110,48)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(3,13,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(243,220,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(116,66,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(109,149,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(138,148,135)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(70,74,218)", "data": [8, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 7, 1, 2, 35, 0, 9, 0, 0, 0, 5, 0, 2]}, {"label": "zero-dechet", "backgroundColor": "rgb(188,5,176)", "data": [0, 0, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(73,125,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(19,65,235)", "data": [4, 9, 4, 6, 10, 5, 5, 5, 7, 1, 3, 4, 1, 3, 3, 6, 4, 7, 4, 3, 1, 8, 9, 1, 3, 9, 2, 0, 3, 4]}, {"label": "activite-et-travail", "backgroundColor": "rgb(29,78,181)", "data": [1, 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]}, {"label": "agenda", "backgroundColor": "rgb(190,67,56)", "data": [1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 3, 1, 2, 1, 3]}, {"label": "algoculture", "backgroundColor": "rgb(93,107,103)", "data": [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]}, {"label": "animation-crapauds", "backgroundColor": "rgb(18,155,170)", "data": [0, 0, 5, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 3, 5, 7, 3, 7, 0, 0, 0, 0]}, {"label": "aquaponie", "backgroundColor": "rgb(71,158,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(29,228,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(13,26,190)", "data": [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]}, {"label": "avoirouetre", "backgroundColor": "rgb(238,247,118)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(89,130,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bresil", "backgroundColor": "rgb(70,73,166)", "data": [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, 2, 0, 2, 1, 1]}, {"label": "burn-out", "backgroundColor": "rgb(173,234,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(244,19,187)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(115,216,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(103,65,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 1, 2, 2, 0, 0, 1, 0]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(99,86,124)", "data": [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]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(235,19,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(217,202,216)", "data": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(220,142,249)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(56,211,178)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(199,99,225)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 1, 1, 0, 0, 0]}, {"label": "cercle-education", "backgroundColor": "rgb(251,36,18)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 6, 0, 0, 1, 0, 1, 0, 2, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-electronique", "backgroundColor": "rgb(41,6,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(4,227,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(85,192,245)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(235,6,57)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(129,26,158)", "data": [0, 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, 2]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(69,159,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(25,105,34)", "data": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(133,149,158)", "data": [0, 1, 0, 2, 3, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(53,213,192)", "data": [0, 0, 0, 4, 0, 0, 0, 3, 2, 3, 1, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 2, 3]}, {"label": "cercle-sante", "backgroundColor": "rgb(42,22,203)", "data": [0, 0, 2, 0, 0, 0, 1, 3, 2, 3, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(137,131,11)", "data": [0, 0, 0, 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]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(128,112,231)", "data": [0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4]}, {"label": "chanvre", "backgroundColor": "rgb(24,235,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(209,219,87)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(120,177,119)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(218,81,128)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(166,0,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(231,8,213)", "data": [0, 0, 4, 1, 0, 0, 4, 4, 1, 2, 2, 2, 1, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(228,127,101)", "data": [0, 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]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(239,63,36)", "data": [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]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(195,83,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(241,95,218)", "data": [0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1]}, {"label": "cohorte-centre", "backgroundColor": "rgb(167,157,69)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(59,244,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(125,178,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(237,238,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(104,124,141)", "data": [1, 1, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(46,200,123)", "data": [0, 0, 3, 3, 1, 0, 0, 3, 2, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 1]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(129,140,131)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(73,136,156)", "data": [0, 3, 1, 3, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 3, 3, 2, 2, 5, 1, 0, 4, 1, 0, 2, 2, 0, 0, 0, 0]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(89,229,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(102,146,65)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paca", "backgroundColor": "rgb(217,46,212)", "data": [0, 0, 1, 1, 1, 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]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(40,246,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(168,118,98)", "data": [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]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(219,252,236)", "data": [0, 0, 0, 0, 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]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(217,41,19)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(72,118,226)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(161,61,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(140,99,41)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(232,254,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(218,152,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 3, 5, 2, 0, 0, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(90,63,1)", "data": [0, 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, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(144,63,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(22,28,54)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(8,135,98)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "developpement-personnel", "backgroundColor": "rgb(127,26,185)", "data": [0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 3, 1]}, {"label": "doughnut-economics", "backgroundColor": "rgb(118,151,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(167,197,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(97,109,151)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(208,72,13)", "data": [0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 5, 5, 4, 5, 1, 3, 1, 3, 0, 0, 0, 0, 0, 1, 1, 2]}, {"label": "education-populaire", "backgroundColor": "rgb(157,18,127)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(123,235,62)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(164,6,239)", "data": [0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 3, 3, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(95,177,10)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(241,73,219)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(37,64,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(67,206,225)", "data": [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]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(73,214,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(130,231,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(216,51,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(138,166,251)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(237,57,121)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(148,206,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(49,85,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(182,213,64)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(95,152,10)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(136,244,36)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(228,127,92)", "data": [3, 5, 10, 9, 3, 5, 7, 5, 4, 9, 3, 0, 4, 1, 9, 8, 9, 4, 6, 6, 3, 9, 4, 7, 5, 7, 7, 5, 5, 7]}, {"label": "geopolitique", "backgroundColor": "rgb(3,135,225)", "data": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(192,82,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(216,31,71)", "data": [0, 0, 4, 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]}, {"label": "godelescherbach", "backgroundColor": "rgb(218,86,39)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(243,213,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(108,121,221)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(79,101,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(0,51,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(46,190,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(119,114,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(110,214,200)", "data": [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, 2, 0, 0, 0]}, {"label": "impression-3d", "backgroundColor": "rgb(60,216,34)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(97,120,174)", "data": [0, 0, 0, 0, 0, 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]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(185,97,50)", "data": [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, 2]}, {"label": "intelligence-collective", "backgroundColor": "rgb(58,15,72)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(213,108,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(220,83,189)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(113,220,193)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(245,141,78)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(94,38,78)", "data": [2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 2, 2, 0, 0, 0, 0, 0]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(245,178,7)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(188,99,150)", "data": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(195,234,222)", "data": [0, 0, 0, 0, 0, 0, 3, 4, 2, 0, 0, 1, 7, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(223,75,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(139,16,198)", "data": [3, 2, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 2]}, {"label": "libre", "backgroundColor": "rgb(199,233,9)", "data": [0, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 2, 3, 7, 5, 2, 5, 3, 0, 0, 1, 3, 0, 3, 0, 0]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(145,207,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(97,18,25)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(139,17,96)", "data": [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]}, {"label": "lucarn", "backgroundColor": "rgb(221,46,233)", "data": [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, 7, 2, 7, 1, 4]}, {"label": "manuel-terrien", "backgroundColor": "rgb(154,251,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(157,107,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(142,202,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "medusa", "backgroundColor": "rgb(22,22,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(123,22,41)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(90,155,106)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(30,189,191)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(123,82,153)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(50,162,18)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(215,20,169)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(125,72,48)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(206,37,57)", "data": [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]}, {"label": "no-gafam", "backgroundColor": "rgb(133,0,40)", "data": [0, 0, 2, 5, 1, 1, 0, 0, 0, 1, 2, 1, 0, 3, 5, 6, 4, 0, 0, 1, 0, 0, 1, 5, 1, 2, 0, 0, 2, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(177,7,188)", "data": [0, 0, 0, 0, 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]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(16,62,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(2,237,135)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(168,39,23)", "data": [0, 0, 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, 0, 0, 0]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(228,117,145)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(132,27,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "philosophie", "backgroundColor": "rgb(82,3,138)", "data": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(63,47,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(146,117,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(33,145,81)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(214,218,55)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(42,15,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 3, 1, 0, 0, 0, 0, 0, 2, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(20,23,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(161,248,193)", "data": [0, 1, 1, 0, 2, 2, 0, 4, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 1]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(124,93,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(101,236,215)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(142,143,73)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]}, {"label": "pub-canaux", "backgroundColor": "rgb(243,128,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(62,47,215)", "data": [1, 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]}, {"label": "recherches-biologie", "backgroundColor": "rgb(246,103,161)", "data": [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]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(6,231,7)", "data": [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]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(19,55,104)", "data": [2, 1, 0, 2, 3, 0, 0, 3, 1, 8, 0, 0, 7, 1, 2, 6, 3, 2, 4, 0, 0, 4, 0, 0, 2, 0, 4, 1, 0, 0]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(106,226,142)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 2, 3, 4, 7, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(206,78,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(229,62,240)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(145,211,102)", "data": [0, 7, 4, 5, 1, 9, 4, 2, 0, 0, 0, 0, 2, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(132,243,220)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(132,38,83)", "data": [8, 7, 2, 6, 5, 6, 6, 7, 6, 5, 3, 6, 5, 9, 4, 6, 7, 5, 7, 0, 0, 6, 5, 7, 4, 8, 4, 5, 2, 4]}, {"label": "siteweb", "backgroundColor": "rgb(45,28,38)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 3, 3, 3]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(150,135,50)", "data": [1, 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, 1]}, {"label": "solucracy", "backgroundColor": "rgb(250,219,127)", "data": [0, 5, 2, 2, 2, 6, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 1, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(130,211,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(146,197,60)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(204,71,215)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(220,35,113)", "data": [0, 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]}, {"label": "techos", "backgroundColor": "rgb(79,150,210)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 4, 3, 0, 0, 1, 8, 5, 6, 4, 5, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(112,172,49)", "data": [0, 0, 0, 0, 0, 2, 2, 2, 2, 1, 4, 4, 0, 0, 4, 3, 0, 0, 0, 0, 1, 5, 0, 0, 0, 3, 3, 0, 0, 1]}, {"label": "testbot", "backgroundColor": "rgb(134,41,156)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(24,170,225)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 5, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(222,167,228)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(32,239,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(192,12,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(183,110,48)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(3,13,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(243,220,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(116,66,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(109,149,95)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(138,148,135)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(70,74,218)", "data": [3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 1, 2, 3, 0, 2, 0, 0, 0, 2, 0, 1]}, {"label": "zero-dechet", "backgroundColor": "rgb(188,5,176)", "data": [0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(73,125,214)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "messagesByTsunamy": [{"label": "global", "backgroundColor": "rgb(59,232,86)", "data": [164, 482, 417, 260, 252, 746, 253, 190, 220, 394, 91, 169, 447, 859, 476, 308, 340, 504, 444, 116, 301, 654, 359, 580, 406, 463, 172, 401, 340, 337]}, {"label": "project", "backgroundColor": "rgb(224,46,23)", "data": [97, 250, 34, 85, 42, 296, 115, 67, 64, 33, 11, 51, 74, 51, 33, 26, 67, 35, 33, 0, 1, 232, 220, 267, 156, 189, 26, 204, 9, 141]}, {"label": "democratie", "backgroundColor": "rgb(124,39,67)", "data": [26, 23, 10, 36, 15, 209, 1, 10, 17, 165, 3, 34, 111, 47, 9, 33, 14, 30, 9, 16, 1, 73, 9, 38, 13, 3, 38, 4, 4, 74]}, {"label": "ecologie", "backgroundColor": "rgb(108,38,10)", "data": [113, 101, 12, 60, 34, 30, 64, 63, 93, 69, 11, 62, 43, 76, 89, 48, 75, 53, 35, 6, 1, 74, 39, 73, 26, 54, 14, 117, 38, 229]}, {"label": "technologie", "backgroundColor": "rgb(164,130,151)", "data": [1, 211, 29, 58, 8, 251, 59, 28, 2, 22, 20, 9, 63, 31, 92, 11, 31, 4, 2, 4, 7, 1, 6, 26, 97, 3, 7, 0, 4, 2]}], "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [18, 21, 23, 25, 20, 21, 20, 25, 25, 21, 18, 15, 15, 19, 20, 25, 22, 23, 16, 13, 12, 22, 21, 20, 21, 22, 16, 16, 18, 21]}]} \ No newline at end of file +{"updated": "05/09/2019", "labels": ["08/06/19", "08/07/19", "08/08/19", "08/09/19", "08/10/19", "08/11/19", "08/12/19", "08/13/19", "08/14/19", "08/15/19", "08/16/19", "08/17/19", "08/18/19", "08/19/19", "08/20/19", "08/21/19", "08/22/19", "08/23/19", "08/24/19", "08/25/19", "08/26/19", "08/27/19", "08/28/19", "08/29/19", "08/30/19", "08/31/19", "09/01/19", "09/02/19", "09/03/19", "09/04/19"], "messagesByChannel": [{"label": "accueil", "backgroundColor": "rgb(16,218,206)", "data": [77, 62, 10, 48, 97, 13, 20, 26, 1, 3, 9, 1, 9, 11, 14, 6, 108, 24, 4, 1, 42, 30, 3, 9, 38, 7, 0, 37, 15, 50]}, {"label": "activite-et-travail", "backgroundColor": "rgb(161,238,211)", "data": [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]}, {"label": "agenda", "backgroundColor": "rgb(126,163,212)", "data": [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 4, 5, 9, 1, 6, 17]}, {"label": "algoculture", "backgroundColor": "rgb(87,85,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "animation-crapauds", "backgroundColor": "rgb(196,25,8)", "data": [0, 7, 5, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 6, 2, 0, 13, 51, 183, 9, 26, 0, 0, 0, 0, 0]}, {"label": "aquaponie", "backgroundColor": "rgb(24,155,184)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(2,66,52)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(229,136,53)", "data": [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]}, {"label": "avoirouetre", "backgroundColor": "rgb(96,234,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(230,135,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bresil", "backgroundColor": "rgb(47,35,173)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 95, 0, 44, 3, 1, 0]}, {"label": "burn-out", "backgroundColor": "rgb(60,53,58)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(134,24,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(213,231,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(3,11,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 3, 1, 2, 3, 0, 0, 1, 0, 0]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(85,227,19)", "data": [46, 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]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(60,147,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 3, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(105,7,174)", "data": [0, 0, 0, 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 0, 26, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(55,80,75)", "data": [0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(19,183,149)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(44,160,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 9, 0, 1, 1, 0, 0, 0, 2]}, {"label": "cercle-education", "backgroundColor": "rgb(144,203,202)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 23, 0, 0, 1, 0, 1, 0, 3, 15, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-electronique", "backgroundColor": "rgb(72,64,42)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(1,227,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(101,88,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(35,45,170)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(43,110,249)", "data": [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, 5, 0]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(22,17,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(102,11,12)", "data": [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]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(117,173,84)", "data": [1, 0, 2, 10, 0, 0, 0, 0, 33, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 11]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(208,174,105)", "data": [0, 0, 19, 0, 0, 0, 6, 2, 13, 1, 11, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 2, 7, 1]}, {"label": "cercle-sante", "backgroundColor": "rgb(120,32,252)", "data": [0, 3, 0, 0, 0, 5, 5, 3, 22, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(7,188,126)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(252,159,118)", "data": [0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 63, 2]}, {"label": "chanvre", "backgroundColor": "rgb(153,149,173)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(100,188,135)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(107,195,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(145,239,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(58,25,225)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(98,205,211)", "data": [0, 9, 1, 0, 0, 5, 6, 3, 2, 8, 2, 1, 0, 29, 33, 15, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 2]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(150,187,249)", "data": [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]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(8,91,241)", "data": [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, 1]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(166,7,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(139,86,249)", "data": [0, 23, 21, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 4, 3, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 26]}, {"label": "cohorte-centre", "backgroundColor": "rgb(224,235,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(180,106,19)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(136,212,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(88,35,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(254,64,240)", "data": [2, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 7, 3, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(207,153,45)", "data": [0, 41, 7, 1, 0, 0, 7, 31, 0, 0, 0, 16, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 3, 0]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(155,249,152)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(70,123,110)", "data": [5, 1, 41, 0, 1, 0, 0, 0, 1, 1, 3, 0, 0, 14, 9, 3, 17, 115, 1, 0, 8, 6, 0, 4, 2, 0, 0, 0, 0, 3]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(117,236,109)", "data": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(196,12,245)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paca", "backgroundColor": "rgb(6,179,161)", "data": [0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 2, 1]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(18,233,75)", "data": [0, 0, 0, 0, 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]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(145,195,40)", "data": [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, 1]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(197,96,20)", "data": [0, 0, 0, 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, 2]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(19,91,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(248,22,46)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(215,2,132)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(155,46,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(70,25,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(145,107,85)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 187, 173, 16, 26, 3, 0, 0, 0, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(31,98,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 18, 15, 0, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(35,6,124)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(114,50,93)", "data": [0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 7]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(1,62,46)", "data": [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]}, {"label": "developpement-personnel", "backgroundColor": "rgb(65,115,46)", "data": [0, 1, 0, 0, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 1, 23, 1, 0]}, {"label": "doughnut-economics", "backgroundColor": "rgb(148,210,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(211,56,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(6,126,84)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(48,114,72)", "data": [0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 11, 7, 10, 17, 3, 6, 1, 5, 0, 0, 0, 0, 0, 1, 1, 34, 12]}, {"label": "education-populaire", "backgroundColor": "rgb(88,222,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(38,217,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(22,215,245)", "data": [0, 0, 0, 0, 4, 4, 8, 0, 0, 8, 19, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(139,124,11)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(112,20,104)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(36,74,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(182,172,161)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(104,146,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(1,153,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(208,35,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(47,181,31)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(197,59,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(200,126,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(171,22,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(13,17,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(39,134,212)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(67,155,14)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(114,164,227)", "data": [51, 101, 34, 7, 9, 102, 20, 5, 82, 5, 0, 86, 2, 29, 60, 90, 5, 16, 68, 15, 97, 17, 14, 15, 36, 57, 29, 200, 21, 4]}, {"label": "geopolitique", "backgroundColor": "rgb(76,76,36)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(97,181,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(191,193,253)", "data": [0, 4, 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]}, {"label": "godelescherbach", "backgroundColor": "rgb(69,9,161)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(186,72,190)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(105,99,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(222,172,222)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(96,124,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(111,148,105)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(40,237,105)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(75,65,204)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 96, 0, 5, 0, 0, 0, 0]}, {"label": "impression-3d", "backgroundColor": "rgb(212,220,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(158,40,60)", "data": [0, 0, 0, 0, 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]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(39,194,29)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]}, {"label": "intelligence-collective", "backgroundColor": "rgb(135,73,13)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(207,67,46)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(173,205,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(77,71,204)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(195,251,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(100,100,150)", "data": [0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 9, 3, 9, 0, 0, 0, 0, 0, 2]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(254,130,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(3,131,184)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(114,134,128)", "data": [0, 0, 0, 0, 0, 18, 22, 2, 0, 0, 1, 47, 24, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(92,16,165)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(36,127,233)", "data": [24, 0, 0, 0, 0, 2, 3, 32, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 2, 7, 2]}, {"label": "libre", "backgroundColor": "rgb(165,65,148)", "data": [2, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188, 2, 2, 6, 21, 21, 3, 270, 12, 0, 0, 1, 8, 0, 37, 0, 0, 0]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(135,55,72)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(2,70,173)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(97,91,20)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0]}, {"label": "lucarn", "backgroundColor": "rgb(107,130,74)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 116, 8, 91, 2, 23, 5]}, {"label": "manuel-terrien", "backgroundColor": "rgb(101,57,161)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(225,237,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(57,60,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "medusa", "backgroundColor": "rgb(236,94,14)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(225,9,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(73,113,127)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(37,145,143)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(178,72,233)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(231,49,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(236,250,69)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(217,126,89)", "data": [0, 0, 0, 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]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(111,187,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 0, 0, 0]}, {"label": "no-gafam", "backgroundColor": "rgb(143,77,147)", "data": [0, 7, 6, 3, 1, 0, 0, 0, 22, 18, 8, 0, 4, 85, 9, 29, 0, 0, 1, 0, 0, 1, 12, 1, 3, 0, 0, 3, 0, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(2,228,55)", "data": [0, 0, 0, 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]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(253,53,187)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(214,23,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(37,181,139)", "data": [0, 0, 0, 0, 25, 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]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(148,14,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(6,155,115)", "data": [0, 0, 0, 0, 0, 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]}, {"label": "philosophie", "backgroundColor": "rgb(64,133,4)", "data": [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]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(5,40,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(154,212,181)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(98,36,217)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(72,166,189)", "data": [0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(221,100,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 44, 1, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(121,80,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(51,141,198)", "data": [3, 1, 0, 109, 11, 0, 8, 0, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 1, 13]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(4,120,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(10,117,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(183,175,127)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0]}, {"label": "pub-canaux", "backgroundColor": "rgb(156,244,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(41,44,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recherches-biologie", "backgroundColor": "rgb(207,91,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(96,173,37)", "data": [0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(53,35,213)", "data": [1, 0, 6, 4, 0, 0, 4, 3, 150, 0, 0, 104, 2, 2, 25, 12, 3, 5, 0, 0, 36, 0, 0, 2, 0, 36, 1, 0, 0, 0]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(77,107,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 48, 10, 22, 63, 94, 94, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(182,137,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(211,240,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(179,26,5)", "data": [210, 22, 44, 3, 225, 41, 5, 0, 0, 0, 0, 6, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 1, 0, 0, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(43,239,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(8,221,222)", "data": [30, 4, 36, 31, 28, 56, 40, 53, 30, 10, 50, 21, 24, 16, 23, 63, 33, 31, 0, 0, 62, 33, 68, 20, 47, 14, 112, 7, 118, 3]}, {"label": "siteweb", "backgroundColor": "rgb(119,132,225)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 24, 3, 48, 8, 16, 24]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(204,24,57)", "data": [5, 0, 0, 0, 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]}, {"label": "solucracy", "backgroundColor": "rgb(237,102,225)", "data": [9, 6, 5, 8, 43, 0, 0, 9, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 26, 0, 0, 0, 1, 0, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(112,247,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(3,60,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(43,131,94)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(56,44,235)", "data": [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, 0, 0, 0, 0]}, {"label": "techos", "backgroundColor": "rgb(210,182,12)", "data": [0, 0, 0, 1, 0, 0, 0, 23, 17, 0, 0, 1, 378, 161, 55, 20, 112, 15, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 32]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(13,120,191)", "data": [0, 0, 0, 0, 8, 5, 10, 10, 1, 13, 39, 0, 0, 14, 12, 0, 0, 0, 0, 2, 79, 0, 0, 0, 5, 10, 0, 0, 1, 0]}, {"label": "testbot", "backgroundColor": "rgb(179,56,216)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(170,121,172)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 11, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(81,152,40)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(246,35,37)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(116,142,204)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(219,242,9)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(101,250,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(243,247,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(221,242,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(13,40,148)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(234,14,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(240,136,33)", "data": [0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 7, 1, 2, 35, 0, 9, 0, 0, 0, 5, 0, 2, 7]}, {"label": "zero-dechet", "backgroundColor": "rgb(62,101,175)", "data": [0, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(226,90,104)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(16,218,206)", "data": [9, 4, 6, 10, 5, 5, 5, 7, 1, 3, 4, 1, 3, 3, 6, 4, 7, 4, 3, 1, 8, 9, 1, 3, 9, 2, 0, 3, 4, 9]}, {"label": "activite-et-travail", "backgroundColor": "rgb(161,238,211)", "data": [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]}, {"label": "agenda", "backgroundColor": "rgb(126,163,212)", "data": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 3, 1, 2, 1, 3, 2]}, {"label": "algoculture", "backgroundColor": "rgb(87,85,103)", "data": [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]}, {"label": "animation-crapauds", "backgroundColor": "rgb(196,25,8)", "data": [0, 5, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 3, 5, 7, 3, 7, 0, 0, 0, 0, 0]}, {"label": "aquaponie", "backgroundColor": "rgb(24,155,184)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(2,66,52)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(229,136,53)", "data": [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]}, {"label": "avoirouetre", "backgroundColor": "rgb(96,234,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(230,135,2)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "bresil", "backgroundColor": "rgb(47,35,173)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 2, 1, 1, 0]}, {"label": "burn-out", "backgroundColor": "rgb(60,53,58)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "caballarius", "backgroundColor": "rgb(134,24,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(213,231,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(3,11,117)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 1, 2, 2, 0, 0, 1, 0, 0]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(85,227,19)", "data": [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]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(60,147,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(105,7,174)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(55,80,75)", "data": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(19,183,149)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(44,160,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 1, 1, 0, 0, 0, 2]}, {"label": "cercle-education", "backgroundColor": "rgb(144,203,202)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 6, 0, 0, 1, 0, 1, 0, 2, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-electronique", "backgroundColor": "rgb(72,64,42)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(1,227,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(101,88,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(35,45,170)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(43,110,249)", "data": [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, 2, 0]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(22,17,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(102,11,12)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(117,173,84)", "data": [1, 0, 2, 3, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 5]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(208,174,105)", "data": [0, 0, 4, 0, 0, 0, 3, 2, 3, 1, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 2, 3, 1]}, {"label": "cercle-sante", "backgroundColor": "rgb(120,32,252)", "data": [0, 2, 0, 0, 0, 1, 3, 2, 3, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(7,188,126)", "data": [0, 0, 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]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(252,159,118)", "data": [0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 2]}, {"label": "chanvre", "backgroundColor": "rgb(153,149,173)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(100,188,135)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(107,195,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(145,239,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(58,25,225)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(98,205,211)", "data": [0, 4, 1, 0, 0, 4, 4, 1, 2, 2, 2, 1, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(150,187,249)", "data": [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]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(8,91,241)", "data": [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, 1]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(166,7,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(139,86,249)", "data": [0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 2]}, {"label": "cohorte-centre", "backgroundColor": "rgb(224,235,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(180,106,19)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(136,212,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(88,35,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(254,64,240)", "data": [1, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(207,153,45)", "data": [0, 3, 3, 1, 0, 0, 3, 2, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 1, 0]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(155,249,152)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(70,123,110)", "data": [3, 1, 3, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 3, 3, 2, 2, 5, 1, 0, 4, 1, 0, 2, 2, 0, 0, 0, 0, 2]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(117,236,109)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(196,12,245)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cohorte-paca", "backgroundColor": "rgb(6,179,161)", "data": [0, 1, 1, 1, 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, 1]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(18,233,75)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(145,195,40)", "data": [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, 1]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(197,96,20)", "data": [0, 0, 0, 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, 2]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(19,91,203)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(248,22,46)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(215,2,132)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cooperatives", "backgroundColor": "rgb(155,46,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(70,25,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cratube", "backgroundColor": "rgb(145,107,85)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 3, 5, 2, 0, 0, 0, 0]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(31,98,227)", "data": [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, 0, 0, 0, 0, 0]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(35,6,124)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(114,50,93)", "data": [0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(1,62,46)", "data": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "developpement-personnel", "backgroundColor": "rgb(65,115,46)", "data": [0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 3, 1, 0]}, {"label": "doughnut-economics", "backgroundColor": "rgb(148,210,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(211,56,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "economie-connaissance", "backgroundColor": "rgb(6,126,84)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(48,114,72)", "data": [0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 5, 5, 4, 5, 1, 3, 1, 3, 0, 0, 0, 0, 0, 1, 1, 2, 4]}, {"label": "education-populaire", "backgroundColor": "rgb(88,222,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(38,217,67)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(22,215,245)", "data": [0, 0, 0, 0, 2, 3, 2, 0, 0, 3, 3, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "empowerment", "backgroundColor": "rgb(139,124,11)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energie", "backgroundColor": "rgb(112,20,104)", "data": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "energies-agiles", "backgroundColor": "rgb(36,74,16)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(182,172,161)", "data": [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]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(104,146,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(1,153,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "essaimage", "backgroundColor": "rgb(208,35,154)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(47,181,31)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(197,59,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(200,126,73)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(171,22,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(13,17,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "fou-a-lier", "backgroundColor": "rgb(39,134,212)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(67,155,14)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(114,164,227)", "data": [5, 10, 9, 3, 5, 7, 5, 4, 9, 3, 0, 4, 1, 9, 8, 9, 4, 6, 6, 3, 9, 4, 7, 5, 7, 7, 5, 5, 7, 3]}, {"label": "geopolitique", "backgroundColor": "rgb(76,76,36)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(97,181,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(191,193,253)", "data": [0, 4, 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]}, {"label": "godelescherbach", "backgroundColor": "rgb(69,9,161)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(186,72,190)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(105,99,9)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(222,172,222)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(96,124,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(111,148,105)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(40,237,105)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(75,65,204)", "data": [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, 2, 0, 0, 0, 0]}, {"label": "impression-3d", "backgroundColor": "rgb(212,220,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "info-desintox", "backgroundColor": "rgb(158,40,60)", "data": [0, 0, 0, 0, 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]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(39,194,29)", "data": [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, 2, 0]}, {"label": "intelligence-collective", "backgroundColor": "rgb(135,73,13)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(207,67,46)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-cri", "backgroundColor": "rgb(173,205,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(77,71,204)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(195,251,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(100,100,150)", "data": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 2, 2, 0, 0, 0, 0, 0, 2]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(254,130,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(3,131,184)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "le-led", "backgroundColor": "rgb(114,134,128)", "data": [0, 0, 0, 0, 0, 3, 4, 2, 0, 0, 1, 7, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(92,16,165)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(36,127,233)", "data": [2, 0, 0, 0, 0, 1, 2, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 2, 1]}, {"label": "libre", "backgroundColor": "rgb(165,65,148)", "data": [2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 2, 3, 7, 5, 2, 5, 3, 0, 0, 1, 3, 0, 3, 0, 0, 0]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(135,55,72)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(2,70,173)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(97,91,20)", "data": [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]}, {"label": "lucarn", "backgroundColor": "rgb(107,130,74)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 2, 7, 1, 4, 4]}, {"label": "manuel-terrien", "backgroundColor": "rgb(101,57,161)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(225,237,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(57,60,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "medusa", "backgroundColor": "rgb(236,94,14)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(225,9,82)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(73,113,127)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(37,145,143)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(178,72,233)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "myhappy", "backgroundColor": "rgb(231,49,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(236,250,69)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(217,126,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(111,187,67)", "data": [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]}, {"label": "no-gafam", "backgroundColor": "rgb(143,77,147)", "data": [0, 2, 5, 1, 1, 0, 0, 0, 1, 2, 1, 0, 3, 5, 6, 4, 0, 0, 1, 0, 0, 1, 5, 1, 2, 0, 0, 2, 0, 0]}, {"label": "open-hardware", "backgroundColor": "rgb(2,228,55)", "data": [0, 0, 0, 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]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(253,53,187)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(214,23,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(37,181,139)", "data": [0, 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, 0, 0, 0, 0]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(148,14,159)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(6,155,115)", "data": [0, 0, 0, 0, 0, 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]}, {"label": "philosophie", "backgroundColor": "rgb(64,133,4)", "data": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(5,40,0)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(154,212,181)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(98,36,217)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(72,166,189)", "data": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(221,100,223)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 3, 1, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(121,80,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(51,141,198)", "data": [1, 1, 0, 2, 2, 0, 4, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 1, 4]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(4,120,179)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(10,117,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(183,175,127)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "pub-canaux", "backgroundColor": "rgb(156,244,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(41,44,227)", "data": [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]}, {"label": "recherches-biologie", "backgroundColor": "rgb(207,91,140)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(96,173,37)", "data": [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]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(53,35,213)", "data": [1, 0, 2, 3, 0, 0, 3, 1, 8, 0, 0, 7, 1, 2, 6, 3, 2, 4, 0, 0, 4, 0, 0, 2, 0, 4, 1, 0, 0, 0]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(77,107,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 2, 3, 4, 7, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(182,137,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(211,240,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(179,26,5)", "data": [7, 4, 5, 1, 9, 4, 2, 0, 0, 0, 0, 2, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 0]}, {"label": "selfishgene", "backgroundColor": "rgb(43,239,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(8,221,222)", "data": [7, 2, 6, 5, 6, 6, 7, 6, 5, 3, 6, 5, 9, 4, 6, 7, 5, 7, 0, 0, 6, 5, 7, 4, 8, 4, 5, 2, 4, 1]}, {"label": "siteweb", "backgroundColor": "rgb(119,132,225)", "data": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 3, 3, 3, 3]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(204,24,57)", "data": [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, 1, 0]}, {"label": "solucracy", "backgroundColor": "rgb(237,102,225)", "data": [5, 2, 2, 2, 6, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 1, 0, 0, 0]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(112,247,192)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(3,60,68)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(43,131,94)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(56,44,235)", "data": [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]}, {"label": "techos", "backgroundColor": "rgb(210,182,12)", "data": [0, 0, 0, 1, 0, 0, 0, 4, 3, 0, 0, 1, 8, 5, 6, 4, 5, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(13,120,191)", "data": [0, 0, 0, 0, 2, 2, 2, 2, 1, 4, 4, 0, 0, 4, 3, 0, 0, 0, 0, 1, 5, 0, 0, 0, 3, 3, 0, 0, 1, 0]}, {"label": "testbot", "backgroundColor": "rgb(179,56,216)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(170,121,172)", "data": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 5, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tour-du-monde", "backgroundColor": "rgb(81,152,40)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(246,35,37)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "transport", "backgroundColor": "rgb(116,142,204)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(219,242,9)", "data": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(101,250,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(243,247,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(221,242,89)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(13,40,148)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(234,14,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(240,136,33)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 1, 2, 3, 0, 2, 0, 0, 0, 2, 0, 1, 2]}, {"label": "zero-dechet", "backgroundColor": "rgb(62,101,175)", "data": [0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(226,90,104)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}], "messagesByTopic": [{"label": "global", "backgroundColor": "rgb(52,109,2)", "data": [482, 417, 260, 252, 746, 253, 190, 220, 394, 91, 169, 447, 859, 476, 308, 340, 504, 444, 116, 301, 654, 359, 580, 406, 463, 172, 401, 340, 337, 239]}, {"label": "project", "backgroundColor": "rgb(101,100,65)", "data": [250, 34, 85, 42, 296, 115, 67, 64, 33, 11, 51, 74, 51, 33, 26, 67, 35, 33, 0, 1, 232, 220, 267, 156, 189, 26, 204, 9, 141, 8]}, {"label": "democratie", "backgroundColor": "rgb(135,100,96)", "data": [23, 10, 36, 15, 209, 1, 10, 17, 165, 3, 34, 111, 47, 9, 33, 14, 30, 9, 16, 1, 73, 9, 38, 13, 3, 38, 4, 4, 74, 16]}, {"label": "ecologie", "backgroundColor": "rgb(179,215,54)", "data": [101, 12, 60, 34, 30, 64, 63, 93, 69, 11, 62, 43, 76, 89, 48, 75, 53, 35, 6, 1, 74, 39, 73, 26, 54, 14, 117, 38, 229, 20]}, {"label": "technologie", "backgroundColor": "rgb(58,86,13)", "data": [211, 29, 58, 8, 251, 59, 28, 2, 22, 20, 9, 63, 31, 92, 11, 31, 4, 2, 4, 7, 1, 6, 26, 97, 3, 7, 0, 4, 2, 4]}], "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [21, 23, 25, 20, 21, 20, 25, 25, 21, 18, 15, 15, 19, 20, 25, 22, 23, 16, 13, 12, 22, 21, 20, 21, 22, 16, 16, 18, 21, 28]}]} \ No newline at end of file diff --git a/site/data/chat_stat_monthly.json b/site/data/chat_stat_monthly.json index 9d7eb2b..8859e7f 100644 --- a/site/data/chat_stat_monthly.json +++ b/site/data/chat_stat_monthly.json @@ -1 +1 @@ -{"updated": "updated 05/09/2019", "labels": ["Sep 2018", "Oct 2018", "Nov 2018", "Dec 2018", "Jan 2019", "Feb 2019", "Mar 2019", "Apr 2019", "May 2019", "Jun 2019", "Jul 2019", "Aug 2019"], "messagesByChannel": [{"label": "accueil", "backgroundColor": "rgb(174,204,18)", "data": [0, 237, 810, 401, 609, 656, 795, 479, 980, 1542, 1229, 777]}, {"label": "activite-et-travail", "backgroundColor": "rgb(218,134,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4]}, {"label": "agenda", "backgroundColor": "rgb(166,172,121)", "data": [105, 15, 5, 10, 2, 42, 45, 30, 72, 70, 64, 56]}, {"label": "algoculture", "backgroundColor": "rgb(143,83,234)", "data": [0, 0, 0, 0, 0, 257, 722, 34, 0, 0, 11, 15]}, {"label": "animation-crapauds", "backgroundColor": "rgb(203,8,8)", "data": [0, 0, 0, 0, 11, 69, 139, 0, 49, 234, 412, 329]}, {"label": "aquaponie", "backgroundColor": "rgb(240,107,7)", "data": [0, 0, 0, 0, 0, 0, 94, 27, 2, 3, 5, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(1,240,234)", "data": [0, 0, 0, 34, 221, 4, 16, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(15,6,253)", "data": [0, 0, 0, 0, 0, 0, 415, 189, 20, 22, 0, 8]}, {"label": "avoirouetre", "backgroundColor": "rgb(145,61,218)", "data": [0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(52,97,174)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0]}, {"label": "bresil", "backgroundColor": "rgb(67,3,239)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 149]}, {"label": "burn-out", "backgroundColor": "rgb(79,86,33)", "data": [552, 0, 0, 78, 0, 0, 18, 0, 98, 3, 72, 0]}, {"label": "caballarius", "backgroundColor": "rgb(245,23,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(59,55,94)", "data": [0, 0, 54, 31, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(217,212,121)", "data": [173, 56, 0, 0, 0, 0, 26, 6, 2, 2, 0, 16]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(213,154,87)", "data": [220, 9, 49, 11, 70, 14, 19, 1, 10, 6, 26, 51]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(190,132,193)", "data": [4, 3, 18, 5, 1, 0, 1, 1, 0, 210, 16, 20]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(66,81,103)", "data": [20, 39, 250, 4, 3, 46, 8, 6, 11, 55, 6, 195]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(62,166,47)", "data": [26, 60, 1, 34, 55, 2, 5, 1, 4, 3, 0, 87]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(196,7,79)", "data": [1, 5, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(133,189,200)", "data": [21, 201, 188, 47, 348, 275, 207, 31, 55, 151, 174, 49]}, {"label": "cercle-education", "backgroundColor": "rgb(111,176,78)", "data": [429, 111, 235, 58, 607, 324, 304, 75, 494, 403, 395, 50]}, {"label": "cercle-electronique", "backgroundColor": "rgb(9,139,179)", "data": [0, 1, 0, 14, 16, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(174,132,238)", "data": [18, 15, 0, 0, 9, 0, 0, 15, 0, 3, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(219,39,55)", "data": [1, 3, 46, 0, 0, 0, 4, 0, 12, 2, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(125,198,161)", "data": [0, 2, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(104,84,121)", "data": [7, 23, 0, 6, 2, 6, 171, 8, 99, 9, 2, 9]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(137,229,8)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(231,115,190)", "data": [160, 21, 0, 0, 0, 3, 20, 0, 1, 0, 18, 4]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(48,215,27)", "data": [989, 393, 568, 19, 276, 622, 276, 14, 317, 796, 500, 69]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(189,188,106)", "data": [101, 162, 20, 0, 39, 341, 97, 38, 51, 105, 113, 74]}, {"label": "cercle-sante", "backgroundColor": "rgb(226,18,38)", "data": [56, 420, 122, 47, 56, 69, 169, 32, 85, 69, 16, 48]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(83,187,160)", "data": [7, 35, 56, 2, 1, 1, 6, 0, 26, 0, 1, 6]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(77,115,250)", "data": [568, 406, 147, 71, 87, 32, 151, 44, 14, 46, 158, 117]}, {"label": "chanvre", "backgroundColor": "rgb(216,37,190)", "data": [0, 0, 0, 35, 0, 2, 6, 0, 5, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(4,160,231)", "data": [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(194,227,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(157,82,136)", "data": [0, 19, 0, 5, 0, 2, 1, 0, 0, 0, 43, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(181,76,21)", "data": [2, 2, 0, 0, 1, 5, 6, 6, 14, 10, 2, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(155,109,236)", "data": [4, 0, 2, 2, 228, 66, 57, 107, 82, 66, 102, 119]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(210,55,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(57,171,148)", "data": [0, 4, 6, 2, 1, 0, 5, 0, 0, 12, 16, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(104,107,68)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(10,193,9)", "data": [55, 42, 2, 6, 10, 1, 7, 6, 76, 40, 162, 77]}, {"label": "cohorte-centre", "backgroundColor": "rgb(214,82,239)", "data": [0, 5, 6, 0, 2, 0, 0, 0, 6, 2, 7, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(47,49,61)", "data": [1, 6, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(3,139,64)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 26, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(191,58,176)", "data": [11, 5, 0, 0, 0, 0, 4, 0, 0, 17, 16, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(196,132,188)", "data": [7, 2, 1, 1, 15, 23, 65, 25, 13, 8, 4, 26]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(167,152,244)", "data": [4, 0, 24, 6, 64, 168, 50, 48, 133, 194, 228, 118]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(239,169,18)", "data": [0, 0, 0, 60, 22, 0, 2, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(50,77,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 793, 234]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(118,12,206)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(96,62,74)", "data": [1, 0, 6, 0, 1, 0, 0, 1, 1, 1, 6, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(78,137,128)", "data": [18, 3, 1, 0, 14, 3, 8, 5, 29, 7, 24, 21]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(151,158,44)", "data": [50, 4, 7, 5, 26, 0, 17, 13, 30, 28, 0, 5]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(183,47,7)", "data": [6, 1, 0, 1, 31, 2, 2, 0, 0, 2, 24, 5]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(214,61,8)", "data": [6, 7, 4, 3, 13, 16, 46, 101, 5, 20, 15, 6]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(33,79,162)", "data": [0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(6,16,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 75, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(250,191,216)", "data": [70, 9, 9, 2, 3, 68, 0, 0, 2, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(164,216,249)", "data": [21, 1, 0, 12, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(67,239,33)", "data": [0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(55,225,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(38,13,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(103,10,71)", "data": [0, 0, 0, 0, 0, 0, 109, 0, 2, 24, 3, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(235,128,129)", "data": [0, 0, 0, 0, 0, 0, 79, 235, 73, 16, 65, 14]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(16,10,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 11]}, {"label": "developpement-personnel", "backgroundColor": "rgb(98,161,142)", "data": [0, 0, 0, 0, 0, 0, 0, 86, 7, 4, 32, 159]}, {"label": "doughnut-economics", "backgroundColor": "rgb(176,159,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 125, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(245,60,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 24, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(102,64,42)", "data": [4, 86, 5, 847, 218, 9, 73, 149, 63, 12, 81, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(143,120,254)", "data": [0, 0, 0, 0, 0, 140, 80, 81, 143, 69, 12, 111]}, {"label": "education-populaire", "backgroundColor": "rgb(246,140,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 109, 14, 7, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(137,198,21)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 76, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(46,170,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 48]}, {"label": "empowerment", "backgroundColor": "rgb(32,1,181)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 0]}, {"label": "energie", "backgroundColor": "rgb(47,137,153)", "data": [1, 1, 0, 69, 12, 0, 3, 2, 13, 70, 48, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(165,173,73)", "data": [0, 341, 33, 0, 0, 0, 0, 0, 7, 9, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(247,113,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(72,121,139)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(51,178,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 3, 0]}, {"label": "essaimage", "backgroundColor": "rgb(75,90,117)", "data": [0, 0, 206, 9, 8, 0, 2, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(100,30,132)", "data": [0, 0, 10, 5, 4, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(195,128,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(132,163,165)", "data": [0, 0, 0, 0, 0, 25, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(67,121,215)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(195,109,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 15, 2]}, {"label": "fou-a-lier", "backgroundColor": "rgb(228,182,46)", "data": [16, 0, 1, 46, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(141,64,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(181,169,80)", "data": [1862, 750, 2647, 477, 692, 1193, 1339, 612, 588, 873, 618, 1282]}, {"label": "geopolitique", "backgroundColor": "rgb(73,122,243)", "data": [97, 1, 0, 0, 37, 132, 8, 1, 0, 1, 22, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(217,170,211)", "data": [10, 1, 11, 0, 2, 47, 0, 3, 2, 1, 44, 13]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(227,136,75)", "data": [0, 0, 875, 4162, 4552, 1085, 1011, 1569, 449, 347, 182, 8]}, {"label": "godelescherbach", "backgroundColor": "rgb(150,48,131)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(101,216,199)", "data": [19, 2, 1, 3, 0, 0, 0, 13, 5, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(9,167,141)", "data": [4, 5, 4, 5, 3, 0, 0, 0, 9, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(167,175,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(187,173,214)", "data": [0, 0, 95, 34, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(7,119,234)", "data": [0, 0, 0, 0, 30, 64, 39, 0, 0, 9, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(32,175,182)", "data": [47, 64, 352, 296, 10, 1, 3, 22, 21, 151, 45, 2]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(86,156,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137]}, {"label": "impression-3d", "backgroundColor": "rgb(252,225,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 17, 20, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(115,235,240)", "data": [106, 55, 1, 4, 10, 1, 3, 1, 10, 9, 108, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(48,241,33)", "data": [16, 0, 54, 12, 178, 88, 11, 8, 11, 113, 50, 8]}, {"label": "intelligence-collective", "backgroundColor": "rgb(140,192,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 14, 41, 10, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(216,117,195)", "data": [0, 0, 0, 0, 23, 1, 6, 0, 0, 0, 24, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(183,140,182)", "data": [0, 0, 0, 0, 0, 0, 2550, 269, 9, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(187,164,204)", "data": [0, 0, 0, 0, 0, 0, 0, 121, 150, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(223,68,169)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 101, 468, 129, 12]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(137,153,33)", "data": [0, 0, 0, 0, 0, 0, 195, 117, 16, 73, 398, 47]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(80,210,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(71,215,133)", "data": [0, 0, 0, 0, 0, 136, 272, 21, 64, 84, 175, 3]}, {"label": "le-led", "backgroundColor": "rgb(36,62,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 306, 266, 116]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(60,149,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(225,108,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 58, 94, 74, 101]}, {"label": "libre", "backgroundColor": "rgb(8,233,105)", "data": [362, 927, 0, 8, 0, 0, 1016, 19, 15, 104, 12, 596]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(173,43,172)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(65,128,77)", "data": [47, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(120,1,88)", "data": [157, 7, 3, 0, 6, 180, 2, 0, 15, 98, 4, 21]}, {"label": "lucarn", "backgroundColor": "rgb(208,147,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 325]}, {"label": "manuel-terrien", "backgroundColor": "rgb(19,76,171)", "data": [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(132,15,249)", "data": [0, 0, 0, 0, 0, 0, 9, 121, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(148,39,214)", "data": [1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 1, 25]}, {"label": "medusa", "backgroundColor": "rgb(112,252,170)", "data": [176, 8, 5, 0, 0, 0, 0, 0, 0, 8, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(1,214,57)", "data": [0, 0, 0, 3, 16, 216, 95, 0, 0, 96, 106, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(223,236,87)", "data": [0, 49, 1, 0, 0, 0, 1, 3, 3, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(118,69,170)", "data": [0, 11, 2, 4, 0, 2, 0, 0, 3, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(0,233,144)", "data": [1053, 30, 617, 3, 96, 10, 0, 40, 16, 0, 6, 1]}, {"label": "myhappy", "backgroundColor": "rgb(34,107,0)", "data": [38, 105, 14, 1, 0, 2, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(68,49,50)", "data": [1, 0, 0, 0, 0, 1, 0, 2, 0, 9, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(177,47,161)", "data": [0, 0, 0, 0, 526, 151, 256, 103, 0, 39, 0, 10]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(175,14,120)", "data": [0, 0, 0, 0, 212, 11, 39, 3, 0, 1, 7, 7]}, {"label": "no-gafam", "backgroundColor": "rgb(72,31,25)", "data": [249, 67, 297, 75, 47, 212, 306, 129, 40, 83, 86, 213]}, {"label": "open-hardware", "backgroundColor": "rgb(90,168,41)", "data": [0, 0, 0, 18, 10, 1, 0, 0, 101, 75, 217, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(244,64,152)", "data": [0, 0, 0, 0, 0, 0, 544, 266, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(39,146,62)", "data": [0, 0, 0, 0, 25, 4, 5, 0, 0, 10, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(136,180,119)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 35, 31]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(192,19,128)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(144,167,15)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(200,170,65)", "data": [127, 65, 293, 1, 43, 403, 19, 134, 122, 10, 1, 7]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(56,77,81)", "data": [0, 0, 0, 14, 133, 73, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(81,10,156)", "data": [38, 21, 12, 17, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(234,219,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(53,184,148)", "data": [763, 78, 138, 0, 78, 142, 26, 94, 92, 109, 162, 11]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(225,222,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(250,245,160)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(72,143,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 154]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(118,124,238)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 13]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(33,62,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(164,67,231)", "data": [3, 101, 114, 30, 233, 43, 35, 14, 18, 9, 413, 62]}, {"label": "pub-canaux", "backgroundColor": "rgb(239,179,199)", "data": [0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(5,239,238)", "data": [0, 0, 0, 0, 0, 0, 137, 31, 63, 39, 23, 106]}, {"label": "recherches-biologie", "backgroundColor": "rgb(199,183,30)", "data": [0, 0, 0, 0, 1, 4, 0, 0, 14, 15, 1, 4]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(13,229,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 2, 5]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(185,243,235)", "data": [244, 77, 1102, 323, 149, 79, 397, 11, 25, 679, 150, 402]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(68,14,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(247,191,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 183, 93, 151, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(213,236,62)", "data": [0, 0, 0, 0, 521, 1, 5, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(224,70,166)", "data": [0, 0, 0, 0, 0, 0, 0, 94, 162, 81, 90, 606]}, {"label": "selfishgene", "backgroundColor": "rgb(220,143,81)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(155,240,129)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 2683, 1159]}, {"label": "siteweb", "backgroundColor": "rgb(175,191,20)", "data": [12, 4, 65, 14, 5, 7, 188, 1, 13, 25, 6, 133]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(230,57,189)", "data": [144, 153, 130, 18, 7, 177, 80, 13, 5, 87, 89, 8]}, {"label": "solucracy", "backgroundColor": "rgb(165,226,81)", "data": [0, 0, 469, 2149, 56, 80, 153, 93, 122, 109, 56, 109]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(244,35,16)", "data": [0, 0, 0, 0, 140, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(118,177,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(234,21,38)", "data": [20, 0, 0, 77, 1, 0, 10, 0, 0, 0, 68, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(159,29,145)", "data": [144, 64, 3, 80, 145, 75, 107, 16, 0, 21, 0, 46]}, {"label": "techos", "backgroundColor": "rgb(177,199,22)", "data": [32, 161, 231, 641, 327, 46, 205, 296, 202, 285, 236, 818]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(48,25,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 209]}, {"label": "testbot", "backgroundColor": "rgb(26,134,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(82,233,95)", "data": [4, 124, 141, 66, 273, 494, 1218, 314, 538, 289, 201, 19]}, {"label": "tour-du-monde", "backgroundColor": "rgb(18,28,105)", "data": [0, 0, 0, 0, 0, 64, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(237,67,95)", "data": [0, 0, 0, 0, 1, 0, 0, 6, 50, 2, 57, 0]}, {"label": "transport", "backgroundColor": "rgb(227,100,61)", "data": [0, 0, 0, 0, 0, 10, 3, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(245,157,38)", "data": [36, 2, 5, 0, 22, 2, 4, 34, 39, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(67,66,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 44, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(103,183,198)", "data": [18, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(34,83,0)", "data": [0, 0, 0, 0, 0, 0, 43, 15, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(86,71,133)", "data": [3, 0, 7, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(65,92,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(99,254,107)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 418, 118]}, {"label": "zero-dechet", "backgroundColor": "rgb(206,53,49)", "data": [82, 33, 145, 116, 63, 3, 114, 10, 68, 59, 23, 16]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(161,136,149)", "data": [258, 497, 5, 0, 219, 73, 17, 1, 0, 10, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(174,204,18)", "data": [0, 20, 48, 34, 58, 52, 53, 53, 69, 90, 77, 55]}, {"label": "activite-et-travail", "backgroundColor": "rgb(218,134,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3]}, {"label": "agenda", "backgroundColor": "rgb(166,172,121)", "data": [15, 8, 3, 4, 2, 12, 11, 9, 14, 15, 12, 11]}, {"label": "algoculture", "backgroundColor": "rgb(143,83,234)", "data": [0, 0, 0, 0, 0, 6, 10, 4, 0, 0, 3, 2]}, {"label": "animation-crapauds", "backgroundColor": "rgb(203,8,8)", "data": [0, 0, 0, 0, 3, 5, 8, 0, 5, 7, 11, 10]}, {"label": "aquaponie", "backgroundColor": "rgb(240,107,7)", "data": [0, 0, 0, 0, 0, 0, 8, 4, 1, 2, 2, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(1,240,234)", "data": [0, 0, 0, 8, 8, 3, 5, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(15,6,253)", "data": [0, 0, 0, 0, 0, 0, 9, 9, 5, 4, 0, 3]}, {"label": "avoirouetre", "backgroundColor": "rgb(145,61,218)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(52,97,174)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "bresil", "backgroundColor": "rgb(67,3,239)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]}, {"label": "burn-out", "backgroundColor": "rgb(79,86,33)", "data": [6, 0, 0, 6, 0, 0, 5, 0, 4, 2, 6, 0]}, {"label": "caballarius", "backgroundColor": "rgb(245,23,247)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(59,55,94)", "data": [0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(217,212,121)", "data": [10, 6, 0, 0, 0, 0, 5, 1, 1, 1, 0, 4]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(213,154,87)", "data": [11, 7, 11, 4, 7, 3, 3, 1, 5, 4, 7, 4]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(190,132,193)", "data": [2, 2, 3, 3, 1, 0, 1, 1, 0, 10, 4, 6]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(66,81,103)", "data": [7, 5, 8, 2, 3, 5, 3, 2, 4, 9, 2, 7]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(62,166,47)", "data": [6, 9, 1, 7, 12, 2, 3, 1, 2, 3, 0, 2]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(196,7,79)", "data": [1, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(133,189,200)", "data": [8, 8, 13, 11, 16, 7, 11, 9, 8, 13, 16, 8]}, {"label": "cercle-education", "backgroundColor": "rgb(111,176,78)", "data": [18, 10, 16, 11, 18, 20, 13, 11, 17, 16, 19, 14]}, {"label": "cercle-electronique", "backgroundColor": "rgb(9,139,179)", "data": [0, 1, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(174,132,238)", "data": [4, 6, 0, 0, 2, 0, 0, 3, 0, 1, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(219,39,55)", "data": [1, 1, 4, 0, 0, 0, 2, 0, 4, 1, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(125,198,161)", "data": [0, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(104,84,121)", "data": [2, 2, 0, 2, 1, 3, 9, 5, 7, 3, 1, 4]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(137,229,8)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(231,115,190)", "data": [9, 3, 0, 0, 0, 2, 5, 0, 1, 0, 5, 3]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(48,215,27)", "data": [17, 13, 14, 5, 16, 15, 12, 5, 10, 17, 13, 9]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(189,188,106)", "data": [16, 16, 6, 0, 10, 16, 15, 7, 13, 10, 15, 11]}, {"label": "cercle-sante", "backgroundColor": "rgb(226,18,38)", "data": [5, 12, 7, 6, 6, 8, 8, 6, 7, 9, 3, 7]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(83,187,160)", "data": [5, 7, 6, 2, 1, 1, 2, 0, 4, 0, 1, 3]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(77,115,250)", "data": [15, 14, 10, 11, 10, 6, 13, 10, 9, 10, 13, 8]}, {"label": "chanvre", "backgroundColor": "rgb(216,37,190)", "data": [0, 0, 0, 3, 0, 2, 2, 0, 1, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(4,160,231)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(194,227,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(157,82,136)", "data": [0, 4, 0, 2, 0, 2, 1, 0, 0, 0, 3, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(181,76,21)", "data": [2, 1, 0, 0, 1, 1, 3, 2, 6, 2, 1, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(155,109,236)", "data": [2, 0, 2, 2, 15, 11, 6, 9, 10, 11, 13, 9]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(210,55,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(57,171,148)", "data": [0, 3, 2, 1, 1, 0, 2, 0, 0, 5, 3, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(104,107,68)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(10,193,9)", "data": [7, 5, 2, 3, 4, 1, 2, 5, 5, 6, 8, 10]}, {"label": "cohorte-centre", "backgroundColor": "rgb(214,82,239)", "data": [0, 2, 3, 0, 1, 0, 0, 0, 1, 1, 3, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(47,49,61)", "data": [1, 2, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(3,139,64)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(191,58,176)", "data": [3, 2, 0, 0, 0, 0, 1, 0, 0, 3, 3, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(196,132,188)", "data": [1, 1, 1, 1, 5, 3, 6, 6, 4, 4, 3, 5]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(167,152,244)", "data": [2, 0, 7, 3, 8, 10, 8, 5, 8, 18, 17, 10]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(239,169,18)", "data": [0, 0, 0, 6, 3, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(50,77,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 13]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(118,12,206)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(96,62,74)", "data": [1, 0, 3, 0, 1, 0, 0, 1, 1, 1, 2, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(78,137,128)", "data": [5, 2, 1, 0, 6, 2, 2, 3, 3, 5, 7, 6]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(151,158,44)", "data": [7, 2, 3, 3, 6, 0, 3, 2, 9, 6, 0, 2]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(183,47,7)", "data": [2, 1, 0, 1, 4, 1, 2, 0, 0, 2, 5, 3]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(214,61,8)", "data": [4, 3, 1, 1, 4, 4, 4, 5, 3, 7, 5, 3]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(33,79,162)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(6,16,17)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(250,191,216)", "data": [9, 2, 2, 2, 2, 3, 0, 0, 1, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(164,216,249)", "data": [3, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(67,239,33)", "data": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(55,225,49)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(38,13,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(103,10,71)", "data": [0, 0, 0, 0, 0, 0, 5, 0, 1, 6, 2, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(235,128,129)", "data": [0, 0, 0, 0, 0, 0, 7, 11, 10, 7, 5, 5]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(16,10,207)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]}, {"label": "developpement-personnel", "backgroundColor": "rgb(98,161,142)", "data": [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 6, 7]}, {"label": "doughnut-economics", "backgroundColor": "rgb(176,159,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(245,60,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 5, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(102,64,42)", "data": [2, 4, 3, 9, 13, 4, 9, 11, 9, 4, 6, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(143,120,254)", "data": [0, 0, 0, 0, 0, 9, 11, 7, 13, 11, 6, 13]}, {"label": "education-populaire", "backgroundColor": "rgb(246,140,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 6, 3, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(137,198,21)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(46,170,30)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6]}, {"label": "empowerment", "backgroundColor": "rgb(32,1,181)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0]}, {"label": "energie", "backgroundColor": "rgb(47,137,153)", "data": [1, 1, 0, 7, 4, 0, 1, 2, 4, 5, 7, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(165,173,73)", "data": [0, 8, 3, 0, 0, 0, 0, 0, 3, 4, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(247,113,137)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(72,121,139)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(51,178,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0]}, {"label": "essaimage", "backgroundColor": "rgb(75,90,117)", "data": [0, 0, 8, 2, 2, 0, 1, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(100,30,132)", "data": [0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(195,128,103)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(132,163,165)", "data": [0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(67,121,215)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(195,109,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 1]}, {"label": "fou-a-lier", "backgroundColor": "rgb(228,182,46)", "data": [5, 0, 1, 7, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(141,64,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(181,169,80)", "data": [79, 41, 55, 41, 38, 42, 49, 35, 39, 39, 42, 35]}, {"label": "geopolitique", "backgroundColor": "rgb(73,122,243)", "data": [6, 1, 0, 0, 5, 6, 3, 1, 0, 1, 4, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(217,170,211)", "data": [2, 1, 4, 0, 2, 4, 0, 1, 2, 1, 3, 3]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(227,136,75)", "data": [0, 0, 18, 25, 26, 26, 20, 22, 12, 16, 13, 6]}, {"label": "godelescherbach", "backgroundColor": "rgb(150,48,131)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(101,216,199)", "data": [7, 2, 1, 2, 0, 0, 0, 3, 2, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(9,167,141)", "data": [3, 3, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(167,175,70)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(187,173,214)", "data": [0, 0, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(7,119,234)", "data": [0, 0, 0, 0, 3, 7, 3, 0, 0, 2, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(32,175,182)", "data": [9, 10, 13, 13, 5, 1, 3, 4, 7, 13, 9, 1]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(86,156,97)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "impression-3d", "backgroundColor": "rgb(252,225,110)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(115,235,240)", "data": [9, 8, 1, 3, 5, 1, 2, 1, 4, 5, 3, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(48,241,33)", "data": [3, 0, 8, 7, 9, 8, 5, 4, 6, 9, 10, 4]}, {"label": "intelligence-collective", "backgroundColor": "rgb(140,192,241)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 2, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(216,117,195)", "data": [0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 3, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(183,140,182)", "data": [0, 0, 0, 0, 0, 0, 30, 15, 6, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(187,164,204)", "data": [0, 0, 0, 0, 0, 0, 0, 10, 14, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(223,68,169)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 9, 6]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(137,153,33)", "data": [0, 0, 0, 0, 0, 0, 13, 11, 7, 10, 17, 8]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(80,210,197)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(71,215,133)", "data": [0, 0, 0, 0, 0, 6, 9, 5, 8, 7, 8, 2]}, {"label": "le-led", "backgroundColor": "rgb(36,62,231)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 10, 10]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(60,149,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(225,108,63)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 7, 7]}, {"label": "libre", "backgroundColor": "rgb(8,233,105)", "data": [11, 13, 0, 3, 0, 0, 10, 3, 4, 10, 6, 12]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(173,43,172)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(65,128,77)", "data": [4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(120,1,88)", "data": [3, 2, 1, 0, 3, 4, 1, 0, 4, 8, 2, 4]}, {"label": "lucarn", "backgroundColor": "rgb(208,147,66)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12]}, {"label": "manuel-terrien", "backgroundColor": "rgb(19,76,171)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(132,15,249)", "data": [0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(148,39,214)", "data": [1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 3]}, {"label": "medusa", "backgroundColor": "rgb(112,252,170)", "data": [6, 2, 4, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(1,214,57)", "data": [0, 0, 0, 1, 2, 3, 7, 0, 0, 5, 7, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(223,236,87)", "data": [0, 5, 1, 0, 0, 0, 1, 2, 2, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(118,69,170)", "data": [0, 4, 1, 2, 0, 2, 0, 0, 2, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(0,233,144)", "data": [19, 6, 11, 2, 6, 3, 0, 6, 4, 0, 4, 1]}, {"label": "myhappy", "backgroundColor": "rgb(34,107,0)", "data": [4, 7, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(68,49,50)", "data": [1, 0, 0, 0, 0, 1, 0, 1, 0, 3, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(177,47,161)", "data": [0, 0, 0, 0, 11, 10, 10, 7, 0, 4, 0, 2]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(175,14,120)", "data": [0, 0, 0, 0, 8, 5, 5, 2, 0, 1, 3, 2]}, {"label": "no-gafam", "backgroundColor": "rgb(72,31,25)", "data": [9, 11, 9, 13, 10, 10, 15, 10, 7, 13, 10, 14]}, {"label": "open-hardware", "backgroundColor": "rgb(90,168,41)", "data": [0, 0, 0, 2, 2, 1, 0, 0, 4, 6, 8, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(244,64,152)", "data": [0, 0, 0, 0, 0, 0, 8, 9, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(39,146,62)", "data": [0, 0, 0, 0, 8, 3, 3, 0, 0, 3, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(136,180,119)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 3]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(192,19,128)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(144,167,15)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(200,170,65)", "data": [7, 8, 9, 1, 4, 11, 6, 8, 8, 4, 1, 2]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(56,77,81)", "data": [0, 0, 0, 1, 6, 2, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(81,10,156)", "data": [3, 4, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(234,219,138)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(53,184,148)", "data": [17, 8, 4, 0, 10, 12, 8, 7, 10, 13, 9, 6]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(225,222,101)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(250,245,160)", "data": [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(72,143,227)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(118,124,238)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(33,62,254)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(164,67,231)", "data": [3, 9, 7, 5, 8, 7, 5, 3, 2, 3, 11, 5]}, {"label": "pub-canaux", "backgroundColor": "rgb(239,179,199)", "data": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(5,239,238)", "data": [0, 0, 0, 0, 0, 0, 10, 8, 9, 7, 7, 4]}, {"label": "recherches-biologie", "backgroundColor": "rgb(199,183,30)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 4, 5, 1, 2]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(13,229,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 2]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(185,243,235)", "data": [15, 5, 19, 16, 17, 8, 18, 5, 5, 18, 16, 18]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(68,14,177)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(247,191,112)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 16, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(213,236,62)", "data": [0, 0, 0, 0, 10, 1, 3, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(224,70,166)", "data": [0, 0, 0, 0, 0, 0, 0, 9, 10, 9, 12, 13]}, {"label": "selfishgene", "backgroundColor": "rgb(220,143,81)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(155,240,129)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 23]}, {"label": "siteweb", "backgroundColor": "rgb(175,191,20)", "data": [1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 4]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(230,57,189)", "data": [11, 10, 7, 5, 4, 12, 9, 7, 4, 9, 11, 5]}, {"label": "solucracy", "backgroundColor": "rgb(165,226,81)", "data": [0, 0, 10, 15, 8, 11, 11, 9, 12, 10, 12, 9]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(244,35,16)", "data": [0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(118,177,94)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(234,21,38)", "data": [5, 0, 0, 12, 1, 0, 3, 0, 0, 0, 9, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(159,29,145)", "data": [7, 8, 3, 9, 10, 10, 5, 5, 0, 5, 0, 5]}, {"label": "techos", "backgroundColor": "rgb(177,199,22)", "data": [8, 10, 11, 13, 10, 9, 13, 12, 16, 17, 13, 19]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(48,25,195)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8]}, {"label": "testbot", "backgroundColor": "rgb(26,134,65)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(82,233,95)", "data": [2, 8, 9, 6, 11, 18, 19, 16, 19, 15, 17, 6]}, {"label": "tour-du-monde", "backgroundColor": "rgb(18,28,105)", "data": [0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(237,67,95)", "data": [0, 0, 0, 0, 1, 0, 0, 3, 4, 1, 3, 0]}, {"label": "transport", "backgroundColor": "rgb(227,100,61)", "data": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(245,157,38)", "data": [4, 1, 3, 0, 5, 1, 2, 6, 5, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(67,66,71)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(103,183,198)", "data": [4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(34,83,0)", "data": [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(86,71,133)", "data": [3, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(65,92,201)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(99,254,107)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 9]}, {"label": "zero-dechet", "backgroundColor": "rgb(206,53,49)", "data": [9, 7, 10, 10, 8, 3, 11, 2, 5, 5, 4, 5]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(161,136,149)", "data": [7, 13, 4, 0, 3, 7, 4, 1, 0, 2, 0, 0]}], "messagesByTsunamy": [{"label": "global", "backgroundColor": "rgb(229,191,181)", "data": [9915, 6262, 10738, 10639, 12050, 8619, 14858, 6526, 6879, 11493, 13460, 11318]}, {"label": "project", "backgroundColor": "rgb(114,203,121)", "data": [1352, 281, 1560, 2269, 960, 655, 3981, 946, 943, 2218, 3404, 2917]}, {"label": "democratie", "backgroundColor": "rgb(22,43,126)", "data": [3349, 1949, 4446, 7737, 6575, 3203, 2846, 2575, 1557, 2179, 2106, 1091]}, {"label": "ecologie", "backgroundColor": "rgb(165,93,224)", "data": [1806, 1551, 697, 587, 703, 1052, 1546, 308, 595, 1017, 3836, 1815]}, {"label": "technologie", "backgroundColor": "rgb(253,154,85)", "data": [617, 206, 834, 553, 598, 646, 1555, 744, 399, 1357, 882, 1093]}], "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [96, 79, 96, 83, 99, 95, 99, 92, 111, 133, 120, 103]}]} \ No newline at end of file +{"updated": "05/09/2019", "labels": ["Sep 2018", "Oct 2018", "Nov 2018", "Dec 2018", "Jan 2019", "Feb 2019", "Mar 2019", "Apr 2019", "May 2019", "Jun 2019", "Jul 2019", "Aug 2019"], "messagesByChannel": [{"label": "accueil", "backgroundColor": "rgb(140,39,96)", "data": [0, 237, 810, 401, 609, 656, 795, 479, 980, 1542, 1229, 784]}, {"label": "activite-et-travail", "backgroundColor": "rgb(220,71,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4]}, {"label": "agenda", "backgroundColor": "rgb(136,217,193)", "data": [105, 15, 5, 10, 2, 42, 45, 30, 72, 70, 64, 56]}, {"label": "algoculture", "backgroundColor": "rgb(126,206,185)", "data": [0, 0, 0, 0, 0, 257, 722, 34, 0, 0, 11, 15]}, {"label": "animation-crapauds", "backgroundColor": "rgb(29,50,195)", "data": [0, 0, 0, 0, 11, 69, 139, 0, 49, 234, 412, 329]}, {"label": "aquaponie", "backgroundColor": "rgb(208,187,244)", "data": [0, 0, 0, 0, 0, 0, 94, 27, 2, 3, 5, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(72,180,155)", "data": [0, 0, 0, 34, 221, 4, 16, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(249,85,22)", "data": [0, 0, 0, 0, 0, 0, 415, 189, 20, 22, 0, 8]}, {"label": "avoirouetre", "backgroundColor": "rgb(65,117,221)", "data": [0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(5,22,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0]}, {"label": "bresil", "backgroundColor": "rgb(240,81,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 149]}, {"label": "burn-out", "backgroundColor": "rgb(104,0,160)", "data": [552, 0, 0, 78, 0, 0, 18, 0, 98, 3, 72, 0]}, {"label": "caballarius", "backgroundColor": "rgb(233,225,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(198,176,253)", "data": [0, 0, 54, 31, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(25,95,137)", "data": [173, 56, 0, 0, 0, 0, 26, 6, 2, 2, 0, 16]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(155,250,65)", "data": [220, 9, 49, 11, 70, 14, 19, 1, 10, 6, 26, 51]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(9,64,220)", "data": [4, 3, 18, 5, 1, 0, 1, 1, 0, 210, 16, 20]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(208,62,155)", "data": [20, 39, 250, 4, 3, 46, 8, 6, 11, 55, 6, 195]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(107,52,49)", "data": [26, 60, 1, 34, 55, 2, 5, 1, 4, 3, 0, 87]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(190,173,148)", "data": [1, 5, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(20,102,135)", "data": [21, 201, 188, 47, 348, 275, 207, 31, 55, 151, 174, 49]}, {"label": "cercle-education", "backgroundColor": "rgb(245,248,172)", "data": [429, 111, 235, 58, 607, 324, 304, 75, 494, 403, 395, 50]}, {"label": "cercle-electronique", "backgroundColor": "rgb(7,137,81)", "data": [0, 1, 0, 14, 16, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(58,93,149)", "data": [18, 15, 0, 0, 9, 0, 0, 15, 0, 3, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(79,52,6)", "data": [1, 3, 46, 0, 0, 0, 4, 0, 12, 2, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(172,124,26)", "data": [0, 2, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(204,98,130)", "data": [7, 23, 0, 6, 2, 6, 171, 8, 99, 9, 2, 9]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(1,42,128)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(58,34,28)", "data": [160, 21, 0, 0, 0, 3, 20, 0, 1, 0, 18, 4]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(44,215,48)", "data": [989, 393, 568, 19, 276, 622, 276, 14, 317, 796, 500, 77]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(8,231,235)", "data": [101, 162, 20, 0, 39, 341, 97, 38, 51, 105, 113, 74]}, {"label": "cercle-sante", "backgroundColor": "rgb(136,72,55)", "data": [56, 420, 122, 47, 56, 69, 169, 32, 85, 69, 16, 48]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(38,244,119)", "data": [7, 35, 56, 2, 1, 1, 6, 0, 26, 0, 1, 6]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(253,172,180)", "data": [568, 406, 147, 71, 87, 32, 151, 44, 14, 46, 158, 117]}, {"label": "chanvre", "backgroundColor": "rgb(46,218,30)", "data": [0, 0, 0, 35, 0, 2, 6, 0, 5, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(119,64,82)", "data": [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(212,94,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(11,224,219)", "data": [0, 19, 0, 5, 0, 2, 1, 0, 0, 0, 43, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(17,85,96)", "data": [2, 2, 0, 0, 1, 5, 6, 6, 14, 10, 2, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(254,94,107)", "data": [4, 0, 2, 2, 228, 66, 57, 107, 82, 66, 102, 119]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(23,111,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(225,21,27)", "data": [0, 4, 6, 2, 1, 0, 5, 0, 0, 12, 16, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(57,210,176)", "data": [0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(239,76,11)", "data": [55, 42, 2, 6, 10, 1, 7, 6, 76, 40, 162, 84]}, {"label": "cohorte-centre", "backgroundColor": "rgb(115,119,240)", "data": [0, 5, 6, 0, 2, 0, 0, 0, 6, 2, 7, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(179,192,96)", "data": [1, 6, 0, 0, 2, 3, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(202,10,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 26, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(1,157,162)", "data": [11, 5, 0, 0, 0, 0, 4, 0, 0, 17, 16, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(246,246,79)", "data": [7, 2, 1, 1, 15, 23, 65, 25, 13, 8, 4, 26]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(57,91,193)", "data": [4, 0, 24, 6, 64, 168, 50, 48, 133, 194, 228, 118]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(18,34,158)", "data": [0, 0, 0, 60, 22, 0, 2, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(144,49,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 793, 234]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(111,64,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(112,120,203)", "data": [1, 0, 6, 0, 1, 0, 0, 1, 1, 1, 6, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(222,218,37)", "data": [18, 3, 1, 0, 14, 3, 8, 5, 29, 7, 24, 21]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(242,184,129)", "data": [50, 4, 7, 5, 26, 0, 17, 13, 30, 28, 0, 5]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(181,49,1)", "data": [6, 1, 0, 1, 31, 2, 2, 0, 0, 2, 24, 5]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(107,115,218)", "data": [6, 7, 4, 3, 13, 16, 46, 101, 5, 20, 15, 6]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(102,123,123)", "data": [0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(40,18,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 75, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(219,42,253)", "data": [70, 9, 9, 2, 3, 68, 0, 0, 2, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(248,86,232)", "data": [21, 1, 0, 12, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(187,169,116)", "data": [0, 0, 0, 0, 0, 0, 14, 2, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(6,138,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(29,226,86)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(196,93,131)", "data": [0, 0, 0, 0, 0, 0, 109, 0, 2, 24, 3, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(32,162,131)", "data": [0, 0, 0, 0, 0, 0, 79, 235, 73, 16, 65, 14]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(39,180,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 11]}, {"label": "developpement-personnel", "backgroundColor": "rgb(137,118,194)", "data": [0, 0, 0, 0, 0, 0, 0, 86, 7, 4, 32, 159]}, {"label": "doughnut-economics", "backgroundColor": "rgb(57,195,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 125, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(128,100,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 24, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(181,234,104)", "data": [4, 86, 5, 847, 218, 9, 73, 149, 63, 12, 81, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(111,224,132)", "data": [0, 0, 0, 0, 0, 140, 80, 81, 143, 69, 12, 118]}, {"label": "education-populaire", "backgroundColor": "rgb(129,106,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 109, 14, 7, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(67,236,134)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 76, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(24,19,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 48]}, {"label": "empowerment", "backgroundColor": "rgb(78,189,232)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 0]}, {"label": "energie", "backgroundColor": "rgb(10,113,254)", "data": [1, 1, 0, 69, 12, 0, 3, 2, 13, 70, 48, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(18,68,44)", "data": [0, 341, 33, 0, 0, 0, 0, 0, 7, 9, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(54,16,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(61,132,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(87,214,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 3, 0]}, {"label": "essaimage", "backgroundColor": "rgb(18,0,185)", "data": [0, 0, 206, 9, 8, 0, 2, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(16,85,101)", "data": [0, 0, 10, 5, 4, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(152,42,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(103,43,75)", "data": [0, 0, 0, 0, 0, 25, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(219,76,94)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(227,181,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 15, 2]}, {"label": "fou-a-lier", "backgroundColor": "rgb(133,47,53)", "data": [16, 0, 1, 46, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(226,21,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(17,224,64)", "data": [1862, 750, 2647, 477, 692, 1193, 1339, 612, 588, 873, 618, 1282]}, {"label": "geopolitique", "backgroundColor": "rgb(222,218,199)", "data": [97, 1, 0, 0, 37, 132, 8, 1, 0, 1, 22, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(82,156,154)", "data": [10, 1, 11, 0, 2, 47, 0, 3, 2, 1, 44, 13]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(117,102,36)", "data": [0, 0, 875, 4162, 4552, 1085, 1011, 1569, 449, 347, 182, 8]}, {"label": "godelescherbach", "backgroundColor": "rgb(96,225,232)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(189,195,100)", "data": [19, 2, 1, 3, 0, 0, 0, 13, 5, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(84,33,198)", "data": [4, 5, 4, 5, 3, 0, 0, 0, 9, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(247,30,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(133,83,136)", "data": [0, 0, 95, 34, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(58,198,215)", "data": [0, 0, 0, 0, 30, 64, 39, 0, 0, 9, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(157,120,222)", "data": [47, 64, 352, 296, 10, 1, 3, 22, 21, 151, 45, 2]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(96,226,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137]}, {"label": "impression-3d", "backgroundColor": "rgb(87,230,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 17, 20, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(131,151,159)", "data": [106, 55, 1, 4, 10, 1, 3, 1, 10, 9, 108, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(57,176,227)", "data": [16, 0, 54, 12, 178, 88, 11, 8, 11, 113, 50, 8]}, {"label": "intelligence-collective", "backgroundColor": "rgb(231,49,13)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 14, 41, 10, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(234,220,18)", "data": [0, 0, 0, 0, 23, 1, 6, 0, 0, 0, 24, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(113,171,20)", "data": [0, 0, 0, 0, 0, 0, 2550, 269, 9, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(107,125,234)", "data": [0, 0, 0, 0, 0, 0, 0, 121, 150, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(222,145,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 101, 468, 129, 12]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(229,221,162)", "data": [0, 0, 0, 0, 0, 0, 195, 117, 16, 73, 398, 47]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(225,150,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(190,87,240)", "data": [0, 0, 0, 0, 0, 136, 272, 21, 64, 84, 175, 3]}, {"label": "le-led", "backgroundColor": "rgb(191,72,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 306, 266, 116]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(82,62,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(9,153,24)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 58, 94, 74, 101]}, {"label": "libre", "backgroundColor": "rgb(102,29,88)", "data": [362, 927, 0, 8, 0, 0, 1016, 19, 15, 104, 12, 596]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(182,48,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(183,181,9)", "data": [47, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(128,20,209)", "data": [157, 7, 3, 0, 6, 180, 2, 0, 15, 98, 4, 21]}, {"label": "lucarn", "backgroundColor": "rgb(38,252,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 325]}, {"label": "manuel-terrien", "backgroundColor": "rgb(75,65,86)", "data": [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(48,71,87)", "data": [0, 0, 0, 0, 0, 0, 9, 121, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(55,172,18)", "data": [1, 0, 0, 0, 2, 0, 0, 3, 0, 0, 1, 25]}, {"label": "medusa", "backgroundColor": "rgb(99,130,243)", "data": [176, 8, 5, 0, 0, 0, 0, 0, 0, 8, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(195,145,108)", "data": [0, 0, 0, 3, 16, 216, 95, 0, 0, 96, 106, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(88,20,105)", "data": [0, 49, 1, 0, 0, 0, 1, 3, 3, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(53,152,122)", "data": [0, 11, 2, 4, 0, 2, 0, 0, 3, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(189,147,214)", "data": [1053, 30, 617, 3, 96, 10, 0, 40, 16, 0, 6, 1]}, {"label": "myhappy", "backgroundColor": "rgb(134,240,120)", "data": [38, 105, 14, 1, 0, 2, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(22,34,37)", "data": [1, 0, 0, 0, 0, 1, 0, 2, 0, 9, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(23,0,218)", "data": [0, 0, 0, 0, 526, 151, 256, 103, 0, 39, 0, 10]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(108,55,71)", "data": [0, 0, 0, 0, 212, 11, 39, 3, 0, 1, 7, 7]}, {"label": "no-gafam", "backgroundColor": "rgb(122,199,143)", "data": [249, 67, 297, 75, 47, 212, 306, 129, 40, 83, 86, 213]}, {"label": "open-hardware", "backgroundColor": "rgb(184,203,155)", "data": [0, 0, 0, 18, 10, 1, 0, 0, 101, 75, 217, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(129,154,11)", "data": [0, 0, 0, 0, 0, 0, 544, 266, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(57,111,191)", "data": [0, 0, 0, 0, 25, 4, 5, 0, 0, 10, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(235,231,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 35, 31]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(248,75,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(150,162,213)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(1,79,104)", "data": [127, 65, 293, 1, 43, 403, 19, 134, 122, 10, 1, 7]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(247,196,31)", "data": [0, 0, 0, 14, 133, 73, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(168,152,118)", "data": [38, 21, 12, 17, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(122,21,114)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(84,55,125)", "data": [763, 78, 138, 0, 78, 142, 26, 94, 92, 109, 162, 11]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(207,62,88)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(21,1,227)", "data": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(38,87,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 155]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(225,39,132)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 13]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(77,148,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(122,65,243)", "data": [3, 101, 114, 30, 233, 43, 35, 14, 18, 9, 413, 62]}, {"label": "pub-canaux", "backgroundColor": "rgb(116,245,103)", "data": [0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(61,65,64)", "data": [0, 0, 0, 0, 0, 0, 137, 31, 63, 39, 23, 106]}, {"label": "recherches-biologie", "backgroundColor": "rgb(151,6,160)", "data": [0, 0, 0, 0, 1, 4, 0, 0, 14, 15, 1, 4]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(106,98,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 2, 5]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(66,245,225)", "data": [244, 77, 1102, 323, 149, 79, 397, 11, 25, 679, 150, 402]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(116,154,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(190,230,32)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 183, 93, 151, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(62,222,252)", "data": [0, 0, 0, 0, 521, 1, 5, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(188,128,213)", "data": [0, 0, 0, 0, 0, 0, 0, 94, 162, 81, 90, 606]}, {"label": "selfishgene", "backgroundColor": "rgb(151,82,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(23,119,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 2683, 1159]}, {"label": "siteweb", "backgroundColor": "rgb(96,216,44)", "data": [12, 4, 65, 14, 5, 7, 188, 1, 13, 25, 6, 139]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(148,147,150)", "data": [144, 153, 130, 18, 7, 177, 80, 13, 5, 87, 89, 8]}, {"label": "solucracy", "backgroundColor": "rgb(159,40,6)", "data": [0, 0, 469, 2149, 56, 80, 153, 93, 122, 109, 56, 109]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(118,85,161)", "data": [0, 0, 0, 0, 140, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(45,122,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(30,204,100)", "data": [20, 0, 0, 77, 1, 0, 10, 0, 0, 0, 68, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(199,97,143)", "data": [144, 64, 3, 80, 145, 75, 107, 16, 0, 21, 0, 46]}, {"label": "techos", "backgroundColor": "rgb(182,230,65)", "data": [32, 161, 231, 641, 327, 46, 205, 296, 202, 285, 236, 818]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(142,123,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 209]}, {"label": "testbot", "backgroundColor": "rgb(231,159,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(184,225,17)", "data": [4, 124, 141, 66, 273, 494, 1218, 314, 538, 289, 201, 19]}, {"label": "tour-du-monde", "backgroundColor": "rgb(39,132,205)", "data": [0, 0, 0, 0, 0, 64, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(67,206,52)", "data": [0, 0, 0, 0, 1, 0, 0, 6, 50, 2, 57, 0]}, {"label": "transport", "backgroundColor": "rgb(85,157,108)", "data": [0, 0, 0, 0, 0, 10, 3, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(231,43,3)", "data": [36, 2, 5, 0, 22, 2, 4, 34, 39, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(228,13,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 44, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(108,252,232)", "data": [18, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(46,14,8)", "data": [0, 0, 0, 0, 0, 0, 43, 15, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(155,216,129)", "data": [3, 0, 7, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(200,46,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(66,110,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 418, 118]}, {"label": "zero-dechet", "backgroundColor": "rgb(143,147,184)", "data": [82, 33, 145, 116, 63, 3, 114, 10, 68, 59, 23, 16]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(251,128,89)", "data": [258, 497, 5, 0, 219, 73, 17, 1, 0, 10, 0, 0]}], "usersByChannel": [{"label": "accueil", "backgroundColor": "rgb(140,39,96)", "data": [0, 20, 48, 34, 58, 52, 53, 53, 69, 90, 77, 56]}, {"label": "activite-et-travail", "backgroundColor": "rgb(220,71,35)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3]}, {"label": "agenda", "backgroundColor": "rgb(136,217,193)", "data": [15, 8, 3, 4, 2, 12, 11, 9, 14, 15, 12, 11]}, {"label": "algoculture", "backgroundColor": "rgb(126,206,185)", "data": [0, 0, 0, 0, 0, 6, 10, 4, 0, 0, 3, 2]}, {"label": "animation-crapauds", "backgroundColor": "rgb(29,50,195)", "data": [0, 0, 0, 0, 3, 5, 8, 0, 5, 7, 11, 10]}, {"label": "aquaponie", "backgroundColor": "rgb(208,187,244)", "data": [0, 0, 0, 0, 0, 0, 8, 4, 1, 2, 2, 0]}, {"label": "auberge-des-crapauds", "backgroundColor": "rgb(72,180,155)", "data": [0, 0, 0, 8, 8, 3, 5, 0, 0, 0, 0, 0]}, {"label": "audio-visuel-libre", "backgroundColor": "rgb(249,85,22)", "data": [0, 0, 0, 0, 0, 0, 9, 9, 5, 4, 0, 3]}, {"label": "avoirouetre", "backgroundColor": "rgb(65,117,221)", "data": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]}, {"label": "bnb-bonheur-national-brut", "backgroundColor": "rgb(5,22,224)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]}, {"label": "bresil", "backgroundColor": "rgb(240,81,57)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]}, {"label": "burn-out", "backgroundColor": "rgb(104,0,160)", "data": [6, 0, 0, 6, 0, 0, 5, 0, 4, 2, 6, 0]}, {"label": "caballarius", "backgroundColor": "rgb(233,225,26)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "cadeaux-ibf", "backgroundColor": "rgb(198,176,253)", "data": [0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cause-animale", "backgroundColor": "rgb(25,95,137)", "data": [10, 6, 0, 0, 0, 0, 5, 1, 1, 1, 0, 4]}, {"label": "cercle-autonomie-energetique", "backgroundColor": "rgb(155,250,65)", "data": [11, 7, 11, 4, 7, 3, 3, 1, 5, 4, 7, 4]}, {"label": "cercle-blockchain-crypto", "backgroundColor": "rgb(9,64,220)", "data": [2, 2, 3, 3, 1, 0, 1, 1, 0, 10, 4, 6]}, {"label": "cercle-collaboratif", "backgroundColor": "rgb(208,62,155)", "data": [7, 5, 8, 2, 3, 5, 3, 2, 4, 9, 2, 7]}, {"label": "cercle-des-arts", "backgroundColor": "rgb(107,52,49)", "data": [6, 9, 1, 7, 12, 2, 3, 1, 2, 3, 0, 2]}, {"label": "cercle-diversit\u00e9-culturelle", "backgroundColor": "rgb(190,173,148)", "data": [1, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "cercle-d\u00e9mocratie", "backgroundColor": "rgb(20,102,135)", "data": [8, 8, 13, 11, 16, 7, 11, 9, 8, 13, 16, 8]}, {"label": "cercle-education", "backgroundColor": "rgb(245,248,172)", "data": [18, 10, 16, 11, 18, 20, 13, 11, 17, 16, 19, 14]}, {"label": "cercle-electronique", "backgroundColor": "rgb(7,137,81)", "data": [0, 1, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0]}, {"label": "cercle-enthousiasme", "backgroundColor": "rgb(58,93,149)", "data": [4, 6, 0, 0, 2, 0, 0, 3, 0, 1, 0, 0]}, {"label": "cercle-europe", "backgroundColor": "rgb(79,52,6)", "data": [1, 1, 4, 0, 0, 0, 2, 0, 4, 1, 1, 0]}, {"label": "cercle-game-changers", "backgroundColor": "rgb(172,124,26)", "data": [0, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1]}, {"label": "cercle-generation-2050", "backgroundColor": "rgb(204,98,130)", "data": [2, 2, 0, 2, 1, 3, 9, 5, 7, 3, 1, 4]}, {"label": "cercle-genie-digital", "backgroundColor": "rgb(1,42,128)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "cercle-intergenerationnel", "backgroundColor": "rgb(58,34,28)", "data": [9, 3, 0, 0, 0, 2, 5, 0, 1, 0, 5, 3]}, {"label": "cercle-neurodiversit\u00e9", "backgroundColor": "rgb(44,215,48)", "data": [17, 13, 14, 5, 16, 15, 12, 5, 10, 17, 13, 10]}, {"label": "cercle-permaculture", "backgroundColor": "rgb(8,231,235)", "data": [16, 16, 6, 0, 10, 16, 15, 7, 13, 10, 15, 11]}, {"label": "cercle-sante", "backgroundColor": "rgb(136,72,55)", "data": [5, 12, 7, 6, 6, 8, 8, 6, 7, 9, 3, 7]}, {"label": "cercle-scientifique", "backgroundColor": "rgb(38,244,119)", "data": [5, 7, 6, 2, 1, 1, 2, 0, 4, 0, 1, 3]}, {"label": "changer-de-paradigme", "backgroundColor": "rgb(253,172,180)", "data": [15, 14, 10, 11, 10, 6, 13, 10, 9, 10, 13, 8]}, {"label": "chanvre", "backgroundColor": "rgb(46,218,30)", "data": [0, 0, 0, 3, 0, 2, 2, 0, 1, 0, 0, 0]}, {"label": "christin", "backgroundColor": "rgb(119,64,82)", "data": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "circuits-courts", "backgroundColor": "rgb(212,94,208)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "cnv", "backgroundColor": "rgb(11,224,219)", "data": [0, 4, 0, 2, 0, 2, 1, 0, 0, 0, 3, 0]}, {"label": "cohorte-2607", "backgroundColor": "rgb(17,85,96)", "data": [2, 1, 0, 0, 1, 1, 3, 2, 6, 2, 1, 0]}, {"label": "cohorte-34", "backgroundColor": "rgb(254,94,107)", "data": [2, 0, 2, 2, 15, 11, 6, 9, 10, 11, 13, 9]}, {"label": "cohorte-barcelone", "backgroundColor": "rgb(23,111,250)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "cohorte-belgique", "backgroundColor": "rgb(225,21,27)", "data": [0, 3, 2, 1, 1, 0, 2, 0, 0, 5, 3, 3]}, {"label": "cohorte-bourgogne", "backgroundColor": "rgb(57,210,176)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]}, {"label": "cohorte-bretagne", "backgroundColor": "rgb(239,76,11)", "data": [7, 5, 2, 3, 4, 1, 2, 5, 5, 6, 8, 10]}, {"label": "cohorte-centre", "backgroundColor": "rgb(115,119,240)", "data": [0, 2, 3, 0, 1, 0, 0, 0, 1, 1, 3, 0]}, {"label": "cohorte-grand-est", "backgroundColor": "rgb(179,192,96)", "data": [1, 2, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0]}, {"label": "cohorte-grece", "backgroundColor": "rgb(202,10,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0]}, {"label": "cohorte-grenoble", "backgroundColor": "rgb(1,157,162)", "data": [3, 2, 0, 0, 0, 0, 1, 0, 0, 3, 3, 0]}, {"label": "cohorte-hdf", "backgroundColor": "rgb(246,246,79)", "data": [1, 1, 1, 1, 5, 3, 6, 6, 4, 4, 3, 5]}, {"label": "cohorte-ile-de-france", "backgroundColor": "rgb(57,91,193)", "data": [2, 0, 7, 3, 8, 10, 8, 5, 8, 18, 17, 10]}, {"label": "cohorte-la-reunion", "backgroundColor": "rgb(18,34,158)", "data": [0, 0, 0, 6, 3, 0, 1, 0, 0, 0, 0, 0]}, {"label": "cohorte-loire", "backgroundColor": "rgb(144,49,170)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 13]}, {"label": "cohorte-lyon-st-etienne", "backgroundColor": "rgb(111,64,175)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "cohorte-normandie", "backgroundColor": "rgb(112,120,203)", "data": [1, 0, 3, 0, 1, 0, 0, 1, 1, 1, 2, 1]}, {"label": "cohorte-paca", "backgroundColor": "rgb(222,218,37)", "data": [5, 2, 1, 0, 6, 2, 2, 3, 3, 5, 7, 6]}, {"label": "cohorte-paysdesavoie", "backgroundColor": "rgb(242,184,129)", "data": [7, 2, 3, 3, 6, 0, 3, 2, 9, 6, 0, 2]}, {"label": "cohorte-sud-ouest", "backgroundColor": "rgb(181,49,1)", "data": [2, 1, 0, 1, 4, 1, 2, 0, 0, 2, 5, 3]}, {"label": "cohorte-suisse", "backgroundColor": "rgb(107,115,218)", "data": [4, 3, 1, 1, 4, 4, 4, 5, 3, 7, 5, 3]}, {"label": "comment-se-proteger-de-la-republique", "backgroundColor": "rgb(102,123,123)", "data": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]}, {"label": "communecter", "backgroundColor": "rgb(40,18,212)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0]}, {"label": "compagnon-du-devoir-educatif", "backgroundColor": "rgb(219,42,253)", "data": [9, 2, 2, 2, 2, 3, 0, 0, 1, 0, 0, 1]}, {"label": "cooperatives", "backgroundColor": "rgb(248,86,232)", "data": [3, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0]}, {"label": "crapaud-fou-tv", "backgroundColor": "rgb(187,169,116)", "data": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1]}, {"label": "cratube", "backgroundColor": "rgb(6,138,122)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]}, {"label": "creation-deau-douce-desalinisation", "backgroundColor": "rgb(29,226,86)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]}, {"label": "cyber-sensibilisation", "backgroundColor": "rgb(196,93,131)", "data": [0, 0, 0, 0, 0, 0, 5, 0, 1, 6, 2, 0]}, {"label": "desobeissance-civile", "backgroundColor": "rgb(32,162,131)", "data": [0, 0, 0, 0, 0, 0, 7, 11, 10, 7, 5, 5]}, {"label": "dessins-citoyens-collectifs-booderies", "backgroundColor": "rgb(39,180,219)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2]}, {"label": "developpement-personnel", "backgroundColor": "rgb(137,118,194)", "data": [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 6, 7]}, {"label": "doughnut-economics", "backgroundColor": "rgb(57,195,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0]}, {"label": "ecologie-biodiversite", "backgroundColor": "rgb(128,100,229)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 5, 1]}, {"label": "economie-connaissance", "backgroundColor": "rgb(181,234,104)", "data": [2, 4, 3, 9, 13, 4, 9, 11, 9, 4, 6, 0]}, {"label": "ecovillages-ecoquartiers", "backgroundColor": "rgb(111,224,132)", "data": [0, 0, 0, 0, 0, 9, 11, 7, 13, 11, 6, 13]}, {"label": "education-populaire", "backgroundColor": "rgb(129,106,133)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 10, 6, 3, 1]}, {"label": "emancipation-outre-mer", "backgroundColor": "rgb(67,236,134)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0]}, {"label": "emmaus-pau-lescar", "backgroundColor": "rgb(24,19,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6]}, {"label": "empowerment", "backgroundColor": "rgb(78,189,232)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0]}, {"label": "energie", "backgroundColor": "rgb(10,113,254)", "data": [1, 1, 0, 7, 4, 0, 1, 2, 4, 5, 7, 1]}, {"label": "energies-agiles", "backgroundColor": "rgb(18,68,44)", "data": [0, 8, 3, 0, 0, 0, 0, 0, 3, 4, 0, 0]}, {"label": "entomophagie", "backgroundColor": "rgb(54,16,77)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "entreprise-tous-eco-responsables", "backgroundColor": "rgb(61,132,210)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "erasmus-citizen-link", "backgroundColor": "rgb(87,214,144)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0]}, {"label": "essaimage", "backgroundColor": "rgb(18,0,185)", "data": [0, 0, 8, 2, 2, 0, 1, 0, 0, 0, 0, 0]}, {"label": "exemples-low-tech-habiter", "backgroundColor": "rgb(16,85,101)", "data": [0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0]}, {"label": "faire", "backgroundColor": "rgb(152,42,136)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "faire-avancer-le-schmilblick-ecologique", "backgroundColor": "rgb(103,43,75)", "data": [0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 1, 0]}, {"label": "ferme-pedagogique-albi", "backgroundColor": "rgb(219,76,94)", "data": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "foret_bleue", "backgroundColor": "rgb(227,181,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 1]}, {"label": "fou-a-lier", "backgroundColor": "rgb(133,47,53)", "data": [5, 0, 1, 7, 1, 0, 0, 0, 0, 0, 0, 1]}, {"label": "francais-langue-etrangere", "backgroundColor": "rgb(226,21,33)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]}, {"label": "general", "backgroundColor": "rgb(17,224,64)", "data": [79, 41, 55, 41, 38, 42, 49, 35, 39, 39, 42, 35]}, {"label": "geopolitique", "backgroundColor": "rgb(222,218,199)", "data": [6, 1, 0, 0, 5, 6, 3, 1, 0, 1, 4, 2]}, {"label": "gestion-de-l-eau", "backgroundColor": "rgb(82,156,154)", "data": [2, 1, 4, 0, 2, 4, 0, 1, 2, 1, 3, 3]}, {"label": "gilets-jaunes", "backgroundColor": "rgb(117,102,36)", "data": [0, 0, 18, 25, 26, 26, 20, 22, 12, 16, 13, 6]}, {"label": "godelescherbach", "backgroundColor": "rgb(96,225,232)", "data": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "habitat-durable", "backgroundColor": "rgb(189,195,100)", "data": [7, 2, 1, 2, 0, 0, 0, 3, 2, 0, 0, 0]}, {"label": "hackathon-distribue", "backgroundColor": "rgb(84,33,198)", "data": [3, 3, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0]}, {"label": "hacker-les-contes-pour-enfants", "backgroundColor": "rgb(247,30,244)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0]}, {"label": "hackerspace-angers", "backgroundColor": "rgb(133,83,136)", "data": [0, 0, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "holacratie-et-sociocratie", "backgroundColor": "rgb(58,198,215)", "data": [0, 0, 0, 0, 3, 7, 3, 0, 0, 2, 0, 0]}, {"label": "how-to-low-tech", "backgroundColor": "rgb(157,120,222)", "data": [9, 10, 13, 13, 5, 1, 3, 4, 7, 13, 9, 1]}, {"label": "idees-crapaud-fou", "backgroundColor": "rgb(96,226,51)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "impression-3d", "backgroundColor": "rgb(87,230,162)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 1]}, {"label": "info-desintox", "backgroundColor": "rgb(131,151,159)", "data": [9, 8, 1, 3, 5, 1, 2, 1, 4, 5, 3, 2]}, {"label": "intelligence-artificielle", "backgroundColor": "rgb(57,176,227)", "data": [3, 0, 8, 7, 9, 8, 5, 4, 6, 9, 10, 4]}, {"label": "intelligence-collective", "backgroundColor": "rgb(231,49,13)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 2, 1]}, {"label": "jeux-inde-1", "backgroundColor": "rgb(234,220,18)", "data": [0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 3, 2]}, {"label": "journee-cri", "backgroundColor": "rgb(113,171,20)", "data": [0, 0, 0, 0, 0, 0, 30, 15, 6, 0, 0, 0]}, {"label": "journee-solucracy-a-marcoussis", "backgroundColor": "rgb(107,125,234)", "data": [0, 0, 0, 0, 0, 0, 0, 10, 14, 0, 0, 0]}, {"label": "journee-univ-j-verne-nantes-4-juil-2019", "backgroundColor": "rgb(222,145,116)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 9, 6]}, {"label": "la-bascule-lobby-citoyen", "backgroundColor": "rgb(229,221,162)", "data": [0, 0, 0, 0, 0, 0, 13, 11, 7, 10, 17, 8]}, {"label": "la-fresque-du-climat", "backgroundColor": "rgb(225,150,196)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]}, {"label": "langage-vrai-anti-glossaire", "backgroundColor": "rgb(190,87,240)", "data": [0, 0, 0, 0, 0, 6, 9, 5, 8, 7, 8, 2]}, {"label": "le-led", "backgroundColor": "rgb(191,72,176)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 10, 10]}, {"label": "les-racines-profondes-de-la-crise-globale", "backgroundColor": "rgb(82,62,108)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]}, {"label": "lhomme-et-la-terre", "backgroundColor": "rgb(9,153,24)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 7, 7]}, {"label": "libre", "backgroundColor": "rgb(102,29,88)", "data": [11, 13, 0, 3, 0, 0, 10, 3, 4, 10, 6, 12]}, {"label": "livres-coup-de-coeur", "backgroundColor": "rgb(182,48,248)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0]}, {"label": "lobbying", "backgroundColor": "rgb(183,181,9)", "data": [4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0]}, {"label": "logiciel-libre", "backgroundColor": "rgb(128,20,209)", "data": [3, 2, 1, 0, 3, 4, 1, 0, 4, 8, 2, 4]}, {"label": "lucarn", "backgroundColor": "rgb(38,252,185)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12]}, {"label": "manuel-terrien", "backgroundColor": "rgb(75,65,86)", "data": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "marseille-17-18-avril", "backgroundColor": "rgb(48,71,87)", "data": [0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0]}, {"label": "meditation", "backgroundColor": "rgb(55,172,18)", "data": [1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 3]}, {"label": "medusa", "backgroundColor": "rgb(99,130,243)", "data": [6, 2, 4, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "meta", "backgroundColor": "rgb(195,145,108)", "data": [0, 0, 0, 1, 2, 3, 7, 0, 0, 5, 7, 0]}, {"label": "meta-communication", "backgroundColor": "rgb(88,20,105)", "data": [0, 5, 1, 0, 0, 0, 1, 2, 2, 2, 0, 0]}, {"label": "metacognition", "backgroundColor": "rgb(53,152,122)", "data": [0, 4, 1, 2, 0, 2, 0, 0, 2, 0, 0, 0]}, {"label": "mutuelle-sociale-solidaire", "backgroundColor": "rgb(189,147,214)", "data": [19, 6, 11, 2, 6, 3, 0, 6, 4, 0, 4, 1]}, {"label": "myhappy", "backgroundColor": "rgb(134,240,120)", "data": [4, 7, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0]}, {"label": "nature-simplicite-bienveillance", "backgroundColor": "rgb(22,34,37)", "data": [1, 0, 0, 0, 0, 1, 0, 1, 0, 3, 1, 0]}, {"label": "nenuphar", "backgroundColor": "rgb(23,0,218)", "data": [0, 0, 0, 0, 11, 10, 10, 7, 0, 4, 0, 2]}, {"label": "neuroharmonie-neuromusique", "backgroundColor": "rgb(108,55,71)", "data": [0, 0, 0, 0, 8, 5, 5, 2, 0, 1, 3, 2]}, {"label": "no-gafam", "backgroundColor": "rgb(122,199,143)", "data": [9, 11, 9, 13, 10, 10, 15, 10, 7, 13, 10, 14]}, {"label": "open-hardware", "backgroundColor": "rgb(184,203,155)", "data": [0, 0, 0, 2, 2, 1, 0, 0, 4, 6, 8, 2]}, {"label": "outil-de-mediatisation", "backgroundColor": "rgb(129,154,11)", "data": [0, 0, 0, 0, 0, 0, 8, 9, 0, 0, 0, 0]}, {"label": "ouvrons-et-reparons-les-objets", "backgroundColor": "rgb(57,111,191)", "data": [0, 0, 0, 0, 8, 3, 3, 0, 0, 3, 0, 0]}, {"label": "p-2-p-dat", "backgroundColor": "rgb(235,231,158)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 3]}, {"label": "partage-dessins-et-techniques", "backgroundColor": "rgb(248,75,56)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "petite-enfance", "backgroundColor": "rgb(150,162,213)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 2]}, {"label": "philosophie", "backgroundColor": "rgb(1,79,104)", "data": [7, 8, 9, 1, 4, 11, 6, 8, 8, 4, 1, 2]}, {"label": "photovoltaique-hltech", "backgroundColor": "rgb(247,196,31)", "data": [0, 0, 0, 1, 6, 2, 0, 0, 0, 0, 0, 0]}, {"label": "piano-bar", "backgroundColor": "rgb(168,152,118)", "data": [3, 4, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0]}, {"label": "pnl", "backgroundColor": "rgb(122,21,114)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "pratiques-artistiques", "backgroundColor": "rgb(84,55,125)", "data": [17, 8, 4, 0, 10, 12, 8, 7, 10, 13, 9, 6]}, {"label": "production-vivriere-locale", "backgroundColor": "rgb(207,62,88)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]}, {"label": "produits-biocycliques", "backgroundColor": "rgb(21,1,227)", "data": [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]}, {"label": "projet-cand-alterincub-centre", "backgroundColor": "rgb(38,87,230)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6]}, {"label": "projet-transceiver-laser", "backgroundColor": "rgb(225,39,132)", "data": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2]}, {"label": "projets-zad-1-planetaire", "backgroundColor": "rgb(77,148,59)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0]}, {"label": "psychologie-neurologie", "backgroundColor": "rgb(122,65,243)", "data": [3, 9, 7, 5, 8, 7, 5, 3, 2, 3, 11, 5]}, {"label": "pub-canaux", "backgroundColor": "rgb(116,245,103)", "data": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "radio-crapaud", "backgroundColor": "rgb(61,65,64)", "data": [0, 0, 0, 0, 0, 0, 10, 8, 9, 7, 7, 4]}, {"label": "recherches-biologie", "backgroundColor": "rgb(151,6,160)", "data": [0, 0, 0, 0, 1, 2, 0, 0, 4, 5, 1, 2]}, {"label": "recueil-temoignages", "backgroundColor": "rgb(106,98,54)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2, 2]}, {"label": "reflexion-sur-l-argent", "backgroundColor": "rgb(66,245,225)", "data": [15, 5, 19, 16, 17, 8, 18, 5, 5, 18, 16, 18]}, {"label": "reflexion-sur-lamour", "backgroundColor": "rgb(116,154,23)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11]}, {"label": "rencontre-crapaud-kangourou", "backgroundColor": "rgb(190,230,32)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 16, 0]}, {"label": "resilience-du-crapaud-fou-projet", "backgroundColor": "rgb(62,222,252)", "data": [0, 0, 0, 0, 10, 1, 3, 0, 0, 0, 0, 0]}, {"label": "right-to-repair", "backgroundColor": "rgb(188,128,213)", "data": [0, 0, 0, 0, 0, 0, 0, 9, 10, 9, 12, 13]}, {"label": "selfishgene", "backgroundColor": "rgb(151,82,163)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]}, {"label": "semourais", "backgroundColor": "rgb(23,119,235)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 23]}, {"label": "siteweb", "backgroundColor": "rgb(96,216,44)", "data": [1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 4]}, {"label": "sociologie-de-l-effondrement", "backgroundColor": "rgb(148,147,150)", "data": [11, 10, 7, 5, 4, 12, 9, 7, 4, 9, 11, 5]}, {"label": "solucracy", "backgroundColor": "rgb(159,40,6)", "data": [0, 0, 10, 15, 8, 11, 11, 9, 12, 10, 12, 9]}, {"label": "soutien-au-terrain", "backgroundColor": "rgb(118,85,161)", "data": [0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0]}, {"label": "suggestion", "backgroundColor": "rgb(45,122,8)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "survivalismes-et-resiliences", "backgroundColor": "rgb(30,204,100)", "data": [5, 0, 0, 12, 1, 0, 3, 0, 0, 0, 9, 1]}, {"label": "team-hacker-debutant", "backgroundColor": "rgb(199,97,143)", "data": [7, 8, 3, 9, 10, 10, 5, 5, 0, 5, 0, 5]}, {"label": "techos", "backgroundColor": "rgb(182,230,65)", "data": [8, 10, 11, 13, 10, 9, 13, 12, 16, 17, 13, 19]}, {"label": "terre-de-convergence", "backgroundColor": "rgb(142,123,12)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8]}, {"label": "testbot", "backgroundColor": "rgb(231,159,180)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]}, {"label": "tiers-lieux-apprenant", "backgroundColor": "rgb(184,225,17)", "data": [2, 8, 9, 6, 11, 18, 19, 16, 19, 15, 17, 6]}, {"label": "tour-du-monde", "backgroundColor": "rgb(39,132,205)", "data": [0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 0, 0]}, {"label": "transhumanisme-et-eugenisme", "backgroundColor": "rgb(67,206,52)", "data": [0, 0, 0, 0, 1, 0, 0, 3, 4, 1, 3, 0]}, {"label": "transport", "backgroundColor": "rgb(85,157,108)", "data": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0]}, {"label": "tsunamis", "backgroundColor": "rgb(231,43,3)", "data": [4, 1, 3, 0, 5, 1, 2, 6, 5, 0, 0, 1]}, {"label": "tvp-et-ebr", "backgroundColor": "rgb(228,13,115)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0]}, {"label": "une-revolution-pourquoi-comment", "backgroundColor": "rgb(108,252,232)", "data": [4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"label": "unite-humaine", "backgroundColor": "rgb(46,14,8)", "data": [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0]}, {"label": "vers-une-nouvelle-civilisation", "backgroundColor": "rgb(155,216,129)", "data": [3, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0]}, {"label": "violences-individuelles", "backgroundColor": "rgb(200,46,242)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]}, {"label": "wiki-crapaud-fou", "backgroundColor": "rgb(66,110,164)", "data": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 9]}, {"label": "zero-dechet", "backgroundColor": "rgb(143,147,184)", "data": [9, 7, 10, 10, 8, 3, 11, 2, 5, 5, 4, 5]}, {"label": "zetetique-et-outils-epistemologiques", "backgroundColor": "rgb(251,128,89)", "data": [7, 13, 4, 0, 3, 7, 4, 1, 0, 2, 0, 0]}], "messagesByTopic": [{"label": "global", "backgroundColor": "rgb(125,180,39)", "data": [9915, 6262, 10738, 10639, 12050, 8619, 14858, 6526, 6879, 11493, 13460, 11354]}, {"label": "project", "backgroundColor": "rgb(101,105,1)", "data": [1352, 281, 1560, 2269, 960, 655, 3981, 946, 943, 2218, 3404, 2917]}, {"label": "democratie", "backgroundColor": "rgb(224,46,183)", "data": [3349, 1949, 4446, 7737, 6575, 3203, 2846, 2575, 1557, 2179, 2106, 1091]}, {"label": "ecologie", "backgroundColor": "rgb(11,96,36)", "data": [1806, 1551, 697, 587, 703, 1052, 1546, 308, 595, 1017, 3836, 1822]}, {"label": "technologie", "backgroundColor": "rgb(61,177,36)", "data": [617, 206, 834, 553, 598, 646, 1555, 744, 399, 1357, 882, 1093]}], "usersGlobal": [{"label": "global", "backgroundColor": "red", "data": [96, 79, 96, 83, 99, 95, 99, 92, 111, 133, 120, 103]}]} \ No newline at end of file diff --git a/site/site.webmanifest b/site/site.webmanifest index 1edcfef..1854069 100644 --- a/site/site.webmanifest +++ b/site/site.webmanifest @@ -1,19 +1,19 @@ { - "name": "", - "short_name": "", - "icons": [ - { - "src": "android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" + "name": "Les Crapauds fous", + "short_name": "Crapauds Fous", + "icons": [ + { + "src": "android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" }