Redirecting…
Redirecting to: https://discord.gg/tsBTgc9
diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..5f3705c --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,31 @@ +{ + "env": { + "browser": true, + "es6": true, + "jest": true + }, + "plugins": [], + "extends": ["airbnb-base", "prettier"], + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly" + }, + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "rules": { + "no-unused-vars": [ + "error", + { + "vars": "local", + "args": "none" + } + ], + "indent": ["error", 2], + "linebreak-style": ["error", "unix"], + "quotes": ["error", "single"], + "semi": "off", + "no-console": "off" + } +} diff --git a/.github/workflows/run_cli.yml b/.github/workflows/run_cli.yml new file mode 100644 index 0000000..5f02d05 --- /dev/null +++ b/.github/workflows/run_cli.yml @@ -0,0 +1,40 @@ +name: "Run aragonCLI" + +on: + # Trigger on merging to master. + push: + branches: + - master + # As well as every 6 hours. + schedule: + - cron: 0 */24 * * * + +jobs: + build: + runs-on: "ubuntu-latest" + + strategy: + matrix: + node-version: [12.x] + + steps: + - uses: "actions/checkout@v2" + - name: "Use Node.js ${{ matrix.node-version }}" + uses: "actions/setup-node@v1" + with: + node-version: "${{ matrix.node-version }}" + INFURA_KEY: "${{ secrets.INFURA_KEY }}" + PRIVATE_KEY: "${{ secrets.PRIVATE_KEY }}" + - name: Setup aragonCLI signer + run: node ./src/setupAragon.js + env: + INFURA_KEY: "${{ secrets.INFURA_KEY }}" + PRIVATE_KEY: "${{ secrets.PRIVATE_KEY }}" + - name: Install Aracred + run: npm ci + - name: Install Aragon + run: npm install -g @aragon/cli + - name: Prepare transaction + run: node ./src/processGrain.js + - name: Sending Transaction + run: node ./src/mint.js | sh diff --git a/.github/workflows/run_sc.yml b/.github/workflows/run_sc.yml new file mode 100644 index 0000000..1681dd7 --- /dev/null +++ b/.github/workflows/run_sc.yml @@ -0,0 +1,42 @@ +name: "Run SourceCred" + +on: + # Trigger on merging to master. + push: + branches: + - master + # As well as every 6 hours. + schedule: + - cron: 0 */6 * * * + +jobs: + build: + runs-on: "ubuntu-latest" + + strategy: + matrix: + node-version: [12.x] + + steps: + - name: Checkout Repository + uses: actions/checkout@v1 + - name: SourceCred Cache + uses: actions/cache@v1 + with: + # cred-action uses *workspace*/sourcecred_data as it's SOURCECRED_DIRECTORY. Only store the cache from that. + path: sourcecred_data/cache + key: SC_CACHE-${{ hashFiles('**/project.json') }}-${{ github.run_id }} + restore-keys: | + SC_CACHE-${{ hashFiles('**/project.json') }}- + SC_CACHE- + - name: Run SourceCred + uses: vsoch/cred-action@wip-discord-cache + env: + token: ${{ secrets.GITHUB_TOKEN }} + SOURCECRED_DISCORD_TOKEN: ${{ secrets.SOURCECRED_DISCORD_TOKEN }} + with: + weights: ./config/weights.json + project: "@AraCred" + project-file: ./config/project.json + branch-against: master + automated: "true" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76efb07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +.vscode diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..a725da2 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +log +docs +node_modules diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..e5f166c --- /dev/null +++ b/.prettierrc @@ -0,0 +1,10 @@ +{ + "printWidth": 80, + "semi": true, + "tabWidth": 2, + "singleQuote": true, + "trailingComma": "all", + "bracketSpacing": false, + "jsxBracketSameLine": false, + "proseWrap": "always" +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..52b1825 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Aracred Template + +This is the official, forkable Aracred template. Please see the [AraCred Deployment page](https://aracred.github.io/website/docs/deploymentOverview/) for info on how to setup and run AraCred. diff --git a/config/addressbook.json b/config/addressbook.json new file mode 100644 index 0000000..0d4f101 --- /dev/null +++ b/config/addressbook.json @@ -0,0 +1,2 @@ +[ +] diff --git a/config/dao.json b/config/dao.json new file mode 100644 index 0000000..e5f692c --- /dev/null +++ b/config/dao.json @@ -0,0 +1,10 @@ +[ + { + "daoAddress": "", + "tokenManagerAddress": "", + "votingAddress": "", + "environment": "", + "mints": [], + "burns": [] + } +] diff --git a/config/project.json b/config/project.json new file mode 100644 index 0000000..c615314 --- /dev/null +++ b/config/project.json @@ -0,0 +1,20 @@ +[ + { + "type": "sourcecred/project", + "version": "0.4.0" + }, + { + "id": "", + "discord": { + "guildId": "", + "reactionWeights": { + "👍": 1, + "🔥": 1, + "❤️": 1, + "🙏": 1 + } + }, + "identities": [], + "repoIds": [] + } +] diff --git a/config/weights.json b/config/weights.json new file mode 100644 index 0000000..2f59d82 --- /dev/null +++ b/config/weights.json @@ -0,0 +1,25 @@ +[ + { + "type": "sourcecred/weights", + "version": "0.2.0" + }, + { + "edgeWeights": {}, + "nodeWeights": { + "N\u0000sourcecred\u0000github\u0000COMMENT\u0000": 0.5, + "N\u0000sourcecred\u0000github\u0000COMMIT\u0000": 1, + "N\u0000sourcecred\u0000github\u0000ISSUE\u0000": 1, + "N\u0000sourcecred\u0000github\u0000PULL\u0000": 16, + "N\u0000sourcecred\u0000github\u0000REPO\u0000": 4, + "N\u0000sourcecred\u0000github\u0000REVIEW\u0000": 4, + "N\u0000sourcecred\u0000discourse\u0000like\u0000": 4, + "N\u0000sourcecred\u0000discourse\u0000post\u0000": 0, + "N\u0000sourcecred\u0000discourse\u0000topic\u0000": 0, + "N\u0000sourcecred\u0000discourse\u0000user\u0000": 0, + "N\u0000sourcecred\u0000discord\u0000REACTION\u0000629411717704712192\u0000": 4, + "N\u0000sourcecred\u0000discord\u0000REACTION\u0000629412800346849302\u0000": 4, + "N\u0000sourcecred\u0000discord\u0000REACTION\u0000635151982298136587\u0000": 3, + "N\u0000sourcecred\u0000github": 2 + } + } +] diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/cred.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/cred.json new file mode 100644 index 0000000..2f0e3bd --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/cred.json @@ -0,0 +1 @@ +[{"type":"sourcecred/timelineCred","version":"0.6.0"},{"credJSON":{"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000bot\u0000699326460120530944\u0000":[0,0,0,0,0,0,0,0,4.864651269928346],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000143776454050709505\u0000":[0,0,0,0,0,0,0,0,0.2890662234973351],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000199630270285086720\u0000":[0,0,0,0,0,0,0,0,0.5030042308224497],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000208321561982271489\u0000":[0,0,0,0,0,0,0,0,0.45330148289884065],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000291388682710024192\u0000":[0,0,0,0,0,0,0,0.04887012356483164,0.20833037099805962],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000333143183355543552\u0000":[0,0,0,0,0,0,0,0,0.24865459892323535],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000371754999304290304\u0000":[0,0,0,0,0,0,0,0.47004101921331426,0.18493366269910522],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000440281764204642314\u0000":[0,0,0,0,0,0,0,0.9500604102647839,0.6546588301073614],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000464169801036726292\u0000":[0,0,0,0,0,0,0,0,5.249787385920487],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000505789102222737420\u0000":[0,0,0,0,0,0,0,0,0.8255831768684478],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000537858848912834561\u0000":[0,0,0,0,0,0,0,0.6991212793973383,1.667341760510741],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000633708951447535616\u0000":[0,0,0,0,0,0,0,0,0.2890662234973351],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000665203331639148553\u0000":[0,0,0,0,0,0,0,0.47004101921331426,3.675305368239791],"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000user\u0000683892894767251489\u0000":[0,0,0,0,0,0,0,0.9949079965680416,0.7175196124205165],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000695669843034243134\u0000":[0,0,0,0,0,0,15.793401152041207,3.5625431382379897,1.6587180040471414],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696451005914546256\u0000":[0,0,0,0,0,0,0,0.8138909379846473,0.33218081220401463],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696454968831508630\u0000":[0,0,0,0,0,0,0,1.6623995382996297,0.918706574131523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696455224532926464\u0000":[0,0,0,0,0,0,0,1.6623995382996297,0.918706574131523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696609260196593664\u0000":[0,0,0,0,0,0,0,0.32007889052462635,0.15893486686759903],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696708274682069062\u0000":[0,0,0,0,0,0,0,0.8250349239401964,0.37957389413363224],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696730540039995493\u0000":[0,0,0,0,0,0,0,3.986146918266547,1.7960215948705813],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696740396331696198\u0000":[0,0,0,0,0,0,0,1.1608792794698608,0.3460429075371611],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696769305131614260\u0000":[0,0,0,0,0,0,0,1.1608792794698608,0.451317158794113],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000696853096441184326\u0000":[0,0,0,0,0,0,0,0.5186170189177629,0.248638718366263],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698673271729553469\u0000":[0,0,0,0,0,0,0,0.2907364738234532,0.17431045733458456],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698691171811328080\u0000":[0,0,0,0,0,0,0,0,0.7364950399323268],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698710294427467857\u0000":[0,0,0,0,0,0,0,0,0.6877664492564477],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698710365046833192\u0000":[0,0,0,0,0,0,0,0,0.44316272816770047],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698799127244308550\u0000":[0,0,0,0,0,0,0,0,0.8277025537554966],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698897288373993508\u0000":[0,0,0,0,0,0,0,0,0.9158414389718198],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698919569078878289\u0000":[0,0,0,0,0,0,0,0,0.6380770908712164],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698921167011971168\u0000":[0,0,0,0,0,0,0,0,0.8514141232005781],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698921390845198426\u0000":[0,0,0,0,0,0,0,0,3.3342423499719906],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698932174396850236\u0000":[0,0,0,0,0,0,0,0,0.6187833422299976],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698935929942966332\u0000":[0,0,0,0,0,0,0,0,0.921015702439386],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698941350531301477\u0000":[0,0,0,0,0,0,0,0,0.7364950399323268],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698946297012420619\u0000":[0,0,0,0,0,0,0,0,0.1418851491814691],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698965088530595990\u0000":[0,0,0,0,0,0,0,0,1.4284816269200358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698965418370400296\u0000":[0,0,0,0,0,0,0,0,3.834072676878962],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698968459890917436\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698968989878976612\u0000":[0,0,0,0,0,0,0,0,1.13638453539405],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698969370533298296\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698969730580742174\u0000":[0,0,0,0,0,0,0,0,3.4864621034683836],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698970943955140738\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698973708316049488\u0000":[0,0,0,0,0,0,0,0,2.325356557567485],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000698982179069362196\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699006982681657354\u0000":[0,0,0,0,0,0,0,0,0.7590301523983607],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699007297099268116\u0000":[0,0,0,0,0,0,0,0,0.6380770908712164],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699016223303794728\u0000":[0,0,0,0,0,0,0,0,0.890236597890327],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699020835096231937\u0000":[0,0,0,0,0,0,0,0,1.5493293612818269],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699021694240686190\u0000":[0,0,0,0,0,0,0,0,3.424278132202893],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699022762215211088\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699024432244588644\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699025335148216410\u0000":[0,0,0,0,0,0,0,0,6.136509891831894],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699124769349566484\u0000":[0,0,0,0,0,0,0,0,1.0365291883269048],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699137595724267520\u0000":[0,0,0,0,0,0,0,0,1.454089880515629],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699302777167413379\u0000":[0,0,0,0,0,0,0,0,0.8153595736831919],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699304903796981771\u0000":[0,0,0,0,0,0,0,0,0.8859628109803463],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699306499930980452\u0000":[0,0,0,0,0,0,0,0,0.9711860351989652],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699318638519255111\u0000":[0,0,0,0,0,0,0,0,0.8153595736831919],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699325373472702534\u0000":[0,0,0,0,0,0,0,0,0.9711860351989652],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699325915578236949\u0000":[0,0,0,0,0,0,0,0,0.8153595736831919],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699326575627206778\u0000":[0,0,0,0,0,0,0,0,3.3415126796994383],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699342838756016128\u0000":[0,0,0,0,0,0,0,0,0.6600907011336299],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699358233437143163\u0000":[0,0,0,0,0,0,0,0,1.1709487323798478],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699383579402174494\u0000":[0,0,0,0,0,0,0,0,0.5118599755390989],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699636647557464194\u0000":[0,0,0,0,0,0,0,0,0.2549679981620915],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000699696022477340735\u0000":[0,0,0,0,0,0,0,0,1.0707011729623235],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344752031432766\u0000700038397376331798\u0000":[0,0,0,0,0,0,0,0,0.6400792003014566],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697073300131807274\u0000":[0,0,0,0,0,0,0,0.989227854816776,0.39761350871374895],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697081143551328256\u0000":[0,0,0,0,0,0,0,0.9208171712258714,0.37217354830236443],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697318813192028200\u0000":[0,0,0,0,0,0,0,0.7041599751123904,0.14214272842911918],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000695344917068906598\u0000697375832364023889\u0000":[0,0,0,0,0,0,0,1.1192752466201035,0.46182060052497975],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696400331260821586\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,7.679349799877596,4.802490168551754],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696400331260821586\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,7.379543597864231],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696427343220047872\u0000":[0,0,0,0,0,0,0,3.8446717159891404,1.629304469071086],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696440757908799568\u0000":[0,0,0,0,0,0,0,0.989227854816776,0.39761350871374895],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696441890048049232\u0000":[0,0,0,0,0,0,0,3.8446717159891404,1.629304469071086],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696452154268975225\u0000":[0,0,0,0,0,0,0,0.989227854816776,0.39761350871374895],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696730851802742794\u0000":[0,0,0,0,0,0,0,0.8836259424134302,0.33816085288158737],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000696789204767866911\u0000":[0,0,0,0,0,0,0,0.861116910839377,0.318190972389073],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699020484167073792\u0000":[0,0,0,0,0,0,0,0,0.7949092765482901],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699122711745527878\u0000":[0,0,0,0,0,0,0,0,0.8717340373350699],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699123164340551691\u0000":[0,0,0,0,0,0,0,0,3.2566781685696053],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699274952301609111\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699275129204637708\u0000":[0,0,0,0,0,0,0,0,0.4593340728953454],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699275497984622760\u0000":[0,0,0,0,0,0,0,0,3.1963258691538714],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699276546795372595\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699277478530646016\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699278809974833224\u0000":[0,0,0,0,0,0,0,0,0.6640961721754783],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699404949448163368\u0000":[0,0,0,0,0,0,0,0,0.8825997055448322],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699406916300046346\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699407535194767410\u0000":[0,0,0,0,0,0,0,0,1.323276776142817],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699408033343733841\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699410487020093501\u0000":[0,0,0,0,0,0,0,0,0.6416166707486863],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699558251074682931\u0000":[0,0,0,0,0,0,0,0,0.4849423264909387],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699560532046250034\u0000":[0,0,0,0,0,0,0,0,2.003894300058392],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000699939694221328435\u0000":[0,0,0,0,0,0,0,0,0.9735810035548944],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700016555521736837\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700064770367160361\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700064920104075394\u0000":[0,0,0,0,0,0,0,0,3.1963258691538714],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700073516900417556\u0000":[0,0,0,0,0,0,0,0,0.5050924358584444],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700078148615798814\u0000":[0,0,0,0,0,0,0,0,0.8569948644633394],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700083246087667833\u0000":[0,0,0,0,0,0,0,0,0.5307006894540378],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700085865933832252\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700087985634541678\u0000":[0,0,0,0,0,0,0,0,2.876439460562224],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700345588725841990\u0000":[0,0,0,0,0,0,0,0,0.8056818905615067],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700354840445976616\u0000":[0,0,0,0,0,0,0,0,0.8056818905615067],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420039141752863\u0000700468593451597902\u0000":[0,0,0,0,0,0,0,0,0.589594554267089],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698667046661128244\u0000":[0,0,0,0,0,0,0,0.8138909379846473,0.33218081220401463],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698672127418695751\u0000":[0,0,0,0,0,0,0,0.2907364738234532,0.17431045733458456],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698673539011837994\u0000":[0,0,0,0,0,0,0,0.2907364738234532,0.17431045733458456],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698683402920001637\u0000":[0,0,0,0,0,0,0,0.8212265421599406,0.3283369145872682],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000698956579168321617\u0000":[0,0,0,0,0,0,0,0,0.17469113220183918],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699017594287685672\u0000":[0,0,0,0,0,0,0,0,0.656411448656782],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699283043940302898\u0000":[0,0,0,0,0,0,0,0,0.6760514747624523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699284090607763506\u0000":[0,0,0,0,0,0,0,0,2.011918233989935],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699303864872075295\u0000":[0,0,0,0,0,0,0,0,0.9340961739445316],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000696420197644632116\u0000699352914476400712\u0000":[0,0,0,0,0,0,0,0,0.6760514747624523],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000698942081858666527\u0000699821888431587439\u0000":[0,0,0,0,0,0,0,0,0.6380770908712164],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000698942081858666527\u0000699822779670724650\u0000":[0,0,0,0,0,0,0,0,2.740651805508814],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700033440564641854\u0000":[0,0,0,0,0,0,0,0,0.5050924358584444],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700036022368731256\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700038868707180644\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700039441799970969\u0000":[0,0,0,0,0,0,0,0,2.8737081819813133],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700040376085381152\u0000":[0,0,0,0,0,0,0,0,3.2236677388902573],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700040917926543422\u0000":[0,0,0,0,0,0,0,0,5.07624490670747],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700040992916766780\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044206176993470\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044421760286721\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044496049799228\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044548411490335\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044635619328131\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700044689285316738\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700049028251123832\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700049257490808933\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700049378643017889\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700051768008114186\u0000":[0,0,0,0,0,0,0,0,0.5227432451827331],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700055780807802900\u0000":[0,0,0,0,0,0,0,0,0.9452371508970575],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700056792524128306\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059334679330946\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059353306234910\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059384751063091\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059438136033361\u0000":[0,0,0,0,0,0,0,0,0.5050924358584444],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059438526103572\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700059538023514154\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700061097583050871\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700062058405953678\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700062189503119381\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700062400774275204\u0000":[0,0,0,0,0,0,0,0,0.2700645416720245],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700063628711166054\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700064631778967634\u0000":[0,0,0,0,0,0,0,0,0.7032488761791338],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700064632144003103\u0000":[0,0,0,0,0,0,0,0,0.2524137323477358],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700118599003668510\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700335319349985310\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700335919315550299\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700365992571699350\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700366555233517630\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700367514638483537\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700369922630615040\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700370207419662458\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700370372230643763\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700371208880914563\u0000":[0,0,0,0,0,0,0,0,0.37587061320720416],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700371209241624656\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700371558480216124\u0000":[0,0,0,0,0,0,0,0,0.18636158557417273],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397237930295386\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397481799974962\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397482362011769\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397866581229620\u0000":[0,0,0,0,0,0,0,0,0.3369158507563803],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397927478067221\u0000":[0,0,0,0,0,0,0,0,0.3369158507563803],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700397997707755530\u0000":[0,0,0,0,0,0,0,0,0.589594554267089],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700398207733334077\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700398301412982965\u0000":[0,0,0,0,0,0,0,0,0.3932819261217823],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700398301727555604\u0000":[0,0,0,0,0,0,0,0,0.174921994833398],"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000700023168995295233\u0000700399163313094746\u0000":[0,0,0,0,0,0,0,0,0.42760069834410663],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000❤️\u0000571023281382227978\u0000695669843034243134\u0000":[0,0,0,0,0,0,9.491030649933052,2.102674780169771,0.9829267819635068],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696454968831508630\u0000":[0,0,0,0,0,0,0,1.1576791810845732,0.8113209350923755],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696455224532926464\u0000":[0,0,0,0,0,0,0,1.1576791810845732,0.8113209350923755],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699021694240686190\u0000":[0,0,0,0,0,0,0,0,2.8549560887730276],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699025335148216410\u0000":[0,0,0,0,0,0,0,0,2.9665404483952162],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000571023281382227978\u0000695669843034243134\u0000":[0,0,0,0,0,0,9.491030649933052,2.102674780169771,0.9829267819635068],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699025335148216410\u0000":[0,0,0,0,0,0,0,0,3.491621306340761],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699326575627206778\u0000":[0,0,0,0,0,0,0,0,3.3761427928883205],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000571023281382227978\u0000696730540039995493\u0000":[0,0,0,0,0,0,0,3.982503166842193,1.8593283408788632],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000657069807505637397\u0000698965418370400296\u0000":[0,0,0,0,0,0,0,0,3.39931772399119],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000250086586450968576\u0000698969730580742174\u0000":[0,0,0,0,0,0,0,0,2.7783869931179987],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000321092785921064961\u0000698973708316049488\u0000":[0,0,0,0,0,0,0,0,2.271125715626497],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000571023281382227978\u0000698921390845198426\u0000":[0,0,0,0,0,0,0,0,3.78567750789546],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000118260545211072517\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.3720071893756527,0.9510524467152429],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000250086586450968576\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.0734614042416215,1.5308833445354133],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.0386370157276195,0.6030874255737584],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,1.134814121998158],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000321092785921064961\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,2.456885463154436],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000440281764204642314\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,1.4704223763508875],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,4.178387314716311,1.9987135795179904],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000699287660589613148\u0000":[0,0,0,0,0,0,0,0,3.9239691256617006],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000683892894767251489\u0000698659683526901810\u0000":[0,0,0,0,0,0,0,1.4894182521540893,0.8895067314471731],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696427343220047872\u0000":[0,0,0,0,0,0,0,4.051496152649139,1.6873169805897865],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696441890048049232\u0000":[0,0,0,0,0,0,0,4.051496152649139,1.6873169805897865],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000699123164340551691\u0000":[0,0,0,0,0,0,0,0,3.372151499251379],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000700087985634541678\u0000":[0,0,0,0,0,0,0,0,3.3542612461074874],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000321092785921064961\u0000699560532046250034\u0000":[0,0,0,0,0,0,0,0,2.256000899533674],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000699275497984622760\u0000":[0,0,0,0,0,0,0,0,3.779188519646377],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000700064920104075394\u0000":[0,0,0,0,0,0,0,0,3.779188519646377],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420197644632116\u0000👍\u0000537858848912834561\u0000699284090607763506\u0000":[0,0,0,0,0,0,0,0,1.775192838776758],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000698942081858666527\u0000👍\u0000250086586450968576\u0000699822779670724650\u0000":[0,0,0,0,0,0,0,0,2.822791638898972],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000👍\u0000657069807505637397\u0000700040376085381152\u0000":[0,0,0,0,0,0,0,0,3.370598232379073],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000321092785921064961\u0000700040917926543422\u0000":[0,0,0,0,0,0,0,0,2.387297713243203],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000657069807505637397\u0000700040917926543422\u0000":[0,0,0,0,0,0,0,0,3.4445048057787653],"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000🔥\u0000363774203960360961\u0000700039441799970969\u0000":[0,0,0,0,0,0,0,0,3.571121614462379],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000014\u0000612693703\u0000":[0,0,0,0,0,0,0,0,2.2083855471689513],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000014\u0000612962510\u0000":[0,0,0,0,0,0,0,0,2.2083855471689513],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000016\u0000613151713\u0000":[0,0,0,0,0,0,0,0,2.169104437429377],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000612842722\u0000":[0,0,0,0,0,0,0,0,1.785761459570905],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000612918834\u0000":[0,0,0,0,0,0,0,0,7.0085272320304846],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000613069946\u0000":[0,0,0,0,0,0,0,0,2.259239474901116],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000613141085\u0000":[0,0,0,0,0,0,0,0,2.1229854575432836],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000613146304\u0000":[0,0,0,0,0,0,0,0,2.1229854575432836],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000613226248\u0000":[0,0,0,0,0,0,0,0,2.1229854575432836],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000025\u0000613347004\u0000":[0,0,0,0,0,0,0,0,2.069135039786197],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000AraCred\u000026\u0000613797792\u0000":[0,0,0,0,0,0,0,0,1.9183763701615497],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000TheSource\u00003\u0000613030762\u0000":[0,0,0,0,0,0,0,0,2.3435869225856587],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000bot\u00003\u0000614314292\u0000":[0,0,0,0,0,0,0,0,1.9143338106729881],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000612563994\u0000":[0,0,0,0,0,0,0,0,2.0415823047152575],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000612990333\u0000":[0,0,0,0,0,0,0,0,1.8325788453964467],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613020677\u0000":[0,0,0,0,0,0,0,0,4.084794256846277],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613024850\u0000":[0,0,0,0,0,0,0,0,1.8325788453964467],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613026757\u0000":[0,0,0,0,0,0,0,0,4.085338659526266],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000613028322\u0000":[0,0,0,0,0,0,0,0,1.8325788453964467],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000614088358\u0000":[0,0,0,0,0,0,0,0,1.5681042893850463],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00002\u0000612630503\u0000":[0,0,0,0,0,0,0,0,2.0286092240769777],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00003\u0000612642927\u0000":[0,0,0,0,0,0,0,0,2.0286092240769777],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00004\u0000613343876\u0000":[0,0,0,0,0,0,0,0,1.6971795661585576],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612843090\u0000":[0,0,0,0,0,0,0,0,5.897199960639527],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612844672\u0000":[0,0,0,0,0,0,0,0,5.897199960639527],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612910606\u0000":[0,0,0,0,0,0,0,0,2.2828610171930994],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612911587\u0000":[0,0,0,0,0,0,0,0,2.283165266347721],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612939366\u0000":[0,0,0,0,0,0,0,0,1.8096872510175104],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000612942113\u0000":[0,0,0,0,0,0,0,0,3.797972509135929],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000614058561\u0000":[0,0,0,0,0,0,0,0,1.8096872510175104],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000PULL\u0000aracred\u0000AraCred\u000020\u0000613089159\u0000":[0,0,0,0,0,0,0,0,7.1636638527464065],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000PULL\u0000aracred\u0000bot\u00009\u0000614948916\u0000":[0,0,0,0,0,0,0,0,3.430680905101539],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000409850216\u0000":[0,0,0,0,0,0,0,0,5.886415358628594],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000409850385\u0000":[0,0,0,0,0,0,0,0,5.886415358628594],"N\u0000sourcecred\u0000github\u0000COMMENT\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000409850667\u0000":[0,0,0,0,0,0,0,0,5.886415358628594],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU=\u0000":[0,0,0,0,0,0,0,0,4.805124523789138],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI=\u0000":[0,0,0,0,0,0,0,0,5.67283832708971],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI=\u0000":[0,0,0,0,0,0,0,5.668697961008088,2.6945667955152737],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE=\u0000":[0,0,0,0,0,0,0,5.668697961008088,2.6945667955152737],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE=\u0000":[0,0,0,0,0,0,0,5.668697961008088,2.6945667955152737],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI=\u0000":[0,0,0,0,0,0,0,0,1.5140354659516253],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk=\u0000":[0,0,0,0,0,0,0,0,5.388028483267071],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg=\u0000":[0,1.8402962895797383,1.7197308023958298,1.2218292614972768,0.6457663648345233,0.254046641024355,0.21537399862506262,0.02763092032570716,0.014949331621571863],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM=\u0000":[0,5.945900044763821,6.0417286611743775,4.289932975287946,2.2643994910383927,0.8901633721002467,0.7517339033426076,0.07371237980338301,0.04134810552560801],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY=\u0000":[0,0,0,0,0,0,0,5.664743609219829,2.8479378413526515],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ=\u0000":[3.3185062856714524,4.086148533673825,4.304126375566893,3.0558748088500636,1.6126656120772132,0.6341496348830186,0.5353475943695781,0.046114944982022746,0.026586381845127592],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM=\u0000":[2.0396480399085593,1.1664193779515193,1.0908395320411934,0.7762006461119432,0.41148155017990795,0.1628374851208587,0.13961947661371374,0.018288022825145564,0.010249239621024217],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE=\u0000":[0,3.7195152994209737,3.475204571347436,2.468116332875763,1.303467757922359,0.5120274744344562,0.4327726179460594,0.05519486964272052,0.029523447360960808],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk=\u0000":[0,0,2.980033682444486,2.117372060232604,1.1192175659078023,0.44040453347040226,0.3735423863041506,0.023822269512612713,0.028295513019482466],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=\u0000":[0,1.6703550785070889,1.9261530699472535,1.368030352245376,0.7225483883281283,0.28512867038482137,0.2417278090876061,0.014183304782849153,0.009246542386083287],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=\u0000":[1.6094131107210348,0.9199030497385774,0.8594078434429695,0.610265930134919,0.3222005594276431,0.12649102273474297,0.10680034600079283,0.013595733405552219,0.007252275371820406],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA=\u0000":[0,0,2.978842978870949,2.115681881644401,1.1174346654016085,0.43900754127412356,0.3711931220899974,0.023527741993941663,0.02761904863368201],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE=\u0000":[0,0,2.980033682444486,2.117372060232604,1.1192175659078023,0.44040453347040226,0.3735423863041506,0.023822269512612713,0.028295513019482466],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk=\u0000":[0,0,3.860267902961044,2.7408948649866303,1.4467663072056716,0.5677262258665726,0.4788807302438945,0.06084132811140899,0.032319556577383834],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=\u0000":[1.6094131107210348,0.9199030497385774,0.8594078434429695,0.610265930134919,0.3222005594276431,0.12649102273474297,0.10680034600079283,0.013595733405552219,0.007252275371820406],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk=\u0000":[0,1.6712454596093442,1.9282054434804017,1.370942604717926,0.725618154210995,0.28754113942129883,0.2457838059920235,0.014651325288990191,0.00983683056802747],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I=\u0000":[2.038833077123741,1.1654882911330076,1.0891018364254805,0.7737384847921734,0.40889367910919727,0.16082422937926819,0.1362815686160973,0.01746841750298868,0.00943448155416962],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ=\u0000":[0,2.0658480981752576,1.9296411252473782,1.3697259940477613,0.7226318554191792,0.2832889439650557,0.23852296857678346,0.030211383385960005,0.01598093424860011],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc=\u0000":[0,3.7195152994209737,3.475204571347436,2.468116332875763,1.303467757922359,0.5120274744344562,0.4327726179460594,0.05519486964272052,0.029523447360960808],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg=\u0000":[0,2.116881201288072,2.4423250135340333,1.736430290022957,0.9190134048315898,0.3641370313294574,0.3111867560757542,0.018541745746287572,0.012437787869719023],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ=\u0000":[3.3185062856714524,1.8597637883309783,1.7376022857399527,1.2340581664378825,0.6517338789611795,0.2560137372172281,0.2163863089730297,0.02759743482136026,0.014761723680480404],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM=\u0000":[0,0,0,0,0,0,0,5.663594645706481,2.847352395172959],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU=\u0000":[2.0396480399085593,1.1664193779515193,1.0908395320411934,0.7762006461119432,0.41148155017990795,0.1628374851208587,0.13961947661371374,0.018288022825145564,0.010249239621024217],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg=\u0000":[2.0396480399085593,1.1664193779515193,1.0908395320411934,0.7762006461119432,0.41148155017990795,0.1628374851208587,0.13961947661371374,0.018288022825145564,0.010249239621024217],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ=\u0000":[0,2.116881201288072,2.4423250135340333,1.736430290022957,0.9190134048315898,0.3641370313294574,0.3111867560757542,0.018541745746287572,0.012437787869719023],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=\u0000":[0,1.6703550785070889,1.9261530699472535,1.368030352245376,0.7225483883281283,0.28512867038482137,0.2417278090876061,0.014183304782849153,0.009246542386083287],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE=\u0000":[1.6102710068909003,0.9208832339461835,0.8612373429575801,0.6128586600720601,0.3249266965498496,0.128613443895976,0.11032454794580447,0.014463671332875844,0.008120174520911103],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y=\u0000":[0,0,3.8533325318573564,2.7375174129395172,1.4466328865131122,0.571465502220945,0.48549008535352095,0.028602107961192145,0.018791958981336756],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY=\u0000":[0,1.6712454596093442,1.9282054434804017,1.370942604717926,0.725618154210995,0.28754113942129883,0.2457838059920235,0.014651325288990191,0.00983683056802747],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI=\u0000":[0,0,3.860267902961044,2.744099169349332,1.4501803144857028,0.5717812014564742,0.48573954279025144,0.07328940493044675,0.03260184300972679],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE=\u0000":[0,0,0,0,0,0,13.848168977877235,1.7662358264547695,0.9447503155505836],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI=\u0000":[0,0,0,0,0,4.546330642677111,3.8411228490461045,0.2238542667950456,0.14401586666680344],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg=\u0000":[0,0,0,9.872262322492183,5.2138710296215,2.048109897737757,1.7310904717842377,0.2207794785708821,0.11809378944384323],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI=\u0000":[0,0,6.950328877124146,4.936232664579319,2.606935515844707,1.0240549488689124,0.8655452358921188,0.11038973928544105,0.059046894721921615],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU=\u0000":[0,0,0,0,0,8.19175342037192,6.924361863903031,0.8831179142834399,0.4723751577753729],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA=\u0000":[0,0,0,0,10.427540933088375,4.096219788858221,3.4621809435682516,0.4415589571417642,0.23618757888768646],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE=\u0000":[0,0,0,0,0,0,0,0,5.1759845351905405],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI=\u0000":[0,0,0,0,0,0,0,3.2150539658920727,1.5359936999133688],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA=\u0000":[0,0,0,0,0,0,0,0,1.7244606692205466],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM=\u0000":[0,0,0,0,0,0,0,5.26408600472155,2.6034730919133944],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc=\u0000":[0,0,0,0,0,0,0,0,4.922674058788298],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI=\u0000":[0,0,0,0,0,0,0,0,4.013767091305213],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ=\u0000":[0,0,0,0,0,0,0,5.26408600472155,2.6034730919133944],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY=\u0000":[0,0,0,0,0,0,0,5.144799614291322,2.5448195767201796],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ=\u0000":[0,0,0,0,0,0,0,2.295615472763364,1.0963253291402826],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU=\u0000":[0,0,0,0,0,0,0,0,1.7251499703816564],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY=\u0000":[0,0,0,0,0,0,0,0,5.511497782251014],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI=\u0000":[0,0,0,0,0,0,0,5.26408600472155,2.6034730919133944],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU=\u0000":[0,0,0,0,0,0,0,0,1.9877027400951095],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA=\u0000":[0,0,0,0,0,0,0,0,1.7786157381290357],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU=\u0000":[0,0,0,0,0,0,0,0,3.778458602900051],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM=\u0000":[0,0,0,0,0,0,0,0,2.192650658280565],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE=\u0000":[0,0,0,0,0,0,0,3.532366204099539,1.8895006230016291],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM=\u0000":[0,0,0,5.483817420032543,2.8957403858264588,1.1399349491723159,0.9653692999600377,0.14476657806897064,0.0636448534538503],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ=\u0000":[0,0,0,0,5.79427949443976,2.276618820680594,1.925024561286029,0.2457151271109475,0.13164464399717493],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ=\u0000":[0,0,0,0,0,0,0,2.2965330760499203,1.0972011625481972],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc=\u0000":[0,0,0,0,5.140097370083723,2.198013731702218,1.446344514119812,0.28775435561317675,0.13780610221617687],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM=\u0000":[0,0,0,0,5.79427949443976,2.276618820680594,1.925024561286029,0.2457151271109475,0.13164464399717493],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y=\u0000":[0,0,0,0,5.79427949443976,2.276618820680594,1.925024561286029,0.2457151271109475,0.13164464399717493],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA=\u0000":[0,0,0,5.48605213828181,2.5731299696735737,1.101639740703152,0.7266310250764223,0.14524850684449833,0.07020714345876065],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg=\u0000":[0,0,0,0,0,4.548842202819377,3.8430965430275115,0.5735991956765576,0.24985062278604594],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY=\u0000":[0,0,0,0,0,0,0,2.2889132680011612,0.9946453385913953],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA=\u0000":[0,0,0,0,0,4.396027463404436,2.892689028239624,0.5755087112263535,0.27561220443235374],"N\u0000sourcecred\u0000github\u0000COMMIT\u0000MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI=\u0000":[0,0,0,0,5.1421519705943854,2.199769683437474,1.448652202655756,0.28867003539016994,0.13867827031283206],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000012\u0000":[0,0,0,0,0,0,0,5.142136588918701,2.2618736345140533],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000014\u0000":[0,0,0,0,0,0,0,0,7.4936393928540515],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000015\u0000":[0,0,0,0,0,0,0,0,4.521337177047755],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000016\u0000":[0,0,0,0,0,0,0,0,6.305894444432794],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000017\u0000":[0,0,0,0,0,0,0,0,4.521337177047755],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000018\u0000":[0,0,0,0,0,0,0,0,8.941925726750414],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000019\u0000":[0,0,0,0,0,0,0,0,4.726805789054158],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00002\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000022\u0000":[0,0,0,0,0,0,0,0,7.06849391102386],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000023\u0000":[0,0,0,0,0,0,0,0,5.612006035421285],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000024\u0000":[0,0,0,0,0,0,0,0,4.521939760289411],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000025\u0000":[0,0,0,0,0,0,0,0,10.510391197607154],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u000026\u0000":[0,0,0,0,0,0,0,0,5.03276635324986],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00003\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00004\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00005\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00006\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00008\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000AraCred\u00009\u0000":[0,0,0,0,0,0,0,5.1497533524792125,2.364347593606781],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000TheSource\u00003\u0000":[0,0,0,0,0,0,0,7.426512889118051,4.5936627161945145],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000aracred-cli\u00001\u0000":[0,0,0,0,10.274818729533763,4.39139744020481,2.8871754327107175,6.853720552417883,3.315978404945738],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00001\u0000":[0,0,0,0,0,0,0,0,9.317612061676922],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00002\u0000":[0,0,0,0,0,0,0,0,9.605413192762372],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00003\u0000":[0,0,0,0,0,0,0,0,5.787736908500063],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00005\u0000":[0,0,0,0,0,0,0,0,11.043675495034279],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00006\u0000":[0,0,0,0,0,0,0,0,5.0223377016484845],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000bot\u00007\u0000":[0,0,0,0,0,0,0,0,5.0223377016484845],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000comms\u00001\u0000":[0,0,0,0,0,0,0,0,6.474110591689349],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000leaderboard\u00001\u0000":[0,0,0,0,0,0,0,0,4.698991025621192],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000leaderboard\u00002\u0000":[0,0,0,0,0,0,0,0,4.698991025621192],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00001\u0000":[0,0,0,0,0,0,0,0,10.274391570313528],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00002\u0000":[0,0,0,0,0,0,0,0,4.722001503484268],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00003\u0000":[0,0,0,0,0,0,0,0,4.722001503484268],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00004\u0000":[0,0,0,0,0,0,0,0,6.320120498015921],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00005\u0000":[0,0,0,0,0,0,0,0,3.437371706107839],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000onboarding\u00006\u0000":[0,0,0,0,0,0,0,0,12.64090690431376],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u000010\u0000":[0,0,0,0,0,0,0,0,7.048986561955099],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u000011\u0000":[0,0,0,0,0,0,0,0,7.048986561955099],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u00002\u0000":[0,0,0,0,0,0,0,7.510917927183978,3.525902091114967],"N\u0000sourcecred\u0000github\u0000ISSUE\u0000aracred\u0000website\u00007\u0000":[0,0,0,0,0,0,0,0,7.048986561955099],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u00001\u0000":[0,0,0,0,0,0,0,18.55733036805031,9.424012770650199],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000010\u0000":[0,0,0,0,0,0,0,17.807405178149423,9.053092701835418],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000011\u0000":[0,0,0,0,0,0,0,18.55733036805031,9.424012770650199],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000013\u0000":[0,0,0,0,0,0,0,0,20.515703816815723],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000020\u0000":[0,0,0,0,0,0,0,0,20.18717363771696],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000021\u0000":[0,0,0,0,0,0,0,0,30.84308487541431],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u000027\u0000":[0,0,0,0,0,0,0,0,17.737672803789856],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000AraCred\u00007\u0000":[0,0,0,0,0,0,0,18.55733036805031,9.424012770650199],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000TheSource\u00001\u0000":[4.07561068964001,2.328678015563233,2.174024371281884,1.541445562953552,0.8113596680867581,0.3166941888342866,0.2641461682874746,21.061774401124055,10.952323911848554],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000TheSource\u00002\u0000":[0,0,0,0,0,0,0,21.05459243945009,10.948663944222684],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000bot\u00004\u0000":[0,0,0,0,0,0,0,0,18.924130543007717],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000bot\u00008\u0000":[0,0,0,0,0,0,0,0,30.102194317696984],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000bot\u00009\u0000":[0,0,0,0,0,0,0,0,18.61703284152316],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00001\u0000":[0,0,0,0,0,0,0,21.134096498201384,10.63396333124807],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000012\u0000":[0,0,0,0,0,0,0,0,18.180386552524173],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000013\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000014\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000015\u0000":[0,0,0,0,0,0,0,0,24.818908709761008],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u000016\u0000":[0,0,0,0,0,0,0,0,25.227161271460517],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00003\u0000":[0,0,0,0,0,0,0,21.134096498201384,10.63396333124807],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00004\u0000":[0,0,0,0,0,0,0,21.134096498201384,10.63396333124807],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00005\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00006\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00008\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000PULL\u0000aracred\u0000website\u00009\u0000":[0,0,0,0,0,0,0,0,21.261494946407602],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000AraCred\u0000":[0,0,0,0,0,0,0,42.80923385556413,66.53069204934917],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000TheSource\u0000":[0,0,0,0,0,0,0,19.287411153902504,10.004244074862278],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000aracred-cli\u0000":[0,0,0,0,0,0,0,5.583814035018466,2.8546395483044664],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000bot\u0000":[0,0,0,0,0,0,0,0,36.501516350557715],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000comms\u0000":[0,0,0,0,0,0,0,0,5.629188861733246],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000governance\u0000":[0,0,0,0,0,0,0,0,15.113834411600203],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000leaderboard\u0000":[0,0,0,0,0,0,0,0,6.791053943598668],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000onboarding\u0000":[0,0,0,0,0,0,0,0,14.433431885906868],"N\u0000sourcecred\u0000github\u0000REPO\u0000aracred\u0000website\u0000":[0,0,0,0,0,0,0,26.130264926326586,88.57628467021512],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000AraCred\u000013\u0000391815975\u0000":[0,0,0,0,0,0,0,0,5.951960238646975],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395001410\u0000":[0,0,0,0,0,0,0,0,12.611952703195215],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000bot\u00008\u0000395035075\u0000":[0,0,0,0,0,0,0,0,5.551320212388722],"N\u0000sourcecred\u0000github\u0000REVIEW\u0000aracred\u0000website\u000015\u0000393444362\u0000":[0,0,0,0,0,0,0,0,6.251178923652743],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000AlexMasmej\u0000":[0,1.653667201245717,1.545563446100058,1.098390338828002,0.5808359025031802,0.2287385304694004,0.1942496493692759,0.02498348625676052,0.013542513112360691],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000Beanow\u0000":[13,8.89897397172313,8.308451706586302,5.892315755483504,3.1030414623205966,1.212051804274113,1.013138419549002,0.12645067937115612,0.06492539355414434],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000Evalir\u0000":[0,0,0,0,0,0,0,0,109.81062690732509],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000c0mput3rxz\u0000":[0,0,3.090060974163104,2.1953377995926893,1.1601692086390345,0.4563287230023399,0.3866645056482243,0.04954841117403204,0.02672733814453777],"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000vntrp\u0000":[0,0,0,0,0,0,0,0,10.101950202443525],"N\u0000sourcecred\u0000identity\u00000xGabi\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000Aaron\u0000":[0,0,0,17.544840736841515,26.71714492323857,43.04002327948001,40.40654477203681,279.68025057762435,172.33666648628457],"N\u0000sourcecred\u0000identity\u0000burrrata\u0000":[0,0,3.090060974163104,6.580578397689634,3.4748858451540428,5.003359913530426,4.2267921858015844,135.52889542824082,268.8386746444448],"N\u0000sourcecred\u0000identity\u0000crisorg\u0000":[0,0,0,0,0,0,0,0,27.40549220724357],"N\u0000sourcecred\u0000identity\u0000cslarson\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000dandelion\u0000":[0,0,0,0,0,0,0,0,17.127291832212162],"N\u0000sourcecred\u0000identity\u0000evalir\u0000":[0,0,0,0,0,0,0,0,15.910640631810226],"N\u0000sourcecred\u0000identity\u0000fabriziovigevani\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000fioreb\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000hammadj\u0000":[0,6.947358827031153,30.758455441961484,21.832569371125324,11.517188821203975,19.066761610949243,16.09119832426911,2.108496762135427,2.447972300036036],"N\u0000sourcecred\u0000identity\u0000li\u0000":[0,0,0,0,0,0,0,0,21.768584239984524],"N\u0000sourcecred\u0000identity\u0000lkngtn\u0000":[0,0,0,0,0,0,0,0,8.78988729656361],"N\u0000sourcecred\u0000identity\u0000mzargham\u0000":[0,0,5.95740745702595,4.230967600439331,2.2344495209947524,0.8776832337615872,0.7418179964793332,0.09673881688338047,20.630153754837256],"N\u0000sourcecred\u0000identity\u0000onbjerg\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000rperez\u0000":[0,0,0,0,0,0,0,0,0],"N\u0000sourcecred\u0000identity\u0000sembrestels\u0000":[0,0,0,0,13.899784315945858,5.458802904532879,4.611469146846664,0.5875314900924503,0.3136288046715344],"N\u0000sourcecred\u0000identity\u0000willjgriff\u0000":[0,0,0,0,0,0,0,0,0]},"intervalsJSON":[{"endTimeMs":1582416000000,"startTimeMs":1581811200000},{"endTimeMs":1583020800000,"startTimeMs":1582416000000},{"endTimeMs":1583625600000,"startTimeMs":1583020800000},{"endTimeMs":1584230400000,"startTimeMs":1583625600000},{"endTimeMs":1584835200000,"startTimeMs":1584230400000},{"endTimeMs":1585440000000,"startTimeMs":1584835200000},{"endTimeMs":1586044800000,"startTimeMs":1585440000000},{"endTimeMs":1586649600000,"startTimeMs":1586044800000},{"endTimeMs":1587254400000,"startTimeMs":1586649600000}],"paramsJSON":{"alpha":0.2,"intervalDecay":0.5},"pluginsJSON":[{"edgePrefix":"E\u0000sourcecred\u0000github\u0000","edgeTypes":[{"backwardName":"is authored by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub account to a post that they authored.\n\nExamples of posts include issues, pull requests, and comments.\n","forwardName":"authors","prefix":"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000"},{"backwardName":"has child","defaultWeight":{"backwards":0.25,"forwards":1},"description":"Connects a GitHub entity to its child entities.\n\nFor example, a Repository has Issues and Pull Requests as children, and a\nPull Request has comments and reviews as children.\n","forwardName":"has parent","prefix":"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000"},{"backwardName":"is merged by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub pull request to the Git commit that it merges.\n","forwardName":"merges","prefix":"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000"},{"backwardName":"is referenced by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a GitHub post to an entity that it references.\n\nFor example, if you write a GitHub issue comment that says \"thanks\n@username for pull #1337\", it will create references edges to both the user\n@username, and to pull #1337 in the same repository.\n","forwardName":"references","prefix":"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000"},{"backwardName":"got 👍 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 👍 reaction.\n","forwardName":"reacted 👍 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000"},{"backwardName":"got ❤️ from","defaultWeight":{"backwards":0,"forwards":2},"description":"Connects users to posts to which they gave a ❤️ reaction.\n","forwardName":"reacted ❤️ to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000"},{"backwardName":"got 🎉 from","defaultWeight":{"backwards":0,"forwards":4},"description":"Connects users to posts to which they gave a 🎉 reaction.\n","forwardName":"reacted 🎉 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000"},{"backwardName":"got 🚀 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 🚀 reaction.\n","forwardName":"reacted 🚀 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000"},{"backwardName":"merged on GitHub as","defaultWeight":{"backwards":1,"forwards":1},"description":"Connects a commit on GitHub to the corresponding raw Git commit.\n","forwardName":"corresponds to Git commit","prefix":"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000"}],"name":"GitHub","nodePrefix":"N\u0000sourcecred\u0000github\u0000","nodeTypes":[{"defaultWeight":4,"description":"NodeType for a GitHub repository","name":"Repository","pluralName":"Repositories","prefix":"N\u0000sourcecred\u0000github\u0000REPO\u0000"},{"defaultWeight":2,"description":"NodeType for a GitHub issue","name":"Issue","pluralName":"Issues","prefix":"N\u0000sourcecred\u0000github\u0000ISSUE\u0000"},{"defaultWeight":4,"description":"NodeType for a GitHub pull request","name":"Pull request","pluralName":"Pull requests","prefix":"N\u0000sourcecred\u0000github\u0000PULL\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub code review","name":"Pull request review","pluralName":"Pull request reviews","prefix":"N\u0000sourcecred\u0000github\u0000REVIEW\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub comment","name":"Comment","pluralName":"Comments","prefix":"N\u0000sourcecred\u0000github\u0000COMMENT\u0000"},{"defaultWeight":1,"description":"Represents a particular Git commit on GitHub, i.e. scoped to a particular repository","name":"Commit","pluralName":"Commits","prefix":"N\u0000sourcecred\u0000github\u0000COMMIT\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub bot account","name":"Bot","pluralName":"Bots","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000"}],"userTypes":[{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000discord\u0000","edgeTypes":[{"backwardName":"message is authored by","defaultWeight":{"backwards":1,"forwards":0.25},"description":"Connects an author to a message they've created.","forwardName":"authors message","prefix":"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000"},{"backwardName":"reaction added by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a member to a reaction that they added.","forwardName":"adds reaction","prefix":"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000"},{"backwardName":"is reacted to by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a reaction to a message that it reacts to.","forwardName":"reacts to","prefix":"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000"},{"backwardName":"is mentioned by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a message to the member being mentioned.","forwardName":"mentions","prefix":"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000"}],"name":"Discord","nodePrefix":"N\u0000sourcecred\u0000discord\u0000","nodeTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"},{"defaultWeight":0,"description":"A Discord message, posted in a particular channel","name":"Message","pluralName":"Messages","prefix":"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000"},{"defaultWeight":1,"description":"A reaction by some user, directed at some message","name":"Reaction","pluralName":"Reactions","prefix":"N\u0000sourcecred\u0000discord\u0000REACTION\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000identity\u0000","edgeTypes":[],"name":"Identity","nodePrefix":"N\u0000sourcecred\u0000identity\u0000","nodeTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}]}],"weightedGraphJSON":[{"type":"sourcecred/weightedGraph","version":"0.1.0"},{"graphJSON":[{"type":"sourcecred/graph","version":"0.8.0"},{"edges":[{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696454968831508630"],"dstIndex":176,"srcIndex":1409,"timestampMs":1586118204077},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696455224532926464"],"dstIndex":177,"srcIndex":1409,"timestampMs":1586118265041},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","🔥","696400331260821586","698659683526901810"],"dstIndex":188,"srcIndex":1409,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699021694240686190"],"dstIndex":178,"srcIndex":1412,"timestampMs":1586730159102},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699025335148216410"],"dstIndex":179,"srcIndex":1412,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","698942081858666527","699822779670724650"],"dstIndex":205,"srcIndex":1412,"timestampMs":1586921152752},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","695344752031432766","698969730580742174"],"dstIndex":185,"srcIndex":1412,"timestampMs":1586717770000},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","696400331260821586","698659683526901810"],"dstIndex":189,"srcIndex":1412,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","698659683526901810"],"dstIndex":190,"srcIndex":4,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","699287660589613148"],"dstIndex":191,"srcIndex":4,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","💯","700023168995295233","700040917926543422"],"dstIndex":207,"srcIndex":1406,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","695344752031432766","698973708316049488"],"dstIndex":186,"srcIndex":1406,"timestampMs":1586718718366},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696400331260821586","699287660589613148"],"dstIndex":192,"srcIndex":1406,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696420039141752863","699560532046250034"],"dstIndex":201,"srcIndex":1406,"timestampMs":1586858628046},{"address":["sourcecred","discord","ADDS_REACTION","user","363774203960360961","🔥","700023168995295233","700039441799970969"],"dstIndex":209,"srcIndex":1411,"timestampMs":1586972809029},{"address":["sourcecred","discord","ADDS_REACTION","user","440281764204642314","🔥","696400331260821586","699287660589613148"],"dstIndex":193,"srcIndex":7,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","537858848912834561","👍","696420197644632116","699284090607763506"],"dstIndex":204,"srcIndex":10,"timestampMs":1586792719271},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","❤️","695344752031432766","695669843034243134"],"dstIndex":175,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","👍","695344752031432766","695669843034243134"],"dstIndex":180,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","💯","695344752031432766","696730540039995493"],"dstIndex":183,"srcIndex":1401,"timestampMs":1586183905373},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","695344752031432766","698921390845198426"],"dstIndex":187,"srcIndex":1401,"timestampMs":1586706244909},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","698659683526901810"],"dstIndex":194,"srcIndex":1401,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","699287660589613148"],"dstIndex":195,"srcIndex":1401,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","699275497984622760"],"dstIndex":202,"srcIndex":1401,"timestampMs":1586790670630},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","700064920104075394"],"dstIndex":203,"srcIndex":1401,"timestampMs":1586978883530},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699025335148216410"],"dstIndex":181,"srcIndex":1402,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699326575627206778"],"dstIndex":182,"srcIndex":1402,"timestampMs":1586802848489},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696427343220047872"],"dstIndex":197,"srcIndex":1402,"timestampMs":1586111617618},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696441890048049232"],"dstIndex":198,"srcIndex":1402,"timestampMs":1586115085852},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","699123164340551691"],"dstIndex":199,"srcIndex":1402,"timestampMs":1586754351459},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","700087985634541678"],"dstIndex":200,"srcIndex":1402,"timestampMs":1586984382781},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","700023168995295233","700040376085381152"],"dstIndex":206,"srcIndex":1402,"timestampMs":1586973031780},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","695344752031432766","698965418370400296"],"dstIndex":184,"srcIndex":1402,"timestampMs":1586716741889},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","700023168995295233","700040917926543422"],"dstIndex":208,"srcIndex":1402,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","683892894767251489","🔥","696400331260821586","698659683526901810"],"dstIndex":196,"srcIndex":13,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700038868707180644"],"dstIndex":123,"srcIndex":0,"timestampMs":1586972672393},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":0,"timestampMs":1586972809029},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044206176993470"],"dstIndex":128,"srcIndex":0,"timestampMs":1586973944945},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044421760286721"],"dstIndex":129,"srcIndex":0,"timestampMs":1586973996344},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044496049799228"],"dstIndex":130,"srcIndex":0,"timestampMs":1586974014056},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044548411490335"],"dstIndex":131,"srcIndex":0,"timestampMs":1586974026540},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044635619328131"],"dstIndex":132,"srcIndex":0,"timestampMs":1586974047332},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044689285316738"],"dstIndex":133,"srcIndex":0,"timestampMs":1586974060127},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049028251123832"],"dstIndex":134,"srcIndex":0,"timestampMs":1586975094617},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049257490808933"],"dstIndex":135,"srcIndex":0,"timestampMs":1586975149272},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049378643017889"],"dstIndex":136,"srcIndex":0,"timestampMs":1586975178157},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700056792524128306"],"dstIndex":139,"srcIndex":0,"timestampMs":1586976945764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059334679330946"],"dstIndex":140,"srcIndex":0,"timestampMs":1586977551861},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059353306234910"],"dstIndex":141,"srcIndex":0,"timestampMs":1586977556302},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059384751063091"],"dstIndex":142,"srcIndex":0,"timestampMs":1586977563799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059438526103572"],"dstIndex":144,"srcIndex":0,"timestampMs":1586977576620},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059538023514154"],"dstIndex":145,"srcIndex":0,"timestampMs":1586977600342},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700061097583050871"],"dstIndex":146,"srcIndex":0,"timestampMs":1586977972170},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062189503119381"],"dstIndex":148,"srcIndex":0,"timestampMs":1586978232504},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062400774275204"],"dstIndex":149,"srcIndex":0,"timestampMs":1586978282875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700063628711166054"],"dstIndex":150,"srcIndex":0,"timestampMs":1586978575638},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700064632144003103"],"dstIndex":152,"srcIndex":0,"timestampMs":1586978814875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700118599003668510"],"dstIndex":153,"srcIndex":0,"timestampMs":1586991681577},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335319349985310"],"dstIndex":154,"srcIndex":0,"timestampMs":1587043351734},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335919315550299"],"dstIndex":155,"srcIndex":0,"timestampMs":1587043494777},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700365992571699350"],"dstIndex":156,"srcIndex":0,"timestampMs":1587050664800},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700366555233517630"],"dstIndex":157,"srcIndex":0,"timestampMs":1587050798949},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700367514638483537"],"dstIndex":158,"srcIndex":0,"timestampMs":1587051027689},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700369922630615040"],"dstIndex":159,"srcIndex":0,"timestampMs":1587051601799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370207419662458"],"dstIndex":160,"srcIndex":0,"timestampMs":1587051669698},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370372230643763"],"dstIndex":161,"srcIndex":0,"timestampMs":1587051708992},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371209241624656"],"dstIndex":163,"srcIndex":0,"timestampMs":1587051908551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371558480216124"],"dstIndex":164,"srcIndex":0,"timestampMs":1587051991816},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397237930295386"],"dstIndex":165,"srcIndex":0,"timestampMs":1587058114274},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397482362011769"],"dstIndex":167,"srcIndex":0,"timestampMs":1587058172551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397866581229620"],"dstIndex":168,"srcIndex":0,"timestampMs":1587058264156},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397927478067221"],"dstIndex":169,"srcIndex":0,"timestampMs":1587058278675},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398207733334077"],"dstIndex":171,"srcIndex":0,"timestampMs":1587058345493},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398301727555604"],"dstIndex":173,"srcIndex":0,"timestampMs":1587058367903},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","695344752031432766","698673271729553469"],"dstIndex":24,"srcIndex":1409,"timestampMs":1586647088702},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698672127418695751"],"dstIndex":110,"srcIndex":1409,"timestampMs":1586646815877},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698673539011837994"],"dstIndex":111,"srcIndex":1409,"timestampMs":1586647152427},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699383579402174494"],"dstIndex":65,"srcIndex":2,"timestampMs":1586816439248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699636647557464194"],"dstIndex":66,"srcIndex":2,"timestampMs":1586876775398},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","208321561982271489","695344752031432766","698710365046833192"],"dstIndex":27,"srcIndex":3,"timestampMs":1586655932438},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698919569078878289"],"dstIndex":30,"srcIndex":1412,"timestampMs":1586705810566},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921167011971168"],"dstIndex":31,"srcIndex":1412,"timestampMs":1586706191543},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":1412,"timestampMs":1586706244909},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699006982681657354"],"dstIndex":46,"srcIndex":1412,"timestampMs":1586726651593},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699007297099268116"],"dstIndex":47,"srcIndex":1412,"timestampMs":1586726726556},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","698942081858666527","699821888431587439"],"dstIndex":119,"srcIndex":1412,"timestampMs":1586920940264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","695344752031432766","698946297012420619"],"dstIndex":36,"srcIndex":4,"timestampMs":1586712183002},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","696420197644632116","698956579168321617"],"dstIndex":113,"srcIndex":4,"timestampMs":1586714634459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":1406,"timestampMs":1586790670630},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":1406,"timestampMs":1586978883530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700073516900417556"],"dstIndex":101,"srcIndex":1406,"timestampMs":1586980933166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700083246087667833"],"dstIndex":103,"srcIndex":1406,"timestampMs":1586983252785},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":1406,"timestampMs":1586984382781},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700468593451597902"],"dstIndex":108,"srcIndex":1406,"timestampMs":1587075126756},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700033440564641854"],"dstIndex":121,"srcIndex":1406,"timestampMs":1586971378223},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700051768008114186"],"dstIndex":137,"srcIndex":1406,"timestampMs":1586975747826},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700059438136033361"],"dstIndex":143,"srcIndex":1406,"timestampMs":1586977576527},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700371208880914563"],"dstIndex":162,"srcIndex":1406,"timestampMs":1587051908465},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700397997707755530"],"dstIndex":170,"srcIndex":1406,"timestampMs":1587058295419},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700399163313094746"],"dstIndex":174,"srcIndex":1406,"timestampMs":1587058573321},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","695344752031432766","699304903796981771"],"dstIndex":57,"srcIndex":1411,"timestampMs":1586797681522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":1411,"timestampMs":1586973031780},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":1411,"timestampMs":1586973160965},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700055780807802900"],"dstIndex":138,"srcIndex":1411,"timestampMs":1586976704552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965088530595990"],"dstIndex":37,"srcIndex":1405,"timestampMs":1586716663249},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":1405,"timestampMs":1586716741889},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":1405,"timestampMs":1586717770000},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699020835096231937"],"dstIndex":49,"srcIndex":1405,"timestampMs":1586729954266},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":1405,"timestampMs":1586730159102},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":1405,"timestampMs":1586731027162},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699137595724267520"],"dstIndex":55,"srcIndex":1405,"timestampMs":1586757792169},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","696420039141752863","699407535194767410"],"dstIndex":92,"srcIndex":1405,"timestampMs":1586822150754},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","440281764204642314","695344917068906598","697318813192028200"],"dstIndex":71,"srcIndex":7,"timestampMs":1586324160622},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699306499930980452"],"dstIndex":58,"srcIndex":8,"timestampMs":1586798062070},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699325373472702534"],"dstIndex":60,"srcIndex":8,"timestampMs":1586802561873},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":8,"timestampMs":1586802848489},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699358233437143163"],"dstIndex":64,"srcIndex":8,"timestampMs":1586810396299},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","505789102222737420","695344752031432766","698932174396850236"],"dstIndex":33,"srcIndex":9,"timestampMs":1586708815908},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","537858848912834561","696420039141752863","696789204767866911"],"dstIndex":80,"srcIndex":10,"timestampMs":1586197892134},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","696708274682069062"],"dstIndex":19,"srcIndex":1401,"timestampMs":1586178596898},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","698799127244308550"],"dstIndex":28,"srcIndex":1401,"timestampMs":1586677094995},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","699124769349566484"],"dstIndex":54,"srcIndex":1401,"timestampMs":1586754734123},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697081143551328256"],"dstIndex":70,"srcIndex":1401,"timestampMs":1586267495764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697375832364023889"],"dstIndex":72,"srcIndex":1401,"timestampMs":1586337755052},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":1401,"timestampMs":1586111617618},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":1401,"timestampMs":1586115085852},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699122711745527878"],"dstIndex":82,"srcIndex":1401,"timestampMs":1586754243552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":1401,"timestampMs":1586754351459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699939694221328435"],"dstIndex":97,"srcIndex":1401,"timestampMs":1586949027353},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700345588725841990"],"dstIndex":106,"srcIndex":1401,"timestampMs":1587045800144},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700354840445976616"],"dstIndex":107,"srcIndex":1401,"timestampMs":1587048005926},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696451005914546256"],"dstIndex":15,"srcIndex":1402,"timestampMs":1586117259244},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":1402,"timestampMs":1586118204077},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":1402,"timestampMs":1586118265041},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":1402,"timestampMs":1586183905373},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696740396331696198"],"dstIndex":21,"srcIndex":1402,"timestampMs":1586186255296},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696769305131614260"],"dstIndex":22,"srcIndex":1402,"timestampMs":1586193147691},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698691171811328080"],"dstIndex":25,"srcIndex":1402,"timestampMs":1586651356414},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698710294427467857"],"dstIndex":26,"srcIndex":1402,"timestampMs":1586655915601},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698897288373993508"],"dstIndex":29,"srcIndex":1402,"timestampMs":1586700498432},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698935929942966332"],"dstIndex":34,"srcIndex":1402,"timestampMs":1586709711300},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698941350531301477"],"dstIndex":35,"srcIndex":1402,"timestampMs":1586711003669},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968459890917436"],"dstIndex":39,"srcIndex":1402,"timestampMs":1586717467044},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968989878976612"],"dstIndex":40,"srcIndex":1402,"timestampMs":1586717593403},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698969370533298296"],"dstIndex":41,"srcIndex":1402,"timestampMs":1586717684158},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698970943955140738"],"dstIndex":43,"srcIndex":1402,"timestampMs":1586718059291},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":1402,"timestampMs":1586718718366},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698982179069362196"],"dstIndex":45,"srcIndex":1402,"timestampMs":1586720737951},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699016223303794728"],"dstIndex":48,"srcIndex":1402,"timestampMs":1586728854729},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699022762215211088"],"dstIndex":51,"srcIndex":1402,"timestampMs":1586730413727},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699024432244588644"],"dstIndex":52,"srcIndex":1402,"timestampMs":1586730811893},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699302777167413379"],"dstIndex":56,"srcIndex":1402,"timestampMs":1586797174494},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699318638519255111"],"dstIndex":59,"srcIndex":1402,"timestampMs":1586800956135},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699325915578236949"],"dstIndex":61,"srcIndex":1402,"timestampMs":1586802691121},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699342838756016128"],"dstIndex":63,"srcIndex":1402,"timestampMs":1586806725921},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699696022477340735"],"dstIndex":67,"srcIndex":1402,"timestampMs":1586890931482},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","700038397376331798"],"dstIndex":68,"srcIndex":1402,"timestampMs":1586972560019},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344917068906598","697073300131807274"],"dstIndex":69,"srcIndex":1402,"timestampMs":1586265625747},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":1402,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":1402,"timestampMs":1586793570421},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696440757908799568"],"dstIndex":76,"srcIndex":1402,"timestampMs":1586114815929},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696452154268975225"],"dstIndex":78,"srcIndex":1402,"timestampMs":1586117533033},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696730851802742794"],"dstIndex":79,"srcIndex":1402,"timestampMs":1586183979703},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699020484167073792"],"dstIndex":81,"srcIndex":1402,"timestampMs":1586729870598},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699276546795372595"],"dstIndex":87,"srcIndex":1402,"timestampMs":1586790920686},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699278809974833224"],"dstIndex":89,"srcIndex":1402,"timestampMs":1586791460270},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699404949448163368"],"dstIndex":90,"srcIndex":1402,"timestampMs":1586821534264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699406916300046346"],"dstIndex":91,"srcIndex":1402,"timestampMs":1586822003198},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699408033343733841"],"dstIndex":93,"srcIndex":1402,"timestampMs":1586822269522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699410487020093501"],"dstIndex":94,"srcIndex":1402,"timestampMs":1586822854524},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700016555521736837"],"dstIndex":98,"srcIndex":1402,"timestampMs":1586967352515},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700064770367160361"],"dstIndex":99,"srcIndex":1402,"timestampMs":1586978847830},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700078148615798814"],"dstIndex":102,"srcIndex":1402,"timestampMs":1586982037453},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700085865933832252"],"dstIndex":104,"srcIndex":1402,"timestampMs":1586983877405},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698667046661128244"],"dstIndex":109,"srcIndex":1402,"timestampMs":1586645604530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698683402920001637"],"dstIndex":112,"srcIndex":1402,"timestampMs":1586649504166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699017594287685672"],"dstIndex":114,"srcIndex":1402,"timestampMs":1586729181597},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699283043940302898"],"dstIndex":115,"srcIndex":1402,"timestampMs":1586792469726},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":1402,"timestampMs":1586792719271},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699303864872075295"],"dstIndex":117,"srcIndex":1402,"timestampMs":1586797433823},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699352914476400712"],"dstIndex":118,"srcIndex":1402,"timestampMs":1586809128160},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":1402,"timestampMs":1586921152752},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700036022368731256"],"dstIndex":122,"srcIndex":1402,"timestampMs":1586971993773},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700040992916766780"],"dstIndex":127,"srcIndex":1402,"timestampMs":1586973178844},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700062058405953678"],"dstIndex":147,"srcIndex":1402,"timestampMs":1586978201248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700064631778967634"],"dstIndex":151,"srcIndex":1402,"timestampMs":1586978814788},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699274952301609111"],"dstIndex":84,"srcIndex":12,"timestampMs":1586790540529},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699275129204637708"],"dstIndex":85,"srcIndex":12,"timestampMs":1586790582706},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699277478530646016"],"dstIndex":88,"srcIndex":12,"timestampMs":1586791142829},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699558251074682931"],"dstIndex":95,"srcIndex":12,"timestampMs":1586858084220},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":12,"timestampMs":1586858628046},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700397481799974962"],"dstIndex":166,"srcIndex":12,"timestampMs":1587058172417},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700398301412982965"],"dstIndex":172,"srcIndex":12,"timestampMs":1587058367828},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696609260196593664"],"dstIndex":18,"srcIndex":13,"timestampMs":1586154990005},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696853096441184326"],"dstIndex":23,"srcIndex":13,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","118260545211072517","698673271729553469","user","657069807505637397"],"dstIndex":1402,"srcIndex":24,"timestampMs":1586647088702},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","571023281382227978"],"dstIndex":1401,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","657069807505637397"],"dstIndex":1402,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699636647557464194","user","665203331639148553"],"dstIndex":12,"srcIndex":66,"timestampMs":1586876775398},{"address":["sourcecred","discord","MENTIONS","695344752031432766","208321561982271489","698710365046833192","user","657069807505637397"],"dstIndex":1402,"srcIndex":27,"timestampMs":1586655932438},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698919569078878289","user","657069807505637397"],"dstIndex":1402,"srcIndex":30,"timestampMs":1586705810566},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","118260545211072517"],"dstIndex":1409,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","420341518948237331"],"dstIndex":1405,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","250086586450968576"],"dstIndex":1412,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","657069807505637397"],"dstIndex":1402,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699007297099268116","user","657069807505637397"],"dstIndex":1402,"srcIndex":47,"timestampMs":1586726726556},{"address":["sourcecred","discord","MENTIONS","695344752031432766","291388682710024192","698946297012420619","user","250086586450968576"],"dstIndex":1412,"srcIndex":36,"timestampMs":1586712183002},{"address":["sourcecred","discord","MENTIONS","695344752031432766","363774203960360961","699304903796981771","user","464169801036726292"],"dstIndex":8,"srcIndex":57,"timestampMs":1586797681522},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698965088530595990","user","657069807505637397"],"dstIndex":1402,"srcIndex":37,"timestampMs":1586716663249},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698969730580742174","user","250086586450968576"],"dstIndex":1412,"srcIndex":42,"timestampMs":1586717770000},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","250086586450968576"],"dstIndex":1412,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","657069807505637397"],"dstIndex":1402,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699137595724267520","user","571023281382227978"],"dstIndex":1401,"srcIndex":55,"timestampMs":1586757792169},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699306499930980452","user","363774203960360961"],"dstIndex":1411,"srcIndex":58,"timestampMs":1586798062070},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699325373472702534","user","363774203960360961"],"dstIndex":1411,"srcIndex":60,"timestampMs":1586802561873},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","363774203960360961"],"dstIndex":1411,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","464169801036726292"],"dstIndex":8,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","505789102222737420","698932174396850236","user","571023281382227978"],"dstIndex":1401,"srcIndex":33,"timestampMs":1586708815908},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","696708274682069062","user","683892894767251489"],"dstIndex":13,"srcIndex":19,"timestampMs":1586178596898},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","698799127244308550","user","505789102222737420"],"dstIndex":9,"srcIndex":28,"timestampMs":1586677094995},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","699124769349566484","user","420341518948237331"],"dstIndex":1405,"srcIndex":54,"timestampMs":1586754734123},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696451005914546256","user","118260545211072517"],"dstIndex":1409,"srcIndex":15,"timestampMs":1586117259244},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696730540039995493","user","571023281382227978"],"dstIndex":1401,"srcIndex":20,"timestampMs":1586183905373},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696740396331696198","user","665203331639148553"],"dstIndex":12,"srcIndex":21,"timestampMs":1586186255296},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696769305131614260","user","371754999304290304"],"dstIndex":6,"srcIndex":22,"timestampMs":1586193147691},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698691171811328080","user","250086586450968576"],"dstIndex":1412,"srcIndex":25,"timestampMs":1586651356414},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698710294427467857","user","208321561982271489"],"dstIndex":3,"srcIndex":26,"timestampMs":1586655915601},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","250086586450968576"],"dstIndex":1412,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","571023281382227978"],"dstIndex":1401,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","333143183355543552"],"dstIndex":5,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","505789102222737420"],"dstIndex":9,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698941350531301477","user","250086586450968576"],"dstIndex":1412,"srcIndex":35,"timestampMs":1586711003669},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968459890917436","user","420341518948237331"],"dstIndex":1405,"srcIndex":39,"timestampMs":1586717467044},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","118260545211072517"],"dstIndex":1409,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","420341518948237331"],"dstIndex":1405,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","657069807505637397"],"dstIndex":1402,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698969370533298296","user","420341518948237331"],"dstIndex":1405,"srcIndex":41,"timestampMs":1586717684158},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698970943955140738","user","321092785921064961"],"dstIndex":1406,"srcIndex":43,"timestampMs":1586718059291},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698982179069362196","user","420341518948237331"],"dstIndex":1405,"srcIndex":45,"timestampMs":1586720737951},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","250086586450968576"],"dstIndex":1412,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","657069807505637397"],"dstIndex":1402,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699022762215211088","user","420341518948237331"],"dstIndex":1405,"srcIndex":51,"timestampMs":1586730413727},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699024432244588644","user","420341518948237331"],"dstIndex":1405,"srcIndex":52,"timestampMs":1586730811893},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699302777167413379","user","464169801036726292"],"dstIndex":8,"srcIndex":56,"timestampMs":1586797174494},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699318638519255111","user","464169801036726292"],"dstIndex":8,"srcIndex":59,"timestampMs":1586800956135},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699325915578236949","user","464169801036726292"],"dstIndex":8,"srcIndex":61,"timestampMs":1586802691121},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699342838756016128","user","199630270285086720"],"dstIndex":2,"srcIndex":63,"timestampMs":1586806725921},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","143776454050709505"],"dstIndex":1,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","633708951447535616"],"dstIndex":11,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","700038397376331798","bot","699326460120530944"],"dstIndex":0,"srcIndex":68,"timestampMs":1586972560019},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696609260196593664","user","657069807505637397"],"dstIndex":1402,"srcIndex":18,"timestampMs":1586154990005},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","571023281382227978"],"dstIndex":1401,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","657069807505637397"],"dstIndex":1402,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344917068906598","440281764204642314","697318813192028200","user","571023281382227978"],"dstIndex":1401,"srcIndex":71,"timestampMs":1586324160622},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697081143551328256","user","440281764204642314"],"dstIndex":7,"srcIndex":70,"timestampMs":1586267495764},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","440281764204642314"],"dstIndex":7,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","571023281382227978"],"dstIndex":1401,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","657069807505637397","697073300131807274","user","571023281382227978"],"dstIndex":1401,"srcIndex":69,"timestampMs":1586265625747},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700073516900417556","user","657069807505637397"],"dstIndex":1402,"srcIndex":101,"timestampMs":1586980933166},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700083246087667833","user","571023281382227978"],"dstIndex":1401,"srcIndex":103,"timestampMs":1586983252785},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700468593451597902","user","474405294307278880"],"dstIndex":1403,"srcIndex":108,"timestampMs":1587075126756},{"address":["sourcecred","discord","MENTIONS","696420039141752863","420341518948237331","699407535194767410","user","118260545211072517"],"dstIndex":1409,"srcIndex":92,"timestampMs":1586822150754},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","537858848912834561"],"dstIndex":10,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","571023281382227978"],"dstIndex":1401,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","657069807505637397"],"dstIndex":1402,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699122711745527878","user","657069807505637397"],"dstIndex":1402,"srcIndex":82,"timestampMs":1586754243552},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","571023281382227978"],"dstIndex":1401,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","665203331639148553"],"dstIndex":12,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700345588725841990","user","321092785921064961"],"dstIndex":1406,"srcIndex":106,"timestampMs":1587045800144},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700354840445976616","user","321092785921064961"],"dstIndex":1406,"srcIndex":107,"timestampMs":1587048005926},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696440757908799568","user","571023281382227978"],"dstIndex":1401,"srcIndex":76,"timestampMs":1586114815929},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696452154268975225","user","571023281382227978"],"dstIndex":1401,"srcIndex":78,"timestampMs":1586117533033},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696730851802742794","user","537858848912834561"],"dstIndex":10,"srcIndex":79,"timestampMs":1586183979703},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699020484167073792","user","571023281382227978"],"dstIndex":1401,"srcIndex":81,"timestampMs":1586729870598},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699276546795372595","user","321092785921064961"],"dstIndex":1406,"srcIndex":87,"timestampMs":1586790920686},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699278809974833224","user","118260545211072517"],"dstIndex":1409,"srcIndex":89,"timestampMs":1586791460270},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","321092785921064961"],"dstIndex":1406,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","571023281382227978"],"dstIndex":1401,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699406916300046346","user","420341518948237331"],"dstIndex":1405,"srcIndex":91,"timestampMs":1586822003198},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699408033343733841","user","420341518948237331"],"dstIndex":1405,"srcIndex":93,"timestampMs":1586822269522},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699410487020093501","user","440281764204642314"],"dstIndex":7,"srcIndex":94,"timestampMs":1586822854524},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700016555521736837","user","321092785921064961"],"dstIndex":1406,"srcIndex":98,"timestampMs":1586967352515},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700064770367160361","user","321092785921064961"],"dstIndex":1406,"srcIndex":99,"timestampMs":1586978847830},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","321092785921064961"],"dstIndex":1406,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","657069807505637397"],"dstIndex":1402,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700085865933832252","user","321092785921064961"],"dstIndex":1406,"srcIndex":104,"timestampMs":1586983877405},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699274952301609111","user","321092785921064961"],"dstIndex":1406,"srcIndex":84,"timestampMs":1586790540529},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699275129204637708","user","657069807505637397"],"dstIndex":1402,"srcIndex":85,"timestampMs":1586790582706},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699277478530646016","user","321092785921064961"],"dstIndex":1406,"srcIndex":88,"timestampMs":1586791142829},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699558251074682931","user","571023281382227978"],"dstIndex":1401,"srcIndex":95,"timestampMs":1586858084220},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698672127418695751","user","657069807505637397"],"dstIndex":1402,"srcIndex":110,"timestampMs":1586646815877},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698673539011837994","user","657069807505637397"],"dstIndex":1402,"srcIndex":111,"timestampMs":1586647152427},{"address":["sourcecred","discord","MENTIONS","696420197644632116","291388682710024192","698956579168321617","user","657069807505637397"],"dstIndex":1402,"srcIndex":113,"timestampMs":1586714634459},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698667046661128244","user","118260545211072517"],"dstIndex":1409,"srcIndex":109,"timestampMs":1586645604530},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698683402920001637","user","683892894767251489"],"dstIndex":13,"srcIndex":112,"timestampMs":1586649504166},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699017594287685672","user","683892894767251489"],"dstIndex":13,"srcIndex":114,"timestampMs":1586729181597},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699283043940302898","user","537858848912834561"],"dstIndex":10,"srcIndex":115,"timestampMs":1586792469726},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699284090607763506","user","537858848912834561"],"dstIndex":10,"srcIndex":116,"timestampMs":1586792719271},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699303864872075295","user","420341518948237331"],"dstIndex":1405,"srcIndex":117,"timestampMs":1586797433823},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699352914476400712","user","537858848912834561"],"dstIndex":10,"srcIndex":118,"timestampMs":1586809128160},{"address":["sourcecred","discord","MENTIONS","698942081858666527","250086586450968576","699821888431587439","user","657069807505637397"],"dstIndex":1402,"srcIndex":119,"timestampMs":1586920940264},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700033440564641854","user","657069807505637397"],"dstIndex":1402,"srcIndex":121,"timestampMs":1586971378223},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700051768008114186","user","363774203960360961"],"dstIndex":1411,"srcIndex":137,"timestampMs":1586975747826},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700059438136033361","user","657069807505637397"],"dstIndex":1402,"srcIndex":143,"timestampMs":1586977576527},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700371208880914563","bot","699326460120530944"],"dstIndex":0,"srcIndex":162,"timestampMs":1587051908465},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700397997707755530","user","474405294307278880"],"dstIndex":1403,"srcIndex":170,"timestampMs":1587058295419},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700399163313094746","user","665203331639148553"],"dstIndex":12,"srcIndex":174,"timestampMs":1587058573321},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","321092785921064961"],"dstIndex":1406,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","363774203960360961"],"dstIndex":1411,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700036022368731256","user","321092785921064961"],"dstIndex":1406,"srcIndex":122,"timestampMs":1586971993773},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700040992916766780","user","321092785921064961"],"dstIndex":1406,"srcIndex":127,"timestampMs":1586973178844},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700062058405953678","user","321092785921064961"],"dstIndex":1406,"srcIndex":147,"timestampMs":1586978201248},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700064631778967634","user","321092785921064961"],"dstIndex":1406,"srcIndex":151,"timestampMs":1586978814788},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700397481799974962","user","321092785921064961"],"dstIndex":1406,"srcIndex":166,"timestampMs":1587058172417},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700398301412982965","user","321092785921064961"],"dstIndex":1406,"srcIndex":172,"timestampMs":1587058367828},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700038868707180644","user","321092785921064961"],"dstIndex":1406,"srcIndex":123,"timestampMs":1586972672393},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700039441799970969","user","321092785921064961"],"dstIndex":1406,"srcIndex":124,"timestampMs":1586972809029},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044206176993470","user","657069807505637397"],"dstIndex":1402,"srcIndex":128,"timestampMs":1586973944945},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044421760286721","user","657069807505637397"],"dstIndex":1402,"srcIndex":129,"timestampMs":1586973996344},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044496049799228","user","657069807505637397"],"dstIndex":1402,"srcIndex":130,"timestampMs":1586974014056},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044548411490335","user","657069807505637397"],"dstIndex":1402,"srcIndex":131,"timestampMs":1586974026540},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044635619328131","user","657069807505637397"],"dstIndex":1402,"srcIndex":132,"timestampMs":1586974047332},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044689285316738","user","657069807505637397"],"dstIndex":1402,"srcIndex":133,"timestampMs":1586974060127},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049028251123832","user","363774203960360961"],"dstIndex":1411,"srcIndex":134,"timestampMs":1586975094617},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049257490808933","user","363774203960360961"],"dstIndex":1411,"srcIndex":135,"timestampMs":1586975149272},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049378643017889","user","363774203960360961"],"dstIndex":1411,"srcIndex":136,"timestampMs":1586975178157},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700056792524128306","user","321092785921064961"],"dstIndex":1406,"srcIndex":139,"timestampMs":1586976945764},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059334679330946","user","657069807505637397"],"dstIndex":1402,"srcIndex":140,"timestampMs":1586977551861},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059353306234910","user","657069807505637397"],"dstIndex":1402,"srcIndex":141,"timestampMs":1586977556302},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059384751063091","user","657069807505637397"],"dstIndex":1402,"srcIndex":142,"timestampMs":1586977563799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059438526103572","user","321092785921064961"],"dstIndex":1406,"srcIndex":144,"timestampMs":1586977576620},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059538023514154","user","657069807505637397"],"dstIndex":1402,"srcIndex":145,"timestampMs":1586977600342},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700061097583050871","user","321092785921064961"],"dstIndex":1406,"srcIndex":146,"timestampMs":1586977972170},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062189503119381","user","321092785921064961"],"dstIndex":1406,"srcIndex":148,"timestampMs":1586978232504},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062400774275204","user","363774203960360961"],"dstIndex":1411,"srcIndex":149,"timestampMs":1586978282875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700063628711166054","user","321092785921064961"],"dstIndex":1406,"srcIndex":150,"timestampMs":1586978575638},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700064632144003103","user","657069807505637397"],"dstIndex":1402,"srcIndex":152,"timestampMs":1586978814875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700118599003668510","user","321092785921064961"],"dstIndex":1406,"srcIndex":153,"timestampMs":1586991681577},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335319349985310","user","321092785921064961"],"dstIndex":1406,"srcIndex":154,"timestampMs":1587043351734},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335919315550299","user","321092785921064961"],"dstIndex":1406,"srcIndex":155,"timestampMs":1587043494777},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700365992571699350","user","665203331639148553"],"dstIndex":12,"srcIndex":156,"timestampMs":1587050664800},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700366555233517630","user","665203331639148553"],"dstIndex":12,"srcIndex":157,"timestampMs":1587050798949},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700367514638483537","user","665203331639148553"],"dstIndex":12,"srcIndex":158,"timestampMs":1587051027689},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700369922630615040","user","321092785921064961"],"dstIndex":1406,"srcIndex":159,"timestampMs":1587051601799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370207419662458","user","321092785921064961"],"dstIndex":1406,"srcIndex":160,"timestampMs":1587051669698},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370372230643763","user","321092785921064961"],"dstIndex":1406,"srcIndex":161,"timestampMs":1587051708992},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371209241624656","user","321092785921064961"],"dstIndex":1406,"srcIndex":163,"timestampMs":1587051908551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371558480216124","user","321092785921064961"],"dstIndex":1406,"srcIndex":164,"timestampMs":1587051991816},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397237930295386","user","665203331639148553"],"dstIndex":12,"srcIndex":165,"timestampMs":1587058114274},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397482362011769","user","665203331639148553"],"dstIndex":12,"srcIndex":167,"timestampMs":1587058172551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397866581229620","user","474405294307278880"],"dstIndex":1403,"srcIndex":168,"timestampMs":1587058264156},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397927478067221","user","474405294307278880"],"dstIndex":1403,"srcIndex":169,"timestampMs":1587058278675},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398207733334077","user","665203331639148553"],"dstIndex":12,"srcIndex":171,"timestampMs":1587058345493},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398301727555604","user","665203331639148553"],"dstIndex":12,"srcIndex":173,"timestampMs":1587058367903},{"address":["sourcecred","discord","REACTS_TO","❤️","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":175,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":176,"timestampMs":1586118204077},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":177,"timestampMs":1586118265041},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":178,"timestampMs":1586730159102},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":179,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":205,"timestampMs":1586921152752},{"address":["sourcecred","discord","REACTS_TO","👍","537858848912834561","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":204,"timestampMs":1586792719271},{"address":["sourcecred","discord","REACTS_TO","👍","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":180,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":181,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":182,"timestampMs":1586802848489},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":197,"timestampMs":1586111617618},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":198,"timestampMs":1586115085852},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":199,"timestampMs":1586754351459},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":200,"timestampMs":1586984382781},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":206,"timestampMs":1586973031780},{"address":["sourcecred","discord","REACTS_TO","💯","321092785921064961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":207,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","💯","571023281382227978","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":183,"timestampMs":1586183905373},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":184,"timestampMs":1586716741889},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":208,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","🔥","118260545211072517","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":188,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":185,"timestampMs":1586717770000},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":189,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":190,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":191,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":186,"timestampMs":1586718718366},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":192,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":201,"timestampMs":1586858628046},{"address":["sourcecred","discord","REACTS_TO","🔥","363774203960360961","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":209,"timestampMs":1586972809029},{"address":["sourcecred","discord","REACTS_TO","🔥","440281764204642314","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":193,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":187,"timestampMs":1586706244909},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":194,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":195,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":202,"timestampMs":1586790670630},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":203,"timestampMs":1586978883530},{"address":["sourcecred","discord","REACTS_TO","🔥","683892894767251489","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":196,"timestampMs":1586643849022},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","AlexMasmej","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":983,"srcIndex":1395,"timestampMs":1582941505000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":873,"srcIndex":1396,"timestampMs":1582978132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":906,"srcIndex":1396,"timestampMs":1581914566000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":1396,"timestampMs":1581914856000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":908,"srcIndex":1396,"timestampMs":1581911765000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":938,"srcIndex":1396,"timestampMs":1581914897000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":967,"srcIndex":1396,"timestampMs":1581898623000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":975,"srcIndex":1396,"timestampMs":1581903076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":1396,"timestampMs":1581902687000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":997,"srcIndex":1396,"timestampMs":1581900781000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":1396,"timestampMs":1581914667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":1396,"timestampMs":1581903056000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":1050,"srcIndex":1396,"timestampMs":1581898638000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":786,"srcIndex":1397,"timestampMs":1586921892000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":787,"srcIndex":1397,"timestampMs":1586930578000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":788,"srcIndex":1397,"timestampMs":1586920791000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":789,"srcIndex":1397,"timestampMs":1586921871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":790,"srcIndex":1397,"timestampMs":1586920549000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":791,"srcIndex":1397,"timestampMs":1586839193000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":792,"srcIndex":1397,"timestampMs":1586916947000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":793,"srcIndex":1397,"timestampMs":1586919065000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":794,"srcIndex":1397,"timestampMs":1586971104000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":795,"srcIndex":1397,"timestampMs":1586957209000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":796,"srcIndex":1397,"timestampMs":1586915756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":797,"srcIndex":1397,"timestampMs":1586916992000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":798,"srcIndex":1397,"timestampMs":1586932748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":799,"srcIndex":1397,"timestampMs":1586934527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":802,"srcIndex":1397,"timestampMs":1586805309000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":803,"srcIndex":1397,"timestampMs":1586918718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":804,"srcIndex":1397,"timestampMs":1586831849000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":805,"srcIndex":1397,"timestampMs":1586977731000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":806,"srcIndex":1397,"timestampMs":1586921823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":807,"srcIndex":1397,"timestampMs":1586960050000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":808,"srcIndex":1397,"timestampMs":1586933937000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":809,"srcIndex":1397,"timestampMs":1586832132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":810,"srcIndex":1397,"timestampMs":1586958454000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":1099,"srcIndex":1397,"timestampMs":1586972808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":1107,"srcIndex":1397,"timestampMs":1587058277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":1108,"srcIndex":1397,"timestampMs":1587049226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":1123,"srcIndex":1397,"timestampMs":1586978574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":1157,"srcIndex":1397,"timestampMs":1586802604000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":1158,"srcIndex":1397,"timestampMs":1586972788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":1182,"srcIndex":1397,"timestampMs":1587058263000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":1188,"srcIndex":1397,"timestampMs":1587050798000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":1189,"srcIndex":1397,"timestampMs":1587051668000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":1193,"srcIndex":1397,"timestampMs":1586978547000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":1194,"srcIndex":1397,"timestampMs":1587051026000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":1198,"srcIndex":1397,"timestampMs":1586975177000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":1221,"srcIndex":1397,"timestampMs":1587051708000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":1240,"srcIndex":1397,"timestampMs":1586820040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":1267,"srcIndex":1397,"timestampMs":1587049279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1397,"timestampMs":1586934042000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1340,"srcIndex":1397,"timestampMs":1586934224000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1397,"timestampMs":1586990170000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1342,"srcIndex":1397,"timestampMs":1586990449000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1343,"srcIndex":1397,"timestampMs":1586990584000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1397,"timestampMs":1586802611000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":1397,"timestampMs":1586970997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1371,"srcIndex":1397,"timestampMs":1586717760000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1392,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1393,"srcIndex":1397,"timestampMs":1587075078000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1394,"srcIndex":1397,"timestampMs":1586924060000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":758,"srcIndex":1397,"timestampMs":1586990245000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":760,"srcIndex":1397,"timestampMs":1586797413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":762,"srcIndex":1397,"timestampMs":1586801948000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":764,"srcIndex":1397,"timestampMs":1586802422000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1397,"timestampMs":1587071419000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1397,"timestampMs":1587071453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":781,"srcIndex":1402,"timestampMs":1586666528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":782,"srcIndex":1402,"timestampMs":1586706188000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":783,"srcIndex":1402,"timestampMs":1586709195000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":784,"srcIndex":1402,"timestampMs":1586710102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":785,"srcIndex":1402,"timestampMs":1586709961000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":811,"srcIndex":1402,"timestampMs":1586730565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":812,"srcIndex":1402,"timestampMs":1586643786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":813,"srcIndex":1402,"timestampMs":1586664558000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":814,"srcIndex":1402,"timestampMs":1586566020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":815,"srcIndex":1402,"timestampMs":1586710826000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":816,"srcIndex":1402,"timestampMs":1586727748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":817,"srcIndex":1402,"timestampMs":1586570955000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":818,"srcIndex":1402,"timestampMs":1586662685000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":819,"srcIndex":1402,"timestampMs":1586127122000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":820,"srcIndex":1402,"timestampMs":1586658983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":821,"srcIndex":1402,"timestampMs":1586566694000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":822,"srcIndex":1402,"timestampMs":1586656936000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":823,"srcIndex":1402,"timestampMs":1586797014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":824,"srcIndex":1402,"timestampMs":1586727823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":825,"srcIndex":1402,"timestampMs":1586103464000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":826,"srcIndex":1402,"timestampMs":1586633871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":827,"srcIndex":1402,"timestampMs":1586647160000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":828,"srcIndex":1402,"timestampMs":1586660251000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":829,"srcIndex":1402,"timestampMs":1586649927000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":831,"srcIndex":1402,"timestampMs":1586571027000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":832,"srcIndex":1402,"timestampMs":1586644808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":833,"srcIndex":1402,"timestampMs":1586650718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":834,"srcIndex":1402,"timestampMs":1586103441000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":835,"srcIndex":1402,"timestampMs":1586568293000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":836,"srcIndex":1402,"timestampMs":1586646704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":837,"srcIndex":1402,"timestampMs":1586663015000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":838,"srcIndex":1402,"timestampMs":1586639136000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":839,"srcIndex":1402,"timestampMs":1586663769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":840,"srcIndex":1402,"timestampMs":1586652307000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":841,"srcIndex":1402,"timestampMs":1586570353000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":842,"srcIndex":1402,"timestampMs":1586638395000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":843,"srcIndex":1402,"timestampMs":1586657067000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":844,"srcIndex":1402,"timestampMs":1586649206000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":845,"srcIndex":1402,"timestampMs":1586729040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":846,"srcIndex":1402,"timestampMs":1586567498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":848,"srcIndex":1402,"timestampMs":1586568912000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":849,"srcIndex":1402,"timestampMs":1586640470000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":850,"srcIndex":1402,"timestampMs":1586111771000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":851,"srcIndex":1402,"timestampMs":1586569076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":852,"srcIndex":1402,"timestampMs":1586648621000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":853,"srcIndex":1402,"timestampMs":1586111689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":854,"srcIndex":1402,"timestampMs":1586651543000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":855,"srcIndex":1402,"timestampMs":1586661631000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":856,"srcIndex":1402,"timestampMs":1586739277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":857,"srcIndex":1402,"timestampMs":1586644660000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":858,"srcIndex":1402,"timestampMs":1586792089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":859,"srcIndex":1402,"timestampMs":1586645107000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":860,"srcIndex":1402,"timestampMs":1586656870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":861,"srcIndex":1402,"timestampMs":1586790290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":862,"srcIndex":1402,"timestampMs":1586571301000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":863,"srcIndex":1402,"timestampMs":1586565903000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":864,"srcIndex":1402,"timestampMs":1586633977000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":865,"srcIndex":1402,"timestampMs":1586645253000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":866,"srcIndex":1402,"timestampMs":1586567811000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":867,"srcIndex":1402,"timestampMs":1586664528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":868,"srcIndex":1402,"timestampMs":1586645187000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":870,"srcIndex":1402,"timestampMs":1586654110000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":871,"srcIndex":1402,"timestampMs":1586570850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":898,"srcIndex":1402,"timestampMs":1586106320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":909,"srcIndex":1402,"timestampMs":1586106153000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":933,"srcIndex":1402,"timestampMs":1586112503000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":944,"srcIndex":1402,"timestampMs":1586109721000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":964,"srcIndex":1402,"timestampMs":1586106389000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":1007,"srcIndex":1402,"timestampMs":1586105574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":1014,"srcIndex":1402,"timestampMs":1586106281000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":1057,"srcIndex":1402,"timestampMs":1583592448000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":1111,"srcIndex":1402,"timestampMs":1586710226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":1113,"srcIndex":1402,"timestampMs":1586718047000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":1120,"srcIndex":1402,"timestampMs":1586796945000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":1146,"srcIndex":1402,"timestampMs":1586822144000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":1149,"srcIndex":1402,"timestampMs":1586712379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":1153,"srcIndex":1402,"timestampMs":1586810697000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":1167,"srcIndex":1402,"timestampMs":1587042850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":1197,"srcIndex":1402,"timestampMs":1586717770000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":1209,"srcIndex":1402,"timestampMs":1586704728000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":1213,"srcIndex":1402,"timestampMs":1586810650000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":1228,"srcIndex":1402,"timestampMs":1586710445000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":1238,"srcIndex":1402,"timestampMs":1586711922000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":1239,"srcIndex":1402,"timestampMs":1586712103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":1247,"srcIndex":1402,"timestampMs":1586704788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":1282,"srcIndex":1402,"timestampMs":1586109667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":1284,"srcIndex":1402,"timestampMs":1583868918000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":1286,"srcIndex":1402,"timestampMs":1586115483000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":1288,"srcIndex":1402,"timestampMs":1586115750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":1295,"srcIndex":1402,"timestampMs":1586115035000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":1297,"srcIndex":1402,"timestampMs":1586116855000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":1303,"srcIndex":1402,"timestampMs":1586115569000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":1306,"srcIndex":1402,"timestampMs":1586115692000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":1307,"srcIndex":1402,"timestampMs":1586115737000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":1309,"srcIndex":1402,"timestampMs":1586115523000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":1311,"srcIndex":1402,"timestampMs":1584925959000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":1314,"srcIndex":1402,"timestampMs":1586115159000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1317,"srcIndex":1402,"timestampMs":1586638125000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1402,"timestampMs":1586704018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1319,"srcIndex":1402,"timestampMs":1586705495000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1402,"timestampMs":1586705553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1321,"srcIndex":1402,"timestampMs":1586705865000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1322,"srcIndex":1402,"timestampMs":1586712839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1325,"srcIndex":1402,"timestampMs":1586819336000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":1402,"timestampMs":1586821830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1327,"srcIndex":1402,"timestampMs":1586823283000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1329,"srcIndex":1402,"timestampMs":1586921943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1336,"srcIndex":1402,"timestampMs":1586104764000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1402,"timestampMs":1586116752000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1402,"timestampMs":1586917207000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1344,"srcIndex":1402,"timestampMs":1586709265000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1345,"srcIndex":1402,"timestampMs":1586706267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1346,"srcIndex":1402,"timestampMs":1586706318000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1347,"srcIndex":1402,"timestampMs":1586666816000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1348,"srcIndex":1402,"timestampMs":1586666998000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1349,"srcIndex":1402,"timestampMs":1586705051000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1402,"timestampMs":1586709014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1353,"srcIndex":1402,"timestampMs":1586705290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1354,"srcIndex":1402,"timestampMs":1586712148000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1355,"srcIndex":1402,"timestampMs":1586571331000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1356,"srcIndex":1402,"timestampMs":1586662991000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":1402,"timestampMs":1586566012000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":1402,"timestampMs":1586727817000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":1402,"timestampMs":1586797004000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":1402,"timestampMs":1586633970000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":1402,"timestampMs":1586645179000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":1402,"timestampMs":1586654103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":1402,"timestampMs":1586656931000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":1402,"timestampMs":1586663009000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":1402,"timestampMs":1586664552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":746,"srcIndex":1402,"timestampMs":1586735225000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":747,"srcIndex":1402,"timestampMs":1586793675000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":748,"srcIndex":1402,"timestampMs":1586821838000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":751,"srcIndex":1402,"timestampMs":1586808032000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":752,"srcIndex":1402,"timestampMs":1586819514000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":753,"srcIndex":1402,"timestampMs":1586820570000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":754,"srcIndex":1402,"timestampMs":1586840296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":756,"srcIndex":1402,"timestampMs":1586922019000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":757,"srcIndex":1402,"timestampMs":1586802750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":759,"srcIndex":1402,"timestampMs":1586666872000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1402,"timestampMs":1586801390000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1402,"timestampMs":1586802204000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":766,"srcIndex":1402,"timestampMs":1586704028000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":767,"srcIndex":1402,"timestampMs":1586709561000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":771,"srcIndex":1402,"timestampMs":1586786432000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":772,"srcIndex":1402,"timestampMs":1586786582000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1402,"timestampMs":1586790870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1402,"timestampMs":1586810690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","c0mput3rxz","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":972,"srcIndex":1398,"timestampMs":1583542889000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":801,"srcIndex":1403,"timestampMs":1587075097000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1403,"timestampMs":1587070982000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1369,"srcIndex":1403,"timestampMs":1587079858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1403,"timestampMs":1586914696000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":777,"srcIndex":1403,"timestampMs":1587079943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":877,"srcIndex":1409,"timestampMs":1583619788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":879,"srcIndex":1409,"timestampMs":1585275196000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":887,"srcIndex":1409,"timestampMs":1583545099000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":919,"srcIndex":1409,"timestampMs":1583124213000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":931,"srcIndex":1409,"timestampMs":1582959287000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":937,"srcIndex":1409,"timestampMs":1583096048000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":959,"srcIndex":1409,"timestampMs":1585275681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":976,"srcIndex":1409,"timestampMs":1583014162000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":999,"srcIndex":1409,"timestampMs":1583124366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":1409,"timestampMs":1582959276000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":1013,"srcIndex":1409,"timestampMs":1583124346000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":1018,"srcIndex":1409,"timestampMs":1585361688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1409,"timestampMs":1582941407000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":1038,"srcIndex":1409,"timestampMs":1582941413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":1053,"srcIndex":1409,"timestampMs":1583124164000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":1056,"srcIndex":1409,"timestampMs":1582941750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":1061,"srcIndex":1409,"timestampMs":1585365677000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":800,"srcIndex":1410,"timestampMs":1587052319000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":830,"srcIndex":1410,"timestampMs":1586855777000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":847,"srcIndex":1410,"timestampMs":1586855462000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":869,"srcIndex":1410,"timestampMs":1586874980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1410,"timestampMs":1586858542000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1351,"srcIndex":1410,"timestampMs":1586772477000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1352,"srcIndex":1410,"timestampMs":1586772739000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":749,"srcIndex":1410,"timestampMs":1586773257000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":755,"srcIndex":1410,"timestampMs":1586858608000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":765,"srcIndex":1410,"timestampMs":1586962450000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":768,"srcIndex":1410,"timestampMs":1586858205000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1410,"timestampMs":1586773337000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1410,"timestampMs":1586773655000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":773,"srcIndex":1410,"timestampMs":1586790511000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":775,"srcIndex":1410,"timestampMs":1586959270000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":930,"srcIndex":1412,"timestampMs":1583107086000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":950,"srcIndex":1412,"timestampMs":1583122040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":969,"srcIndex":1412,"timestampMs":1583106975000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":1094,"srcIndex":1412,"timestampMs":1586994934000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":1211,"srcIndex":1412,"timestampMs":1586810374000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1412,"timestampMs":1586810530000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1412,"timestampMs":1586995113000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":874,"srcIndex":1401,"timestampMs":1586104482000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":896,"srcIndex":1401,"timestampMs":1586104041000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":921,"srcIndex":1401,"timestampMs":1586105522000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":941,"srcIndex":1401,"timestampMs":1586104299000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":996,"srcIndex":1401,"timestampMs":1586103659000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":1022,"srcIndex":1401,"timestampMs":1586104090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":1048,"srcIndex":1401,"timestampMs":1586103656000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":1072,"srcIndex":1401,"timestampMs":1586425053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":1073,"srcIndex":1401,"timestampMs":1586114858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":1074,"srcIndex":1401,"timestampMs":1586658939000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":1075,"srcIndex":1401,"timestampMs":1586425366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":1076,"srcIndex":1401,"timestampMs":1586377189000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":1077,"srcIndex":1401,"timestampMs":1586109857000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":1079,"srcIndex":1401,"timestampMs":1586439223000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":1082,"srcIndex":1401,"timestampMs":1586430244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":1083,"srcIndex":1401,"timestampMs":1586430128000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":1085,"srcIndex":1401,"timestampMs":1586638157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1401,"timestampMs":1586535321000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":1089,"srcIndex":1401,"timestampMs":1586436690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":1090,"srcIndex":1401,"timestampMs":1586760993000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":1093,"srcIndex":1401,"timestampMs":1586425839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":1095,"srcIndex":1401,"timestampMs":1586475320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":1098,"srcIndex":1401,"timestampMs":1586636313000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":1100,"srcIndex":1401,"timestampMs":1586436960000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":1101,"srcIndex":1401,"timestampMs":1586645851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":1102,"srcIndex":1401,"timestampMs":1586114997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":1103,"srcIndex":1401,"timestampMs":1586436983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":1104,"srcIndex":1401,"timestampMs":1586439726000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":1109,"srcIndex":1401,"timestampMs":1586430447000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":1110,"srcIndex":1401,"timestampMs":1586438375000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":1112,"srcIndex":1401,"timestampMs":1586110667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":1114,"srcIndex":1401,"timestampMs":1586439440000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":1115,"srcIndex":1401,"timestampMs":1586658493000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":1118,"srcIndex":1401,"timestampMs":1586641745000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":1122,"srcIndex":1401,"timestampMs":1586446367000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":1125,"srcIndex":1401,"timestampMs":1586107822000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":1128,"srcIndex":1401,"timestampMs":1586111848000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":1129,"srcIndex":1401,"timestampMs":1586450203000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":1131,"srcIndex":1401,"timestampMs":1586208161000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":1135,"srcIndex":1401,"timestampMs":1586608102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":1139,"srcIndex":1401,"timestampMs":1586438648000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":1143,"srcIndex":1401,"timestampMs":1586447296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":1144,"srcIndex":1401,"timestampMs":1586262990000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":1145,"srcIndex":1401,"timestampMs":1586108344000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":1151,"srcIndex":1401,"timestampMs":1586629712000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":1155,"srcIndex":1401,"timestampMs":1586630579000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":1156,"srcIndex":1401,"timestampMs":1586640176000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":1159,"srcIndex":1401,"timestampMs":1586264143000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":1160,"srcIndex":1401,"timestampMs":1586443674000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":1165,"srcIndex":1401,"timestampMs":1586629689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":1166,"srcIndex":1401,"timestampMs":1586642724000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":1168,"srcIndex":1401,"timestampMs":1586461703000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":1169,"srcIndex":1401,"timestampMs":1586264058000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":1171,"srcIndex":1401,"timestampMs":1586208446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":1172,"srcIndex":1401,"timestampMs":1586264565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":1173,"srcIndex":1401,"timestampMs":1586264365000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":1175,"srcIndex":1401,"timestampMs":1586633972000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":1176,"srcIndex":1401,"timestampMs":1586630527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":1177,"srcIndex":1401,"timestampMs":1586632841000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":1178,"srcIndex":1401,"timestampMs":1586446829000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":1179,"srcIndex":1401,"timestampMs":1586437704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":1181,"srcIndex":1401,"timestampMs":1586643749000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":1184,"srcIndex":1401,"timestampMs":1586556200000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":1185,"srcIndex":1401,"timestampMs":1586426157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":1186,"srcIndex":1401,"timestampMs":1586504576000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":1190,"srcIndex":1401,"timestampMs":1586632115000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":1191,"srcIndex":1401,"timestampMs":1586115022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":1192,"srcIndex":1401,"timestampMs":1586395769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":1195,"srcIndex":1401,"timestampMs":1586428289000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":1196,"srcIndex":1401,"timestampMs":1586635956000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":1199,"srcIndex":1401,"timestampMs":1586566089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":1200,"srcIndex":1401,"timestampMs":1586637453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":1201,"srcIndex":1401,"timestampMs":1586209230000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":1203,"srcIndex":1401,"timestampMs":1586619306000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":1204,"srcIndex":1401,"timestampMs":1586635980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":1207,"srcIndex":1401,"timestampMs":1586440952000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":1210,"srcIndex":1401,"timestampMs":1586425156000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":1214,"srcIndex":1401,"timestampMs":1586633830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":1215,"srcIndex":1401,"timestampMs":1586631279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":1219,"srcIndex":1401,"timestampMs":1586439053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":1220,"srcIndex":1401,"timestampMs":1586645068000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":1222,"srcIndex":1401,"timestampMs":1586461592000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":1223,"srcIndex":1401,"timestampMs":1586426867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":1224,"srcIndex":1401,"timestampMs":1586659020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":1225,"srcIndex":1401,"timestampMs":1586462092000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":1226,"srcIndex":1401,"timestampMs":1586445094000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":1227,"srcIndex":1401,"timestampMs":1586659508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":1229,"srcIndex":1401,"timestampMs":1586461896000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":1230,"srcIndex":1401,"timestampMs":1586640763000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":1234,"srcIndex":1401,"timestampMs":1586442756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":1235,"srcIndex":1401,"timestampMs":1586656761000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":1236,"srcIndex":1401,"timestampMs":1586639218000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":1237,"srcIndex":1401,"timestampMs":1586431949000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":1241,"srcIndex":1401,"timestampMs":1586425693000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":1242,"srcIndex":1401,"timestampMs":1586646488000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":1243,"srcIndex":1401,"timestampMs":1586657456000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":1244,"srcIndex":1401,"timestampMs":1586109264000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":1245,"srcIndex":1401,"timestampMs":1586395938000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":1246,"srcIndex":1401,"timestampMs":1586443142000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":1248,"srcIndex":1401,"timestampMs":1586612834000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":1249,"srcIndex":1401,"timestampMs":1586443040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":1251,"srcIndex":1401,"timestampMs":1586439553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":1252,"srcIndex":1401,"timestampMs":1586449851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":1254,"srcIndex":1401,"timestampMs":1586440769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":1255,"srcIndex":1401,"timestampMs":1586638167000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":1256,"srcIndex":1401,"timestampMs":1586442958000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":1257,"srcIndex":1401,"timestampMs":1586443278000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":1259,"srcIndex":1401,"timestampMs":1586108556000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":1260,"srcIndex":1401,"timestampMs":1586632045000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":1261,"srcIndex":1401,"timestampMs":1586644275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":1262,"srcIndex":1401,"timestampMs":1586439910000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":1263,"srcIndex":1401,"timestampMs":1586635090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":1265,"srcIndex":1401,"timestampMs":1586761063000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":1269,"srcIndex":1401,"timestampMs":1586425884000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":1271,"srcIndex":1401,"timestampMs":1586208275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":1272,"srcIndex":1401,"timestampMs":1586641071000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":1273,"srcIndex":1401,"timestampMs":1586446525000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":1275,"srcIndex":1401,"timestampMs":1586607022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":1276,"srcIndex":1401,"timestampMs":1586457498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":1277,"srcIndex":1401,"timestampMs":1586656082000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":1279,"srcIndex":1401,"timestampMs":1586639647000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":1280,"srcIndex":1401,"timestampMs":1586396173000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":1283,"srcIndex":1401,"timestampMs":1585184379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":1285,"srcIndex":1401,"timestampMs":1583846036000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":1287,"srcIndex":1401,"timestampMs":1585184096000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":1290,"srcIndex":1401,"timestampMs":1586119837000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":1291,"srcIndex":1401,"timestampMs":1586119867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":1292,"srcIndex":1401,"timestampMs":1583841786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":1293,"srcIndex":1401,"timestampMs":1583855508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":1294,"srcIndex":1401,"timestampMs":1584736018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":1296,"srcIndex":1401,"timestampMs":1584727355000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":1299,"srcIndex":1401,"timestampMs":1585132575000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":1300,"srcIndex":1401,"timestampMs":1585128878000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":1302,"srcIndex":1401,"timestampMs":1585126267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":1304,"srcIndex":1401,"timestampMs":1585126105000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":1305,"srcIndex":1401,"timestampMs":1584722599000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":1308,"srcIndex":1401,"timestampMs":1585142847000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":1310,"srcIndex":1401,"timestampMs":1583707484000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":1312,"srcIndex":1401,"timestampMs":1584468261000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":1313,"srcIndex":1401,"timestampMs":1585184645000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":1315,"srcIndex":1401,"timestampMs":1585134244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":1316,"srcIndex":1401,"timestampMs":1584727333000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1323,"srcIndex":1401,"timestampMs":1586768126000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1324,"srcIndex":1401,"timestampMs":1586269776000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1330,"srcIndex":1401,"timestampMs":1586390052000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1331,"srcIndex":1401,"timestampMs":1586390446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1332,"srcIndex":1401,"timestampMs":1586390871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1333,"srcIndex":1401,"timestampMs":1586396494000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1334,"srcIndex":1401,"timestampMs":1586435403000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1335,"srcIndex":1401,"timestampMs":1586440155000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1401,"timestampMs":1586264552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1358,"srcIndex":1401,"timestampMs":1586446688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1401,"timestampMs":1586449916000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1360,"srcIndex":1401,"timestampMs":1586658580000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1401,"timestampMs":1586425681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":1401,"timestampMs":1586103666000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1401,"timestampMs":1586104083000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1391,"srcIndex":1401,"timestampMs":1586658808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1401,"timestampMs":1586787682000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":1289,"srcIndex":1415,"timestampMs":1584727008000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":1298,"srcIndex":1415,"timestampMs":1584733391000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":1301,"srcIndex":1415,"timestampMs":1584729372000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","vntrp","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1375,"srcIndex":1399,"timestampMs":1586987888000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":215,"srcIndex":781,"timestampMs":1586666528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":262,"srcIndex":782,"timestampMs":1586706188000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":263,"srcIndex":783,"timestampMs":1586709195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":483,"srcIndex":784,"timestampMs":1586710102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":577,"srcIndex":785,"timestampMs":1586709961000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":254,"srcIndex":786,"timestampMs":1586921892000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":268,"srcIndex":787,"timestampMs":1586930578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":283,"srcIndex":788,"timestampMs":1586920791000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":293,"srcIndex":789,"timestampMs":1586921871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":296,"srcIndex":790,"timestampMs":1586920549000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":298,"srcIndex":791,"timestampMs":1586839193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":330,"srcIndex":792,"timestampMs":1586916947000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":356,"srcIndex":793,"timestampMs":1586919065000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":393,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":420,"srcIndex":795,"timestampMs":1586957209000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":424,"srcIndex":796,"timestampMs":1586915756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":560,"srcIndex":797,"timestampMs":1586916992000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":563,"srcIndex":798,"timestampMs":1586932748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":588,"srcIndex":799,"timestampMs":1586934527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":594,"srcIndex":800,"timestampMs":1587052319000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":573,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":656,"srcIndex":802,"timestampMs":1586805309000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":660,"srcIndex":803,"timestampMs":1586918718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":667,"srcIndex":804,"timestampMs":1586831849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":678,"srcIndex":805,"timestampMs":1586977731000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":679,"srcIndex":806,"timestampMs":1586921823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":691,"srcIndex":807,"timestampMs":1586960050000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":690,"srcIndex":808,"timestampMs":1586933937000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":733,"srcIndex":809,"timestampMs":1586832132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":719,"srcIndex":810,"timestampMs":1586958454000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":224,"srcIndex":811,"timestampMs":1586730565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":218,"srcIndex":812,"timestampMs":1586643786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":233,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":251,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":253,"srcIndex":815,"timestampMs":1586710826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":260,"srcIndex":816,"timestampMs":1586727748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":241,"srcIndex":817,"timestampMs":1586570955000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":285,"srcIndex":818,"timestampMs":1586662685000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":291,"srcIndex":819,"timestampMs":1586127122000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":295,"srcIndex":820,"timestampMs":1586658983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":299,"srcIndex":821,"timestampMs":1586566694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":302,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":303,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":325,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":331,"srcIndex":825,"timestampMs":1586103464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":310,"srcIndex":826,"timestampMs":1586633871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":368,"srcIndex":827,"timestampMs":1586647160000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":373,"srcIndex":828,"timestampMs":1586660251000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":382,"srcIndex":829,"timestampMs":1586649927000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":394,"srcIndex":830,"timestampMs":1586855777000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":402,"srcIndex":831,"timestampMs":1586571027000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":412,"srcIndex":832,"timestampMs":1586644808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":413,"srcIndex":833,"timestampMs":1586650718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":429,"srcIndex":834,"timestampMs":1586103441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":431,"srcIndex":835,"timestampMs":1586568293000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":433,"srcIndex":836,"timestampMs":1586646704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":436,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":458,"srcIndex":838,"timestampMs":1586639136000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":474,"srcIndex":839,"timestampMs":1586663769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":476,"srcIndex":840,"timestampMs":1586652307000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":479,"srcIndex":841,"timestampMs":1586570353000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":511,"srcIndex":842,"timestampMs":1586638395000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":519,"srcIndex":843,"timestampMs":1586657067000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":523,"srcIndex":844,"timestampMs":1586649206000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":545,"srcIndex":845,"timestampMs":1586729040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":548,"srcIndex":846,"timestampMs":1586567498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":554,"srcIndex":847,"timestampMs":1586855462000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":532,"srcIndex":848,"timestampMs":1586568912000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":533,"srcIndex":849,"timestampMs":1586640470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":538,"srcIndex":850,"timestampMs":1586111771000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":556,"srcIndex":851,"timestampMs":1586569076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":559,"srcIndex":852,"timestampMs":1586648621000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":601,"srcIndex":853,"timestampMs":1586111689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":606,"srcIndex":854,"timestampMs":1586651543000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":627,"srcIndex":855,"timestampMs":1586661631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":628,"srcIndex":856,"timestampMs":1586739277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":620,"srcIndex":857,"timestampMs":1586644660000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":623,"srcIndex":858,"timestampMs":1586792089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":642,"srcIndex":859,"timestampMs":1586645107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":657,"srcIndex":860,"timestampMs":1586656870000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":668,"srcIndex":861,"timestampMs":1586790290000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":649,"srcIndex":862,"timestampMs":1586571301000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":672,"srcIndex":863,"timestampMs":1586565903000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":677,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":683,"srcIndex":865,"timestampMs":1586645253000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":700,"srcIndex":866,"timestampMs":1586567811000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":701,"srcIndex":867,"timestampMs":1586664528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":689,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":711,"srcIndex":869,"timestampMs":1586874980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":735,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":737,"srcIndex":871,"timestampMs":1586570850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],"dstIndex":228,"srcIndex":872,"timestampMs":1584166244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":212,"srcIndex":873,"timestampMs":1582978132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":213,"srcIndex":874,"timestampMs":1586104482000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],"dstIndex":214,"srcIndex":875,"timestampMs":1583453629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],"dstIndex":235,"srcIndex":876,"timestampMs":1585678434000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":249,"srcIndex":877,"timestampMs":1583619788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],"dstIndex":250,"srcIndex":878,"timestampMs":1585354520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":258,"srcIndex":879,"timestampMs":1585275196000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],"dstIndex":240,"srcIndex":880,"timestampMs":1585246440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],"dstIndex":242,"srcIndex":881,"timestampMs":1583367223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],"dstIndex":243,"srcIndex":882,"timestampMs":1585807902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],"dstIndex":244,"srcIndex":883,"timestampMs":1584727971000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],"dstIndex":247,"srcIndex":884,"timestampMs":1585268012000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],"dstIndex":248,"srcIndex":885,"timestampMs":1584490521000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],"dstIndex":265,"srcIndex":886,"timestampMs":1584425424000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":266,"srcIndex":887,"timestampMs":1583545099000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],"dstIndex":267,"srcIndex":888,"timestampMs":1584404096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],"dstIndex":269,"srcIndex":889,"timestampMs":1584987191000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],"dstIndex":273,"srcIndex":890,"timestampMs":1585872826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],"dstIndex":274,"srcIndex":891,"timestampMs":1584231333000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],"dstIndex":284,"srcIndex":892,"timestampMs":1584079976000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],"dstIndex":287,"srcIndex":893,"timestampMs":1584555406000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],"dstIndex":288,"srcIndex":894,"timestampMs":1585159980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":275,"srcIndex":895,"timestampMs":1582941733000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":277,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":280,"srcIndex":897,"timestampMs":1581915151000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":281,"srcIndex":898,"timestampMs":1586106320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],"dstIndex":290,"srcIndex":899,"timestampMs":1585365876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],"dstIndex":301,"srcIndex":900,"timestampMs":1585276073000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],"dstIndex":304,"srcIndex":901,"timestampMs":1585397520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],"dstIndex":305,"srcIndex":902,"timestampMs":1584274368000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],"dstIndex":319,"srcIndex":903,"timestampMs":1584382440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],"dstIndex":320,"srcIndex":904,"timestampMs":1585894360000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],"dstIndex":321,"srcIndex":905,"timestampMs":1585095460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":322,"srcIndex":906,"timestampMs":1581914566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":324,"srcIndex":907,"timestampMs":1581914856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":326,"srcIndex":908,"timestampMs":1581911765000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":327,"srcIndex":909,"timestampMs":1586106153000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],"dstIndex":328,"srcIndex":910,"timestampMs":1583604631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],"dstIndex":329,"srcIndex":911,"timestampMs":1583712856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],"dstIndex":332,"srcIndex":912,"timestampMs":1585505534000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],"dstIndex":333,"srcIndex":913,"timestampMs":1584058539000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],"dstIndex":306,"srcIndex":914,"timestampMs":1583172648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],"dstIndex":307,"srcIndex":915,"timestampMs":1584857389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],"dstIndex":308,"srcIndex":916,"timestampMs":1583928647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],"dstIndex":312,"srcIndex":917,"timestampMs":1582959644000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],"dstIndex":314,"srcIndex":918,"timestampMs":1584965374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":337,"srcIndex":919,"timestampMs":1583124213000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],"dstIndex":338,"srcIndex":920,"timestampMs":1584511968000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":339,"srcIndex":921,"timestampMs":1586105522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],"dstIndex":340,"srcIndex":922,"timestampMs":1583280857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],"dstIndex":341,"srcIndex":923,"timestampMs":1584101474000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],"dstIndex":347,"srcIndex":924,"timestampMs":1583086481000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],"dstIndex":349,"srcIndex":925,"timestampMs":1583259010000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],"dstIndex":360,"srcIndex":926,"timestampMs":1585548726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],"dstIndex":359,"srcIndex":927,"timestampMs":1585700008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],"dstIndex":365,"srcIndex":928,"timestampMs":1585484037000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],"dstIndex":367,"srcIndex":929,"timestampMs":1585311128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":351,"srcIndex":930,"timestampMs":1583107086000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":352,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],"dstIndex":353,"srcIndex":932,"timestampMs":1585440813000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":354,"srcIndex":933,"timestampMs":1586112503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],"dstIndex":355,"srcIndex":934,"timestampMs":1583129436000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],"dstIndex":370,"srcIndex":935,"timestampMs":1585224759000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],"dstIndex":372,"srcIndex":936,"timestampMs":1585980739000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":374,"srcIndex":937,"timestampMs":1583096048000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":377,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],"dstIndex":388,"srcIndex":939,"timestampMs":1584209897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],"dstIndex":389,"srcIndex":940,"timestampMs":1585937519000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":391,"srcIndex":941,"timestampMs":1586104299000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],"dstIndex":392,"srcIndex":942,"timestampMs":1585613634000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],"dstIndex":379,"srcIndex":943,"timestampMs":1585656841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":380,"srcIndex":944,"timestampMs":1586109721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],"dstIndex":381,"srcIndex":945,"timestampMs":1585591899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],"dstIndex":396,"srcIndex":946,"timestampMs":1585116577000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],"dstIndex":397,"srcIndex":947,"timestampMs":1583820607000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],"dstIndex":398,"srcIndex":948,"timestampMs":1584619902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],"dstIndex":399,"srcIndex":949,"timestampMs":1584943893000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":416,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],"dstIndex":417,"srcIndex":951,"timestampMs":1584187884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],"dstIndex":418,"srcIndex":952,"timestampMs":1584123231000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],"dstIndex":422,"srcIndex":953,"timestampMs":1585008772000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],"dstIndex":425,"srcIndex":954,"timestampMs":1584339043000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],"dstIndex":415,"srcIndex":955,"timestampMs":1583669536000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],"dstIndex":426,"srcIndex":956,"timestampMs":1584252719000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],"dstIndex":427,"srcIndex":957,"timestampMs":1584360709000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],"dstIndex":432,"srcIndex":958,"timestampMs":1585915944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":442,"srcIndex":959,"timestampMs":1585275681000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],"dstIndex":448,"srcIndex":960,"timestampMs":1585462336000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],"dstIndex":450,"srcIndex":961,"timestampMs":1583755944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],"dstIndex":439,"srcIndex":962,"timestampMs":1584663156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],"dstIndex":455,"srcIndex":963,"timestampMs":1584598257000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":456,"srcIndex":964,"timestampMs":1586106389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],"dstIndex":459,"srcIndex":965,"timestampMs":1585332629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],"dstIndex":461,"srcIndex":966,"timestampMs":1583799279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":462,"srcIndex":967,"timestampMs":1581898623000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],"dstIndex":466,"srcIndex":968,"timestampMs":1583496697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":472,"srcIndex":969,"timestampMs":1583106975000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],"dstIndex":473,"srcIndex":970,"timestampMs":1585829522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],"dstIndex":475,"srcIndex":971,"timestampMs":1584706303000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":477,"srcIndex":972,"timestampMs":1583542889000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],"dstIndex":480,"srcIndex":973,"timestampMs":1585375849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],"dstIndex":481,"srcIndex":974,"timestampMs":1583431778000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":467,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":468,"srcIndex":976,"timestampMs":1583014162000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],"dstIndex":469,"srcIndex":977,"timestampMs":1583540024000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],"dstIndex":470,"srcIndex":978,"timestampMs":1586023930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],"dstIndex":471,"srcIndex":979,"timestampMs":1585570245000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],"dstIndex":490,"srcIndex":980,"timestampMs":1583410286000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],"dstIndex":491,"srcIndex":981,"timestampMs":1585073567000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":493,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":495,"srcIndex":983,"timestampMs":1582941505000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],"dstIndex":506,"srcIndex":984,"timestampMs":1583014460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],"dstIndex":507,"srcIndex":985,"timestampMs":1585289369000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],"dstIndex":508,"srcIndex":986,"timestampMs":1584814190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],"dstIndex":512,"srcIndex":987,"timestampMs":1586002264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],"dstIndex":514,"srcIndex":988,"timestampMs":1584015081000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],"dstIndex":504,"srcIndex":989,"timestampMs":1584901288000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],"dstIndex":515,"srcIndex":990,"timestampMs":1585851193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],"dstIndex":516,"srcIndex":991,"timestampMs":1585051794000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],"dstIndex":517,"srcIndex":992,"timestampMs":1583864016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],"dstIndex":520,"srcIndex":993,"timestampMs":1583561475000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],"dstIndex":521,"srcIndex":994,"timestampMs":1584922566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],"dstIndex":522,"srcIndex":995,"timestampMs":1584836115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":541,"srcIndex":996,"timestampMs":1586103659000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":543,"srcIndex":997,"timestampMs":1581900781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],"dstIndex":546,"srcIndex":998,"timestampMs":1584749757000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":549,"srcIndex":999,"timestampMs":1583124366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":552,"srcIndex":1000,"timestampMs":1582959276000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],"dstIndex":555,"srcIndex":1001,"timestampMs":1583691175000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],"dstIndex":530,"srcIndex":1002,"timestampMs":1583064673000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],"dstIndex":534,"srcIndex":1003,"timestampMs":1584684556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],"dstIndex":535,"srcIndex":1004,"timestampMs":1583842226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],"dstIndex":537,"srcIndex":1005,"timestampMs":1585743137000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],"dstIndex":561,"srcIndex":1006,"timestampMs":1583107978000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":564,"srcIndex":1007,"timestampMs":1586105574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],"dstIndex":576,"srcIndex":1008,"timestampMs":1583096222000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],"dstIndex":581,"srcIndex":1009,"timestampMs":1585030166000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],"dstIndex":582,"srcIndex":1010,"timestampMs":1585764755000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],"dstIndex":584,"srcIndex":1011,"timestampMs":1583993566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],"dstIndex":585,"srcIndex":1012,"timestampMs":1583972111000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":586,"srcIndex":1013,"timestampMs":1583124346000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":587,"srcIndex":1014,"timestampMs":1586106281000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],"dstIndex":590,"srcIndex":1015,"timestampMs":1583619966000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],"dstIndex":591,"srcIndex":1016,"timestampMs":1583302409000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],"dstIndex":593,"srcIndex":1017,"timestampMs":1581903422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":595,"srcIndex":1018,"timestampMs":1585361688000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],"dstIndex":596,"srcIndex":1019,"timestampMs":1583778483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],"dstIndex":565,"srcIndex":1020,"timestampMs":1583583119000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],"dstIndex":567,"srcIndex":1021,"timestampMs":1583043139000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":571,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],"dstIndex":574,"srcIndex":1023,"timestampMs":1583237458000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],"dstIndex":597,"srcIndex":1024,"timestampMs":1583194441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],"dstIndex":598,"srcIndex":1025,"timestampMs":1583215867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":603,"srcIndex":1026,"timestampMs":1581914667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],"dstIndex":602,"srcIndex":1027,"timestampMs":1585527211000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":607,"srcIndex":1028,"timestampMs":1581903056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],"dstIndex":608,"srcIndex":1029,"timestampMs":1583734323000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],"dstIndex":612,"srcIndex":1030,"timestampMs":1586105832000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],"dstIndex":624,"srcIndex":1031,"timestampMs":1583950431000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],"dstIndex":626,"srcIndex":1032,"timestampMs":1583345470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],"dstIndex":629,"srcIndex":1033,"timestampMs":1586045554000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],"dstIndex":631,"srcIndex":1034,"timestampMs":1584771018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],"dstIndex":632,"srcIndex":1035,"timestampMs":1585959190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],"dstIndex":634,"srcIndex":1036,"timestampMs":1584144938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":636,"srcIndex":1037,"timestampMs":1582941407000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":613,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],"dstIndex":622,"srcIndex":1039,"timestampMs":1583125241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],"dstIndex":640,"srcIndex":1040,"timestampMs":1585786422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],"dstIndex":644,"srcIndex":1041,"timestampMs":1583647930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],"dstIndex":645,"srcIndex":1042,"timestampMs":1583388676000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],"dstIndex":655,"srcIndex":1043,"timestampMs":1585202969000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],"dstIndex":659,"srcIndex":1044,"timestampMs":1583021626000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],"dstIndex":663,"srcIndex":1045,"timestampMs":1583885686000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],"dstIndex":664,"srcIndex":1046,"timestampMs":1584317721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],"dstIndex":669,"srcIndex":1047,"timestampMs":1584792698000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":647,"srcIndex":1048,"timestampMs":1586103656000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],"dstIndex":650,"srcIndex":1049,"timestampMs":1584447107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":680,"srcIndex":1050,"timestampMs":1581898638000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],"dstIndex":682,"srcIndex":1051,"timestampMs":1585181592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],"dstIndex":684,"srcIndex":1052,"timestampMs":1586088576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":694,"srcIndex":1053,"timestampMs":1583124164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],"dstIndex":695,"srcIndex":1054,"timestampMs":1585635193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],"dstIndex":685,"srcIndex":1055,"timestampMs":1583545284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":686,"srcIndex":1056,"timestampMs":1582941750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":702,"srcIndex":1057,"timestampMs":1583592448000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],"dstIndex":703,"srcIndex":1058,"timestampMs":1583626507000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],"dstIndex":704,"srcIndex":1059,"timestampMs":1585721531000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],"dstIndex":705,"srcIndex":1060,"timestampMs":1583151030000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":709,"srcIndex":1061,"timestampMs":1585365677000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],"dstIndex":713,"srcIndex":1062,"timestampMs":1583518372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],"dstIndex":727,"srcIndex":1063,"timestampMs":1585419164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],"dstIndex":729,"srcIndex":1064,"timestampMs":1584036899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],"dstIndex":730,"srcIndex":1065,"timestampMs":1583323781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],"dstIndex":731,"srcIndex":1066,"timestampMs":1583907011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],"dstIndex":732,"srcIndex":1067,"timestampMs":1585361881000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],"dstIndex":734,"srcIndex":1068,"timestampMs":1583475056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],"dstIndex":718,"srcIndex":1069,"timestampMs":1584295996000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],"dstIndex":722,"srcIndex":1070,"timestampMs":1585138236000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],"dstIndex":742,"srcIndex":1071,"timestampMs":1584641608000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":223,"srcIndex":1072,"timestampMs":1586425053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":225,"srcIndex":1073,"timestampMs":1586114858000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":226,"srcIndex":1074,"timestampMs":1586658939000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":229,"srcIndex":1075,"timestampMs":1586425366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":210,"srcIndex":1076,"timestampMs":1586377189000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":211,"srcIndex":1077,"timestampMs":1586109857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],"dstIndex":216,"srcIndex":1078,"timestampMs":1586283283000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":219,"srcIndex":1079,"timestampMs":1586439223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],"dstIndex":220,"srcIndex":1080,"timestampMs":1586434473000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],"dstIndex":221,"srcIndex":1081,"timestampMs":1586757849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":222,"srcIndex":1082,"timestampMs":1586430244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":230,"srcIndex":1083,"timestampMs":1586430128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],"dstIndex":231,"srcIndex":1084,"timestampMs":1586822727000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":234,"srcIndex":1085,"timestampMs":1586638157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],"dstIndex":237,"srcIndex":1086,"timestampMs":1586462221000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],"dstIndex":252,"srcIndex":1087,"timestampMs":1586369661000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":255,"srcIndex":1088,"timestampMs":1586535321000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":257,"srcIndex":1089,"timestampMs":1586436690000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":259,"srcIndex":1090,"timestampMs":1586760993000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],"dstIndex":261,"srcIndex":1091,"timestampMs":1586607165000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],"dstIndex":239,"srcIndex":1092,"timestampMs":1586887494000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":245,"srcIndex":1093,"timestampMs":1586425839000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":271,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":272,"srcIndex":1095,"timestampMs":1586475320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],"dstIndex":286,"srcIndex":1096,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],"dstIndex":289,"srcIndex":1097,"timestampMs":1586635242000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":276,"srcIndex":1098,"timestampMs":1586636313000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":278,"srcIndex":1099,"timestampMs":1586972808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":279,"srcIndex":1100,"timestampMs":1586436960000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":282,"srcIndex":1101,"timestampMs":1586645851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":292,"srcIndex":1102,"timestampMs":1586114997000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":294,"srcIndex":1103,"timestampMs":1586436983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":297,"srcIndex":1104,"timestampMs":1586439726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],"dstIndex":300,"srcIndex":1105,"timestampMs":1586844255000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],"dstIndex":323,"srcIndex":1106,"timestampMs":1586718195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":334,"srcIndex":1107,"timestampMs":1587058277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":309,"srcIndex":1108,"timestampMs":1587049226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":311,"srcIndex":1109,"timestampMs":1586430447000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":313,"srcIndex":1110,"timestampMs":1586438375000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":315,"srcIndex":1111,"timestampMs":1586710226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":316,"srcIndex":1112,"timestampMs":1586110667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":318,"srcIndex":1113,"timestampMs":1586718047000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":335,"srcIndex":1114,"timestampMs":1586439440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":336,"srcIndex":1115,"timestampMs":1586658493000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],"dstIndex":342,"srcIndex":1116,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],"dstIndex":343,"srcIndex":1117,"timestampMs":1586952325000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":344,"srcIndex":1118,"timestampMs":1586641745000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],"dstIndex":346,"srcIndex":1119,"timestampMs":1586704923000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":357,"srcIndex":1120,"timestampMs":1586796945000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],"dstIndex":358,"srcIndex":1121,"timestampMs":1586348063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":361,"srcIndex":1122,"timestampMs":1586446367000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":362,"srcIndex":1123,"timestampMs":1586978574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],"dstIndex":363,"srcIndex":1124,"timestampMs":1586535464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":366,"srcIndex":1125,"timestampMs":1586107822000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],"dstIndex":350,"srcIndex":1126,"timestampMs":1586498582000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],"dstIndex":369,"srcIndex":1127,"timestampMs":1586712241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":371,"srcIndex":1128,"timestampMs":1586111848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":375,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],"dstIndex":376,"srcIndex":1130,"timestampMs":1586649806000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":386,"srcIndex":1131,"timestampMs":1586208161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],"dstIndex":387,"srcIndex":1132,"timestampMs":1586779463000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],"dstIndex":390,"srcIndex":1133,"timestampMs":1586477016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],"dstIndex":378,"srcIndex":1134,"timestampMs":1586995532000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":383,"srcIndex":1135,"timestampMs":1586608102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],"dstIndex":384,"srcIndex":1136,"timestampMs":1586628192000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],"dstIndex":385,"srcIndex":1137,"timestampMs":1586736284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],"dstIndex":395,"srcIndex":1138,"timestampMs":1586712506000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":400,"srcIndex":1139,"timestampMs":1586438648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],"dstIndex":401,"srcIndex":1140,"timestampMs":1586556340000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],"dstIndex":404,"srcIndex":1141,"timestampMs":1586412877000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],"dstIndex":406,"srcIndex":1142,"timestampMs":1586520161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":419,"srcIndex":1143,"timestampMs":1586447296000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":421,"srcIndex":1144,"timestampMs":1586262990000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":423,"srcIndex":1145,"timestampMs":1586108344000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":407,"srcIndex":1146,"timestampMs":1586822144000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],"dstIndex":408,"srcIndex":1147,"timestampMs":1586426011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],"dstIndex":409,"srcIndex":1148,"timestampMs":1586619438000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":410,"srcIndex":1149,"timestampMs":1586712379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],"dstIndex":414,"srcIndex":1150,"timestampMs":1586631415000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":428,"srcIndex":1151,"timestampMs":1586629712000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],"dstIndex":434,"srcIndex":1152,"timestampMs":1586263834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":435,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],"dstIndex":437,"srcIndex":1154,"timestampMs":1586541781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":443,"srcIndex":1155,"timestampMs":1586630579000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":444,"srcIndex":1156,"timestampMs":1586640176000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":445,"srcIndex":1157,"timestampMs":1586802604000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":446,"srcIndex":1158,"timestampMs":1586972788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":447,"srcIndex":1159,"timestampMs":1586264143000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":449,"srcIndex":1160,"timestampMs":1586443674000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],"dstIndex":438,"srcIndex":1161,"timestampMs":1586671402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],"dstIndex":440,"srcIndex":1162,"timestampMs":1586265411000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],"dstIndex":441,"srcIndex":1163,"timestampMs":1586909106000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],"dstIndex":452,"srcIndex":1164,"timestampMs":1586456075000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":453,"srcIndex":1165,"timestampMs":1586629689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":454,"srcIndex":1166,"timestampMs":1586642724000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":457,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":460,"srcIndex":1168,"timestampMs":1586461703000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":463,"srcIndex":1169,"timestampMs":1586264058000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],"dstIndex":464,"srcIndex":1170,"timestampMs":1586973850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":465,"srcIndex":1171,"timestampMs":1586208446000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":478,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":482,"srcIndex":1173,"timestampMs":1586264365000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],"dstIndex":484,"srcIndex":1174,"timestampMs":1586634125000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":486,"srcIndex":1175,"timestampMs":1586633972000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":487,"srcIndex":1176,"timestampMs":1586630527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":488,"srcIndex":1177,"timestampMs":1586632841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":489,"srcIndex":1178,"timestampMs":1586446829000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":492,"srcIndex":1179,"timestampMs":1586437704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],"dstIndex":494,"srcIndex":1180,"timestampMs":1586630734000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":496,"srcIndex":1181,"timestampMs":1586643749000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":497,"srcIndex":1182,"timestampMs":1587058263000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],"dstIndex":498,"srcIndex":1183,"timestampMs":1586613015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":499,"srcIndex":1184,"timestampMs":1586556200000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":509,"srcIndex":1185,"timestampMs":1586426157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":510,"srcIndex":1186,"timestampMs":1586504576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],"dstIndex":513,"srcIndex":1187,"timestampMs":1586637613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":500,"srcIndex":1188,"timestampMs":1587050798000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":501,"srcIndex":1189,"timestampMs":1587051668000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":502,"srcIndex":1190,"timestampMs":1586632115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":505,"srcIndex":1191,"timestampMs":1586115022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":524,"srcIndex":1192,"timestampMs":1586395769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":542,"srcIndex":1193,"timestampMs":1586978547000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":544,"srcIndex":1194,"timestampMs":1587051026000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":547,"srcIndex":1195,"timestampMs":1586428289000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":550,"srcIndex":1196,"timestampMs":1586635956000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":553,"srcIndex":1197,"timestampMs":1586717770000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":525,"srcIndex":1198,"timestampMs":1586975177000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":526,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":527,"srcIndex":1200,"timestampMs":1586637453000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":528,"srcIndex":1201,"timestampMs":1586209230000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],"dstIndex":536,"srcIndex":1202,"timestampMs":1586606578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":540,"srcIndex":1203,"timestampMs":1586619306000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":557,"srcIndex":1204,"timestampMs":1586635980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],"dstIndex":558,"srcIndex":1205,"timestampMs":1586475455000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],"dstIndex":562,"srcIndex":1206,"timestampMs":1586801019000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":578,"srcIndex":1207,"timestampMs":1586440952000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],"dstIndex":579,"srcIndex":1208,"timestampMs":1586566249000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":583,"srcIndex":1209,"timestampMs":1586704728000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":592,"srcIndex":1210,"timestampMs":1586425156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":568,"srcIndex":1211,"timestampMs":1586810374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],"dstIndex":569,"srcIndex":1212,"timestampMs":1586692988000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":570,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":572,"srcIndex":1214,"timestampMs":1586633830000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":575,"srcIndex":1215,"timestampMs":1586631279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],"dstIndex":599,"srcIndex":1216,"timestampMs":1586304876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],"dstIndex":600,"srcIndex":1217,"timestampMs":1586659664000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],"dstIndex":605,"srcIndex":1218,"timestampMs":1586326476000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":609,"srcIndex":1219,"timestampMs":1586439053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":610,"srcIndex":1220,"timestampMs":1586645068000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":611,"srcIndex":1221,"timestampMs":1587051708000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":625,"srcIndex":1222,"timestampMs":1586461592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":630,"srcIndex":1223,"timestampMs":1586426867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":633,"srcIndex":1224,"timestampMs":1586659020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":635,"srcIndex":1225,"timestampMs":1586462092000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":637,"srcIndex":1226,"timestampMs":1586445094000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":614,"srcIndex":1227,"timestampMs":1586659508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":615,"srcIndex":1228,"timestampMs":1586710445000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":616,"srcIndex":1229,"timestampMs":1586461896000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":617,"srcIndex":1230,"timestampMs":1586640763000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],"dstIndex":618,"srcIndex":1231,"timestampMs":1586865848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],"dstIndex":619,"srcIndex":1232,"timestampMs":1587038694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],"dstIndex":621,"srcIndex":1233,"timestampMs":1587060270000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":638,"srcIndex":1234,"timestampMs":1586442756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":639,"srcIndex":1235,"timestampMs":1586656761000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":641,"srcIndex":1236,"timestampMs":1586639218000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":643,"srcIndex":1237,"timestampMs":1586431949000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":654,"srcIndex":1238,"timestampMs":1586711922000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":658,"srcIndex":1239,"timestampMs":1586712103000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":661,"srcIndex":1240,"timestampMs":1586820040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":662,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":665,"srcIndex":1242,"timestampMs":1586646488000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":666,"srcIndex":1243,"timestampMs":1586657456000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":646,"srcIndex":1244,"timestampMs":1586109264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":648,"srcIndex":1245,"timestampMs":1586395938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":651,"srcIndex":1246,"timestampMs":1586443142000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":653,"srcIndex":1247,"timestampMs":1586704788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":670,"srcIndex":1248,"timestampMs":1586612834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":671,"srcIndex":1249,"timestampMs":1586443040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],"dstIndex":673,"srcIndex":1250,"timestampMs":1586584977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":674,"srcIndex":1251,"timestampMs":1586439553000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":681,"srcIndex":1252,"timestampMs":1586449851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],"dstIndex":692,"srcIndex":1253,"timestampMs":1586646613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":693,"srcIndex":1254,"timestampMs":1586440769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":696,"srcIndex":1255,"timestampMs":1586638167000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":697,"srcIndex":1256,"timestampMs":1586442958000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":698,"srcIndex":1257,"timestampMs":1586443278000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],"dstIndex":699,"srcIndex":1258,"timestampMs":1587017056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":687,"srcIndex":1259,"timestampMs":1586108556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":688,"srcIndex":1260,"timestampMs":1586632045000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":706,"srcIndex":1261,"timestampMs":1586644275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":707,"srcIndex":1262,"timestampMs":1586439910000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":708,"srcIndex":1263,"timestampMs":1586635090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],"dstIndex":710,"srcIndex":1264,"timestampMs":1586563402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":712,"srcIndex":1265,"timestampMs":1586761063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],"dstIndex":714,"srcIndex":1266,"timestampMs":1586714645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":723,"srcIndex":1267,"timestampMs":1587049279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],"dstIndex":724,"srcIndex":1268,"timestampMs":1586630029000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":725,"srcIndex":1269,"timestampMs":1586425884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],"dstIndex":726,"srcIndex":1270,"timestampMs":1586930710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":728,"srcIndex":1271,"timestampMs":1586208275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":715,"srcIndex":1272,"timestampMs":1586641071000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":716,"srcIndex":1273,"timestampMs":1586446525000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],"dstIndex":717,"srcIndex":1274,"timestampMs":1586391268000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":720,"srcIndex":1275,"timestampMs":1586607022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":721,"srcIndex":1276,"timestampMs":1586457498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":736,"srcIndex":1277,"timestampMs":1586656082000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],"dstIndex":738,"srcIndex":1278,"timestampMs":1586504710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":740,"srcIndex":1279,"timestampMs":1586639647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":743,"srcIndex":1280,"timestampMs":1586396173000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],"dstIndex":744,"srcIndex":1281,"timestampMs":1586450503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":745,"srcIndex":1282,"timestampMs":1586109667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":227,"srcIndex":1283,"timestampMs":1585184379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":217,"srcIndex":1284,"timestampMs":1583868918000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":232,"srcIndex":1285,"timestampMs":1583846036000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":236,"srcIndex":1286,"timestampMs":1586115483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":256,"srcIndex":1287,"timestampMs":1585184096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":238,"srcIndex":1288,"timestampMs":1586115750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":246,"srcIndex":1289,"timestampMs":1584727008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":264,"srcIndex":1290,"timestampMs":1586119837000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":270,"srcIndex":1291,"timestampMs":1586119867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":317,"srcIndex":1292,"timestampMs":1583841786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":345,"srcIndex":1293,"timestampMs":1583855508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":348,"srcIndex":1294,"timestampMs":1584736018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":364,"srcIndex":1295,"timestampMs":1586115035000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":403,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":405,"srcIndex":1297,"timestampMs":1586116855000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":411,"srcIndex":1298,"timestampMs":1584733391000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":430,"srcIndex":1299,"timestampMs":1585132575000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":451,"srcIndex":1300,"timestampMs":1585128878000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":485,"srcIndex":1301,"timestampMs":1584729372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":503,"srcIndex":1302,"timestampMs":1585126267000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":518,"srcIndex":1303,"timestampMs":1586115569000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":551,"srcIndex":1304,"timestampMs":1585126105000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":529,"srcIndex":1305,"timestampMs":1584722599000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":531,"srcIndex":1306,"timestampMs":1586115692000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":539,"srcIndex":1307,"timestampMs":1586115737000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":580,"srcIndex":1308,"timestampMs":1585142847000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":589,"srcIndex":1309,"timestampMs":1586115523000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":566,"srcIndex":1310,"timestampMs":1583707484000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":604,"srcIndex":1311,"timestampMs":1584925959000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":652,"srcIndex":1312,"timestampMs":1584468261000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":676,"srcIndex":1313,"timestampMs":1585184645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":675,"srcIndex":1314,"timestampMs":1586115159000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":739,"srcIndex":1315,"timestampMs":1585134244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":741,"srcIndex":1316,"timestampMs":1584727333000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1382,"srcIndex":1317,"timestampMs":1586638125000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1382,"srcIndex":1318,"timestampMs":1586704018000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1382,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1382,"srcIndex":1320,"timestampMs":1586705553000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1382,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1382,"srcIndex":1322,"timestampMs":1586712839000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1382,"srcIndex":1323,"timestampMs":1586768126000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1382,"srcIndex":1324,"timestampMs":1586269776000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1382,"srcIndex":1325,"timestampMs":1586819336000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1382,"srcIndex":1326,"timestampMs":1586821830000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1382,"srcIndex":1327,"timestampMs":1586823283000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1382,"srcIndex":1328,"timestampMs":1586858542000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1382,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1382,"srcIndex":1330,"timestampMs":1586390052000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1382,"srcIndex":1331,"timestampMs":1586390446000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1382,"srcIndex":1332,"timestampMs":1586390871000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1382,"srcIndex":1333,"timestampMs":1586396494000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1382,"srcIndex":1334,"timestampMs":1586435403000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1382,"srcIndex":1335,"timestampMs":1586440155000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1383,"srcIndex":1336,"timestampMs":1586104764000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1384,"srcIndex":1337,"timestampMs":1586116752000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1385,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1385,"srcIndex":1339,"timestampMs":1586934042000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1385,"srcIndex":1340,"timestampMs":1586934224000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1385,"srcIndex":1341,"timestampMs":1586990170000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1385,"srcIndex":1342,"timestampMs":1586990449000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1385,"srcIndex":1343,"timestampMs":1586990584000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1386,"srcIndex":1344,"timestampMs":1586709265000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1388,"srcIndex":1345,"timestampMs":1586706267000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1388,"srcIndex":1346,"timestampMs":1586706318000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1389,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1389,"srcIndex":1348,"timestampMs":1586666998000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1389,"srcIndex":1349,"timestampMs":1586705051000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1389,"srcIndex":1350,"timestampMs":1586709014000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1389,"srcIndex":1351,"timestampMs":1586772477000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1389,"srcIndex":1352,"timestampMs":1586772739000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1390,"srcIndex":1353,"timestampMs":1586705290000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1390,"srcIndex":1354,"timestampMs":1586712148000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1390,"srcIndex":1355,"timestampMs":1586571331000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1390,"srcIndex":1356,"timestampMs":1586662991000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1382,"srcIndex":1357,"timestampMs":1586264552000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1382,"srcIndex":1358,"timestampMs":1586446688000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1382,"srcIndex":1359,"timestampMs":1586449916000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1382,"srcIndex":1360,"timestampMs":1586658580000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1382,"srcIndex":1361,"timestampMs":1586802611000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1382,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1382,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1382,"srcIndex":1364,"timestampMs":1586425681000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1383,"srcIndex":1365,"timestampMs":1586103666000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1383,"srcIndex":1366,"timestampMs":1586104083000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1385,"srcIndex":1367,"timestampMs":1586970997000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1385,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1385,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1390,"srcIndex":1370,"timestampMs":1586566012000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1390,"srcIndex":1371,"timestampMs":1586717760000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1390,"srcIndex":1372,"timestampMs":1586727817000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1390,"srcIndex":1373,"timestampMs":1586797004000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1390,"srcIndex":1374,"timestampMs":1586914696000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1390,"srcIndex":1375,"timestampMs":1586987888000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1390,"srcIndex":1376,"timestampMs":1586633970000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1390,"srcIndex":1377,"timestampMs":1586645179000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1390,"srcIndex":1378,"timestampMs":1586654103000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1390,"srcIndex":1379,"timestampMs":1586656931000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1390,"srcIndex":1380,"timestampMs":1586663009000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1390,"srcIndex":1381,"timestampMs":1586664552000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1360,"srcIndex":1391,"timestampMs":1586658808000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1368,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1368,"srcIndex":1393,"timestampMs":1587075078000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1374,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":1318,"srcIndex":746,"timestampMs":1586735225000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":1318,"srcIndex":747,"timestampMs":1586793675000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":1320,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":1322,"srcIndex":749,"timestampMs":1586773257000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":1322,"srcIndex":750,"timestampMs":1586787682000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":1322,"srcIndex":751,"timestampMs":1586808032000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":1325,"srcIndex":752,"timestampMs":1586819514000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":1325,"srcIndex":753,"timestampMs":1586820570000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":1325,"srcIndex":754,"timestampMs":1586840296000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":1328,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":1329,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":1336,"srcIndex":757,"timestampMs":1586802750000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":1340,"srcIndex":758,"timestampMs":1586990245000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":1347,"srcIndex":759,"timestampMs":1586666872000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":1347,"srcIndex":760,"timestampMs":1586797413000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":1347,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":1347,"srcIndex":762,"timestampMs":1586801948000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":1347,"srcIndex":763,"timestampMs":1586802204000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":1347,"srcIndex":764,"timestampMs":1586802422000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":1347,"srcIndex":765,"timestampMs":1586962450000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":1348,"srcIndex":766,"timestampMs":1586704028000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":1349,"srcIndex":767,"timestampMs":1586709561000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":1350,"srcIndex":768,"timestampMs":1586858205000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":1352,"srcIndex":769,"timestampMs":1586773337000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":1352,"srcIndex":770,"timestampMs":1586773655000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":1352,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":1352,"srcIndex":772,"timestampMs":1586786582000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":1352,"srcIndex":773,"timestampMs":1586790511000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":1352,"srcIndex":774,"timestampMs":1586790870000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":1352,"srcIndex":775,"timestampMs":1586959270000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":1361,"srcIndex":776,"timestampMs":1586810690000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":1369,"srcIndex":777,"timestampMs":1587079943000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":1392,"srcIndex":778,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":1392,"srcIndex":779,"timestampMs":1587071419000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":1392,"srcIndex":780,"timestampMs":1587071453000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1172,"srcIndex":1357,"timestampMs":1586264565000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1178,"srcIndex":1358,"timestampMs":1586446829000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1129,"srcIndex":1359,"timestampMs":1586450203000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1074,"srcIndex":1360,"timestampMs":1586658939000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1153,"srcIndex":1361,"timestampMs":1586810697000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1213,"srcIndex":1362,"timestampMs":1586810650000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1167,"srcIndex":1363,"timestampMs":1587042850000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1241,"srcIndex":1364,"timestampMs":1586425693000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":896,"srcIndex":1365,"timestampMs":1586104041000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1022,"srcIndex":1366,"timestampMs":1586104090000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":794,"srcIndex":1367,"timestampMs":1586971104000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":801,"srcIndex":1368,"timestampMs":1587075097000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":814,"srcIndex":1370,"timestampMs":1586566020000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":824,"srcIndex":1372,"timestampMs":1586727823000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":823,"srcIndex":1373,"timestampMs":1586797014000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":864,"srcIndex":1376,"timestampMs":1586633977000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":868,"srcIndex":1377,"timestampMs":1586645187000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":870,"srcIndex":1378,"timestampMs":1586654110000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":822,"srcIndex":1379,"timestampMs":1586656936000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":837,"srcIndex":1380,"timestampMs":1586663015000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":813,"srcIndex":1381,"timestampMs":1586664558000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871593000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1397,"timestampMs":1586918494000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1397,"timestampMs":1586924028000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1397,"timestampMs":1586785423000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1397,"timestampMs":1586785422000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1397,"timestampMs":1586810718000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1402,"timestampMs":1587076887000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790714000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810640000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871595000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1397,"timestampMs":1586802382000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790717000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1410,"timestampMs":1586791025000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1397,"timestampMs":1586801822000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810630000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1403,"timestampMs":1587071912000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1403,"timestampMs":1587071947000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1403,"timestampMs":1587072066000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU=","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI=","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM=","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI=","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE=","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ=","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc=","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg=","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE=","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE=","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk=","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":895,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA=","5","sourcecred","github","USERLIKE","USER","hammadj"],"dstIndex":1409,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM=","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":897,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA=","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM=","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc=","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI=","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ=","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY=","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI=","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc=","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","15","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","17","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","26","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","bot","1","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","onboarding","1","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","21","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","27","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","8","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","9","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","bot","8","395001410","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","website","15","393444362","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606","5","sourcecred","github","USERLIKE","USER","luisivan"],"dstIndex":1410,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":776,"timestampMs":1586810690000}],"nodes":[{"description":"Aracred#5392","index":0,"timestampMs":null},{"description":"Beanow#5887","index":1,"timestampMs":null},{"description":"Mckmuze#3360","index":2,"timestampMs":null},{"description":"penguin#5853","index":3,"timestampMs":null},{"description":"James | Enigma#0357","index":4,"timestampMs":null},{"description":"TheEylon#9795","index":5,"timestampMs":null},{"description":"Jack G#7167","index":6,"timestampMs":null},{"description":"Santiago#0325","index":7,"timestampMs":null},{"description":"JackALaing#7001","index":8,"timestampMs":null},{"description":"Saimano#0272","index":9,"timestampMs":null},{"description":"Joey C#7995","index":10,"timestampMs":null},{"description":"LBS#6541","index":11,"timestampMs":null},{"description":"Luis from Aragon 🦅#8126","index":12,"timestampMs":null},{"description":"YoungKidWarrior#5865","index":13,"timestampMs":null},{"description":"#🎪-general message [\"testing...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":14,"timestampMs":1585931015500},{"description":"#🎪-general message [\"<@!118260545211072517> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696451005914546256)","index":15,"timestampMs":1586117259244},{"description":"#🎪-general message [\"aracred.xyz...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":16,"timestampMs":1586118204077},{"description":"#🎪-general message [\"aracred.dev...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":17,"timestampMs":1586118265041},{"description":"#🎪-general message [\"<@!657069807505637397> how do ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696609260196593664)","index":18,"timestampMs":1586154990005},{"description":"#🎪-general message [\"<@683892894767251489> here we ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696708274682069062)","index":19,"timestampMs":1586178596898},{"description":"#🎪-general message [\"> This is an open-source proje...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":20,"timestampMs":1586183905373},{"description":"#🎪-general message [\"<@!665203331639148553> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696740396331696198)","index":21,"timestampMs":1586186255296},{"description":"#🎪-general message [\"<@!371754999304290304> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696769305131614260)","index":22,"timestampMs":1586193147691},{"description":"#🎪-general message [\"<@!571023281382227978> <@!6570...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696853096441184326)","index":23,"timestampMs":1586213125096},{"description":"#🎪-general message [\"<@657069807505637397> was sad ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698673271729553469)","index":24,"timestampMs":1586647088702},{"description":"#🎪-general message [\"The SourceCred => ERC-20/DAO i...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698691171811328080)","index":25,"timestampMs":1586651356414},{"description":"#🎪-general message [\"<@!208321561982271489> What up...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710294427467857)","index":26,"timestampMs":1586655915601},{"description":"#🎪-general message [\"hey hey <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710365046833192)","index":27,"timestampMs":1586655932438},{"description":"#🎪-general message [\"Hey <@505789102222737420> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698799127244308550)","index":28,"timestampMs":1586677094995},{"description":"#🎪-general message [\"> I would also frame this a bi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698897288373993508)","index":29,"timestampMs":1586700498432},{"description":"#🎪-general message [\"It makes sense to me. There ha...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698919569078878289)","index":30,"timestampMs":1586705810566},{"description":"#🎪-general message [\"This works toward the concept ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921167011971168)","index":31,"timestampMs":1586706191543},{"description":"#🎪-general message [\"At the end of the day “composi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":32,"timestampMs":1586706244909},{"description":"#🎪-general message [\"Hey <@571023281382227978> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698932174396850236)","index":33,"timestampMs":1586708815908},{"description":"#🎪-general message [\"<@!333143183355543552> <@!5057...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698935929942966332)","index":34,"timestampMs":1586709711300},{"description":"#🎪-general message [\"<@!250086586450968576> I'd lik...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698941350531301477)","index":35,"timestampMs":1586711003669},{"description":"#🎪-general message [\"> At the end of the day “compo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698946297012420619)","index":36,"timestampMs":1586712183002},{"description":"#🎪-general message [\"<@!657069807505637397> could w...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965088530595990)","index":37,"timestampMs":1586716663249},{"description":"#🎪-general message [\"> I agree! in fact, i would ar...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":38,"timestampMs":1586716741889},{"description":"#🎪-general message [\"> one term that i think we nee...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968459890917436)","index":39,"timestampMs":1586717467044},{"description":"#🎪-general message [\"> <@!657069807505637397> could...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968989878976612)","index":40,"timestampMs":1586717593403},{"description":"#🎪-general message [\"> like, in sourcecred I can re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969370533298296)","index":41,"timestampMs":1586717684158},{"description":"#🎪-general message [\"> if/when SourceCred community...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":42,"timestampMs":1586717770000},{"description":"#🎪-general message [\"<@!321092785921064961> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698970943955140738)","index":43,"timestampMs":1586718059291},{"description":"#🎪-general message [\"Beyond that, if you want to le...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":44,"timestampMs":1586718718366},{"description":"#🎪-general message [\"> and I was thinking something...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698982179069362196)","index":45,"timestampMs":1586720737951},{"description":"#🎪-general message [\"> <@!250086586450968576> I'd l...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699006982681657354)","index":46,"timestampMs":1586726651593},{"description":"#🎪-general message [\"> Could maybe just create a re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699007297099268116)","index":47,"timestampMs":1586726726556},{"description":"#🎪-general message [\"> <@!657069807505637397> \n> \n>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699016223303794728)","index":48,"timestampMs":1586728854729},{"description":"#🎪-general message [\"( <@!250086586450968576> <@!65...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699020835096231937)","index":49,"timestampMs":1586729954266},{"description":"#🎪-general message [\"social structures emerge which...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":50,"timestampMs":1586730159102},{"description":"#🎪-general message [\"> it's wayyyyy overly reductio...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699022762215211088)","index":51,"timestampMs":1586730413727},{"description":"#🎪-general message [\"> but we need to re-orient it ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699024432244588644)","index":52,"timestampMs":1586730811893},{"description":"#🎪-general message [\"let me try writing this in roa...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":53,"timestampMs":1586731027162},{"description":"#🎪-general message [\"> I'm gonna hang out in the vo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699124769349566484)","index":54,"timestampMs":1586754734123},{"description":"#🎪-general message [\"What kinda questions <@5710232...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699137595724267520)","index":55,"timestampMs":1586757792169},{"description":"#🎪-general message [\"<@!464169801036726292> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699302777167413379)","index":56,"timestampMs":1586797174494},{"description":"#🎪-general message [\"<@!464169801036726292> I ran ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699304903796981771)","index":57,"timestampMs":1586797681522},{"description":"#🎪-general message [\"<@!363774203960360961> you mea...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699306499930980452)","index":58,"timestampMs":1586798062070},{"description":"#🎪-general message [\"> Hey! I’ve been setting up So...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699318638519255111)","index":59,"timestampMs":1586800956135},{"description":"#🎪-general message [\"> Nope it generates it for all...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325373472702534)","index":60,"timestampMs":1586802561873},{"description":"#🎪-general message [\"This was the guide: https://gi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325915578236949)","index":61,"timestampMs":1586802691121},{"description":"#🎪-general message [\"I saw that guide yesterday and...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":62,"timestampMs":1586802848489},{"description":"#🎪-general message [\"<@!199630270285086720> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699342838756016128)","index":63,"timestampMs":1586806725921},{"description":"#🎪-general message [\"> I've adopted his fix and jus...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699358233437143163)","index":64,"timestampMs":1586810396299},{"description":"#🎪-general message [\"<@657069807505637397> was just...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699383579402174494)","index":65,"timestampMs":1586816439248},{"description":"#🎪-general message [\"<@665203331639148553> hey Luis...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699636647557464194)","index":66,"timestampMs":1586876775398},{"description":"#🎪-general message [\"<@!143776454050709505> <@!6337...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699696022477340735)","index":67,"timestampMs":1586890931482},{"description":"#🎪-general message [\"<@!699326460120530944> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/700038397376331798)","index":68,"timestampMs":1586972560019},{"description":"#🥇-leaderboard message [\"<@!571023281382227978> did you...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697073300131807274)","index":69,"timestampMs":1586265625747},{"description":"#🥇-leaderboard message [\"Hey <@440281764204642314> we a...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697081143551328256)","index":70,"timestampMs":1586267495764},{"description":"#🥇-leaderboard message [\"HI <@!571023281382227978> I'm ...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697318813192028200)","index":71,"timestampMs":1586324160622},{"description":"#🥇-leaderboard message [\"> HI <@!571023281382227978> I'...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697375832364023889)","index":72,"timestampMs":1586337755052},{"description":"#📢-announcements message [\"We have basic overview docs!\nh...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":73,"timestampMs":1586643849022},{"description":"#📢-announcements message [\"We now have a very manual but ...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":74,"timestampMs":1586793570421},{"description":"#⚔-dev message [\"no im trying another tac...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":75,"timestampMs":1586111617618},{"description":"#⚔-dev message [\"Cool. <@!571023281382227978> u...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696440757908799568)","index":76,"timestampMs":1586114815929},{"description":"#⚔-dev message [\"just trying one more thing...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":77,"timestampMs":1586115085852},{"description":"#⚔-dev message [\"<@!571023281382227978> does th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696452154268975225)","index":78,"timestampMs":1586117533033},{"description":"#⚔-dev message [\"<@!537858848912834561> had som...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696730851802742794)","index":79,"timestampMs":1586183979703},{"description":"#⚔-dev message [\"> <@!537858848912834561> had s...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696789204767866911)","index":80,"timestampMs":1586197892134},{"description":"#⚔-dev message [\"<@!571023281382227978> Do we h...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699020484167073792)","index":81,"timestampMs":1586729870598},{"description":"#⚔-dev message [\"sorry <@657069807505637397> co...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699122711745527878)","index":82,"timestampMs":1586754243552},{"description":"#⚔-dev message [\"wss://mainnet.infura.io/v3/<IN...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":83,"timestampMs":1586754351459},{"description":"#⚔-dev message [\"<@!321092785921064961> how is ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699274952301609111)","index":84,"timestampMs":1586790540529},{"description":"#⚔-dev message [\"btw <@!657069807505637397> jus...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275129204637708)","index":85,"timestampMs":1586790582706},{"description":"#⚔-dev message [\"Working out a few details! Try...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":86,"timestampMs":1586790670630},{"description":"#⚔-dev message [\"> Working out a few details! T...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699276546795372595)","index":87,"timestampMs":1586790920686},{"description":"#⚔-dev message [\"> Yes. Something like !signup ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699277478530646016)","index":88,"timestampMs":1586791142829},{"description":"#⚔-dev message [\"> Interesting, had not seen th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699278809974833224)","index":89,"timestampMs":1586791460270},{"description":"#⚔-dev message [\"<@!571023281382227978> <@!3210...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699404949448163368)","index":90,"timestampMs":1586821534264},{"description":"#⚔-dev message [\"AFAIK modifying the format of ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699406916300046346)","index":91,"timestampMs":1586822003198},{"description":"#⚔-dev message [\"but as <@!118260545211072517> ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699407535194767410)","index":92,"timestampMs":1586822150754},{"description":"#⚔-dev message [\"> i don't recommend blacklisti...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699408033343733841)","index":93,"timestampMs":1586822269522},{"description":"#⚔-dev message [\"<@!440281764204642314> ran the...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699410487020093501)","index":94,"timestampMs":1586822854524},{"description":"#⚔-dev message [\"hey <@!571023281382227978>! ho...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699558251074682931)","index":95,"timestampMs":1586858084220},{"description":"#⚔-dev message [\"also just tried to list out th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":96,"timestampMs":1586858628046},{"description":"#⚔-dev message [\"1\n> hey <@!571023281382227978>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699939694221328435)","index":97,"timestampMs":1586949027353},{"description":"#⚔-dev message [\"<@!321092785921064961> do you ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700016555521736837)","index":98,"timestampMs":1586967352515},{"description":"#⚔-dev message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064770367160361)","index":99,"timestampMs":1586978847830},{"description":"#⚔-dev message [\"The core aracred instance!...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":100,"timestampMs":1586978883530},{"description":"#⚔-dev message [\"I didn't quite get this <@!657...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700073516900417556)","index":101,"timestampMs":1586980933166},{"description":"#⚔-dev message [\"> I didn't quite get this <@!6...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700078148615798814)","index":102,"timestampMs":1586982037453},{"description":"#⚔-dev message [\"<@!571023281382227978> regardi...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700083246087667833)","index":103,"timestampMs":1586983252785},{"description":"#⚔-dev message [\"> Hmm, could I see the credbot...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700085865933832252)","index":104,"timestampMs":1586983877405},{"description":"#⚔-dev message [\"Yup, looking at how the token ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":105,"timestampMs":1586984382781},{"description":"#⚔-dev message [\"hey <@!321092785921064961>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700345588725841990)","index":106,"timestampMs":1587045800144},{"description":"#⚔-dev message [\"<@!321092785921064961> To join...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700354840445976616)","index":107,"timestampMs":1587048005926},{"description":"#⚔-dev message [\"Community contributions 💯: ht...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700468593451597902)","index":108,"timestampMs":1587075126756},{"description":"#🆘-support message [\"That's a great question and on...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698667046661128244)","index":109,"timestampMs":1586645604530},{"description":"#🆘-support message [\"> Yeah but aren't those in `pr...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698672127418695751)","index":110,"timestampMs":1586646815877},{"description":"#🆘-support message [\"> Ah, so you can configure wei...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698673539011837994)","index":111,"timestampMs":1586647152427},{"description":"#🆘-support message [\"> If I set up a DAO today, can...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698683402920001637)","index":112,"timestampMs":1586649504166},{"description":"#🆘-support message [\"<@657069807505637397> Thanks f...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698956579168321617)","index":113,"timestampMs":1586714634459},{"description":"#🆘-support message [\"> <@!683892894767251489> We'll...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699017594287685672)","index":114,"timestampMs":1586729181597},{"description":"#🆘-support message [\"<@!537858848912834561> AraCred...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699283043940302898)","index":115,"timestampMs":1586792469726},{"description":"#🆘-support message [\"> sure, can do later on? On ou...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":116,"timestampMs":1586792719271},{"description":"#🆘-support message [\"<@!420341518948237331> What's ...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699303864872075295)","index":117,"timestampMs":1586797433823},{"description":"#🆘-support message [\"<@!537858848912834561> To conf...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699352914476400712)","index":118,"timestampMs":1586809128160},{"description":"#💸-cryptoeconomics message [\"<@!657069807505637397> agenda ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699821888431587439)","index":119,"timestampMs":1586920940264},{"description":"#💸-cryptoeconomics message [\"Cool! Was thinking to get the ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":120,"timestampMs":1586921152752},{"description":"#bot-testing message [\"cc <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700033440564641854)","index":121,"timestampMs":1586971378223},{"description":"#bot-testing message [\"<@!321092785921064961> gave yo...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700036022368731256)","index":122,"timestampMs":1586971993773},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700038868707180644)","index":123,"timestampMs":1586972672393},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":124,"timestampMs":1586972809029},{"description":"#bot-testing message [\"Also I think for discord, mayb...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":125,"timestampMs":1586973031780},{"description":"#bot-testing message [\"Yup getting the id would be th...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":126,"timestampMs":1586973160965},{"description":"#bot-testing message [\"> Yep we can; if we do so thou...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040992916766780)","index":127,"timestampMs":1586973178844},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044206176993470)","index":128,"timestampMs":1586973944945},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044421760286721)","index":129,"timestampMs":1586973996344},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044496049799228)","index":130,"timestampMs":1586974014056},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044548411490335)","index":131,"timestampMs":1586974026540},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044635619328131)","index":132,"timestampMs":1586974047332},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044689285316738)","index":133,"timestampMs":1586974060127},{"description":"#bot-testing message [\"<@363774203960360961>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049028251123832)","index":134,"timestampMs":1586975094617},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049257490808933)","index":135,"timestampMs":1586975149272},{"description":"#bot-testing message [\"<@363774203960360961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049378643017889)","index":136,"timestampMs":1586975178157},{"description":"#bot-testing message [\"Haha, that won't work for too ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700051768008114186)","index":137,"timestampMs":1586975747826},{"description":"#bot-testing message [\"> Haha, that won't work for to...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700055780807802900)","index":138,"timestampMs":1586976704552},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700056792524128306)","index":139,"timestampMs":1586976945764},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059334679330946)","index":140,"timestampMs":1586977551861},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059353306234910)","index":141,"timestampMs":1586977556302},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059384751063091)","index":142,"timestampMs":1586977563799},{"description":"#bot-testing message [\"<@!657069807505637397> , don't...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438136033361)","index":143,"timestampMs":1586977576527},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438526103572)","index":144,"timestampMs":1586977576620},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059538023514154)","index":145,"timestampMs":1586977600342},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700061097583050871)","index":146,"timestampMs":1586977972170},{"description":"#bot-testing message [\"> Yup; however, we're gonna ma...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062058405953678)","index":147,"timestampMs":1586978201248},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062189503119381)","index":148,"timestampMs":1586978232504},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062400774275204)","index":149,"timestampMs":1586978282875},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700063628711166054)","index":150,"timestampMs":1586978575638},{"description":"#bot-testing message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064631778967634)","index":151,"timestampMs":1586978814788},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064632144003103)","index":152,"timestampMs":1586978814875},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700118599003668510)","index":153,"timestampMs":1586991681577},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335319349985310)","index":154,"timestampMs":1587043351734},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335919315550299)","index":155,"timestampMs":1587043494777},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700365992571699350)","index":156,"timestampMs":1587050664800},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700366555233517630)","index":157,"timestampMs":1587050798949},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700367514638483537)","index":158,"timestampMs":1587051027689},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700369922630615040)","index":159,"timestampMs":1587051601799},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370207419662458)","index":160,"timestampMs":1587051669698},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370372230643763)","index":161,"timestampMs":1587051708992},{"description":"#bot-testing message [\"<@!699326460120530944> you da ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371208880914563)","index":162,"timestampMs":1587051908465},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371209241624656)","index":163,"timestampMs":1587051908551},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371558480216124)","index":164,"timestampMs":1587051991816},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397237930295386)","index":165,"timestampMs":1587058114274},{"description":"#bot-testing message [\"<@!321092785921064961> can you...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397481799974962)","index":166,"timestampMs":1587058172417},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397482362011769)","index":167,"timestampMs":1587058172551},{"description":"#bot-testing message [\"<@474405294307278880>, Update ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397866581229620)","index":168,"timestampMs":1587058264156},{"description":"#bot-testing message [\"<@474405294307278880>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397927478067221)","index":169,"timestampMs":1587058278675},{"description":"#bot-testing message [\"👀 nice one <@!474405294307278...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397997707755530)","index":170,"timestampMs":1587058295419},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398207733334077)","index":171,"timestampMs":1587058345493},{"description":"#bot-testing message [\"<@!321092785921064961> I just ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301412982965)","index":172,"timestampMs":1587058367828},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301727555604)","index":173,"timestampMs":1587058367903},{"description":"#bot-testing message [\"Btw <@!665203331639148553> idk...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700399163313094746)","index":174,"timestampMs":1587058573321},{"description":"Reacted `❤️` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":175,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [696454968831508630](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":176,"timestampMs":1586118204077},{"description":"Reacted `👍` to message [696455224532926464](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":177,"timestampMs":1586118265041},{"description":"Reacted `👍` to message [699021694240686190](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":178,"timestampMs":1586730159102},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":179,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":180,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":181,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [699326575627206778](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":182,"timestampMs":1586802848489},{"description":"Reacted `💯` to message [696730540039995493](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":183,"timestampMs":1586183905373},{"description":"Reacted `💯` to message [698965418370400296](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":184,"timestampMs":1586716741889},{"description":"Reacted `🔥` to message [698969730580742174](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":185,"timestampMs":1586717770000},{"description":"Reacted `🔥` to message [698973708316049488](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":186,"timestampMs":1586718718366},{"description":"Reacted `🔥` to message [698921390845198426](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":187,"timestampMs":1586706244909},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":188,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":189,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":190,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":191,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":192,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":193,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":194,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":195,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":196,"timestampMs":1586643849022},{"description":"Reacted `👍` to message [696427343220047872](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":197,"timestampMs":1586111617618},{"description":"Reacted `👍` to message [696441890048049232](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":198,"timestampMs":1586115085852},{"description":"Reacted `👍` to message [699123164340551691](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":199,"timestampMs":1586754351459},{"description":"Reacted `👍` to message [700087985634541678](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":200,"timestampMs":1586984382781},{"description":"Reacted `🔥` to message [699560532046250034](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":201,"timestampMs":1586858628046},{"description":"Reacted `🔥` to message [699275497984622760](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":202,"timestampMs":1586790670630},{"description":"Reacted `🔥` to message [700064920104075394](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":203,"timestampMs":1586978883530},{"description":"Reacted `👍` to message [699284090607763506](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":204,"timestampMs":1586792719271},{"description":"Reacted `👍` to message [699822779670724650](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":205,"timestampMs":1586921152752},{"description":"Reacted `👍` to message [700040376085381152](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":206,"timestampMs":1586973031780},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":207,"timestampMs":1586973160965},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":208,"timestampMs":1586973160965},{"description":"Reacted `🔥` to message [700039441799970969](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":209,"timestampMs":1586972809029},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612693703) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":746,"timestampMs":1586735225000},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612962510) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":747,"timestampMs":1586793675000},{"description":"[comment](https://github.com/aracred/AraCred/issues/16#issuecomment-613151713) on [#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":748,"timestampMs":1586821838000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612842722) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":749,"timestampMs":1586773257000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612918834) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":750,"timestampMs":1586787682000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-613069946) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":751,"timestampMs":1586808032000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613141085) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":752,"timestampMs":1586819514000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613146304) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":753,"timestampMs":1586820570000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613226248) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":754,"timestampMs":1586840296000},{"description":"[comment](https://github.com/aracred/AraCred/issues/25#issuecomment-613347004) on [#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":755,"timestampMs":1586858608000},{"description":"[comment](https://github.com/aracred/AraCred/issues/26#issuecomment-613797792) on [#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":756,"timestampMs":1586922019000},{"description":"[comment](https://github.com/aracred/TheSource/issues/3#issuecomment-613030762) on [#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":757,"timestampMs":1586802750000},{"description":"[comment](https://github.com/aracred/bot/issues/3#issuecomment-614314292) on [#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":758,"timestampMs":1586990245000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612563994) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":759,"timestampMs":1586666872000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612990333) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":760,"timestampMs":1586797413000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613020677) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":761,"timestampMs":1586801390000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613024850) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":762,"timestampMs":1586801948000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613026757) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":763,"timestampMs":1586802204000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613028322) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":764,"timestampMs":1586802422000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-614088358) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":765,"timestampMs":1586962450000},{"description":"[comment](https://github.com/aracred/onboarding/issues/2#issuecomment-612630503) on [#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":766,"timestampMs":1586704028000},{"description":"[comment](https://github.com/aracred/onboarding/issues/3#issuecomment-612642927) on [#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":767,"timestampMs":1586709561000},{"description":"[comment](https://github.com/aracred/onboarding/issues/4#issuecomment-613343876) on [#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":768,"timestampMs":1586858205000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612843090) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":769,"timestampMs":1586773337000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612844672) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":770,"timestampMs":1586773655000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612910606) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":771,"timestampMs":1586786432000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612911587) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":772,"timestampMs":1586786582000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612939366) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":773,"timestampMs":1586790511000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612942113) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":774,"timestampMs":1586790870000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-614058561) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":775,"timestampMs":1586959270000},{"description":"[comment](https://github.com/aracred/AraCred/pull/20#issuecomment-613089159) on [#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":776,"timestampMs":1586810690000},{"description":"[comment](https://github.com/aracred/bot/pull/9#issuecomment-614948916) on [#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":777,"timestampMs":1587079943000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850216) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":778,"timestampMs":1587071400000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850385) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":779,"timestampMs":1587071419000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850667) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":780,"timestampMs":1587071453000},{"description":"[02e3a39](https://github.com/aracred/onboarding/commit/02e3a39d76183975fa9a0671de0c7922274b6abc): Initial commit","index":781,"timestampMs":1586666528000},{"description":"[1a16f1e](https://github.com/aracred/leaderboard/commit/1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8): Initial commit","index":782,"timestampMs":1586706188000},{"description":"[1a21759](https://github.com/aracred/comms/commit/1a21759b0bf3dbf3f524a23bf10c8e4a114def8c): Initial commit","index":783,"timestampMs":1586709195000},{"description":"[89f7cc8](https://github.com/aracred/governance/commit/89f7cc8cbfd2fe93bcdb22e979f918a288bd8668): Update README.md","index":784,"timestampMs":1586710102000},{"description":"[b48eec0](https://github.com/aracred/governance/commit/b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9): Initial commit","index":785,"timestampMs":1586709961000},{"description":"[169704b](https://github.com/aracred/bot/commit/169704b1d09d4498ff0eaf2276bc40e79fffdf7e): Add bot guard for infinite loops","index":786,"timestampMs":1586921892000},{"description":"[1d8ee2b](https://github.com/aracred/bot/commit/1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5): Add testing for parsers & several bot enhancements","index":787,"timestampMs":1586930578000},{"description":"[23d2d9d](https://github.com/aracred/bot/commit/23d2d9d76214f6b6309676e2d369fe22f495943c): Rename procfile to Procfile","index":788,"timestampMs":1586920791000},{"description":"[2ac1a7e](https://github.com/aracred/bot/commit/2ac1a7e110486f19483abeff54c243335640c923): Update package.json","index":789,"timestampMs":1586921871000},{"description":"[2b91470](https://github.com/aracred/bot/commit/2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484): Update procfile","index":790,"timestampMs":1586920549000},{"description":"[2c407f3](https://github.com/aracred/bot/commit/2c407f36d0c5b27d2c474b335cabb81cfe2edeca): v0.0.2 : add address command","index":791,"timestampMs":1586839193000},{"description":"[396e5f7](https://github.com/aracred/bot/commit/396e5f791be1c3cf258b08afc6111cea8a409634): Add hooks for linting, testing","index":792,"timestampMs":1586916947000},{"description":"[436819f](https://github.com/aracred/bot/commit/436819fc13564c1c553d1d70390daff05a9052e9): Setup jest config","index":793,"timestampMs":1586919065000},{"description":"[59aa572](https://github.com/aracred/bot/commit/59aa572835669dee12a533857e417b17ba7b45e5): Devops: Add monitoring logs to commands (#4)","index":794,"timestampMs":1586971104000},{"description":"[6738048](https://github.com/aracred/bot/commit/67380485711017726e26a1687668d3d85b0e5d41): Improve help command","index":795,"timestampMs":1586957209000},{"description":"[680e650](https://github.com/aracred/bot/commit/680e6502d527be2ddbd2bd73be5ddce9c5914e9b): Add utilities for development","index":796,"timestampMs":1586915756000},{"description":"[ad563e1](https://github.com/aracred/bot/commit/ad563e12ffae5d7b53764f2709b2da47a17aa18c): Remove git add from lint-staged","index":797,"timestampMs":1586916992000},{"description":"[af62937](https://github.com/aracred/bot/commit/af6293708734a500d9aeb65ece80c20d28d973d3): Create ci.yml","index":798,"timestampMs":1586932748000},{"description":"[b72e98f](https://github.com/aracred/bot/commit/b72e98f338ce136d49bbc775464fbe071df8c431): Update README.md","index":799,"timestampMs":1586934527000},{"description":"[b8c4dd2](https://github.com/aracred/bot/commit/b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc): Made copies more user friendly","index":800,"timestampMs":1587052319000},{"description":"[b3e0e30](https://github.com/aracred/bot/commit/b3e0e30623418aaf8af913aed3c78c36e5e7c742): Validation: validate ethereum address (#8)","index":801,"timestampMs":1587075097000},{"description":"[d45cdea](https://github.com/aracred/bot/commit/d45cdeaaabc568712db4fd59c157084fc4819e19): Initial commit","index":802,"timestampMs":1586805309000},{"description":"[d601ad0](https://github.com/aracred/bot/commit/d601ad079de95e29fe5bd99dd225621e193b09a8): Add other utilties, procfile for heroku deployment","index":803,"timestampMs":1586918718000},{"description":"[d8f4083](https://github.com/aracred/bot/commit/d8f4083966d599198ff8f988f55ced0e2b91ba98): v0.0.1","index":804,"timestampMs":1586831849000},{"description":"[ddad212](https://github.com/aracred/bot/commit/ddad2121732e1f0646c5ab6d3d8fc51c431f94b8): Update help.js","index":805,"timestampMs":1586977731000},{"description":"[de56e09](https://github.com/aracred/bot/commit/de56e092581eb21affd70f681de349d461487d47): Update Procfile","index":806,"timestampMs":1586921823000},{"description":"[e41eb25](https://github.com/aracred/bot/commit/e41eb256be1cff6f8173bf1b4ab1e08d82680377): Merge branch 'master' of https://github.com/aracred/bot","index":807,"timestampMs":1586960050000},{"description":"[e370701](https://github.com/aracred/bot/commit/e3707010bd6cff203cbe2450f48d2ee7bbc5d155): Create README.md","index":808,"timestampMs":1586933937000},{"description":"[f8cc3c0](https://github.com/aracred/bot/commit/f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0): Add .env.sample","index":809,"timestampMs":1586832132000},{"description":"[f1ec698](https://github.com/aracred/bot/commit/f1ec698041e4fdef5931f7928a751a8a45433b9f): Improve whitelisting","index":810,"timestampMs":1586958454000},{"description":"[05c78a8](https://github.com/aracred/website/commit/05c78a85d3b82074eb0e966c43eaf29f53e39426): updated secrets guide","index":811,"timestampMs":1586730565000},{"description":"[031a68e](https://github.com/aracred/website/commit/031a68eb5a45b70c806197b47783b1b4ae4332f0): design goals overview","index":812,"timestampMs":1586643786000},{"description":"[0c44b7c](https://github.com/aracred/website/commit/0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33): Merge pull request #9 from aracred/docs2","index":813,"timestampMs":1586664558000},{"description":"[15e6db6](https://github.com/aracred/website/commit/15e6db685e730aa55697d6fc8f60e9006732d2db): Merge pull request #1 from aracred/docusaurus","index":814,"timestampMs":1586566020000},{"description":"[16456a0](https://github.com/aracred/website/commit/16456a0e6dce09102122b50f42b185c330bb7b25): checkpoint","index":815,"timestampMs":1586710826000},{"description":"[18c5aee](https://github.com/aracred/website/commit/18c5aee0a819fd4f7877321af5fd04791f85c6f8): created manual deployment guide draft","index":816,"timestampMs":1586727748000},{"description":"[120b10d](https://github.com/aracred/website/commit/120b10d34d5e804b21984569c113e37036efe669): removed blog from footer","index":817,"timestampMs":1586570955000},{"description":"[26b69c0](https://github.com/aracred/website/commit/26b69c05b19e8c57f2d16f77ab4d86b76247ce1b): updated diagrams and whiteboard sessions","index":818,"timestampMs":1586662685000},{"description":"[2a6a498](https://github.com/aracred/website/commit/2a6a498e1f06f55bc8d72380017b4d4060e27123): Create CNAME","index":819,"timestampMs":1586127122000},{"description":"[2b6ed00](https://github.com/aracred/website/commit/2b6ed00bd26907f91649e266613daba56cbaa0ee): stashing notes","index":820,"timestampMs":1586658983000},{"description":"[2cee732](https://github.com/aracred/website/commit/2cee732bc11b712814855cfb1d9b5b279cef6fb9): Delete CNAME","index":821,"timestampMs":1586566694000},{"description":"[2d9e5bd](https://github.com/aracred/website/commit/2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951): Merge pull request #6 from aracred/docs2","index":822,"timestampMs":1586656936000},{"description":"[2e4d02b](https://github.com/aracred/website/commit/2e4d02b5022b744b43eba4a032fa855b765aa0ad): Merge pull request #14 from aracred/docs2","index":823,"timestampMs":1586797014000},{"description":"[37e3b72](https://github.com/aracred/website/commit/37e3b7251566699d4341b3bdbb81ec8f554f7d87): Merge pull request #13 from aracred/docs2","index":824,"timestampMs":1586727823000},{"description":"[39ac367](https://github.com/aracred/website/commit/39ac367cc0a3e55366f190fe158a8517f97c2778): Update README.md","index":825,"timestampMs":1586103464000},{"description":"[30d221d](https://github.com/aracred/website/commit/30d221dce50b378b1c7305bda09bea3f77887415): didn't actually add users section","index":826,"timestampMs":1586633871000},{"description":"[49af56b](https://github.com/aracred/website/commit/49af56b16491699e672947ed52ce86dcb3f9d9c2): updated docs to include links to baseURL","index":827,"timestampMs":1586647160000},{"description":"[4b792e8](https://github.com/aracred/website/commit/4b792e8ce9c473dd059f633bec6659a18a6d8ff7): checkpoint","index":828,"timestampMs":1586660251000},{"description":"[51c24fd](https://github.com/aracred/website/commit/51c24fd07be9e40f534f48d43f936d829ac7b085): added tabs!","index":829,"timestampMs":1586649927000},{"description":"[5a3bda0](https://github.com/aracred/website/commit/5a3bda08dd0c3b937345c449229b07241d70fb09): Fix hero button in dark mode","index":830,"timestampMs":1586855777000},{"description":"[5e5171d](https://github.com/aracred/website/commit/5e5171d6fb098184d18a44589e6cd4fd72c89c80): getting started button link update","index":831,"timestampMs":1586571027000},{"description":"[61741f2](https://github.com/aracred/website/commit/61741f2ee4388880504f3a299dbd9c11698cc7dd): giving credit where credit is due","index":832,"timestampMs":1586644808000},{"description":"[62452c3](https://github.com/aracred/website/commit/62452c343ffd843e938714bc2e87d5214d7dd315): added a gratitude section","index":833,"timestampMs":1586650718000},{"description":"[6caa3ed](https://github.com/aracred/website/commit/6caa3ed4ed86f8414354719138e0121db2d6a0dc): Initial commit","index":834,"timestampMs":1586103441000},{"description":"[6d3765a](https://github.com/aracred/website/commit/6d3765a6c17e93aaddcd0f3fb8ace45c20bda183): Update README.md","index":835,"timestampMs":1586568293000},{"description":"[6e7bfcd](https://github.com/aracred/website/commit/6e7bfcd7b00408f64472201ac06ea499e02e6fad): updated docs to mdx","index":836,"timestampMs":1586646704000},{"description":"[6f93833](https://github.com/aracred/website/commit/6f93833ab9fbe162b81bb768df2d85c30ad06ab8): Merge pull request #8 from aracred/docs2","index":837,"timestampMs":1586663015000},{"description":"[7cd874a](https://github.com/aracred/website/commit/7cd874acd8a0f9009911452d1c0b363cb13f6669): _","index":838,"timestampMs":1586639136000},{"description":"[85eeea1](https://github.com/aracred/website/commit/85eeea117f1160d5b9da37473b35598a7c76b5f2): added DAO stuff","index":839,"timestampMs":1586663769000},{"description":"[862fd7f](https://github.com/aracred/website/commit/862fd7fa57bf683b777fc8f3789b1df4aea08e9f): updated stuff","index":840,"timestampMs":1586652307000},{"description":"[892f2bf](https://github.com/aracred/website/commit/892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3): added docs placeholders","index":841,"timestampMs":1586570353000},{"description":"[97158bd](https://github.com/aracred/website/commit/97158bddc34b68675ca0d7376d36259a03aef6ac): added AraCred overview","index":842,"timestampMs":1586638395000},{"description":"[9b553ff](https://github.com/aracred/website/commit/9b553ff5e3ec727ed0dd45321971a9911a1f04ad): the code works!","index":843,"timestampMs":1586657067000},{"description":"[9fc6edf](https://github.com/aracred/website/commit/9fc6edf1983584d9e8336ae9cba525ba92e3249b): generalized the token market","index":844,"timestampMs":1586649206000},{"description":"[a631821](https://github.com/aracred/website/commit/a631821f95e1a3b679073cd25647784f863699ec): removed scratchpad","index":845,"timestampMs":1586729040000},{"description":"[a794a7d](https://github.com/aracred/website/commit/a794a7d8a4034af56c031a5a4a85300ad488871e): moved stuff to main directory","index":846,"timestampMs":1586567498000},{"description":"[a86004a](https://github.com/aracred/website/commit/a86004ae7a81b6150ca9decebdd05ab7d4151214): Beautified the website!","index":847,"timestampMs":1586855462000},{"description":"[a180ef1](https://github.com/aracred/website/commit/a180ef16d0fb9e6adbb95731fcdd0e84955805d3): _","index":848,"timestampMs":1586568912000},{"description":"[a2421f5](https://github.com/aracred/website/commit/a2421f56156e52f5b7138ff17678e3c13e13a2f1): basic aragon and sourcecred overviews","index":849,"timestampMs":1586640470000},{"description":"[a380b67](https://github.com/aracred/website/commit/a380b67f78535ff8cd03945a60f98400e084a525): Update README.md","index":850,"timestampMs":1586111771000},{"description":"[aa9b13f](https://github.com/aracred/website/commit/aa9b13f64574bcf35312c9c6e828986ce75aff16): _","index":851,"timestampMs":1586569076000},{"description":"[ace98dc](https://github.com/aracred/website/commit/ace98dcfcfaeffae7c2fc2618af5281d06129330): starting to add market dynamic info","index":852,"timestampMs":1586648621000},{"description":"[bb9844b](https://github.com/aracred/website/commit/bb9844bd3a996039c00d44054f3450fcdc905d22): Update README.md","index":853,"timestampMs":1586111689000},{"description":"[bd29ad9](https://github.com/aracred/website/commit/bd29ad9bca1ac4c5f098c091bce6ea0824776115): added carl to the thanks section","index":854,"timestampMs":1586651543000},{"description":"[c4fa771](https://github.com/aracred/website/commit/c4fa771d6e61d74c5f1e702dd238ebbb4b538be8): added whiteboard session to notes","index":855,"timestampMs":1586661631000},{"description":"[c515036](https://github.com/aracred/website/commit/c515036f8ba1937cda94092e87b0a13545d86829): added note about next action items for deployment docs","index":856,"timestampMs":1586739277000},{"description":"[c2bf0a1](https://github.com/aracred/website/commit/c2bf0a118855a87f962a7bda788c73120c64940b): added a cryptoeconomics 101 blog post","index":857,"timestampMs":1586644660000},{"description":"[c3d5044](https://github.com/aracred/website/commit/c3d50445a0194dac7d52baaaa8aa3dbf2bd77173): added guide on approving token minting","index":858,"timestampMs":1586792089000},{"description":"[cda86c7](https://github.com/aracred/website/commit/cda86c72f131bd0ba804c57d20be41d8f017cf3d): fixed edit link thing","index":859,"timestampMs":1586645107000},{"description":"[d49ea3b](https://github.com/aracred/website/commit/d49ea3b27586437f262b74132224b280597e67bd): before adding live code plugin","index":860,"timestampMs":1586656870000},{"description":"[d9900e9](https://github.com/aracred/website/commit/d9900e922c90ce1d244761f1e2ad2fc4fb65f298): added guide on viewing your cred graph","index":861,"timestampMs":1586790290000},{"description":"[d1a721f](https://github.com/aracred/website/commit/d1a721f8eed2805dd0c85d8d9fef06032f04c056): Update README.md","index":862,"timestampMs":1586571301000},{"description":"[db97114](https://github.com/aracred/website/commit/db97114fd0dbcd580c0a88991f4b6991d0bef4e5): starting to docusaurus","index":863,"timestampMs":1586565903000},{"description":"[dd68745](https://github.com/aracred/website/commit/dd687457b7a8178a907116c7880a1bb498bb4131): Merge pull request #3 from aracred/users-showcase","index":864,"timestampMs":1586633977000},{"description":"[df4aca3](https://github.com/aracred/website/commit/df4aca3876a771513b7e5d9a0c28517746508961): now the edit link is fixed","index":865,"timestampMs":1586645253000},{"description":"[e97f15b](https://github.com/aracred/website/commit/e97f15b28e12292f7df8de6515a27b63f989acfb): updated README deployment instructions","index":866,"timestampMs":1586567811000},{"description":"[e9a6820](https://github.com/aracred/website/commit/e9a68209df1f07b4f9f28319e98dcade12ebde80): updated images","index":867,"timestampMs":1586664528000},{"description":"[e2dddf8](https://github.com/aracred/website/commit/e2dddf8e3303043dae6bf8efc44777965d5fde9a): Merge pull request #4 from aracred/docs2","index":868,"timestampMs":1586645187000},{"description":"[ee80ee1](https://github.com/aracred/website/commit/ee80ee18c4c10447c5e3d180c7cb87d177cf6bab): Better paddings and illustrations","index":869,"timestampMs":1586874980000},{"description":"[f9f8620](https://github.com/aracred/website/commit/f9f862051f1b8310f274b4e8e8c20604a75bda59): Merge pull request #5 from aracred/docs2","index":870,"timestampMs":1586654110000},{"description":"[fcacf68](https://github.com/aracred/website/commit/fcacf68e748f6ee1883db51392267fc8537db08b): updated docs","index":871,"timestampMs":1586570850000},{"description":"[07e0e5f](https://github.com/aracred/TheSource/commit/07e0e5f00e18e00a12892b47bd3f5b87418377d5): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":872,"timestampMs":1584166244000},{"description":"[014093e](https://github.com/aracred/TheSource/commit/014093e17900e748bb8f82656443ec621bd8a658): Fix: trigger on master / cronjob","index":873,"timestampMs":1582978132000},{"description":"[0235016](https://github.com/aracred/TheSource/commit/02350169d0e77e280968a062a1e98a60a0d4c5d8): Update generate-cred.yml","index":874,"timestampMs":1586104482000},{"description":"[0245a40](https://github.com/aracred/TheSource/commit/0245a4002a35c2adccfed1f68a675c30ba871ba5): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":875,"timestampMs":1583453629000},{"description":"[0e46884](https://github.com/aracred/TheSource/commit/0e468843191ad3a24ff5b803b2e388a12e88a289): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":876,"timestampMs":1585678434000},{"description":"[1582ec3](https://github.com/aracred/TheSource/commit/1582ec34530ff6b7055382319336acc3f82de567): Merge pull request #22 from burrrata/patch-1","index":877,"timestampMs":1583619788000},{"description":"[15a8127](https://github.com/aracred/TheSource/commit/15a8127bc5402c7224bc592f890a5bd7f793c6a5): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":878,"timestampMs":1585354520000},{"description":"[1823aa7](https://github.com/aracred/TheSource/commit/1823aa73078796ecf98dd56d9c134ccf2192e686): Add new members and update repo config","index":879,"timestampMs":1585275196000},{"description":"[11fcd09](https://github.com/aracred/TheSource/commit/11fcd09a0cde08af08b5c5c951f54c150cf47ea1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":880,"timestampMs":1585246440000},{"description":"[1222e49](https://github.com/aracred/TheSource/commit/1222e49b4269f15b2c71cfe4b62b1333abeea581): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":881,"timestampMs":1583367223000},{"description":"[12cf0f1](https://github.com/aracred/TheSource/commit/12cf0f16d406f14c2597abc130c4d2bfa9927f32): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":882,"timestampMs":1585807902000},{"description":"[12ddd4e](https://github.com/aracred/TheSource/commit/12ddd4e35607c0184b898c898e26e45c6017642d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":883,"timestampMs":1584727971000},{"description":"[1363441](https://github.com/aracred/TheSource/commit/13634414337e730fbcb403e2657a8007347ddd8d): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":884,"timestampMs":1585268012000},{"description":"[13fc50d](https://github.com/aracred/TheSource/commit/13fc50d22e2353cf2bb38948cae4fb5fb591ce6c): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":885,"timestampMs":1584490521000},{"description":"[1a79294](https://github.com/aracred/TheSource/commit/1a7929462fc35448408f0d854a6c8c898c2db94f): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":886,"timestampMs":1584425424000},{"description":"[1b5127e](https://github.com/aracred/TheSource/commit/1b5127e0416b329fc4dcd1d988d29489bea9016f): Merge pull request #21 from c0mput3rxz/patch-1","index":887,"timestampMs":1583545099000},{"description":"[1cac15e](https://github.com/aracred/TheSource/commit/1cac15ecae5e636fd5d049fc5993ccd113126e41): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":888,"timestampMs":1584404096000},{"description":"[1dc4a2c](https://github.com/aracred/TheSource/commit/1dc4a2c23525043a7b6e32a79837cb6a5a62fd97): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":889,"timestampMs":1584987191000},{"description":"[1eed38c](https://github.com/aracred/TheSource/commit/1eed38c4cebd63ab6fc9537564a5304a870caa0c): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":890,"timestampMs":1585872826000},{"description":"[1f350ea](https://github.com/aracred/TheSource/commit/1f350ead22cb503932ec36b9d21b735eb97eb256): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":891,"timestampMs":1584231333000},{"description":"[25c16bb](https://github.com/aracred/TheSource/commit/25c16bb85801279196018b44ec0db0834fadc4a2): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":892,"timestampMs":1584079976000},{"description":"[27b2bf3](https://github.com/aracred/TheSource/commit/27b2bf3d7da83e04295aa1c2297e50ce8157f435): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":893,"timestampMs":1584555406000},{"description":"[28b0e3f](https://github.com/aracred/TheSource/commit/28b0e3f2d8fd42569eb803d10435aa8c0edf28f4): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":894,"timestampMs":1585159980000},{"description":"[2074791](https://github.com/aracred/TheSource/commit/2074791c680ee3d896c6c819ee0244719a7e510c): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":895,"timestampMs":1582941733000},{"description":"[21196b9](https://github.com/aracred/TheSource/commit/21196b9342e552cc4fc6a9f213ea42768f3590d6): Merge pull request #1 from pythonpete32/patch-2","index":896,"timestampMs":1586104041000},{"description":"[2251687](https://github.com/aracred/TheSource/commit/225168780b86a4b41d38845653c5d8759d1d37ad): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":897,"timestampMs":1581915151000},{"description":"[22f57e7](https://github.com/aracred/TheSource/commit/22f57e7b323b0800c218b270980286c105ff7760): Update README.md","index":898,"timestampMs":1586106320000},{"description":"[2a1204b](https://github.com/aracred/TheSource/commit/2a1204b44f44d6d93cf952e1804aef25ffbdd78f): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":899,"timestampMs":1585365876000},{"description":"[2d44191](https://github.com/aracred/TheSource/commit/2d44191a996951ccbed0009280899614d63174c9): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":900,"timestampMs":1585276073000},{"description":"[2f42a2a](https://github.com/aracred/TheSource/commit/2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":901,"timestampMs":1585397520000},{"description":"[2fad9aa](https://github.com/aracred/TheSource/commit/2fad9aab6897201e6bc353b9746c03d1e728d433): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":902,"timestampMs":1584274368000},{"description":"[3472396](https://github.com/aracred/TheSource/commit/34723961199565937493834071665b871a632d5d): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":903,"timestampMs":1584382440000},{"description":"[35bf082](https://github.com/aracred/TheSource/commit/35bf0829c068aa20de51466ea118f7547707de00): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":904,"timestampMs":1585894360000},{"description":"[364068e](https://github.com/aracred/TheSource/commit/364068ec8db86b378d630f591da3a02de8708798): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":905,"timestampMs":1585095460000},{"description":"[36d7098](https://github.com/aracred/TheSource/commit/36d7098c5f0c400dddec1e654523a2800782b78a): Fix cache path (#8)","index":906,"timestampMs":1581914566000},{"description":"[37b357c](https://github.com/aracred/TheSource/commit/37b357cb88cf608d20589ce6ee51404561bb4b1c): Trigger build","index":907,"timestampMs":1581914856000},{"description":"[380e74d](https://github.com/aracred/TheSource/commit/380e74d47b6bfd2c48d5690093ab03e44b92d991): Run with cache (#4)","index":908,"timestampMs":1581911765000},{"description":"[38f3240](https://github.com/aracred/TheSource/commit/38f3240786ceec5b4c03d7a5ce0faa02512a8cde): cleaned things up","index":909,"timestampMs":1586106153000},{"description":"[391b32b](https://github.com/aracred/TheSource/commit/391b32bfdb5ae37d2ce42d32319fbadde72663f3): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":910,"timestampMs":1583604631000},{"description":"[392e601](https://github.com/aracred/TheSource/commit/392e601d3179506dfe7ec0ad20cd5f679696e66e): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":911,"timestampMs":1583712856000},{"description":"[39b0a90](https://github.com/aracred/TheSource/commit/39b0a902c1c17512a536380503a506fc3ca615bb): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":912,"timestampMs":1585505534000},{"description":"[39c6daa](https://github.com/aracred/TheSource/commit/39c6daaa5fca6305b908cdd28811107eba6bcbe3): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":913,"timestampMs":1584058539000},{"description":"[30014c1](https://github.com/aracred/TheSource/commit/30014c11841c9a605cc94d517ece6b867afd8cef): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":914,"timestampMs":1583172648000},{"description":"[30758d0](https://github.com/aracred/TheSource/commit/30758d04aa4da97fc0aced1fa22cbdee4a82c792): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":915,"timestampMs":1584857389000},{"description":"[309a895](https://github.com/aracred/TheSource/commit/309a89586da5e2d44b48a607c9334aef6f6db3fb): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":916,"timestampMs":1583928647000},{"description":"[311bf26](https://github.com/aracred/TheSource/commit/311bf26aa5268a067b0bfc8708a922d2fd3d0a81): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":917,"timestampMs":1582959644000},{"description":"[317ffa1](https://github.com/aracred/TheSource/commit/317ffa1471a0179007b87f93aac2223666443d45): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":918,"timestampMs":1584965374000},{"description":"[3ab888c](https://github.com/aracred/TheSource/commit/3ab888c62c6fa64080e675c1f5146e156635ee6c): Merge pull request #18 from mzargham/patch-1","index":919,"timestampMs":1583124213000},{"description":"[3b4871c](https://github.com/aracred/TheSource/commit/3b4871c09b67498e31575b8aaa9c09443d142a03): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":920,"timestampMs":1584511968000},{"description":"[3b5a471](https://github.com/aracred/TheSource/commit/3b5a4715a9790e23a2e35d783d691e8d5ee58f80): Update project.json","index":921,"timestampMs":1586105522000},{"description":"[3b8e4f5](https://github.com/aracred/TheSource/commit/3b8e4f54845388851293b26053f4df65b4dc98d1): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":922,"timestampMs":1583280857000},{"description":"[3bc9934](https://github.com/aracred/TheSource/commit/3bc9934834b8a65291439cbba2daf061448e30fe): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":923,"timestampMs":1584101474000},{"description":"[3e5e144](https://github.com/aracred/TheSource/commit/3e5e14457fa143425d264a4fa941591d19730ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":924,"timestampMs":1583086481000},{"description":"[3f47f07](https://github.com/aracred/TheSource/commit/3f47f07723b97f0311f32b78da99358d2c6affb4): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":925,"timestampMs":1583259010000},{"description":"[44cf0fb](https://github.com/aracred/TheSource/commit/44cf0fbba18bf392a44962faed1e1300ed6fa459): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":926,"timestampMs":1585548726000},{"description":"[44c8444](https://github.com/aracred/TheSource/commit/44c844475c5e2beb5acdefc7e4cd54e90d2d84e2): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":927,"timestampMs":1585700008000},{"description":"[4639ec8](https://github.com/aracred/TheSource/commit/4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":928,"timestampMs":1585484037000},{"description":"[48e5b44](https://github.com/aracred/TheSource/commit/48e5b4467c6107040c107d55bc2fbe07a57ea3a0): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":929,"timestampMs":1585311128000},{"description":"[4003769](https://github.com/aracred/TheSource/commit/4003769a8d62ca41d0d18d2bd72204b1d278d5b9): Add mZ (me) to identities","index":930,"timestampMs":1583107086000},{"description":"[407f5d0](https://github.com/aracred/TheSource/commit/407f5d0adffd9ef41bff0bdbfb06f67213accea9): Merge a802f7c669324c951f6554fcf391f886ba3150f8 into 2074791c680ee3d896c6c819ee0244719a7e510c","index":931,"timestampMs":1582959287000},{"description":"[419d39d](https://github.com/aracred/TheSource/commit/419d39d87eb31965a8f5775075cb80be6a57abd6): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":932,"timestampMs":1585440813000},{"description":"[41e6727](https://github.com/aracred/TheSource/commit/41e67273af614a1014bfb58bf6ca1b1cee1e6a8a): Update project.json","index":933,"timestampMs":1586112503000},{"description":"[432042f](https://github.com/aracred/TheSource/commit/432042f6f965bb113ad50950cfdbb82c44f0dc59): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":934,"timestampMs":1583129436000},{"description":"[4a90734](https://github.com/aracred/TheSource/commit/4a90734832ae4ad328fc062712e2deca88d7dcc4): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":935,"timestampMs":1585224759000},{"description":"[4b4c9ea](https://github.com/aracred/TheSource/commit/4b4c9ea9705465d39f33b39ea39819c9c77aa78b): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":936,"timestampMs":1585980739000},{"description":"[4c0f6c1](https://github.com/aracred/TheSource/commit/4c0f6c1fe42e875f8cd6a4be4fa88be63052d149): Merge pull request #15 from AlexMasmej/patch-1","index":937,"timestampMs":1583096048000},{"description":"[4ecd902](https://github.com/aracred/TheSource/commit/4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33): Merge 37b357cb88cf608d20589ce6ee51404561bb4b1c into bbca4d024098c749b7064b70c24c416061255c75","index":938,"timestampMs":1581914897000},{"description":"[554c964](https://github.com/aracred/TheSource/commit/554c96438fdbee2031b8b5ac16aa2d6db6a7f40f): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":939,"timestampMs":1584209897000},{"description":"[56172b6](https://github.com/aracred/TheSource/commit/56172b6087400fa81c13f39f37b23ec11de3c9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":940,"timestampMs":1585937519000},{"description":"[576bc68](https://github.com/aracred/TheSource/commit/576bc68e63d6232f6c78bdd38e66da8585c04b0c): Update generate-cred.yml","index":941,"timestampMs":1586104299000},{"description":"[578544d](https://github.com/aracred/TheSource/commit/578544d0557614c00780089fa9f8343950f977fc): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":942,"timestampMs":1585613634000},{"description":"[509d8c0](https://github.com/aracred/TheSource/commit/509d8c03b1a67129a3e98073dd24f93723cdfe41): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":943,"timestampMs":1585656841000},{"description":"[50d289e](https://github.com/aracred/TheSource/commit/50d289eff07e8033e20cd60a4670c798dea24b71): Update README.md","index":944,"timestampMs":1586109721000},{"description":"[5130862](https://github.com/aracred/TheSource/commit/51308621ec2843350852fd31f8c0aa08d6d6a809): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":945,"timestampMs":1585591899000},{"description":"[5afb4e0](https://github.com/aracred/TheSource/commit/5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":946,"timestampMs":1585116577000},{"description":"[5b85a74](https://github.com/aracred/TheSource/commit/5b85a7405489f720ed0b9cb5150c2619d45c9e9d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":947,"timestampMs":1583820607000},{"description":"[5c621ee](https://github.com/aracred/TheSource/commit/5c621ee4c644713a2627afbfed745482fe5525ef): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":948,"timestampMs":1584619902000},{"description":"[5c8e695](https://github.com/aracred/TheSource/commit/5c8e695ad340e65e85862dc8202d17e73d95bc3e): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":949,"timestampMs":1584943893000},{"description":"[6414f44](https://github.com/aracred/TheSource/commit/6414f44dff41af4a83f6ce0de71d809bd0482d00): fixed syntax error","index":950,"timestampMs":1583122040000},{"description":"[6552409](https://github.com/aracred/TheSource/commit/65524097ed5de3a815e989bd420e38177fe70bca): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":951,"timestampMs":1584187884000},{"description":"[65d2ca3](https://github.com/aracred/TheSource/commit/65d2ca343c51020478094ba87b5db4af6464741a): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":952,"timestampMs":1584123231000},{"description":"[67d4622](https://github.com/aracred/TheSource/commit/67d46229489309035b968391e6d14611ebd5c3ff): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":953,"timestampMs":1585008772000},{"description":"[69d1fb7](https://github.com/aracred/TheSource/commit/69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":954,"timestampMs":1584339043000},{"description":"[636ec6a](https://github.com/aracred/TheSource/commit/636ec6a16064c8c33eb4763375d53ac5d8bd1a10): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":955,"timestampMs":1583669536000},{"description":"[6a8bfca](https://github.com/aracred/TheSource/commit/6a8bfca0c936f304cc9a2a3399676be46aea9960): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":956,"timestampMs":1584252719000},{"description":"[6b96998](https://github.com/aracred/TheSource/commit/6b96998e7c2f8ce52dc09ebc9ea524d07debe38e): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":957,"timestampMs":1584360709000},{"description":"[6d51ee8](https://github.com/aracred/TheSource/commit/6d51ee836e10e9d7b38006f5e496655ae18ad368): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":958,"timestampMs":1585915944000},{"description":"[749f1e4](https://github.com/aracred/TheSource/commit/749f1e4c55deee2c1b640348b5965f5a4afd2886): Merge pull request #24 from MetaFam/update-members","index":959,"timestampMs":1585275681000},{"description":"[7860137](https://github.com/aracred/TheSource/commit/78601376522c329c0940754020ff4654ffe937b8): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":960,"timestampMs":1585462336000},{"description":"[7931cf2](https://github.com/aracred/TheSource/commit/7931cf20b5146bca68e51d26cdebade9a1d3a662): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":961,"timestampMs":1583755944000},{"description":"[71e0846](https://github.com/aracred/TheSource/commit/71e08464a654b37b05fe5349649a03f457933fa1): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":962,"timestampMs":1584663156000},{"description":"[7b6d616](https://github.com/aracred/TheSource/commit/7b6d61687e57d15a45d195b1edb567451a30db29): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":963,"timestampMs":1584598257000},{"description":"[7b9dca5](https://github.com/aracred/TheSource/commit/7b9dca52443325803e66cf596d274a0b11d252eb): updated gh actions file","index":964,"timestampMs":1586106389000},{"description":"[7d1f6e2](https://github.com/aracred/TheSource/commit/7d1f6e2d13ab467719f287802b16e799deeb5e26): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":965,"timestampMs":1585332629000},{"description":"[7dc4514](https://github.com/aracred/TheSource/commit/7dc4514cd415cc926827fe02cb2891b8d6b80e5d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":966,"timestampMs":1583799279000},{"description":"[7dd45c9](https://github.com/aracred/TheSource/commit/7dd45c9416c703d549b6e278b7bfbe75053b1ca0): Initial commit","index":967,"timestampMs":1581898623000},{"description":"[7ff7782](https://github.com/aracred/TheSource/commit/7ff7782489b7894149cc5f211d9ddafcf84918e9): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":968,"timestampMs":1583496697000},{"description":"[842296b](https://github.com/aracred/TheSource/commit/842296b74203dbd599856a16880adcc904bd5b01): add thanks emoji","index":969,"timestampMs":1583106975000},{"description":"[85b6e8c](https://github.com/aracred/TheSource/commit/85b6e8cca2d6bc5709449605c8ac645fe74f78d5): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":970,"timestampMs":1585829522000},{"description":"[8619ee2](https://github.com/aracred/TheSource/commit/8619ee2452e7bf109169017acc968bba3e6e129d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":971,"timestampMs":1584706303000},{"description":"[877be03](https://github.com/aracred/TheSource/commit/877be03e547648fb7a06110788e7dad226a05559): Add myself to list of identities","index":972,"timestampMs":1583542889000},{"description":"[89a15b5](https://github.com/aracred/TheSource/commit/89a15b5772d1dc21737181d7dda26695a0dfecca): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":973,"timestampMs":1585375849000},{"description":"[89b337b](https://github.com/aracred/TheSource/commit/89b337bef296df10a94c3b38ce1e2ef4396886d5): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":974,"timestampMs":1583431778000},{"description":"[8077363](https://github.com/aracred/TheSource/commit/80773639d8e225d1902d6145312108ecaa906a15): Merge bdb4c8a38c86a4598b2da69391fc84939148d738 into 8e04719f8d88512b8e8e19e17e42f7d960f6733b","index":975,"timestampMs":1581903076000},{"description":"[810abfb](https://github.com/aracred/TheSource/commit/810abfb03976accd663d1b7b964bbc19a92ec609): Merge pull request #17 from MetaFam/bean/patch-triggers","index":976,"timestampMs":1583014162000},{"description":"[817cf89](https://github.com/aracred/TheSource/commit/817cf8940cb88ba790c6021ce54bcb018aa0ceb6): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":977,"timestampMs":1583540024000},{"description":"[81a67f4](https://github.com/aracred/TheSource/commit/81a67f48120449294d3ab94cc767755e0bf3784e): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":978,"timestampMs":1586023930000},{"description":"[8275d1b](https://github.com/aracred/TheSource/commit/8275d1b5f3a774264d5833c23d8958342940092f): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":979,"timestampMs":1585570245000},{"description":"[8d960f0](https://github.com/aracred/TheSource/commit/8d960f0415e8ce8a45d7005c4ee399de672144d4): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":980,"timestampMs":1583410286000},{"description":"[8da32bb](https://github.com/aracred/TheSource/commit/8da32bb2436219e3a55631e426a71d3d45d27c36): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":981,"timestampMs":1585073567000},{"description":"[8e04719](https://github.com/aracred/TheSource/commit/8e04719f8d88512b8e8e19e17e42f7d960f6733b): Adds discord-token secret to action (#1)","index":982,"timestampMs":1581902687000},{"description":"[8e50a18](https://github.com/aracred/TheSource/commit/8e50a18b163cc513402b9c6c320672c83c46db84): added Alex Masmej","index":983,"timestampMs":1582941505000},{"description":"[94e51d9](https://github.com/aracred/TheSource/commit/94e51d9a83cd67b4ad82c6529212e72aac84afe7): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":984,"timestampMs":1583014460000},{"description":"[95d5884](https://github.com/aracred/TheSource/commit/95d5884b12a5a5f1d18552277e37597fb6048297): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":985,"timestampMs":1585289369000},{"description":"[9620fb8](https://github.com/aracred/TheSource/commit/9620fb8b0386160e364e38d63ad3fede4a182ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":986,"timestampMs":1584814190000},{"description":"[978f052](https://github.com/aracred/TheSource/commit/978f052b63aa209ed8107dad71c59a44643e74ba): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":987,"timestampMs":1586002264000},{"description":"[98f76c4](https://github.com/aracred/TheSource/commit/98f76c4fa934a3e08dc4abb8c19697c7ed1da81c): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":988,"timestampMs":1584015081000},{"description":"[936cd22](https://github.com/aracred/TheSource/commit/936cd22fe159bfd7f8bed539783f52c768f20a9f): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":989,"timestampMs":1584901288000},{"description":"[9a5b489](https://github.com/aracred/TheSource/commit/9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":990,"timestampMs":1585851193000},{"description":"[9a86642](https://github.com/aracred/TheSource/commit/9a866424f84b469783dfe559a510ffc93e00d64b): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":991,"timestampMs":1585051794000},{"description":"[9aa0ecd](https://github.com/aracred/TheSource/commit/9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":992,"timestampMs":1583864016000},{"description":"[9d0cacf](https://github.com/aracred/TheSource/commit/9d0cacf29ee5f6668426c0dd9cca12ad7af906aa): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":993,"timestampMs":1583561475000},{"description":"[9d8560f](https://github.com/aracred/TheSource/commit/9d8560f7a170cc2c0937ba7980dbcb466ad3140f): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":994,"timestampMs":1584922566000},{"description":"[9ee6d1b](https://github.com/aracred/TheSource/commit/9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":995,"timestampMs":1584836115000},{"description":"[a433d84](https://github.com/aracred/TheSource/commit/a433d846e9ff70c98dba741fbfff7fa1985a67fb): Update generate-cred.yml","index":996,"timestampMs":1586103659000},{"description":"[a501a74](https://github.com/aracred/TheSource/commit/a501a7454bf19ee03003196bfec9560d48c978d2): Start running update action","index":997,"timestampMs":1581900781000},{"description":"[a6853a8](https://github.com/aracred/TheSource/commit/a6853a839b1101b077e3b80c3106da01be2807ea): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":998,"timestampMs":1584749757000},{"description":"[a7c425d](https://github.com/aracred/TheSource/commit/a7c425d5f9edb1106b5934cafe4cbfc221a08e9c): Merge pull request #20 from MetaFam/fix/trailing-comma","index":999,"timestampMs":1583124366000},{"description":"[a802f7c](https://github.com/aracred/TheSource/commit/a802f7c669324c951f6554fcf391f886ba3150f8): Update config with new Discourse server","index":1000,"timestampMs":1582959276000},{"description":"[a999d6b](https://github.com/aracred/TheSource/commit/a999d6bd35df198bab6252404325d7a944983410): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1001,"timestampMs":1583691175000},{"description":"[a0fb9b8](https://github.com/aracred/TheSource/commit/a0fb9b822baab9e0fce8433be3de7d423e1b4dd6): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1002,"timestampMs":1583064673000},{"description":"[a2547eb](https://github.com/aracred/TheSource/commit/a2547eb7d1835e050a897172b563ccb69b769711): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":1003,"timestampMs":1584684556000},{"description":"[a2fd7e0](https://github.com/aracred/TheSource/commit/a2fd7e076795c62a07501d5fb71c03999cc4b145): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":1004,"timestampMs":1583842226000},{"description":"[a37a482](https://github.com/aracred/TheSource/commit/a37a48256d99a63fcf0a678ebbb34cca0fd95f23): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1005,"timestampMs":1585743137000},{"description":"[ae656a1](https://github.com/aracred/TheSource/commit/ae656a1a99e9a8cc227c187154123571d9d16872): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1006,"timestampMs":1583107978000},{"description":"[af89e8d](https://github.com/aracred/TheSource/commit/af89e8d6be326c34865a925f1be4c67877064e30): Delete scores.json","index":1007,"timestampMs":1586105574000},{"description":"[b439421](https://github.com/aracred/TheSource/commit/b4394213300ff4d72ebaca7c63cf919df306ead3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1008,"timestampMs":1583096222000},{"description":"[b5ad5ee](https://github.com/aracred/TheSource/commit/b5ad5eea401b4f415b9da446187b893a7ceee1b5): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":1009,"timestampMs":1585030166000},{"description":"[b5df3c8](https://github.com/aracred/TheSource/commit/b5df3c8cd85cbe43606f2052f00631dbfcca42d9): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1010,"timestampMs":1585764755000},{"description":"[b6388db](https://github.com/aracred/TheSource/commit/b6388db5eb6a6fed56eba661db2b761ccddfd6fc): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1011,"timestampMs":1583993566000},{"description":"[b670574](https://github.com/aracred/TheSource/commit/b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1012,"timestampMs":1583972111000},{"description":"[b6920f3](https://github.com/aracred/TheSource/commit/b6920f3b6646522b3fc0f93e6343506b485c158b): fix trailing comma in json","index":1013,"timestampMs":1583124346000},{"description":"[b6968e4](https://github.com/aracred/TheSource/commit/b6968e47899cfc22652e1f1dbb3b82ed98cc5232): Create README.md","index":1014,"timestampMs":1586106281000},{"description":"[b8319d3](https://github.com/aracred/TheSource/commit/b8319d3616c7d5e6c2af8087ea63e9fab1a73c02): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1015,"timestampMs":1583619966000},{"description":"[b842ed3](https://github.com/aracred/TheSource/commit/b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1016,"timestampMs":1583302409000},{"description":"[b85c0b5](https://github.com/aracred/TheSource/commit/b85c0b5ab98357c6dc3af69297e6a795851c89f4): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":1017,"timestampMs":1581903422000},{"description":"[b8c9da4](https://github.com/aracred/TheSource/commit/b8c9da4bcc0d1a50add9423473a6c162cdb99597): Add wiki to projects","index":1018,"timestampMs":1585361688000},{"description":"[b9309e4](https://github.com/aracred/TheSource/commit/b9309e4d44289af8341f43103b7be195df5998b0): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1019,"timestampMs":1583778483000},{"description":"[b038f1c](https://github.com/aracred/TheSource/commit/b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1020,"timestampMs":1583583119000},{"description":"[b1e2418](https://github.com/aracred/TheSource/commit/b1e24185c567c4f9a60959559e6ff1ac7dbb6279): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1021,"timestampMs":1583043139000},{"description":"[b3a4034](https://github.com/aracred/TheSource/commit/b3a4034f04332a6546a7d03ee781f10dbf9e32f3): Merge pull request #2 from pythonpete32/patch-1","index":1022,"timestampMs":1586104090000},{"description":"[b3f667c](https://github.com/aracred/TheSource/commit/b3f667c746d54fd1e7ef41d4e91186ff705cb01a): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1023,"timestampMs":1583237458000},{"description":"[ba08f21](https://github.com/aracred/TheSource/commit/ba08f21f38fef25e65a006e4af00591f623cba88): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1024,"timestampMs":1583194441000},{"description":"[ba693f5](https://github.com/aracred/TheSource/commit/ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1025,"timestampMs":1583215867000},{"description":"[bbca4d0](https://github.com/aracred/TheSource/commit/bbca4d024098c749b7064b70c24c416061255c75): Switch to automatic updates","index":1026,"timestampMs":1581914667000},{"description":"[bbc54e4](https://github.com/aracred/TheSource/commit/bbc54e4947190da8c37d767e004339b62fb34aac): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":1027,"timestampMs":1585527211000},{"description":"[bdb4c8a](https://github.com/aracred/TheSource/commit/bdb4c8a38c86a4598b2da69391fc84939148d738): Automate cred updates","index":1028,"timestampMs":1581903056000},{"description":"[bdd1d95](https://github.com/aracred/TheSource/commit/bdd1d95095fc99186754502c96c1ecbff216fb14): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1029,"timestampMs":1583734323000},{"description":"[bfd321a](https://github.com/aracred/TheSource/commit/bfd321a5c384dc7fab99062bcc3491705303a176): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1030,"timestampMs":1586105832000},{"description":"[c461bb4](https://github.com/aracred/TheSource/commit/c461bb40366be6124cc8e09af25741c5e65b1a6a): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1031,"timestampMs":1583950431000},{"description":"[c4ae2b9](https://github.com/aracred/TheSource/commit/c4ae2b95edd223a2b3269f4913c5a237e7557194): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1032,"timestampMs":1583345470000},{"description":"[c519a09](https://github.com/aracred/TheSource/commit/c519a0916f23866c99c0c76bad33dec09c4a1052): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1033,"timestampMs":1586045554000},{"description":"[c5eeac9](https://github.com/aracred/TheSource/commit/c5eeac948569a06622740d0b9340c622ddb469d3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1034,"timestampMs":1584771018000},{"description":"[c61bc79](https://github.com/aracred/TheSource/commit/c61bc79183374e7e37a8456ff47f662a2bc21baf): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":1035,"timestampMs":1585959190000},{"description":"[c7acef8](https://github.com/aracred/TheSource/commit/c7acef8a5664d3dd57059e8cc447c4f1dbe269db): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":1036,"timestampMs":1584144938000},{"description":"[c85e7ad](https://github.com/aracred/TheSource/commit/c85e7ad86fb08653971ed365f4f316d4577178ed): Update identity for Hammad","index":1037,"timestampMs":1582941407000},{"description":"[c00a25e](https://github.com/aracred/TheSource/commit/c00a25ed5500c60da5520e12c68db9dc1e003cd1): Merge c85e7ad86fb08653971ed365f4f316d4577178ed into 225168780b86a4b41d38845653c5d8759d1d37ad","index":1038,"timestampMs":1582941413000},{"description":"[c37818d](https://github.com/aracred/TheSource/commit/c37818dc54db302c1bb2bfe99312084cb6452263): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1039,"timestampMs":1583125241000},{"description":"[cc4e4ff](https://github.com/aracred/TheSource/commit/cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":1040,"timestampMs":1585786422000},{"description":"[cf359f5](https://github.com/aracred/TheSource/commit/cf359f56a9e7d9e380a729fe64f0fd9e06853c21): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1041,"timestampMs":1583647930000},{"description":"[cf41636](https://github.com/aracred/TheSource/commit/cf41636379acd5fb9e27af62727fdf64a111d959): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":1042,"timestampMs":1583388676000},{"description":"[d455555](https://github.com/aracred/TheSource/commit/d4555554d347b2385ac96a530f5628491c2c724c): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1043,"timestampMs":1585202969000},{"description":"[d593b12](https://github.com/aracred/TheSource/commit/d593b126af5ccde32fe610fbc399f9233c4fcdcf): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1044,"timestampMs":1583021626000},{"description":"[d7e5763](https://github.com/aracred/TheSource/commit/d7e5763c37582067d930e53718273eef67997db7): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1045,"timestampMs":1583885686000},{"description":"[d8034c1](https://github.com/aracred/TheSource/commit/d8034c1a997a6f3762eb64abefd3983ca5c17b27): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":1046,"timestampMs":1584317721000},{"description":"[d9b40e0](https://github.com/aracred/TheSource/commit/d9b40e071c2f216b8fb4cebce788ec1bf892ac7c): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1047,"timestampMs":1584792698000},{"description":"[d0cc40b](https://github.com/aracred/TheSource/commit/d0cc40b28ca9129e733107d99730dfbcd9449273): Update generate-cred.yml","index":1048,"timestampMs":1586103656000},{"description":"[d210d6f](https://github.com/aracred/TheSource/commit/d210d6f387860b4736193624125ec5e1b8f5c88a): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":1049,"timestampMs":1584447107000},{"description":"[def7f01](https://github.com/aracred/TheSource/commit/def7f01015008f1aefda848d93661555c086231a): Add preview data","index":1050,"timestampMs":1581898638000},{"description":"[df39053](https://github.com/aracred/TheSource/commit/df39053f37bf93823cd4364b819ca1289e4481b1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1051,"timestampMs":1585181592000},{"description":"[df9f742](https://github.com/aracred/TheSource/commit/df9f7423f0e18a57835324b459fe243d3f3e55ab): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1052,"timestampMs":1586088576000},{"description":"[e5c721b](https://github.com/aracred/TheSource/commit/e5c721ba787d25a591d470c5ba11d9bd41e1797f): Merge pull request #19 from mzargham/master","index":1053,"timestampMs":1583124164000},{"description":"[e63ec70](https://github.com/aracred/TheSource/commit/e63ec70c3b75de539e86faf77c9e44f83753cb1f): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":1054,"timestampMs":1585635193000},{"description":"[e00d2fb](https://github.com/aracred/TheSource/commit/e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1055,"timestampMs":1583545284000},{"description":"[e0cd354](https://github.com/aracred/TheSource/commit/e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f): Fix extra comma","index":1056,"timestampMs":1582941750000},{"description":"[ea5b35e](https://github.com/aracred/TheSource/commit/ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2): Update project.json","index":1057,"timestampMs":1583592448000},{"description":"[ebfca23](https://github.com/aracred/TheSource/commit/ebfca230987726fb6d0c74cdba1e7346b5d08345): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1058,"timestampMs":1583626507000},{"description":"[ec5436b](https://github.com/aracred/TheSource/commit/ec5436b68ec36cea41f923ae2d95841b7dbe678a): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1059,"timestampMs":1585721531000},{"description":"[eca1c8e](https://github.com/aracred/TheSource/commit/eca1c8e4fb9897f86e7192f1741d00509707a42d): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1060,"timestampMs":1583151030000},{"description":"[ee30ad2](https://github.com/aracred/TheSource/commit/ee30ad273845bf58d551566ffe5c4e87e98c07c2): Trigger update","index":1061,"timestampMs":1585365677000},{"description":"[ef1a4e1](https://github.com/aracred/TheSource/commit/ef1a4e1d3bf70f9daccebdf3028ea8f476c26899): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1062,"timestampMs":1583518372000},{"description":"[f6a88b6](https://github.com/aracred/TheSource/commit/f6a88b69728fa2cbc9304a9d3a6193afa9aca17c): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1063,"timestampMs":1585419164000},{"description":"[f78660c](https://github.com/aracred/TheSource/commit/f78660ce09132d6127ab960a0fdb9f19f2b76893): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1064,"timestampMs":1584036899000},{"description":"[f79294b](https://github.com/aracred/TheSource/commit/f79294b14e900ca927b3e9e5cf51972814cd2c50): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1065,"timestampMs":1583323781000},{"description":"[f7ecdc6](https://github.com/aracred/TheSource/commit/f7ecdc6617ce77574676654a84f58313ad9f84a8): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1066,"timestampMs":1583907011000},{"description":"[f819ec5](https://github.com/aracred/TheSource/commit/f819ec520e754c4adb46d13d0126fa48f03b0dac): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1067,"timestampMs":1585361881000},{"description":"[f96bc3f](https://github.com/aracred/TheSource/commit/f96bc3f66106ed4341d674b5a37a1fce8035c922): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1068,"timestampMs":1583475056000},{"description":"[f1b1a34](https://github.com/aracred/TheSource/commit/f1b1a348514a8d88750c2774a379a00b85ea0810): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":1069,"timestampMs":1584295996000},{"description":"[f3d076f](https://github.com/aracred/TheSource/commit/f3d076f67797f6c3491e046a5dcdce0372890de5): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":1070,"timestampMs":1585138236000},{"description":"[fe33dab](https://github.com/aracred/TheSource/commit/fe33dab74a05f43d1e24044dc4413ff0e72aad50): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":1071,"timestampMs":1584641608000},{"description":"[0470e9f](https://github.com/aracred/AraCred/commit/0470e9f5c13a7c36b0934ca935365649872ad849): Add jest, documentation","index":1072,"timestampMs":1586425053000},{"description":"[06e6bf0](https://github.com/aracred/AraCred/commit/06e6bf089f69a108cae63a413e3a3d0a6c0d40fa): Create run_cli.yml","index":1073,"timestampMs":1586114858000},{"description":"[0764e2b](https://github.com/aracred/AraCred/commit/0764e2b7701a6cd6076622bce90c3d3030e7d08a): Merge branch 'mainnet-test'","index":1074,"timestampMs":1586658939000},{"description":"[08aa4aa](https://github.com/aracred/AraCred/commit/08aa4aa95a936798295f7d02cfa54c1441ae7aa3): add .gitignore","index":1075,"timestampMs":1586425366000},{"description":"[0097f20](https://github.com/aracred/AraCred/commit/0097f202e6f5d2c003e2ce168d124909f19458d7): Update Address book","index":1076,"timestampMs":1586377189000},{"description":"[00ab698](https://github.com/aracred/AraCred/commit/00ab6982140ebd949db7457512b233b7aa3afa1f): Fix settings","index":1077,"timestampMs":1586109857000},{"description":"[02f4d36](https://github.com/aracred/AraCred/commit/02f4d3623ae4e89fa6232477d97fe32b27aae7c5): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1078,"timestampMs":1586283283000},{"description":"[0326166](https://github.com/aracred/AraCred/commit/0326166091410578eaf7c25d9f6736cd4533f9cd): test setupAragon","index":1079,"timestampMs":1586439223000},{"description":"[03604a7](https://github.com/aracred/AraCred/commit/03604a7d8f9a6f488f7990309e70066a1260483d): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1080,"timestampMs":1586434473000},{"description":"[0388fb0](https://github.com/aracred/AraCred/commit/0388fb0219a7460e6726b34835c670986be5406c): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1081,"timestampMs":1586757849000},{"description":"[03e1112](https://github.com/aracred/AraCred/commit/03e1112bf4099083d81386043099e4876599d53d): setup husky","index":1082,"timestampMs":1586430244000},{"description":"[0a23c18](https://github.com/aracred/AraCred/commit/0a23c189b1d776985b6759cfb65b75a5b0dbe388): setup husky","index":1083,"timestampMs":1586430128000},{"description":"[0b35141](https://github.com/aracred/AraCred/commit/0b351412cfa92c8edabea1449da16a7a2128c81f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1084,"timestampMs":1586822727000},{"description":"[0cc15c5](https://github.com/aracred/AraCred/commit/0cc15c54f0ac08b76b0b20231523123c68e787cc): fix","index":1085,"timestampMs":1586638157000},{"description":"[0e9dbd8](https://github.com/aracred/AraCred/commit/0e9dbd8406b256f6b5e553d6769683a55909ab84): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1086,"timestampMs":1586462221000},{"description":"[16309da](https://github.com/aracred/AraCred/commit/16309da6c786efe9dc1f745c61ad4f2c2ad61d76): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1087,"timestampMs":1586369661000},{"description":"[1798e29](https://github.com/aracred/AraCred/commit/1798e29eb0b6d8dd5e4f14ffcc2f25644e736762): Update README.md","index":1088,"timestampMs":1586535321000},{"description":"[17ec0dc](https://github.com/aracred/AraCred/commit/17ec0dcf84726a4da739f0cbe36cd1908477e4cb): refactor setupAragon","index":1089,"timestampMs":1586436690000},{"description":"[1834ed5](https://github.com/aracred/AraCred/commit/1834ed59b6a58195aef57af492f3122a94aac239): update readme","index":1090,"timestampMs":1586760993000},{"description":"[191e73e](https://github.com/aracred/AraCred/commit/191e73e429ab193e59189f44b363d69613ee0315): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1091,"timestampMs":1586607165000},{"description":"[11a45eb](https://github.com/aracred/AraCred/commit/11a45eb188a756e31f2ece0afcf10afb5e30112f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1092,"timestampMs":1586887494000},{"description":"[12f5e68](https://github.com/aracred/AraCred/commit/12f5e68f287c17d2e7fbe424b996b269c74c0e8f): Reorg folder structre","index":1093,"timestampMs":1586425839000},{"description":"[1ea710e](https://github.com/aracred/AraCred/commit/1ea710efed95a3abd2613ee16b3aaea6110def50): session 3 photos","index":1094,"timestampMs":1586994934000},{"description":"[1eea54a](https://github.com/aracred/AraCred/commit/1eea54a1361eb6aedba221f65f86205866b97322): Create updateDiscord.yml","index":1095,"timestampMs":1586475320000},{"description":"[275d163](https://github.com/aracred/AraCred/commit/275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1096,"timestampMs":1586211419000},{"description":"[29d9a8e](https://github.com/aracred/AraCred/commit/29d9a8ef0d738d8b1bdae873c892af41858cda0a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1097,"timestampMs":1586635242000},{"description":"[20796df](https://github.com/aracred/AraCred/commit/20796df7555b0c191dd575542000d50d98c034cc): log deleted?","index":1098,"timestampMs":1586636313000},{"description":"[21df431](https://github.com/aracred/AraCred/commit/21df4319db26f8c3ed6eed74b2076026cad5c070): Update project.json","index":1099,"timestampMs":1586972808000},{"description":"[221754a](https://github.com/aracred/AraCred/commit/221754a5dbe3ebdf6a0fc5080de82669f5476b83): refactor setupAragon","index":1100,"timestampMs":1586436960000},{"description":"[234d3b0](https://github.com/aracred/AraCred/commit/234d3b02b5491114f1257e23fcaf2bf880eee376): :((","index":1101,"timestampMs":1586645851000},{"description":"[2aaae9c](https://github.com/aracred/AraCred/commit/2aaae9c777eb4801ef65192afd1c7553ceb74012): Update run_cli.yml","index":1102,"timestampMs":1586114997000},{"description":"[2b67c25](https://github.com/aracred/AraCred/commit/2b67c252af08687a1c02e924757e383977d4d4d7): refactor setupAragon","index":1103,"timestampMs":1586436983000},{"description":"[2bd813f](https://github.com/aracred/AraCred/commit/2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6): Install aracred + aragon action","index":1104,"timestampMs":1586439726000},{"description":"[2d290b2](https://github.com/aracred/AraCred/commit/2d290b2288a14d494f0fc18bfac882ef6c617e6a): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1105,"timestampMs":1586844255000},{"description":"[36ed95d](https://github.com/aracred/AraCred/commit/36ed95ddf8349ba3d557bfbbef066b2559b432a3): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1106,"timestampMs":1586718195000},{"description":"[39dae46](https://github.com/aracred/AraCred/commit/39dae46151fcde41ea0b062ae95fde4109142e5b): Update addressbook.json","index":1107,"timestampMs":1587058277000},{"description":"[30ab2ab](https://github.com/aracred/AraCred/commit/30ab2ab8774f20e9541f08c657e6ec9ab08504f0): Update project.json","index":1108,"timestampMs":1587049226000},{"description":"[30ebf64](https://github.com/aracred/AraCred/commit/30ebf64342f800953d06f2b0ed888ac8d4495f69): remove .json linting","index":1109,"timestampMs":1586430447000},{"description":"[314f037](https://github.com/aracred/AraCred/commit/314f037efaaf34002934fac72ee5b8c34e633117): test setupAragon","index":1110,"timestampMs":1586438375000},{"description":"[325b973](https://github.com/aracred/AraCred/commit/325b973a78cbe14ff3f5e9766faee18e85d5a408): Update project.json","index":1111,"timestampMs":1586710226000},{"description":"[32d6fc7](https://github.com/aracred/AraCred/commit/32d6fc725adb844ed330499482232f2876de58d1): Fix settings","index":1112,"timestampMs":1586110667000},{"description":"[336edf6](https://github.com/aracred/AraCred/commit/336edf6f3e0b661f947432cf39bbd9d26299f29d): Update project.json","index":1113,"timestampMs":1586718047000},{"description":"[3a5b333](https://github.com/aracred/AraCred/commit/3a5b33363a28c7bf7bc62329095b08110996d659): test setupAragon","index":1114,"timestampMs":1586439440000},{"description":"[3a649e8](https://github.com/aracred/AraCred/commit/3a649e81c448757920b8c8bdcf8fc392f84d3580): We Have Liftoff","index":1115,"timestampMs":1586658493000},{"description":"[3c52923](https://github.com/aracred/AraCred/commit/3c52923940969e0594c9693d27e80bf81e49bdfb): Automated deployment to update cred in /github/workspace/docs 2020-04-06","index":1116,"timestampMs":1586211419000},{"description":"[3c716ca](https://github.com/aracred/AraCred/commit/3c716ca39a305e5d8a9b2a5aa466039466d05a38): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1117,"timestampMs":1586952325000},{"description":"[3d84fcf](https://github.com/aracred/AraCred/commit/3d84fcf16de8bdd78f1098650394a66a29709a40): Update run_cli.yml","index":1118,"timestampMs":1586641745000},{"description":"[3e37600](https://github.com/aracred/AraCred/commit/3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1119,"timestampMs":1586704923000},{"description":"[4474d1b](https://github.com/aracred/AraCred/commit/4474d1b88abf39aa94df664898e4832fc05e52cc): Update README.md","index":1120,"timestampMs":1586796945000},{"description":"[4477235](https://github.com/aracred/AraCred/commit/44772353f8d950226d909b12778cbed4df3ed866): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1121,"timestampMs":1586348063000},{"description":"[44ea41a](https://github.com/aracred/AraCred/commit/44ea41a64de0f121ff05a4c07c6bb51e35eb5035): add readme","index":1122,"timestampMs":1586446367000},{"description":"[45d3445](https://github.com/aracred/AraCred/commit/45d3445cd814d4666f19f4b1b480984f1c0381eb): Update addressbook.json","index":1123,"timestampMs":1586978574000},{"description":"[45f25ea](https://github.com/aracred/AraCred/commit/45f25ea4eb646427c06e58b7e4ce2c4cd385c329): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1124,"timestampMs":1586535464000},{"description":"[47d595c](https://github.com/aracred/AraCred/commit/47d595cee7fd82afdb8666263baa96555bec7b30): move to new repo","index":1125,"timestampMs":1586107822000},{"description":"[40036a3](https://github.com/aracred/AraCred/commit/40036a386b07c41b89e594736dadb6134cf182de): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1126,"timestampMs":1586498582000},{"description":"[4a623fb](https://github.com/aracred/AraCred/commit/4a623fbc3735c9a32d10199880214cc79caa4004): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1127,"timestampMs":1586712241000},{"description":"[4acea81](https://github.com/aracred/AraCred/commit/4acea81dd65135e7afd23cd4c5484dae44bcb324): Fix settings","index":1128,"timestampMs":1586111848000},{"description":"[4dc6dc2](https://github.com/aracred/AraCred/commit/4dc6dc24deb0f914eabc017a1e488a4d62f1a893): Merge pull request #11 from aracred/sc-patch","index":1129,"timestampMs":1586450203000},{"description":"[4ec6bdc](https://github.com/aracred/AraCred/commit/4ec6bdc6a120e123052ebf690ddf6f32b9c35722): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1130,"timestampMs":1586649806000},{"description":"[5409041](https://github.com/aracred/AraCred/commit/54090419b371cac747ca19327d54c4cddb375f05): Update devops.yml","index":1131,"timestampMs":1586208161000},{"description":"[554a82b](https://github.com/aracred/AraCred/commit/554a82bc05cb713e92e8b3523b521078daf829f0): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1132,"timestampMs":1586779463000},{"description":"[56e1450](https://github.com/aracred/AraCred/commit/56e1450abd29457d3aefbdaef3e38562727b7628): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1133,"timestampMs":1586477016000},{"description":"[5023eee](https://github.com/aracred/AraCred/commit/5023eee71c9c3f2f16de1b22e9f37fda26c2f023): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1134,"timestampMs":1586995532000},{"description":"[52c6264](https://github.com/aracred/AraCred/commit/52c6264dbafc69c14a2381a41075ca4fbb020653): remove recursive call to grain","index":1135,"timestampMs":1586608102000},{"description":"[53b6f1b](https://github.com/aracred/AraCred/commit/53b6f1b980b797f92d59fc4912b2fe6e999f774a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1136,"timestampMs":1586628192000},{"description":"[53d9b62](https://github.com/aracred/AraCred/commit/53d9b62862d0e8ef597dbffcbd0da8bcd12100cc): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1137,"timestampMs":1586736284000},{"description":"[5ae6db7](https://github.com/aracred/AraCred/commit/5ae6db74ec638222cb60957c3105e15de7f84457): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1138,"timestampMs":1586712506000},{"description":"[5d168f1](https://github.com/aracred/AraCred/commit/5d168f1298b62e831159fc316e394491b8386aa8): test setupAragon","index":1139,"timestampMs":1586438648000},{"description":"[5dd05e3](https://github.com/aracred/AraCred/commit/5dd05e3605e9940f65f2059e8c4286077a6439db): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1140,"timestampMs":1586556340000},{"description":"[5f68901](https://github.com/aracred/AraCred/commit/5f689010f6e0a438513b7e44ef37ae12d59ddf91): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1141,"timestampMs":1586412877000},{"description":"[5fc99f0](https://github.com/aracred/AraCred/commit/5fc99f0926a38140bc41ab5322e28e43f5b50969): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1142,"timestampMs":1586520161000},{"description":"[66f2702](https://github.com/aracred/AraCred/commit/66f27020fa0bd12851a0de1b206abec8c0b5e55d): merge","index":1143,"timestampMs":1586447296000},{"description":"[67b5858](https://github.com/aracred/AraCred/commit/67b58587f295e53b396fed2b68ab34032fd86420): Split yml files","index":1144,"timestampMs":1586262990000},{"description":"[68038d1](https://github.com/aracred/AraCred/commit/68038d157338b257f25c21b69def40c3eed1e43e): added SourceCred actions","index":1145,"timestampMs":1586108344000},{"description":"[603c5f7](https://github.com/aracred/AraCred/commit/603c5f7b7e2afb54619ebe705b969a1acb102bf6): Update project.json","index":1146,"timestampMs":1586822144000},{"description":"[6044da7](https://github.com/aracred/AraCred/commit/6044da77d77cd5f0bf782fd47faf7813cb9a00d7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1147,"timestampMs":1586426011000},{"description":"[604ba87](https://github.com/aracred/AraCred/commit/604ba8761cdddc84bfa66485fe367495e5c8a65a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1148,"timestampMs":1586619438000},{"description":"[60df4a2](https://github.com/aracred/AraCred/commit/60df4a2278ec3dd51317900064eb3061be31c3b7): Update project.json","index":1149,"timestampMs":1586712379000},{"description":"[62d4724](https://github.com/aracred/AraCred/commit/62d47242332f4e1d86f7d7ae460f6dc998344aa2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1150,"timestampMs":1586631415000},{"description":"[6bc1161](https://github.com/aracred/AraCred/commit/6bc1161d99c436a23c35f5477862677701ef72e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1151,"timestampMs":1586629712000},{"description":"[6f1a396](https://github.com/aracred/AraCred/commit/6f1a3968daa1e3d2bd607f81a599ac5ebf73f717): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1152,"timestampMs":1586263834000},{"description":"[6f4ff7a](https://github.com/aracred/AraCred/commit/6f4ff7a024df84c214317b9c950d77f3ae3c4f57): Merge pull request #20 from aracred/add-evalir-aracred","index":1153,"timestampMs":1586810697000},{"description":"[6fb58d2](https://github.com/aracred/AraCred/commit/6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1154,"timestampMs":1586541781000},{"description":"[753c27e](https://github.com/aracred/AraCred/commit/753c27ee7d264f00c566fe6f56722528f1028704): switch to rinkeby","index":1155,"timestampMs":1586630579000},{"description":"[7544c9c](https://github.com/aracred/AraCred/commit/7544c9c062ca14c025caa6d2d859e346287f5e06): logging","index":1156,"timestampMs":1586640176000},{"description":"[758f9eb](https://github.com/aracred/AraCred/commit/758f9ebb14e2687de4f888bc94f872a610174a9f): Add Evalir to Aracred","index":1157,"timestampMs":1586802604000},{"description":"[75ebd02](https://github.com/aracred/AraCred/commit/75ebd0228f654f094c750b9885c5fe5aceb72486): Update project.json","index":1158,"timestampMs":1586972788000},{"description":"[777514f](https://github.com/aracred/AraCred/commit/777514f100a7dc7df22a9a3f2c57f6516e8efc44): fix run_sc .yml fies","index":1159,"timestampMs":1586264143000},{"description":"[78714ca](https://github.com/aracred/AraCred/commit/78714ca856356791aae2576d01eb1c27fc7e4c3f): fix CLI action, disable SC run on push","index":1160,"timestampMs":1586443674000},{"description":"[713acbd](https://github.com/aracred/AraCred/commit/713acbd4593a7a10b0544aaab7fc4ac05a66f9ae): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1161,"timestampMs":1586671402000},{"description":"[73505c3](https://github.com/aracred/AraCred/commit/73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1162,"timestampMs":1586265411000},{"description":"[73dbfea](https://github.com/aracred/AraCred/commit/73dbfea00d269ff953ee50c034f1c6939743a5de): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1163,"timestampMs":1586909106000},{"description":"[7a99196](https://github.com/aracred/AraCred/commit/7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1164,"timestampMs":1586456075000},{"description":"[7ad5a2a](https://github.com/aracred/AraCred/commit/7ad5a2af6206fa2c6d894364d1f7f40b55f08149): switch to rinkeby","index":1165,"timestampMs":1586629689000},{"description":"[7b20ff3](https://github.com/aracred/AraCred/commit/7b20ff37a9650a134c6f55fffd04fbdd5df83b43): Update run_cli.yml","index":1166,"timestampMs":1586642724000},{"description":"[7bdeb69](https://github.com/aracred/AraCred/commit/7bdeb692b04c1a855be5d7dda172d87caafa3f1b): Merge pull request #27 from mzargham/worksession-3-photos","index":1167,"timestampMs":1587042850000},{"description":"[7d4bf5a](https://github.com/aracred/AraCred/commit/7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf): Update run_sc.yml","index":1168,"timestampMs":1586461703000},{"description":"[7e0a5d6](https://github.com/aracred/AraCred/commit/7e0a5d65716af527389ac6bb38d14950d482e415): update .yml fies","index":1169,"timestampMs":1586264058000},{"description":"[7ea5916](https://github.com/aracred/AraCred/commit/7ea5916ad6f9de9841f277901506ab72a39bf157): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1170,"timestampMs":1586973850000},{"description":"[7fadabe](https://github.com/aracred/AraCred/commit/7fadabe4bad18a2e7326b241c874d5efbeb6a691): Update project.json","index":1171,"timestampMs":1586208446000},{"description":"[8849eeb](https://github.com/aracred/AraCred/commit/8849eeb9b3a0677fcc53c34ec1675a0e27cf0074): Merge pull request #1 from aracred/split-config","index":1172,"timestampMs":1586264565000},{"description":"[89ed10e](https://github.com/aracred/AraCred/commit/89ed10ec9153e166a0b7275c73003fc6fd86e76e): fix run_sc.yml fies","index":1173,"timestampMs":1586264365000},{"description":"[8a584e4](https://github.com/aracred/AraCred/commit/8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1174,"timestampMs":1586634125000},{"description":"[8b44ea0](https://github.com/aracred/AraCred/commit/8b44ea06f42e6a25fc0e87bfd38c28786001969a): MAINNET","index":1175,"timestampMs":1586633972000},{"description":"[8c62624](https://github.com/aracred/AraCred/commit/8c62624a48c8a907f8b30e548abdc4e3764fb0df): switch to rinkeby","index":1176,"timestampMs":1586630527000},{"description":"[8c79753](https://github.com/aracred/AraCred/commit/8c797532d4140aa6ce0d5514cc6ca749ec6223e3): fix processGrain","index":1177,"timestampMs":1586632841000},{"description":"[8ce123a](https://github.com/aracred/AraCred/commit/8ce123a903f0035d55349e86f54eb04838bb739f): Merge branch 'tidyRepo'","index":1178,"timestampMs":1586446829000},{"description":"[8dfd165](https://github.com/aracred/AraCred/commit/8dfd165458a81f0c67969620d6ab006b7e24aef0): add github workflows","index":1179,"timestampMs":1586437704000},{"description":"[8e13f39](https://github.com/aracred/AraCred/commit/8e13f39d1372b422a914857f324ee60abd2c795a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1180,"timestampMs":1586630734000},{"description":"[8e56a3f](https://github.com/aracred/AraCred/commit/8e56a3f94f680b5419df0fbfba1e9c985a495345): :)","index":1181,"timestampMs":1586643749000},{"description":"[8e62a06](https://github.com/aracred/AraCred/commit/8e62a063ca7e54dc299eb6cabbf877a663b94c8f): Update project.json","index":1182,"timestampMs":1587058263000},{"description":"[8e80b8f](https://github.com/aracred/AraCred/commit/8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1183,"timestampMs":1586613015000},{"description":"[8fe6cb1](https://github.com/aracred/AraCred/commit/8fe6cb1f84b56fff85a3bd87661712256a6806ab): Update dao.json","index":1184,"timestampMs":1586556200000},{"description":"[96d3703](https://github.com/aracred/AraCred/commit/96d370369c4d00c35acbdbc499fed536101b6601): package.lock","index":1185,"timestampMs":1586426157000},{"description":"[971440a](https://github.com/aracred/AraCred/commit/971440a0ff594fb02bef0ed3320e9371e17bc2c3): Delete updateDiscord.yml","index":1186,"timestampMs":1586504576000},{"description":"[982a89d](https://github.com/aracred/AraCred/commit/982a89df2b5282578a7593eea49511ae803ee10b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1187,"timestampMs":1586637613000},{"description":"[90694dc](https://github.com/aracred/AraCred/commit/90694dc47c350631227c33418a773a70137d5877): Update addressbook.json","index":1188,"timestampMs":1587050798000},{"description":"[912ad7c](https://github.com/aracred/AraCred/commit/912ad7ced1c783afb97c7d9a66f7c3f5e2799312): Update project.json","index":1189,"timestampMs":1587051668000},{"description":"[9227670](https://github.com/aracred/AraCred/commit/9227670ae651f3da852b6ec3555aa15713ecce86): Merge branch 'master' of https://github.com/aracred/AraCred","index":1190,"timestampMs":1586632115000},{"description":"[937417e](https://github.com/aracred/AraCred/commit/937417e50fd087e175a28471de2176cb56ec7003): Update run_cli.yml","index":1191,"timestampMs":1586115022000},{"description":"[9fdf441](https://github.com/aracred/AraCred/commit/9fdf4415ba620e87f0c8182df47265aa34f5f8fd): test patch","index":1192,"timestampMs":1586395769000},{"description":"[a462920](https://github.com/aracred/AraCred/commit/a462920043f7ded252ca746cf21c6a3dfe91325b): Update addressbook.json","index":1193,"timestampMs":1586978547000},{"description":"[a52d247](https://github.com/aracred/AraCred/commit/a52d2478c6e23704685c324883891a25f261069f): Update project.json","index":1194,"timestampMs":1587051026000},{"description":"[a6e243f](https://github.com/aracred/AraCred/commit/a6e243fcbfe540b52551bbb50c542ad07ee92e39): setup prettier","index":1195,"timestampMs":1586428289000},{"description":"[a7ea71e](https://github.com/aracred/AraCred/commit/a7ea71e19d10841f56da13b7bd52ec3b0b2a9469): Fix?","index":1196,"timestampMs":1586635956000},{"description":"[a8419d9](https://github.com/aracred/AraCred/commit/a8419d96792a217c1bb9462dfa71c8c738a87a16): Update project.json","index":1197,"timestampMs":1586717770000},{"description":"[a04b179](https://github.com/aracred/AraCred/commit/a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19): Update addressbook.json","index":1198,"timestampMs":1586975177000},{"description":"[a04cff6](https://github.com/aracred/AraCred/commit/a04cff65d72e1b96813ce58a0122a50378ac496d): Revert \"Update README.md\"","index":1199,"timestampMs":1586566089000},{"description":"[a04fe98](https://github.com/aracred/AraCred/commit/a04fe98b80805bd1b2eafab803bc54c45c360418): add ./log","index":1200,"timestampMs":1586637453000},{"description":"[a0931cb](https://github.com/aracred/AraCred/commit/a0931cbed5f9f91298af9d27a02d69468722488b): Update project.json","index":1201,"timestampMs":1586209230000},{"description":"[a356fe3](https://github.com/aracred/AraCred/commit/a356fe37b3ee2256d529a625a42d890962870096): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1202,"timestampMs":1586606578000},{"description":"[a3a0462](https://github.com/aracred/AraCred/commit/a3a0462dc68b9d35f30abd2ce16199a9450383f4): switch to mainnet","index":1203,"timestampMs":1586619306000},{"description":"[ab8fbf7](https://github.com/aracred/AraCred/commit/ab8fbf7d53b4152b4ec97c983405cc703df3a2bd): Merge branch 'master' of https://github.com/aracred/AraCred","index":1204,"timestampMs":1586635980000},{"description":"[ace3d82](https://github.com/aracred/AraCred/commit/ace3d821833c0157e8e3f74c06951fe79cbb49e7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1205,"timestampMs":1586475455000},{"description":"[af3fc40](https://github.com/aracred/AraCred/commit/af3fc40b0b4f010f4236391bc245bab5c3fc5343): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1206,"timestampMs":1586801019000},{"description":"[b4e879f](https://github.com/aracred/AraCred/commit/b4e879fb7c6c79a659dacc784a3e2165411d7531): test transactionSettings.json","index":1207,"timestampMs":1586440952000},{"description":"[b55a7a1](https://github.com/aracred/AraCred/commit/b55a7a196b8f85817e8548bf7b9afba1341131e2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1208,"timestampMs":1586566249000},{"description":"[b5e53ec](https://github.com/aracred/AraCred/commit/b5e53ece75d30f3d379adb3a07c8cf652434e773): Update project.json","index":1209,"timestampMs":1586704728000},{"description":"[b859060](https://github.com/aracred/AraCred/commit/b85906087b6422297975a655808e1ddf998fdc8c): add .gitignore","index":1210,"timestampMs":1586425156000},{"description":"[b28ca12](https://github.com/aracred/AraCred/commit/b28ca121bfda152ce8bacc325aa7a31f9a3edb1e): Backfill worksession photos","index":1211,"timestampMs":1586810374000},{"description":"[b2ec064](https://github.com/aracred/AraCred/commit/b2ec0646a7533828b003a7cc525ac0ec48c5d9a0): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1212,"timestampMs":1586692988000},{"description":"[b344928](https://github.com/aracred/AraCred/commit/b34492813251b626e0ef02911d7a0fe28aaa2b0f): Merge pull request #21 from mzargham/worksession-photos","index":1213,"timestampMs":1586810650000},{"description":"[b3bfd81](https://github.com/aracred/AraCred/commit/b3bfd8136d25f8aacc2b9267a3700f36f366792e): MAINNET","index":1214,"timestampMs":1586633830000},{"description":"[b3f72b5](https://github.com/aracred/AraCred/commit/b3f72b5f3ed774a1891f2da1a3c1b60af9272d84): Update setupAragon.js","index":1215,"timestampMs":1586631279000},{"description":"[bab488e](https://github.com/aracred/AraCred/commit/bab488e0531a826777829e70c4cf8f620202e881): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1216,"timestampMs":1586304876000},{"description":"[bb4c806](https://github.com/aracred/AraCred/commit/bb4c80608db52c03a33b09edbf8fdbffc666c664): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1217,"timestampMs":1586659664000},{"description":"[bcc0d1e](https://github.com/aracred/AraCred/commit/bcc0d1e18f56c0ee098c7a1316afa5252c5d3392): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1218,"timestampMs":1586326476000},{"description":"[be50399](https://github.com/aracred/AraCred/commit/be503991de7a3225cfc2888ab833abfccdb1d309): test setupAragon","index":1219,"timestampMs":1586439053000},{"description":"[be5b93a](https://github.com/aracred/AraCred/commit/be5b93ae59bf65b698f6ed6301d28218c8170e91): :((","index":1220,"timestampMs":1586645068000},{"description":"[bfb1be1](https://github.com/aracred/AraCred/commit/bfb1be19201eedf6f5556b76fb3cba77b694c535): Update addressbook.json","index":1221,"timestampMs":1587051708000},{"description":"[c46d5eb](https://github.com/aracred/AraCred/commit/c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3): Update project.json","index":1222,"timestampMs":1586461592000},{"description":"[c5c9f44](https://github.com/aracred/AraCred/commit/c5c9f44334709db3c28eb81f1ee928a3823ae003): configure eslint","index":1223,"timestampMs":1586426867000},{"description":"[c676d5b](https://github.com/aracred/AraCred/commit/c676d5b790126e2af137ca1c53c8048db443a88a): merge with mainnet branch","index":1224,"timestampMs":1586659020000},{"description":"[c852446](https://github.com/aracred/AraCred/commit/c85244688604991c9ee1ae17a7bf62373a004fd1): Update project.json","index":1225,"timestampMs":1586462092000},{"description":"[c8d413c](https://github.com/aracred/AraCred/commit/c8d413c01f9aa1c9d272f96283367268ff49103f): update DAO settings","index":1226,"timestampMs":1586445094000},{"description":"[c04c305](https://github.com/aracred/AraCred/commit/c04c305dff31a60a5ea91270b07b5b46c4b734c3): mints every 24 hours","index":1227,"timestampMs":1586659508000},{"description":"[c0622fc](https://github.com/aracred/AraCred/commit/c0622fcf93369e37f99e4809cea077710b9677d9): Update project.json","index":1228,"timestampMs":1586710445000},{"description":"[c09ce59](https://github.com/aracred/AraCred/commit/c09ce59f6cb00f62380a8dca641fbd016f0d70a5): Update project.json","index":1229,"timestampMs":1586461896000},{"description":"[c0f3224](https://github.com/aracred/AraCred/commit/c0f32243cff400f34b36897db4e64d3ae2cec253): rinkeby branch","index":1230,"timestampMs":1586640763000},{"description":"[c191e57](https://github.com/aracred/AraCred/commit/c191e57f44662bcb753ec4c08a25545b0d25e284): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1231,"timestampMs":1586865848000},{"description":"[c264cfe](https://github.com/aracred/AraCred/commit/c264cfe1bc96c758079bffcd728f497d0d7c0117): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1232,"timestampMs":1587038694000},{"description":"[c34bc9c](https://github.com/aracred/AraCred/commit/c34bc9c573eacc008ca98653ddd2661f823ff9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1233,"timestampMs":1587060270000},{"description":"[ca41c37](https://github.com/aracred/AraCred/commit/ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de): add mint.js","index":1234,"timestampMs":1586442756000},{"description":"[cba7b74](https://github.com/aracred/AraCred/commit/cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b): fingers crossed","index":1235,"timestampMs":1586656761000},{"description":"[ccde11b](https://github.com/aracred/AraCred/commit/ccde11b4e85afd9685dc9f58165148861adbe59e): logging","index":1236,"timestampMs":1586639218000},{"description":"[cee0c69](https://github.com/aracred/AraCred/commit/cee0c69332f9f5481d0ae7f1dcf1a8f92f346877): add setupAragon()","index":1237,"timestampMs":1586431949000},{"description":"[d44bc4f](https://github.com/aracred/AraCred/commit/d44bc4f2e2256f0ebe1af485b047d9567583ed85): Update project.json","index":1238,"timestampMs":1586711922000},{"description":"[d56ad45](https://github.com/aracred/AraCred/commit/d56ad45d57b3ca44c6702f66dbcf349dd39a9116): Update project.json","index":1239,"timestampMs":1586712103000},{"description":"[d63265d](https://github.com/aracred/AraCred/commit/d63265d1ec1ac6d5e5d661fc137bef3bc4752020): Update project.json","index":1240,"timestampMs":1586820040000},{"description":"[d6bcaf0](https://github.com/aracred/AraCred/commit/d6bcaf0ed530067e11be1321280fc83f3a289be2): Merge pull request #7 from aracred/processScores-patch","index":1241,"timestampMs":1586425693000},{"description":"[d8288bb](https://github.com/aracred/AraCred/commit/d8288bb356551f8609c84a09886c19fb4fd673b4): Create .deleteme","index":1242,"timestampMs":1586646488000},{"description":"[d83736f](https://github.com/aracred/AraCred/commit/d83736f0f5cc5c3fc415146a5ad80145b3a565a7): Update dao.json","index":1243,"timestampMs":1586657456000},{"description":"[d01e1a1](https://github.com/aracred/AraCred/commit/d01e1a1762cde70b0fb49e82ec5432de6d691fb3): Fix settings","index":1244,"timestampMs":1586109264000},{"description":"[d130287](https://github.com/aracred/AraCred/commit/d13028772ab946a65da8787a255248337864a5ba): test patch","index":1245,"timestampMs":1586395938000},{"description":"[d219bd2](https://github.com/aracred/AraCred/commit/d219bd2f62a0ec8ac06b82daf83499442e3cb173): edit workflow name","index":1246,"timestampMs":1586443142000},{"description":"[d383b8f](https://github.com/aracred/AraCred/commit/d383b8fd2e6815eb8a5099785a7ef5c4393e531e): Update project.json","index":1247,"timestampMs":1586704788000},{"description":"[da69104](https://github.com/aracred/AraCred/commit/da69104f37bc78c1c71a34b9fafe537f875ca7dc): remove cache","index":1248,"timestampMs":1586612834000},{"description":"[da9fa8e](https://github.com/aracred/AraCred/commit/da9fa8ec523e360ace96eba7bc72bedadc69c8ac): add mint to workflow","index":1249,"timestampMs":1586443040000},{"description":"[dbb4bbb](https://github.com/aracred/AraCred/commit/dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1250,"timestampMs":1586584977000},{"description":"[dc00826](https://github.com/aracred/AraCred/commit/dc008266ba36121c746ddb6b60121b6e084d3065): Finalise setupAragon","index":1251,"timestampMs":1586439553000},{"description":"[defb8c5](https://github.com/aracred/AraCred/commit/defb8c56dbc8ed6a58674a7c569010ddc17fea0b): add sc config files","index":1252,"timestampMs":1586449851000},{"description":"[e4db1e5](https://github.com/aracred/AraCred/commit/e4db1e5c01390590a53e47424b6fc6389fbed459): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1253,"timestampMs":1586646613000},{"description":"[e5810c7](https://github.com/aracred/AraCred/commit/e5810c7e956182f58bacafd24c51f8be7e6af31f): add process grain, add DAO config file","index":1254,"timestampMs":1586440769000},{"description":"[e7d262b](https://github.com/aracred/AraCred/commit/e7d262bceecfcab743754d6d3a41fea1d74be955): Merge branch 'master' of https://github.com/aracred/AraCred","index":1255,"timestampMs":1586638167000},{"description":"[e86fcfd](https://github.com/aracred/AraCred/commit/e86fcfd2e1ddf643bc06ef0a08d439899b509c8a): fix mint.js","index":1256,"timestampMs":1586442958000},{"description":"[e8c0367](https://github.com/aracred/AraCred/commit/e8c036745f6c3d82f34e46e6f40ce520f53be1ef): make SC run","index":1257,"timestampMs":1586443278000},{"description":"[e8d2566](https://github.com/aracred/AraCred/commit/e8d2566e023a7cefb04c5157b0f85568fcb9a3c5): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1258,"timestampMs":1587017056000},{"description":"[e11bcaa](https://github.com/aracred/AraCred/commit/e11bcaa214504bd338f41f0684c387377e91d223): added weights.json","index":1259,"timestampMs":1586108556000},{"description":"[e27f889](https://github.com/aracred/AraCred/commit/e27f889ed7e899c482d528e5bafb0a950047db35): fix setup aragon","index":1260,"timestampMs":1586632045000},{"description":"[ecc49af](https://github.com/aracred/AraCred/commit/ecc49af4d29ddb86bece5cf38e3295d03d80efc8): :(","index":1261,"timestampMs":1586644275000},{"description":"[ed75cb5](https://github.com/aracred/AraCred/commit/ed75cb58e840a9712a7fe5678e0234538101824c): Add package-lock.json","index":1262,"timestampMs":1586439910000},{"description":"[ed85892](https://github.com/aracred/AraCred/commit/ed85892fe323a252ac0d44ca5ce619fe73cc8a5d): hardcode","index":1263,"timestampMs":1586635090000},{"description":"[ee805c2](https://github.com/aracred/AraCred/commit/ee805c230d58b420f39bedd6d7dc5c10c8f14856): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1264,"timestampMs":1586563402000},{"description":"[ee958e4](https://github.com/aracred/AraCred/commit/ee958e4ea4a9d7db08a45e558912449245e1f619): update readme","index":1265,"timestampMs":1586761063000},{"description":"[efe2a21](https://github.com/aracred/AraCred/commit/efe2a210242adcd52a288d57f373b09187b88c17): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1266,"timestampMs":1586714645000},{"description":"[f4379c3](https://github.com/aracred/AraCred/commit/f4379c34b30691a61e67438d4da4192f7cb18710): Update addressbook.json","index":1267,"timestampMs":1587049279000},{"description":"[f4597ea](https://github.com/aracred/AraCred/commit/f4597eaa6b0681ebfb7e32991fc295f52427d199): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1268,"timestampMs":1586630029000},{"description":"[f4b57f6](https://github.com/aracred/AraCred/commit/f4b57f657a24f0feb175f404718f49ffc506edc0): Rmove package.lock","index":1269,"timestampMs":1586425884000},{"description":"[f5b6b5b](https://github.com/aracred/AraCred/commit/f5b6b5b9b8ab493342591799369bab4473ad4bd5): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1270,"timestampMs":1586930710000},{"description":"[f748975](https://github.com/aracred/AraCred/commit/f74897580057b86bf1ec803694b2494dc5099ba4): Update project.json","index":1271,"timestampMs":1586208275000},{"description":"[f024b3a](https://github.com/aracred/AraCred/commit/f024b3aa2227eccef235a3b4d5a76e7f04cc78fc): Update run_cli.yml","index":1272,"timestampMs":1586641071000},{"description":"[f13bf3f](https://github.com/aracred/AraCred/commit/f13bf3f7a6dfeebd2725261a11357612547e0783): add badges to readme","index":1273,"timestampMs":1586446525000},{"description":"[f165058](https://github.com/aracred/AraCred/commit/f1650581495bd5ba951e6aca3adc65aa4271e7ec): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1274,"timestampMs":1586391268000},{"description":"[f3484bc](https://github.com/aracred/AraCred/commit/f3484bc0a5f204b3b6cd3159a0e3c274c2056154): new DAO /#/chicklet","index":1275,"timestampMs":1586607022000},{"description":"[f370b16](https://github.com/aracred/AraCred/commit/f370b16891f4dc805ea30ac6b5a3042c8224bb45): remove docs","index":1276,"timestampMs":1586457498000},{"description":"[fb4fcae](https://github.com/aracred/AraCred/commit/fb4fcae94286c8bcdda97e172bc867ab4e08b76c): fingers crossed","index":1277,"timestampMs":1586656082000},{"description":"[fce3339](https://github.com/aracred/AraCred/commit/fce33399d0696995385d8895995cb0fdaad56615): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1278,"timestampMs":1586504710000},{"description":"[fdaff82](https://github.com/aracred/AraCred/commit/fdaff82509a99dc7adb3d1289b2ad02a339fe19e): logging","index":1279,"timestampMs":1586639647000},{"description":"[fe865a6](https://github.com/aracred/AraCred/commit/fe865a679a723590923af6394366b58fb01c8f50): test patch","index":1280,"timestampMs":1586396173000},{"description":"[ff708c3](https://github.com/aracred/AraCred/commit/ff708c3b7352a9b659df8120351e6f1eab566a2a): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1281,"timestampMs":1586450503000},{"description":"[ffec223](https://github.com/aracred/AraCred/commit/ffec223be5fffa16d0ce2effb0aeed1b959a2532): Update README.md","index":1282,"timestampMs":1586109667000},{"description":"[07d5c9e](https://github.com/aracred/aracred-cli/commit/07d5c9eafed794bfbde34705c0232dfdbb47bd9c): Merge pull request #6 from pythonpete32/source-validation","index":1283,"timestampMs":1585184379000},{"description":"[030e8ec](https://github.com/aracred/aracred-cli/commit/030e8ecc0d83eb09cc3ac614a607eb119aab7fa3): aracli => aracred","index":1284,"timestampMs":1583868918000},{"description":"[0c32d96](https://github.com/aracred/aracred-cli/commit/0c32d96da86885a0d730f8398a23403372117d4b): start processCSV","index":1285,"timestampMs":1583846036000},{"description":"[0e6c465](https://github.com/aracred/aracred-cli/commit/0e6c46576a8feeb07054584458ebdec61fd886f3): Update README.md","index":1286,"timestampMs":1586115483000},{"description":"[17a658c](https://github.com/aracred/aracred-cli/commit/17a658ce22542db61a1bae02316d8c0e082fa52f): add github validation","index":1287,"timestampMs":1585184096000},{"description":"[1041be1](https://github.com/aracred/aracred-cli/commit/1041be12a4aee28587ede5b1a532c6595de78c70): Update README.md","index":1288,"timestampMs":1586115750000},{"description":"[135b198](https://github.com/aracred/aracred-cli/commit/135b198b82d822d1d1a15b3683da0b76487c3e6d): Small fixes","index":1289,"timestampMs":1584727008000},{"description":"[1a32526](https://github.com/aracred/aracred-cli/commit/1a3252694d719fb389bb10c0e24d727e61a3f8a3): tidy","index":1290,"timestampMs":1586119837000},{"description":"[1e08344](https://github.com/aracred/aracred-cli/commit/1e08344d06d9089d381e91e2bee0c1adf3fe3b9d): Merge branch 'master' of https://github.com/aracred/aracred-cli","index":1291,"timestampMs":1586119867000},{"description":"[32e087e](https://github.com/aracred/aracred-cli/commit/32e087e76f7e1c5911790ed64508cfb59e448369): initial commit","index":1292,"timestampMs":1583841786000},{"description":"[3ddfb88](https://github.com/aracred/aracred-cli/commit/3ddfb88738e47c20cf9ea58c2efd792aee1b6129): Saves JSON & CSV","index":1293,"timestampMs":1583855508000},{"description":"[3e76da9](https://github.com/aracred/aracred-cli/commit/3e76da91166b4e618c16fcf03a91656654793ed9): Merge pull request #3 from sembrestels/local-labels","index":1294,"timestampMs":1584736018000},{"description":"[46377a9](https://github.com/aracred/aracred-cli/commit/46377a96ccd136b5401df0ed5032a105a385dd49): Update README.md","index":1295,"timestampMs":1586115035000},{"description":"[5e8fc8e](https://github.com/aracred/aracred-cli/commit/5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7): Merge pull request #1 from burrrata/patch-1","index":1296,"timestampMs":1584727355000},{"description":"[5f858e9](https://github.com/aracred/aracred-cli/commit/5f858e9e9b52236fc3a085b38b1c7c5623dc814e): Update README.md","index":1297,"timestampMs":1586116855000},{"description":"[60eb231](https://github.com/aracred/aracred-cli/commit/60eb231938e7ad390175a13b46cf1161e23e915c): Add local labels generation feature","index":1298,"timestampMs":1584733391000},{"description":"[6cf9256](https://github.com/aracred/aracred-cli/commit/6cf92566dda9fff26663c6dfe2e3ae277ae0d908): add github workflow","index":1299,"timestampMs":1585132575000},{"description":"[7a3226b](https://github.com/aracred/aracred-cli/commit/7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f): add github entry in prompt","index":1300,"timestampMs":1585128878000},{"description":"[8b3379b](https://github.com/aracred/aracred-cli/commit/8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf): Improve readme and fix typos","index":1301,"timestampMs":1584729372000},{"description":"[93373cc](https://github.com/aracred/aracred-cli/commit/93373ccc6bf6185127f6b17ad5626cc110fe5e08): Merge pull request #4 from pythonpete32/wallaby","index":1302,"timestampMs":1585126267000},{"description":"[9adcfac](https://github.com/aracred/aracred-cli/commit/9adcfac02e9dc6203f733946b48815c16c4bda6a): Update README.md","index":1303,"timestampMs":1586115569000},{"description":"[a7eb7ab](https://github.com/aracred/aracred-cli/commit/a7eb7abbb97a3acb715b06da2a906cd6646b56bc): add willaby & jest support","index":1304,"timestampMs":1585126105000},{"description":"[a0ebe6c](https://github.com/aracred/aracred-cli/commit/a0ebe6c6c881f02ae127c92abd3795e597009031): update","index":1305,"timestampMs":1584722599000},{"description":"[a11f8d6](https://github.com/aracred/aracred-cli/commit/a11f8d670ef711b410415b8444330781522c3273): Update README.md","index":1306,"timestampMs":1586115692000},{"description":"[a39a9e3](https://github.com/aracred/aracred-cli/commit/a39a9e3d229c78b1d5215a8c6faf435a23b996ab): Update README.md","index":1307,"timestampMs":1586115737000},{"description":"[b5820a4](https://github.com/aracred/aracred-cli/commit/b5820a49d275ad3e2441dc49ba0e9c932e7e01ed): add discorse validation","index":1308,"timestampMs":1585142847000},{"description":"[b8100f7](https://github.com/aracred/aracred-cli/commit/b8100f78f6295a440d2e6a9e95a9099504c53374): Update README.md","index":1309,"timestampMs":1586115523000},{"description":"[b06798e](https://github.com/aracred/aracred-cli/commit/b06798edf2d6f86723961bdd7a387dda3eadcb00): initial commit","index":1310,"timestampMs":1583707484000},{"description":"[bc959b6](https://github.com/aracred/aracred-cli/commit/bc959b6cd0e80d193876a8edb8ff0f18142ba558): Update readme.md","index":1311,"timestampMs":1584925959000},{"description":"[d265f3f](https://github.com/aracred/aracred-cli/commit/d265f3f3a462805b6c27dc7507b15be038730a06): working","index":1312,"timestampMs":1584468261000},{"description":"[dccb0ba](https://github.com/aracred/aracred-cli/commit/dccb0bae8344da0fa4bc886fd642bd819e5ab204): Merge pull request #7 from pythonpete32/source-validation","index":1313,"timestampMs":1585184645000},{"description":"[dcba3eb](https://github.com/aracred/aracred-cli/commit/dcba3eb54f781973155ef382ed674685adb9491f): Update README.md","index":1314,"timestampMs":1586115159000},{"description":"[fd8dac9](https://github.com/aracred/aracred-cli/commit/fd8dac99c58c603001fa56c8d2dd2553db8fa6c0): Merge pull request #5 from pythonpete32/github","index":1315,"timestampMs":1585134244000},{"description":"[fdf6857](https://github.com/aracred/aracred-cli/commit/fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2): Merge pull request #2 from sembrestels/small-fix","index":1316,"timestampMs":1584727333000},{"description":"[#12](https://github.com/aracred/AraCred/issues/12): Setting up a Discord server with SourceCred and GitHub actions","index":1317,"timestampMs":1586638125000},{"description":"[#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":1318,"timestampMs":1586704018000},{"description":"[#15](https://github.com/aracred/AraCred/issues/15): AraCred Deployment Automation","index":1319,"timestampMs":1586705495000},{"description":"[#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":1320,"timestampMs":1586705553000},{"description":"[#17](https://github.com/aracred/AraCred/issues/17): AraCred Pilot Projects","index":1321,"timestampMs":1586705865000},{"description":"[#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":1322,"timestampMs":1586712839000},{"description":"[#19](https://github.com/aracred/AraCred/issues/19): npx create-aracred","index":1323,"timestampMs":1586768126000},{"description":"[#2](https://github.com/aracred/AraCred/issues/2): re write `processScores.js`","index":1324,"timestampMs":1586269776000},{"description":"[#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":1325,"timestampMs":1586819336000},{"description":"[#23](https://github.com/aracred/AraCred/issues/23): AraCred Default Periods","index":1326,"timestampMs":1586821830000},{"description":"[#24](https://github.com/aracred/AraCred/issues/24): CredRank White/Black Lists","index":1327,"timestampMs":1586823283000},{"description":"[#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":1328,"timestampMs":1586858542000},{"description":"[#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":1329,"timestampMs":1586921943000},{"description":"[#3](https://github.com/aracred/AraCred/issues/3): Pass private key as GitHub secret","index":1330,"timestampMs":1586390052000},{"description":"[#4](https://github.com/aracred/AraCred/issues/4): Tidy Repo","index":1331,"timestampMs":1586390446000},{"description":"[#5](https://github.com/aracred/AraCred/issues/5): Add config file for DAO","index":1332,"timestampMs":1586390871000},{"description":"[#6](https://github.com/aracred/AraCred/issues/6): Create unit tests for `src/processGrain()`","index":1333,"timestampMs":1586396494000},{"description":"[#8](https://github.com/aracred/AraCred/issues/8): Write `setupAragon.test.js`","index":1334,"timestampMs":1586435403000},{"description":"[#9](https://github.com/aracred/AraCred/issues/9): Configure SC to save to config file","index":1335,"timestampMs":1586440155000},{"description":"[#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":1336,"timestampMs":1586104764000},{"description":"[#1](https://github.com/aracred/aracred-cli/issues/1): AraCred Manual Mode Guide","index":1337,"timestampMs":1586116752000},{"description":"[#1](https://github.com/aracred/bot/issues/1): SourceCredified AraCred 1UPs 🍄","index":1338,"timestampMs":1586917207000},{"description":"[#2](https://github.com/aracred/bot/issues/2): Parser: namespace bot commands","index":1339,"timestampMs":1586934042000},{"description":"[#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":1340,"timestampMs":1586934224000},{"description":"[#5](https://github.com/aracred/bot/issues/5): Validation: Properly check addresses before submitting them","index":1341,"timestampMs":1586990170000},{"description":"[#6](https://github.com/aracred/bot/issues/6): Onboarding flow: Make bot conversational","index":1342,"timestampMs":1586990449000},{"description":"[#7](https://github.com/aracred/bot/issues/7): Bot initialization: Add initialization and validation flow for startup","index":1343,"timestampMs":1586990584000},{"description":"[#1](https://github.com/aracred/comms/issues/1): AraCred Overview Blog Post","index":1344,"timestampMs":1586709265000},{"description":"[#1](https://github.com/aracred/leaderboard/issues/1): New Leaderboard UI","index":1345,"timestampMs":1586706267000},{"description":"[#2](https://github.com/aracred/leaderboard/issues/2): Leaderboard Bot","index":1346,"timestampMs":1586706318000},{"description":"[#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":1347,"timestampMs":1586666816000},{"description":"[#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":1348,"timestampMs":1586666998000},{"description":"[#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":1349,"timestampMs":1586705051000},{"description":"[#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":1350,"timestampMs":1586709014000},{"description":"[#5](https://github.com/aracred/onboarding/issues/5): Resolve app addresses from DAO name in dao.json","index":1351,"timestampMs":1586772477000},{"description":"[#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":1352,"timestampMs":1586772739000},{"description":"[#10](https://github.com/aracred/website/issues/10): Define AraCred Market Mechanics","index":1353,"timestampMs":1586705290000},{"description":"[#11](https://github.com/aracred/website/issues/11): Fix Spelling Errors","index":1354,"timestampMs":1586712148000},{"description":"[#2](https://github.com/aracred/website/issues/2): Docusaurus Deployment Tips","index":1355,"timestampMs":1586571331000},{"description":"[#7](https://github.com/aracred/website/issues/7): AraCred Market Simulation","index":1356,"timestampMs":1586662991000},{"description":"[#1](https://github.com/aracred/AraCred/pull/1): Split config","index":1357,"timestampMs":1586264552000},{"description":"[#10](https://github.com/aracred/AraCred/pull/10): Close a bunch of issues","index":1358,"timestampMs":1586446688000},{"description":"[#11](https://github.com/aracred/AraCred/pull/11): add sc config files","index":1359,"timestampMs":1586449916000},{"description":"[#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1360,"timestampMs":1586658580000},{"description":"[#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":1361,"timestampMs":1586802611000},{"description":"[#21](https://github.com/aracred/AraCred/pull/21): Backfill worksession photos","index":1362,"timestampMs":1586810530000},{"description":"[#27](https://github.com/aracred/AraCred/pull/27): session 3 photos","index":1363,"timestampMs":1586995113000},{"description":"[#7](https://github.com/aracred/AraCred/pull/7): Process scores patch","index":1364,"timestampMs":1586425681000},{"description":"[#1](https://github.com/aracred/TheSource/pull/1): Update generate-cred.yml","index":1365,"timestampMs":1586103666000},{"description":"[#2](https://github.com/aracred/TheSource/pull/2): Update generate-cred.yml","index":1366,"timestampMs":1586104083000},{"description":"[#4](https://github.com/aracred/bot/pull/4): DevOps: Add monitoring logs to commands","index":1367,"timestampMs":1586970997000},{"description":"[#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1368,"timestampMs":1587070982000},{"description":"[#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":1369,"timestampMs":1587079858000},{"description":"[#1](https://github.com/aracred/website/pull/1): starting to docusaurus","index":1370,"timestampMs":1586566012000},{"description":"[#12](https://github.com/aracred/website/pull/12): Fix diagram url on \"Token Minting and Supply\" page","index":1371,"timestampMs":1586717760000},{"description":"[#13](https://github.com/aracred/website/pull/13): Docs2","index":1372,"timestampMs":1586727817000},{"description":"[#14](https://github.com/aracred/website/pull/14): Docs2","index":1373,"timestampMs":1586797004000},{"description":"[#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1374,"timestampMs":1586914696000},{"description":"[#16](https://github.com/aracred/website/pull/16): PageRank link","index":1375,"timestampMs":1586987888000},{"description":"[#3](https://github.com/aracred/website/pull/3): didn't actually add users section","index":1376,"timestampMs":1586633970000},{"description":"[#4](https://github.com/aracred/website/pull/4): Docs2","index":1377,"timestampMs":1586645179000},{"description":"[#5](https://github.com/aracred/website/pull/5): Docs2","index":1378,"timestampMs":1586654103000},{"description":"[#6](https://github.com/aracred/website/pull/6): before adding live code plugin","index":1379,"timestampMs":1586656931000},{"description":"[#8](https://github.com/aracred/website/pull/8): Docs2","index":1380,"timestampMs":1586663009000},{"description":"[#9](https://github.com/aracred/website/pull/9): Docs2","index":1381,"timestampMs":1586664552000},{"description":"[aracred/AraCred](https://github.com/aracred/AraCred)","index":1382,"timestampMs":1586107856000},{"description":"[aracred/TheSource](https://github.com/aracred/TheSource)","index":1383,"timestampMs":1586103580000},{"description":"[aracred/aracred-cli](https://github.com/aracred/aracred-cli)","index":1384,"timestampMs":1586112376000},{"description":"[aracred/bot](https://github.com/aracred/bot)","index":1385,"timestampMs":1586801046000},{"description":"[aracred/comms](https://github.com/aracred/comms)","index":1386,"timestampMs":1586709194000},{"description":"[aracred/governance](https://github.com/aracred/governance)","index":1387,"timestampMs":1586709960000},{"description":"[aracred/leaderboard](https://github.com/aracred/leaderboard)","index":1388,"timestampMs":1586706187000},{"description":"[aracred/onboarding](https://github.com/aracred/onboarding)","index":1389,"timestampMs":1586666527000},{"description":"[aracred/website](https://github.com/aracred/website)","index":1390,"timestampMs":1586103440000},{"description":"[review](https://github.com/aracred/AraCred/pull/13#pullrequestreview-391815975) on [#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1391,"timestampMs":1586658808000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1392,"timestampMs":1587071400000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395035075) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1393,"timestampMs":1587075078000},{"description":"[review](https://github.com/aracred/website/pull/15#pullrequestreview-393444362) on [#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1394,"timestampMs":1586924060000},{"description":"[@AlexMasmej](https://github.com/AlexMasmej)","index":1395,"timestampMs":null},{"description":"[@Beanow](https://github.com/Beanow)","index":1396,"timestampMs":null},{"description":"[@Evalir](https://github.com/Evalir)","index":1397,"timestampMs":null},{"description":"[@c0mput3rxz](https://github.com/c0mput3rxz)","index":1398,"timestampMs":null},{"description":"[@vntrp](https://github.com/vntrp)","index":1399,"timestampMs":null},{"description":"@0xGabi","index":1400,"timestampMs":null},{"description":"@Aaron","index":1401,"timestampMs":null},{"description":"@burrrata","index":1402,"timestampMs":null},{"description":"@crisorg","index":1403,"timestampMs":null},{"description":"@cslarson","index":1404,"timestampMs":null},{"description":"@dandelion","index":1405,"timestampMs":null},{"description":"@evalir","index":1406,"timestampMs":null},{"description":"@fabriziovigevani","index":1407,"timestampMs":null},{"description":"@fioreb","index":1408,"timestampMs":null},{"description":"@hammadj","index":1409,"timestampMs":null},{"description":"@li","index":1410,"timestampMs":null},{"description":"@lkngtn","index":1411,"timestampMs":null},{"description":"@mzargham","index":1412,"timestampMs":null},{"description":"@onbjerg","index":1413,"timestampMs":null},{"description":"@rperez","index":1414,"timestampMs":null},{"description":"@sembrestels","index":1415,"timestampMs":null},{"description":"@willjgriff","index":1416,"timestampMs":null}],"sortedNodeAddresses":[["sourcecred","discord","MEMBER","bot","699326460120530944"],["sourcecred","discord","MEMBER","user","143776454050709505"],["sourcecred","discord","MEMBER","user","199630270285086720"],["sourcecred","discord","MEMBER","user","208321561982271489"],["sourcecred","discord","MEMBER","user","291388682710024192"],["sourcecred","discord","MEMBER","user","333143183355543552"],["sourcecred","discord","MEMBER","user","371754999304290304"],["sourcecred","discord","MEMBER","user","440281764204642314"],["sourcecred","discord","MEMBER","user","464169801036726292"],["sourcecred","discord","MEMBER","user","505789102222737420"],["sourcecred","discord","MEMBER","user","537858848912834561"],["sourcecred","discord","MEMBER","user","633708951447535616"],["sourcecred","discord","MEMBER","user","665203331639148553"],["sourcecred","discord","MEMBER","user","683892894767251489"],["sourcecred","discord","MESSAGE","695344752031432766","695669843034243134"],["sourcecred","discord","MESSAGE","695344752031432766","696451005914546256"],["sourcecred","discord","MESSAGE","695344752031432766","696454968831508630"],["sourcecred","discord","MESSAGE","695344752031432766","696455224532926464"],["sourcecred","discord","MESSAGE","695344752031432766","696609260196593664"],["sourcecred","discord","MESSAGE","695344752031432766","696708274682069062"],["sourcecred","discord","MESSAGE","695344752031432766","696730540039995493"],["sourcecred","discord","MESSAGE","695344752031432766","696740396331696198"],["sourcecred","discord","MESSAGE","695344752031432766","696769305131614260"],["sourcecred","discord","MESSAGE","695344752031432766","696853096441184326"],["sourcecred","discord","MESSAGE","695344752031432766","698673271729553469"],["sourcecred","discord","MESSAGE","695344752031432766","698691171811328080"],["sourcecred","discord","MESSAGE","695344752031432766","698710294427467857"],["sourcecred","discord","MESSAGE","695344752031432766","698710365046833192"],["sourcecred","discord","MESSAGE","695344752031432766","698799127244308550"],["sourcecred","discord","MESSAGE","695344752031432766","698897288373993508"],["sourcecred","discord","MESSAGE","695344752031432766","698919569078878289"],["sourcecred","discord","MESSAGE","695344752031432766","698921167011971168"],["sourcecred","discord","MESSAGE","695344752031432766","698921390845198426"],["sourcecred","discord","MESSAGE","695344752031432766","698932174396850236"],["sourcecred","discord","MESSAGE","695344752031432766","698935929942966332"],["sourcecred","discord","MESSAGE","695344752031432766","698941350531301477"],["sourcecred","discord","MESSAGE","695344752031432766","698946297012420619"],["sourcecred","discord","MESSAGE","695344752031432766","698965088530595990"],["sourcecred","discord","MESSAGE","695344752031432766","698965418370400296"],["sourcecred","discord","MESSAGE","695344752031432766","698968459890917436"],["sourcecred","discord","MESSAGE","695344752031432766","698968989878976612"],["sourcecred","discord","MESSAGE","695344752031432766","698969370533298296"],["sourcecred","discord","MESSAGE","695344752031432766","698969730580742174"],["sourcecred","discord","MESSAGE","695344752031432766","698970943955140738"],["sourcecred","discord","MESSAGE","695344752031432766","698973708316049488"],["sourcecred","discord","MESSAGE","695344752031432766","698982179069362196"],["sourcecred","discord","MESSAGE","695344752031432766","699006982681657354"],["sourcecred","discord","MESSAGE","695344752031432766","699007297099268116"],["sourcecred","discord","MESSAGE","695344752031432766","699016223303794728"],["sourcecred","discord","MESSAGE","695344752031432766","699020835096231937"],["sourcecred","discord","MESSAGE","695344752031432766","699021694240686190"],["sourcecred","discord","MESSAGE","695344752031432766","699022762215211088"],["sourcecred","discord","MESSAGE","695344752031432766","699024432244588644"],["sourcecred","discord","MESSAGE","695344752031432766","699025335148216410"],["sourcecred","discord","MESSAGE","695344752031432766","699124769349566484"],["sourcecred","discord","MESSAGE","695344752031432766","699137595724267520"],["sourcecred","discord","MESSAGE","695344752031432766","699302777167413379"],["sourcecred","discord","MESSAGE","695344752031432766","699304903796981771"],["sourcecred","discord","MESSAGE","695344752031432766","699306499930980452"],["sourcecred","discord","MESSAGE","695344752031432766","699318638519255111"],["sourcecred","discord","MESSAGE","695344752031432766","699325373472702534"],["sourcecred","discord","MESSAGE","695344752031432766","699325915578236949"],["sourcecred","discord","MESSAGE","695344752031432766","699326575627206778"],["sourcecred","discord","MESSAGE","695344752031432766","699342838756016128"],["sourcecred","discord","MESSAGE","695344752031432766","699358233437143163"],["sourcecred","discord","MESSAGE","695344752031432766","699383579402174494"],["sourcecred","discord","MESSAGE","695344752031432766","699636647557464194"],["sourcecred","discord","MESSAGE","695344752031432766","699696022477340735"],["sourcecred","discord","MESSAGE","695344752031432766","700038397376331798"],["sourcecred","discord","MESSAGE","695344917068906598","697073300131807274"],["sourcecred","discord","MESSAGE","695344917068906598","697081143551328256"],["sourcecred","discord","MESSAGE","695344917068906598","697318813192028200"],["sourcecred","discord","MESSAGE","695344917068906598","697375832364023889"],["sourcecred","discord","MESSAGE","696400331260821586","698659683526901810"],["sourcecred","discord","MESSAGE","696400331260821586","699287660589613148"],["sourcecred","discord","MESSAGE","696420039141752863","696427343220047872"],["sourcecred","discord","MESSAGE","696420039141752863","696440757908799568"],["sourcecred","discord","MESSAGE","696420039141752863","696441890048049232"],["sourcecred","discord","MESSAGE","696420039141752863","696452154268975225"],["sourcecred","discord","MESSAGE","696420039141752863","696730851802742794"],["sourcecred","discord","MESSAGE","696420039141752863","696789204767866911"],["sourcecred","discord","MESSAGE","696420039141752863","699020484167073792"],["sourcecred","discord","MESSAGE","696420039141752863","699122711745527878"],["sourcecred","discord","MESSAGE","696420039141752863","699123164340551691"],["sourcecred","discord","MESSAGE","696420039141752863","699274952301609111"],["sourcecred","discord","MESSAGE","696420039141752863","699275129204637708"],["sourcecred","discord","MESSAGE","696420039141752863","699275497984622760"],["sourcecred","discord","MESSAGE","696420039141752863","699276546795372595"],["sourcecred","discord","MESSAGE","696420039141752863","699277478530646016"],["sourcecred","discord","MESSAGE","696420039141752863","699278809974833224"],["sourcecred","discord","MESSAGE","696420039141752863","699404949448163368"],["sourcecred","discord","MESSAGE","696420039141752863","699406916300046346"],["sourcecred","discord","MESSAGE","696420039141752863","699407535194767410"],["sourcecred","discord","MESSAGE","696420039141752863","699408033343733841"],["sourcecred","discord","MESSAGE","696420039141752863","699410487020093501"],["sourcecred","discord","MESSAGE","696420039141752863","699558251074682931"],["sourcecred","discord","MESSAGE","696420039141752863","699560532046250034"],["sourcecred","discord","MESSAGE","696420039141752863","699939694221328435"],["sourcecred","discord","MESSAGE","696420039141752863","700016555521736837"],["sourcecred","discord","MESSAGE","696420039141752863","700064770367160361"],["sourcecred","discord","MESSAGE","696420039141752863","700064920104075394"],["sourcecred","discord","MESSAGE","696420039141752863","700073516900417556"],["sourcecred","discord","MESSAGE","696420039141752863","700078148615798814"],["sourcecred","discord","MESSAGE","696420039141752863","700083246087667833"],["sourcecred","discord","MESSAGE","696420039141752863","700085865933832252"],["sourcecred","discord","MESSAGE","696420039141752863","700087985634541678"],["sourcecred","discord","MESSAGE","696420039141752863","700345588725841990"],["sourcecred","discord","MESSAGE","696420039141752863","700354840445976616"],["sourcecred","discord","MESSAGE","696420039141752863","700468593451597902"],["sourcecred","discord","MESSAGE","696420197644632116","698667046661128244"],["sourcecred","discord","MESSAGE","696420197644632116","698672127418695751"],["sourcecred","discord","MESSAGE","696420197644632116","698673539011837994"],["sourcecred","discord","MESSAGE","696420197644632116","698683402920001637"],["sourcecred","discord","MESSAGE","696420197644632116","698956579168321617"],["sourcecred","discord","MESSAGE","696420197644632116","699017594287685672"],["sourcecred","discord","MESSAGE","696420197644632116","699283043940302898"],["sourcecred","discord","MESSAGE","696420197644632116","699284090607763506"],["sourcecred","discord","MESSAGE","696420197644632116","699303864872075295"],["sourcecred","discord","MESSAGE","696420197644632116","699352914476400712"],["sourcecred","discord","MESSAGE","698942081858666527","699821888431587439"],["sourcecred","discord","MESSAGE","698942081858666527","699822779670724650"],["sourcecred","discord","MESSAGE","700023168995295233","700033440564641854"],["sourcecred","discord","MESSAGE","700023168995295233","700036022368731256"],["sourcecred","discord","MESSAGE","700023168995295233","700038868707180644"],["sourcecred","discord","MESSAGE","700023168995295233","700039441799970969"],["sourcecred","discord","MESSAGE","700023168995295233","700040376085381152"],["sourcecred","discord","MESSAGE","700023168995295233","700040917926543422"],["sourcecred","discord","MESSAGE","700023168995295233","700040992916766780"],["sourcecred","discord","MESSAGE","700023168995295233","700044206176993470"],["sourcecred","discord","MESSAGE","700023168995295233","700044421760286721"],["sourcecred","discord","MESSAGE","700023168995295233","700044496049799228"],["sourcecred","discord","MESSAGE","700023168995295233","700044548411490335"],["sourcecred","discord","MESSAGE","700023168995295233","700044635619328131"],["sourcecred","discord","MESSAGE","700023168995295233","700044689285316738"],["sourcecred","discord","MESSAGE","700023168995295233","700049028251123832"],["sourcecred","discord","MESSAGE","700023168995295233","700049257490808933"],["sourcecred","discord","MESSAGE","700023168995295233","700049378643017889"],["sourcecred","discord","MESSAGE","700023168995295233","700051768008114186"],["sourcecred","discord","MESSAGE","700023168995295233","700055780807802900"],["sourcecred","discord","MESSAGE","700023168995295233","700056792524128306"],["sourcecred","discord","MESSAGE","700023168995295233","700059334679330946"],["sourcecred","discord","MESSAGE","700023168995295233","700059353306234910"],["sourcecred","discord","MESSAGE","700023168995295233","700059384751063091"],["sourcecred","discord","MESSAGE","700023168995295233","700059438136033361"],["sourcecred","discord","MESSAGE","700023168995295233","700059438526103572"],["sourcecred","discord","MESSAGE","700023168995295233","700059538023514154"],["sourcecred","discord","MESSAGE","700023168995295233","700061097583050871"],["sourcecred","discord","MESSAGE","700023168995295233","700062058405953678"],["sourcecred","discord","MESSAGE","700023168995295233","700062189503119381"],["sourcecred","discord","MESSAGE","700023168995295233","700062400774275204"],["sourcecred","discord","MESSAGE","700023168995295233","700063628711166054"],["sourcecred","discord","MESSAGE","700023168995295233","700064631778967634"],["sourcecred","discord","MESSAGE","700023168995295233","700064632144003103"],["sourcecred","discord","MESSAGE","700023168995295233","700118599003668510"],["sourcecred","discord","MESSAGE","700023168995295233","700335319349985310"],["sourcecred","discord","MESSAGE","700023168995295233","700335919315550299"],["sourcecred","discord","MESSAGE","700023168995295233","700365992571699350"],["sourcecred","discord","MESSAGE","700023168995295233","700366555233517630"],["sourcecred","discord","MESSAGE","700023168995295233","700367514638483537"],["sourcecred","discord","MESSAGE","700023168995295233","700369922630615040"],["sourcecred","discord","MESSAGE","700023168995295233","700370207419662458"],["sourcecred","discord","MESSAGE","700023168995295233","700370372230643763"],["sourcecred","discord","MESSAGE","700023168995295233","700371208880914563"],["sourcecred","discord","MESSAGE","700023168995295233","700371209241624656"],["sourcecred","discord","MESSAGE","700023168995295233","700371558480216124"],["sourcecred","discord","MESSAGE","700023168995295233","700397237930295386"],["sourcecred","discord","MESSAGE","700023168995295233","700397481799974962"],["sourcecred","discord","MESSAGE","700023168995295233","700397482362011769"],["sourcecred","discord","MESSAGE","700023168995295233","700397866581229620"],["sourcecred","discord","MESSAGE","700023168995295233","700397927478067221"],["sourcecred","discord","MESSAGE","700023168995295233","700397997707755530"],["sourcecred","discord","MESSAGE","700023168995295233","700398207733334077"],["sourcecred","discord","MESSAGE","700023168995295233","700398301412982965"],["sourcecred","discord","MESSAGE","700023168995295233","700398301727555604"],["sourcecred","discord","MESSAGE","700023168995295233","700399163313094746"],["sourcecred","discord","REACTION","695344752031432766","❤️","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696454968831508630"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696455224532926464"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699021694240686190"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699326575627206778"],["sourcecred","discord","REACTION","695344752031432766","💯","571023281382227978","696730540039995493"],["sourcecred","discord","REACTION","695344752031432766","💯","657069807505637397","698965418370400296"],["sourcecred","discord","REACTION","695344752031432766","🔥","250086586450968576","698969730580742174"],["sourcecred","discord","REACTION","695344752031432766","🔥","321092785921064961","698973708316049488"],["sourcecred","discord","REACTION","695344752031432766","🔥","571023281382227978","698921390845198426"],["sourcecred","discord","REACTION","696400331260821586","🔥","118260545211072517","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","250086586450968576","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","321092785921064961","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","440281764204642314","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","683892894767251489","698659683526901810"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696427343220047872"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696441890048049232"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","699123164340551691"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","700087985634541678"],["sourcecred","discord","REACTION","696420039141752863","🔥","321092785921064961","699560532046250034"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","699275497984622760"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","700064920104075394"],["sourcecred","discord","REACTION","696420197644632116","👍","537858848912834561","699284090607763506"],["sourcecred","discord","REACTION","698942081858666527","👍","250086586450968576","699822779670724650"],["sourcecred","discord","REACTION","700023168995295233","👍","657069807505637397","700040376085381152"],["sourcecred","discord","REACTION","700023168995295233","💯","321092785921064961","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","💯","657069807505637397","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","🔥","363774203960360961","700039441799970969"],["sourcecred","git","COMMIT","0097f202e6f5d2c003e2ce168d124909f19458d7"],["sourcecred","git","COMMIT","00ab6982140ebd949db7457512b233b7aa3afa1f"],["sourcecred","git","COMMIT","014093e17900e748bb8f82656443ec621bd8a658"],["sourcecred","git","COMMIT","02350169d0e77e280968a062a1e98a60a0d4c5d8"],["sourcecred","git","COMMIT","0245a4002a35c2adccfed1f68a675c30ba871ba5"],["sourcecred","git","COMMIT","02e3a39d76183975fa9a0671de0c7922274b6abc"],["sourcecred","git","COMMIT","02f4d3623ae4e89fa6232477d97fe32b27aae7c5"],["sourcecred","git","COMMIT","030e8ecc0d83eb09cc3ac614a607eb119aab7fa3"],["sourcecred","git","COMMIT","031a68eb5a45b70c806197b47783b1b4ae4332f0"],["sourcecred","git","COMMIT","0326166091410578eaf7c25d9f6736cd4533f9cd"],["sourcecred","git","COMMIT","03604a7d8f9a6f488f7990309e70066a1260483d"],["sourcecred","git","COMMIT","0388fb0219a7460e6726b34835c670986be5406c"],["sourcecred","git","COMMIT","03e1112bf4099083d81386043099e4876599d53d"],["sourcecred","git","COMMIT","0470e9f5c13a7c36b0934ca935365649872ad849"],["sourcecred","git","COMMIT","05c78a85d3b82074eb0e966c43eaf29f53e39426"],["sourcecred","git","COMMIT","06e6bf089f69a108cae63a413e3a3d0a6c0d40fa"],["sourcecred","git","COMMIT","0764e2b7701a6cd6076622bce90c3d3030e7d08a"],["sourcecred","git","COMMIT","07d5c9eafed794bfbde34705c0232dfdbb47bd9c"],["sourcecred","git","COMMIT","07e0e5f00e18e00a12892b47bd3f5b87418377d5"],["sourcecred","git","COMMIT","08aa4aa95a936798295f7d02cfa54c1441ae7aa3"],["sourcecred","git","COMMIT","0a23c189b1d776985b6759cfb65b75a5b0dbe388"],["sourcecred","git","COMMIT","0b351412cfa92c8edabea1449da16a7a2128c81f"],["sourcecred","git","COMMIT","0c32d96da86885a0d730f8398a23403372117d4b"],["sourcecred","git","COMMIT","0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33"],["sourcecred","git","COMMIT","0cc15c54f0ac08b76b0b20231523123c68e787cc"],["sourcecred","git","COMMIT","0e468843191ad3a24ff5b803b2e388a12e88a289"],["sourcecred","git","COMMIT","0e6c46576a8feeb07054584458ebdec61fd886f3"],["sourcecred","git","COMMIT","0e9dbd8406b256f6b5e553d6769683a55909ab84"],["sourcecred","git","COMMIT","1041be12a4aee28587ede5b1a532c6595de78c70"],["sourcecred","git","COMMIT","11a45eb188a756e31f2ece0afcf10afb5e30112f"],["sourcecred","git","COMMIT","11fcd09a0cde08af08b5c5c951f54c150cf47ea1"],["sourcecred","git","COMMIT","120b10d34d5e804b21984569c113e37036efe669"],["sourcecred","git","COMMIT","1222e49b4269f15b2c71cfe4b62b1333abeea581"],["sourcecred","git","COMMIT","12cf0f16d406f14c2597abc130c4d2bfa9927f32"],["sourcecred","git","COMMIT","12ddd4e35607c0184b898c898e26e45c6017642d"],["sourcecred","git","COMMIT","12f5e68f287c17d2e7fbe424b996b269c74c0e8f"],["sourcecred","git","COMMIT","135b198b82d822d1d1a15b3683da0b76487c3e6d"],["sourcecred","git","COMMIT","13634414337e730fbcb403e2657a8007347ddd8d"],["sourcecred","git","COMMIT","13fc50d22e2353cf2bb38948cae4fb5fb591ce6c"],["sourcecred","git","COMMIT","1582ec34530ff6b7055382319336acc3f82de567"],["sourcecred","git","COMMIT","15a8127bc5402c7224bc592f890a5bd7f793c6a5"],["sourcecred","git","COMMIT","15e6db685e730aa55697d6fc8f60e9006732d2db"],["sourcecred","git","COMMIT","16309da6c786efe9dc1f745c61ad4f2c2ad61d76"],["sourcecred","git","COMMIT","16456a0e6dce09102122b50f42b185c330bb7b25"],["sourcecred","git","COMMIT","169704b1d09d4498ff0eaf2276bc40e79fffdf7e"],["sourcecred","git","COMMIT","1798e29eb0b6d8dd5e4f14ffcc2f25644e736762"],["sourcecred","git","COMMIT","17a658ce22542db61a1bae02316d8c0e082fa52f"],["sourcecred","git","COMMIT","17ec0dcf84726a4da739f0cbe36cd1908477e4cb"],["sourcecred","git","COMMIT","1823aa73078796ecf98dd56d9c134ccf2192e686"],["sourcecred","git","COMMIT","1834ed59b6a58195aef57af492f3122a94aac239"],["sourcecred","git","COMMIT","18c5aee0a819fd4f7877321af5fd04791f85c6f8"],["sourcecred","git","COMMIT","191e73e429ab193e59189f44b363d69613ee0315"],["sourcecred","git","COMMIT","1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8"],["sourcecred","git","COMMIT","1a21759b0bf3dbf3f524a23bf10c8e4a114def8c"],["sourcecred","git","COMMIT","1a3252694d719fb389bb10c0e24d727e61a3f8a3"],["sourcecred","git","COMMIT","1a7929462fc35448408f0d854a6c8c898c2db94f"],["sourcecred","git","COMMIT","1b5127e0416b329fc4dcd1d988d29489bea9016f"],["sourcecred","git","COMMIT","1cac15ecae5e636fd5d049fc5993ccd113126e41"],["sourcecred","git","COMMIT","1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5"],["sourcecred","git","COMMIT","1dc4a2c23525043a7b6e32a79837cb6a5a62fd97"],["sourcecred","git","COMMIT","1e08344d06d9089d381e91e2bee0c1adf3fe3b9d"],["sourcecred","git","COMMIT","1ea710efed95a3abd2613ee16b3aaea6110def50"],["sourcecred","git","COMMIT","1eea54a1361eb6aedba221f65f86205866b97322"],["sourcecred","git","COMMIT","1eed38c4cebd63ab6fc9537564a5304a870caa0c"],["sourcecred","git","COMMIT","1f350ead22cb503932ec36b9d21b735eb97eb256"],["sourcecred","git","COMMIT","2074791c680ee3d896c6c819ee0244719a7e510c"],["sourcecred","git","COMMIT","20796df7555b0c191dd575542000d50d98c034cc"],["sourcecred","git","COMMIT","21196b9342e552cc4fc6a9f213ea42768f3590d6"],["sourcecred","git","COMMIT","21df4319db26f8c3ed6eed74b2076026cad5c070"],["sourcecred","git","COMMIT","221754a5dbe3ebdf6a0fc5080de82669f5476b83"],["sourcecred","git","COMMIT","225168780b86a4b41d38845653c5d8759d1d37ad"],["sourcecred","git","COMMIT","22f57e7b323b0800c218b270980286c105ff7760"],["sourcecred","git","COMMIT","234d3b02b5491114f1257e23fcaf2bf880eee376"],["sourcecred","git","COMMIT","23d2d9d76214f6b6309676e2d369fe22f495943c"],["sourcecred","git","COMMIT","25c16bb85801279196018b44ec0db0834fadc4a2"],["sourcecred","git","COMMIT","26b69c05b19e8c57f2d16f77ab4d86b76247ce1b"],["sourcecred","git","COMMIT","275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7"],["sourcecred","git","COMMIT","27b2bf3d7da83e04295aa1c2297e50ce8157f435"],["sourcecred","git","COMMIT","28b0e3f2d8fd42569eb803d10435aa8c0edf28f4"],["sourcecred","git","COMMIT","29d9a8ef0d738d8b1bdae873c892af41858cda0a"],["sourcecred","git","COMMIT","2a1204b44f44d6d93cf952e1804aef25ffbdd78f"],["sourcecred","git","COMMIT","2a6a498e1f06f55bc8d72380017b4d4060e27123"],["sourcecred","git","COMMIT","2aaae9c777eb4801ef65192afd1c7553ceb74012"],["sourcecred","git","COMMIT","2ac1a7e110486f19483abeff54c243335640c923"],["sourcecred","git","COMMIT","2b67c252af08687a1c02e924757e383977d4d4d7"],["sourcecred","git","COMMIT","2b6ed00bd26907f91649e266613daba56cbaa0ee"],["sourcecred","git","COMMIT","2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484"],["sourcecred","git","COMMIT","2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6"],["sourcecred","git","COMMIT","2c407f36d0c5b27d2c474b335cabb81cfe2edeca"],["sourcecred","git","COMMIT","2cee732bc11b712814855cfb1d9b5b279cef6fb9"],["sourcecred","git","COMMIT","2d290b2288a14d494f0fc18bfac882ef6c617e6a"],["sourcecred","git","COMMIT","2d44191a996951ccbed0009280899614d63174c9"],["sourcecred","git","COMMIT","2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951"],["sourcecred","git","COMMIT","2e4d02b5022b744b43eba4a032fa855b765aa0ad"],["sourcecred","git","COMMIT","2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be"],["sourcecred","git","COMMIT","2fad9aab6897201e6bc353b9746c03d1e728d433"],["sourcecred","git","COMMIT","30014c11841c9a605cc94d517ece6b867afd8cef"],["sourcecred","git","COMMIT","30758d04aa4da97fc0aced1fa22cbdee4a82c792"],["sourcecred","git","COMMIT","309a89586da5e2d44b48a607c9334aef6f6db3fb"],["sourcecred","git","COMMIT","30ab2ab8774f20e9541f08c657e6ec9ab08504f0"],["sourcecred","git","COMMIT","30d221dce50b378b1c7305bda09bea3f77887415"],["sourcecred","git","COMMIT","30ebf64342f800953d06f2b0ed888ac8d4495f69"],["sourcecred","git","COMMIT","311bf26aa5268a067b0bfc8708a922d2fd3d0a81"],["sourcecred","git","COMMIT","314f037efaaf34002934fac72ee5b8c34e633117"],["sourcecred","git","COMMIT","317ffa1471a0179007b87f93aac2223666443d45"],["sourcecred","git","COMMIT","325b973a78cbe14ff3f5e9766faee18e85d5a408"],["sourcecred","git","COMMIT","32d6fc725adb844ed330499482232f2876de58d1"],["sourcecred","git","COMMIT","32e087e76f7e1c5911790ed64508cfb59e448369"],["sourcecred","git","COMMIT","336edf6f3e0b661f947432cf39bbd9d26299f29d"],["sourcecred","git","COMMIT","34723961199565937493834071665b871a632d5d"],["sourcecred","git","COMMIT","35bf0829c068aa20de51466ea118f7547707de00"],["sourcecred","git","COMMIT","364068ec8db86b378d630f591da3a02de8708798"],["sourcecred","git","COMMIT","36d7098c5f0c400dddec1e654523a2800782b78a"],["sourcecred","git","COMMIT","36ed95ddf8349ba3d557bfbbef066b2559b432a3"],["sourcecred","git","COMMIT","37b357cb88cf608d20589ce6ee51404561bb4b1c"],["sourcecred","git","COMMIT","37e3b7251566699d4341b3bdbb81ec8f554f7d87"],["sourcecred","git","COMMIT","380e74d47b6bfd2c48d5690093ab03e44b92d991"],["sourcecred","git","COMMIT","38f3240786ceec5b4c03d7a5ce0faa02512a8cde"],["sourcecred","git","COMMIT","391b32bfdb5ae37d2ce42d32319fbadde72663f3"],["sourcecred","git","COMMIT","392e601d3179506dfe7ec0ad20cd5f679696e66e"],["sourcecred","git","COMMIT","396e5f791be1c3cf258b08afc6111cea8a409634"],["sourcecred","git","COMMIT","39ac367cc0a3e55366f190fe158a8517f97c2778"],["sourcecred","git","COMMIT","39b0a902c1c17512a536380503a506fc3ca615bb"],["sourcecred","git","COMMIT","39c6daaa5fca6305b908cdd28811107eba6bcbe3"],["sourcecred","git","COMMIT","39dae46151fcde41ea0b062ae95fde4109142e5b"],["sourcecred","git","COMMIT","3a5b33363a28c7bf7bc62329095b08110996d659"],["sourcecred","git","COMMIT","3a649e81c448757920b8c8bdcf8fc392f84d3580"],["sourcecred","git","COMMIT","3ab888c62c6fa64080e675c1f5146e156635ee6c"],["sourcecred","git","COMMIT","3b4871c09b67498e31575b8aaa9c09443d142a03"],["sourcecred","git","COMMIT","3b5a4715a9790e23a2e35d783d691e8d5ee58f80"],["sourcecred","git","COMMIT","3b8e4f54845388851293b26053f4df65b4dc98d1"],["sourcecred","git","COMMIT","3bc9934834b8a65291439cbba2daf061448e30fe"],["sourcecred","git","COMMIT","3c52923940969e0594c9693d27e80bf81e49bdfb"],["sourcecred","git","COMMIT","3c716ca39a305e5d8a9b2a5aa466039466d05a38"],["sourcecred","git","COMMIT","3d84fcf16de8bdd78f1098650394a66a29709a40"],["sourcecred","git","COMMIT","3ddfb88738e47c20cf9ea58c2efd792aee1b6129"],["sourcecred","git","COMMIT","3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6"],["sourcecred","git","COMMIT","3e5e14457fa143425d264a4fa941591d19730ce3"],["sourcecred","git","COMMIT","3e76da91166b4e618c16fcf03a91656654793ed9"],["sourcecred","git","COMMIT","3f47f07723b97f0311f32b78da99358d2c6affb4"],["sourcecred","git","COMMIT","40036a386b07c41b89e594736dadb6134cf182de"],["sourcecred","git","COMMIT","4003769a8d62ca41d0d18d2bd72204b1d278d5b9"],["sourcecred","git","COMMIT","407f5d0adffd9ef41bff0bdbfb06f67213accea9"],["sourcecred","git","COMMIT","419d39d87eb31965a8f5775075cb80be6a57abd6"],["sourcecred","git","COMMIT","41e67273af614a1014bfb58bf6ca1b1cee1e6a8a"],["sourcecred","git","COMMIT","432042f6f965bb113ad50950cfdbb82c44f0dc59"],["sourcecred","git","COMMIT","436819fc13564c1c553d1d70390daff05a9052e9"],["sourcecred","git","COMMIT","4474d1b88abf39aa94df664898e4832fc05e52cc"],["sourcecred","git","COMMIT","44772353f8d950226d909b12778cbed4df3ed866"],["sourcecred","git","COMMIT","44c844475c5e2beb5acdefc7e4cd54e90d2d84e2"],["sourcecred","git","COMMIT","44cf0fbba18bf392a44962faed1e1300ed6fa459"],["sourcecred","git","COMMIT","44ea41a64de0f121ff05a4c07c6bb51e35eb5035"],["sourcecred","git","COMMIT","45d3445cd814d4666f19f4b1b480984f1c0381eb"],["sourcecred","git","COMMIT","45f25ea4eb646427c06e58b7e4ce2c4cd385c329"],["sourcecred","git","COMMIT","46377a96ccd136b5401df0ed5032a105a385dd49"],["sourcecred","git","COMMIT","4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47"],["sourcecred","git","COMMIT","47d595cee7fd82afdb8666263baa96555bec7b30"],["sourcecred","git","COMMIT","48e5b4467c6107040c107d55bc2fbe07a57ea3a0"],["sourcecred","git","COMMIT","49af56b16491699e672947ed52ce86dcb3f9d9c2"],["sourcecred","git","COMMIT","4a623fbc3735c9a32d10199880214cc79caa4004"],["sourcecred","git","COMMIT","4a90734832ae4ad328fc062712e2deca88d7dcc4"],["sourcecred","git","COMMIT","4acea81dd65135e7afd23cd4c5484dae44bcb324"],["sourcecred","git","COMMIT","4b4c9ea9705465d39f33b39ea39819c9c77aa78b"],["sourcecred","git","COMMIT","4b792e8ce9c473dd059f633bec6659a18a6d8ff7"],["sourcecred","git","COMMIT","4c0f6c1fe42e875f8cd6a4be4fa88be63052d149"],["sourcecred","git","COMMIT","4dc6dc24deb0f914eabc017a1e488a4d62f1a893"],["sourcecred","git","COMMIT","4ec6bdc6a120e123052ebf690ddf6f32b9c35722"],["sourcecred","git","COMMIT","4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33"],["sourcecred","git","COMMIT","5023eee71c9c3f2f16de1b22e9f37fda26c2f023"],["sourcecred","git","COMMIT","509d8c03b1a67129a3e98073dd24f93723cdfe41"],["sourcecred","git","COMMIT","50d289eff07e8033e20cd60a4670c798dea24b71"],["sourcecred","git","COMMIT","51308621ec2843350852fd31f8c0aa08d6d6a809"],["sourcecred","git","COMMIT","51c24fd07be9e40f534f48d43f936d829ac7b085"],["sourcecred","git","COMMIT","52c6264dbafc69c14a2381a41075ca4fbb020653"],["sourcecred","git","COMMIT","53b6f1b980b797f92d59fc4912b2fe6e999f774a"],["sourcecred","git","COMMIT","53d9b62862d0e8ef597dbffcbd0da8bcd12100cc"],["sourcecred","git","COMMIT","54090419b371cac747ca19327d54c4cddb375f05"],["sourcecred","git","COMMIT","554a82bc05cb713e92e8b3523b521078daf829f0"],["sourcecred","git","COMMIT","554c96438fdbee2031b8b5ac16aa2d6db6a7f40f"],["sourcecred","git","COMMIT","56172b6087400fa81c13f39f37b23ec11de3c9b2"],["sourcecred","git","COMMIT","56e1450abd29457d3aefbdaef3e38562727b7628"],["sourcecred","git","COMMIT","576bc68e63d6232f6c78bdd38e66da8585c04b0c"],["sourcecred","git","COMMIT","578544d0557614c00780089fa9f8343950f977fc"],["sourcecred","git","COMMIT","59aa572835669dee12a533857e417b17ba7b45e5"],["sourcecred","git","COMMIT","5a3bda08dd0c3b937345c449229b07241d70fb09"],["sourcecred","git","COMMIT","5ae6db74ec638222cb60957c3105e15de7f84457"],["sourcecred","git","COMMIT","5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878"],["sourcecred","git","COMMIT","5b85a7405489f720ed0b9cb5150c2619d45c9e9d"],["sourcecred","git","COMMIT","5c621ee4c644713a2627afbfed745482fe5525ef"],["sourcecred","git","COMMIT","5c8e695ad340e65e85862dc8202d17e73d95bc3e"],["sourcecred","git","COMMIT","5d168f1298b62e831159fc316e394491b8386aa8"],["sourcecred","git","COMMIT","5dd05e3605e9940f65f2059e8c4286077a6439db"],["sourcecred","git","COMMIT","5e5171d6fb098184d18a44589e6cd4fd72c89c80"],["sourcecred","git","COMMIT","5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7"],["sourcecred","git","COMMIT","5f689010f6e0a438513b7e44ef37ae12d59ddf91"],["sourcecred","git","COMMIT","5f858e9e9b52236fc3a085b38b1c7c5623dc814e"],["sourcecred","git","COMMIT","5fc99f0926a38140bc41ab5322e28e43f5b50969"],["sourcecred","git","COMMIT","603c5f7b7e2afb54619ebe705b969a1acb102bf6"],["sourcecred","git","COMMIT","6044da77d77cd5f0bf782fd47faf7813cb9a00d7"],["sourcecred","git","COMMIT","604ba8761cdddc84bfa66485fe367495e5c8a65a"],["sourcecred","git","COMMIT","60df4a2278ec3dd51317900064eb3061be31c3b7"],["sourcecred","git","COMMIT","60eb231938e7ad390175a13b46cf1161e23e915c"],["sourcecred","git","COMMIT","61741f2ee4388880504f3a299dbd9c11698cc7dd"],["sourcecred","git","COMMIT","62452c343ffd843e938714bc2e87d5214d7dd315"],["sourcecred","git","COMMIT","62d47242332f4e1d86f7d7ae460f6dc998344aa2"],["sourcecred","git","COMMIT","636ec6a16064c8c33eb4763375d53ac5d8bd1a10"],["sourcecred","git","COMMIT","6414f44dff41af4a83f6ce0de71d809bd0482d00"],["sourcecred","git","COMMIT","65524097ed5de3a815e989bd420e38177fe70bca"],["sourcecred","git","COMMIT","65d2ca343c51020478094ba87b5db4af6464741a"],["sourcecred","git","COMMIT","66f27020fa0bd12851a0de1b206abec8c0b5e55d"],["sourcecred","git","COMMIT","67380485711017726e26a1687668d3d85b0e5d41"],["sourcecred","git","COMMIT","67b58587f295e53b396fed2b68ab34032fd86420"],["sourcecred","git","COMMIT","67d46229489309035b968391e6d14611ebd5c3ff"],["sourcecred","git","COMMIT","68038d157338b257f25c21b69def40c3eed1e43e"],["sourcecred","git","COMMIT","680e6502d527be2ddbd2bd73be5ddce9c5914e9b"],["sourcecred","git","COMMIT","69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c"],["sourcecred","git","COMMIT","6a8bfca0c936f304cc9a2a3399676be46aea9960"],["sourcecred","git","COMMIT","6b96998e7c2f8ce52dc09ebc9ea524d07debe38e"],["sourcecred","git","COMMIT","6bc1161d99c436a23c35f5477862677701ef72e7"],["sourcecred","git","COMMIT","6caa3ed4ed86f8414354719138e0121db2d6a0dc"],["sourcecred","git","COMMIT","6cf92566dda9fff26663c6dfe2e3ae277ae0d908"],["sourcecred","git","COMMIT","6d3765a6c17e93aaddcd0f3fb8ace45c20bda183"],["sourcecred","git","COMMIT","6d51ee836e10e9d7b38006f5e496655ae18ad368"],["sourcecred","git","COMMIT","6e7bfcd7b00408f64472201ac06ea499e02e6fad"],["sourcecred","git","COMMIT","6f1a3968daa1e3d2bd607f81a599ac5ebf73f717"],["sourcecred","git","COMMIT","6f4ff7a024df84c214317b9c950d77f3ae3c4f57"],["sourcecred","git","COMMIT","6f93833ab9fbe162b81bb768df2d85c30ad06ab8"],["sourcecred","git","COMMIT","6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b"],["sourcecred","git","COMMIT","713acbd4593a7a10b0544aaab7fc4ac05a66f9ae"],["sourcecred","git","COMMIT","71e08464a654b37b05fe5349649a03f457933fa1"],["sourcecred","git","COMMIT","73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db"],["sourcecred","git","COMMIT","73dbfea00d269ff953ee50c034f1c6939743a5de"],["sourcecred","git","COMMIT","749f1e4c55deee2c1b640348b5965f5a4afd2886"],["sourcecred","git","COMMIT","753c27ee7d264f00c566fe6f56722528f1028704"],["sourcecred","git","COMMIT","7544c9c062ca14c025caa6d2d859e346287f5e06"],["sourcecred","git","COMMIT","758f9ebb14e2687de4f888bc94f872a610174a9f"],["sourcecred","git","COMMIT","75ebd0228f654f094c750b9885c5fe5aceb72486"],["sourcecred","git","COMMIT","777514f100a7dc7df22a9a3f2c57f6516e8efc44"],["sourcecred","git","COMMIT","78601376522c329c0940754020ff4654ffe937b8"],["sourcecred","git","COMMIT","78714ca856356791aae2576d01eb1c27fc7e4c3f"],["sourcecred","git","COMMIT","7931cf20b5146bca68e51d26cdebade9a1d3a662"],["sourcecred","git","COMMIT","7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f"],["sourcecred","git","COMMIT","7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6"],["sourcecred","git","COMMIT","7ad5a2af6206fa2c6d894364d1f7f40b55f08149"],["sourcecred","git","COMMIT","7b20ff37a9650a134c6f55fffd04fbdd5df83b43"],["sourcecred","git","COMMIT","7b6d61687e57d15a45d195b1edb567451a30db29"],["sourcecred","git","COMMIT","7b9dca52443325803e66cf596d274a0b11d252eb"],["sourcecred","git","COMMIT","7bdeb692b04c1a855be5d7dda172d87caafa3f1b"],["sourcecred","git","COMMIT","7cd874acd8a0f9009911452d1c0b363cb13f6669"],["sourcecred","git","COMMIT","7d1f6e2d13ab467719f287802b16e799deeb5e26"],["sourcecred","git","COMMIT","7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf"],["sourcecred","git","COMMIT","7dc4514cd415cc926827fe02cb2891b8d6b80e5d"],["sourcecred","git","COMMIT","7dd45c9416c703d549b6e278b7bfbe75053b1ca0"],["sourcecred","git","COMMIT","7e0a5d65716af527389ac6bb38d14950d482e415"],["sourcecred","git","COMMIT","7ea5916ad6f9de9841f277901506ab72a39bf157"],["sourcecred","git","COMMIT","7fadabe4bad18a2e7326b241c874d5efbeb6a691"],["sourcecred","git","COMMIT","7ff7782489b7894149cc5f211d9ddafcf84918e9"],["sourcecred","git","COMMIT","80773639d8e225d1902d6145312108ecaa906a15"],["sourcecred","git","COMMIT","810abfb03976accd663d1b7b964bbc19a92ec609"],["sourcecred","git","COMMIT","817cf8940cb88ba790c6021ce54bcb018aa0ceb6"],["sourcecred","git","COMMIT","81a67f48120449294d3ab94cc767755e0bf3784e"],["sourcecred","git","COMMIT","8275d1b5f3a774264d5833c23d8958342940092f"],["sourcecred","git","COMMIT","842296b74203dbd599856a16880adcc904bd5b01"],["sourcecred","git","COMMIT","85b6e8cca2d6bc5709449605c8ac645fe74f78d5"],["sourcecred","git","COMMIT","85eeea117f1160d5b9da37473b35598a7c76b5f2"],["sourcecred","git","COMMIT","8619ee2452e7bf109169017acc968bba3e6e129d"],["sourcecred","git","COMMIT","862fd7fa57bf683b777fc8f3789b1df4aea08e9f"],["sourcecred","git","COMMIT","877be03e547648fb7a06110788e7dad226a05559"],["sourcecred","git","COMMIT","8849eeb9b3a0677fcc53c34ec1675a0e27cf0074"],["sourcecred","git","COMMIT","892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3"],["sourcecred","git","COMMIT","89a15b5772d1dc21737181d7dda26695a0dfecca"],["sourcecred","git","COMMIT","89b337bef296df10a94c3b38ce1e2ef4396886d5"],["sourcecred","git","COMMIT","89ed10ec9153e166a0b7275c73003fc6fd86e76e"],["sourcecred","git","COMMIT","89f7cc8cbfd2fe93bcdb22e979f918a288bd8668"],["sourcecred","git","COMMIT","8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9"],["sourcecred","git","COMMIT","8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf"],["sourcecred","git","COMMIT","8b44ea06f42e6a25fc0e87bfd38c28786001969a"],["sourcecred","git","COMMIT","8c62624a48c8a907f8b30e548abdc4e3764fb0df"],["sourcecred","git","COMMIT","8c797532d4140aa6ce0d5514cc6ca749ec6223e3"],["sourcecred","git","COMMIT","8ce123a903f0035d55349e86f54eb04838bb739f"],["sourcecred","git","COMMIT","8d960f0415e8ce8a45d7005c4ee399de672144d4"],["sourcecred","git","COMMIT","8da32bb2436219e3a55631e426a71d3d45d27c36"],["sourcecred","git","COMMIT","8dfd165458a81f0c67969620d6ab006b7e24aef0"],["sourcecred","git","COMMIT","8e04719f8d88512b8e8e19e17e42f7d960f6733b"],["sourcecred","git","COMMIT","8e13f39d1372b422a914857f324ee60abd2c795a"],["sourcecred","git","COMMIT","8e50a18b163cc513402b9c6c320672c83c46db84"],["sourcecred","git","COMMIT","8e56a3f94f680b5419df0fbfba1e9c985a495345"],["sourcecred","git","COMMIT","8e62a063ca7e54dc299eb6cabbf877a663b94c8f"],["sourcecred","git","COMMIT","8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b"],["sourcecred","git","COMMIT","8fe6cb1f84b56fff85a3bd87661712256a6806ab"],["sourcecred","git","COMMIT","90694dc47c350631227c33418a773a70137d5877"],["sourcecred","git","COMMIT","912ad7ced1c783afb97c7d9a66f7c3f5e2799312"],["sourcecred","git","COMMIT","9227670ae651f3da852b6ec3555aa15713ecce86"],["sourcecred","git","COMMIT","93373ccc6bf6185127f6b17ad5626cc110fe5e08"],["sourcecred","git","COMMIT","936cd22fe159bfd7f8bed539783f52c768f20a9f"],["sourcecred","git","COMMIT","937417e50fd087e175a28471de2176cb56ec7003"],["sourcecred","git","COMMIT","94e51d9a83cd67b4ad82c6529212e72aac84afe7"],["sourcecred","git","COMMIT","95d5884b12a5a5f1d18552277e37597fb6048297"],["sourcecred","git","COMMIT","9620fb8b0386160e364e38d63ad3fede4a182ce3"],["sourcecred","git","COMMIT","96d370369c4d00c35acbdbc499fed536101b6601"],["sourcecred","git","COMMIT","971440a0ff594fb02bef0ed3320e9371e17bc2c3"],["sourcecred","git","COMMIT","97158bddc34b68675ca0d7376d36259a03aef6ac"],["sourcecred","git","COMMIT","978f052b63aa209ed8107dad71c59a44643e74ba"],["sourcecred","git","COMMIT","982a89df2b5282578a7593eea49511ae803ee10b"],["sourcecred","git","COMMIT","98f76c4fa934a3e08dc4abb8c19697c7ed1da81c"],["sourcecred","git","COMMIT","9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f"],["sourcecred","git","COMMIT","9a866424f84b469783dfe559a510ffc93e00d64b"],["sourcecred","git","COMMIT","9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd"],["sourcecred","git","COMMIT","9adcfac02e9dc6203f733946b48815c16c4bda6a"],["sourcecred","git","COMMIT","9b553ff5e3ec727ed0dd45321971a9911a1f04ad"],["sourcecred","git","COMMIT","9d0cacf29ee5f6668426c0dd9cca12ad7af906aa"],["sourcecred","git","COMMIT","9d8560f7a170cc2c0937ba7980dbcb466ad3140f"],["sourcecred","git","COMMIT","9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4"],["sourcecred","git","COMMIT","9fc6edf1983584d9e8336ae9cba525ba92e3249b"],["sourcecred","git","COMMIT","9fdf4415ba620e87f0c8182df47265aa34f5f8fd"],["sourcecred","git","COMMIT","a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19"],["sourcecred","git","COMMIT","a04cff65d72e1b96813ce58a0122a50378ac496d"],["sourcecred","git","COMMIT","a04fe98b80805bd1b2eafab803bc54c45c360418"],["sourcecred","git","COMMIT","a0931cbed5f9f91298af9d27a02d69468722488b"],["sourcecred","git","COMMIT","a0ebe6c6c881f02ae127c92abd3795e597009031"],["sourcecred","git","COMMIT","a0fb9b822baab9e0fce8433be3de7d423e1b4dd6"],["sourcecred","git","COMMIT","a11f8d670ef711b410415b8444330781522c3273"],["sourcecred","git","COMMIT","a180ef16d0fb9e6adbb95731fcdd0e84955805d3"],["sourcecred","git","COMMIT","a2421f56156e52f5b7138ff17678e3c13e13a2f1"],["sourcecred","git","COMMIT","a2547eb7d1835e050a897172b563ccb69b769711"],["sourcecred","git","COMMIT","a2fd7e076795c62a07501d5fb71c03999cc4b145"],["sourcecred","git","COMMIT","a356fe37b3ee2256d529a625a42d890962870096"],["sourcecred","git","COMMIT","a37a48256d99a63fcf0a678ebbb34cca0fd95f23"],["sourcecred","git","COMMIT","a380b67f78535ff8cd03945a60f98400e084a525"],["sourcecred","git","COMMIT","a39a9e3d229c78b1d5215a8c6faf435a23b996ab"],["sourcecred","git","COMMIT","a3a0462dc68b9d35f30abd2ce16199a9450383f4"],["sourcecred","git","COMMIT","a433d846e9ff70c98dba741fbfff7fa1985a67fb"],["sourcecred","git","COMMIT","a462920043f7ded252ca746cf21c6a3dfe91325b"],["sourcecred","git","COMMIT","a501a7454bf19ee03003196bfec9560d48c978d2"],["sourcecred","git","COMMIT","a52d2478c6e23704685c324883891a25f261069f"],["sourcecred","git","COMMIT","a631821f95e1a3b679073cd25647784f863699ec"],["sourcecred","git","COMMIT","a6853a839b1101b077e3b80c3106da01be2807ea"],["sourcecred","git","COMMIT","a6e243fcbfe540b52551bbb50c542ad07ee92e39"],["sourcecred","git","COMMIT","a794a7d8a4034af56c031a5a4a85300ad488871e"],["sourcecred","git","COMMIT","a7c425d5f9edb1106b5934cafe4cbfc221a08e9c"],["sourcecred","git","COMMIT","a7ea71e19d10841f56da13b7bd52ec3b0b2a9469"],["sourcecred","git","COMMIT","a7eb7abbb97a3acb715b06da2a906cd6646b56bc"],["sourcecred","git","COMMIT","a802f7c669324c951f6554fcf391f886ba3150f8"],["sourcecred","git","COMMIT","a8419d96792a217c1bb9462dfa71c8c738a87a16"],["sourcecred","git","COMMIT","a86004ae7a81b6150ca9decebdd05ab7d4151214"],["sourcecred","git","COMMIT","a999d6bd35df198bab6252404325d7a944983410"],["sourcecred","git","COMMIT","aa9b13f64574bcf35312c9c6e828986ce75aff16"],["sourcecred","git","COMMIT","ab8fbf7d53b4152b4ec97c983405cc703df3a2bd"],["sourcecred","git","COMMIT","ace3d821833c0157e8e3f74c06951fe79cbb49e7"],["sourcecred","git","COMMIT","ace98dcfcfaeffae7c2fc2618af5281d06129330"],["sourcecred","git","COMMIT","ad563e12ffae5d7b53764f2709b2da47a17aa18c"],["sourcecred","git","COMMIT","ae656a1a99e9a8cc227c187154123571d9d16872"],["sourcecred","git","COMMIT","af3fc40b0b4f010f4236391bc245bab5c3fc5343"],["sourcecred","git","COMMIT","af6293708734a500d9aeb65ece80c20d28d973d3"],["sourcecred","git","COMMIT","af89e8d6be326c34865a925f1be4c67877064e30"],["sourcecred","git","COMMIT","b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7"],["sourcecred","git","COMMIT","b06798edf2d6f86723961bdd7a387dda3eadcb00"],["sourcecred","git","COMMIT","b1e24185c567c4f9a60959559e6ff1ac7dbb6279"],["sourcecred","git","COMMIT","b28ca121bfda152ce8bacc325aa7a31f9a3edb1e"],["sourcecred","git","COMMIT","b2ec0646a7533828b003a7cc525ac0ec48c5d9a0"],["sourcecred","git","COMMIT","b34492813251b626e0ef02911d7a0fe28aaa2b0f"],["sourcecred","git","COMMIT","b3a4034f04332a6546a7d03ee781f10dbf9e32f3"],["sourcecred","git","COMMIT","b3bfd8136d25f8aacc2b9267a3700f36f366792e"],["sourcecred","git","COMMIT","b3e0e30623418aaf8af913aed3c78c36e5e7c742"],["sourcecred","git","COMMIT","b3f667c746d54fd1e7ef41d4e91186ff705cb01a"],["sourcecred","git","COMMIT","b3f72b5f3ed774a1891f2da1a3c1b60af9272d84"],["sourcecred","git","COMMIT","b4394213300ff4d72ebaca7c63cf919df306ead3"],["sourcecred","git","COMMIT","b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9"],["sourcecred","git","COMMIT","b4e879fb7c6c79a659dacc784a3e2165411d7531"],["sourcecred","git","COMMIT","b55a7a196b8f85817e8548bf7b9afba1341131e2"],["sourcecred","git","COMMIT","b5820a49d275ad3e2441dc49ba0e9c932e7e01ed"],["sourcecred","git","COMMIT","b5ad5eea401b4f415b9da446187b893a7ceee1b5"],["sourcecred","git","COMMIT","b5df3c8cd85cbe43606f2052f00631dbfcca42d9"],["sourcecred","git","COMMIT","b5e53ece75d30f3d379adb3a07c8cf652434e773"],["sourcecred","git","COMMIT","b6388db5eb6a6fed56eba661db2b761ccddfd6fc"],["sourcecred","git","COMMIT","b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa"],["sourcecred","git","COMMIT","b6920f3b6646522b3fc0f93e6343506b485c158b"],["sourcecred","git","COMMIT","b6968e47899cfc22652e1f1dbb3b82ed98cc5232"],["sourcecred","git","COMMIT","b72e98f338ce136d49bbc775464fbe071df8c431"],["sourcecred","git","COMMIT","b8100f78f6295a440d2e6a9e95a9099504c53374"],["sourcecred","git","COMMIT","b8319d3616c7d5e6c2af8087ea63e9fab1a73c02"],["sourcecred","git","COMMIT","b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e"],["sourcecred","git","COMMIT","b85906087b6422297975a655808e1ddf998fdc8c"],["sourcecred","git","COMMIT","b85c0b5ab98357c6dc3af69297e6a795851c89f4"],["sourcecred","git","COMMIT","b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc"],["sourcecred","git","COMMIT","b8c9da4bcc0d1a50add9423473a6c162cdb99597"],["sourcecred","git","COMMIT","b9309e4d44289af8341f43103b7be195df5998b0"],["sourcecred","git","COMMIT","ba08f21f38fef25e65a006e4af00591f623cba88"],["sourcecred","git","COMMIT","ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8"],["sourcecred","git","COMMIT","bab488e0531a826777829e70c4cf8f620202e881"],["sourcecred","git","COMMIT","bb4c80608db52c03a33b09edbf8fdbffc666c664"],["sourcecred","git","COMMIT","bb9844bd3a996039c00d44054f3450fcdc905d22"],["sourcecred","git","COMMIT","bbc54e4947190da8c37d767e004339b62fb34aac"],["sourcecred","git","COMMIT","bbca4d024098c749b7064b70c24c416061255c75"],["sourcecred","git","COMMIT","bc959b6cd0e80d193876a8edb8ff0f18142ba558"],["sourcecred","git","COMMIT","bcc0d1e18f56c0ee098c7a1316afa5252c5d3392"],["sourcecred","git","COMMIT","bd29ad9bca1ac4c5f098c091bce6ea0824776115"],["sourcecred","git","COMMIT","bdb4c8a38c86a4598b2da69391fc84939148d738"],["sourcecred","git","COMMIT","bdd1d95095fc99186754502c96c1ecbff216fb14"],["sourcecred","git","COMMIT","be503991de7a3225cfc2888ab833abfccdb1d309"],["sourcecred","git","COMMIT","be5b93ae59bf65b698f6ed6301d28218c8170e91"],["sourcecred","git","COMMIT","bfb1be19201eedf6f5556b76fb3cba77b694c535"],["sourcecred","git","COMMIT","bfd321a5c384dc7fab99062bcc3491705303a176"],["sourcecred","git","COMMIT","c00a25ed5500c60da5520e12c68db9dc1e003cd1"],["sourcecred","git","COMMIT","c04c305dff31a60a5ea91270b07b5b46c4b734c3"],["sourcecred","git","COMMIT","c0622fcf93369e37f99e4809cea077710b9677d9"],["sourcecred","git","COMMIT","c09ce59f6cb00f62380a8dca641fbd016f0d70a5"],["sourcecred","git","COMMIT","c0f32243cff400f34b36897db4e64d3ae2cec253"],["sourcecred","git","COMMIT","c191e57f44662bcb753ec4c08a25545b0d25e284"],["sourcecred","git","COMMIT","c264cfe1bc96c758079bffcd728f497d0d7c0117"],["sourcecred","git","COMMIT","c2bf0a118855a87f962a7bda788c73120c64940b"],["sourcecred","git","COMMIT","c34bc9c573eacc008ca98653ddd2661f823ff9b2"],["sourcecred","git","COMMIT","c37818dc54db302c1bb2bfe99312084cb6452263"],["sourcecred","git","COMMIT","c3d50445a0194dac7d52baaaa8aa3dbf2bd77173"],["sourcecred","git","COMMIT","c461bb40366be6124cc8e09af25741c5e65b1a6a"],["sourcecred","git","COMMIT","c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3"],["sourcecred","git","COMMIT","c4ae2b95edd223a2b3269f4913c5a237e7557194"],["sourcecred","git","COMMIT","c4fa771d6e61d74c5f1e702dd238ebbb4b538be8"],["sourcecred","git","COMMIT","c515036f8ba1937cda94092e87b0a13545d86829"],["sourcecred","git","COMMIT","c519a0916f23866c99c0c76bad33dec09c4a1052"],["sourcecred","git","COMMIT","c5c9f44334709db3c28eb81f1ee928a3823ae003"],["sourcecred","git","COMMIT","c5eeac948569a06622740d0b9340c622ddb469d3"],["sourcecred","git","COMMIT","c61bc79183374e7e37a8456ff47f662a2bc21baf"],["sourcecred","git","COMMIT","c676d5b790126e2af137ca1c53c8048db443a88a"],["sourcecred","git","COMMIT","c7acef8a5664d3dd57059e8cc447c4f1dbe269db"],["sourcecred","git","COMMIT","c85244688604991c9ee1ae17a7bf62373a004fd1"],["sourcecred","git","COMMIT","c85e7ad86fb08653971ed365f4f316d4577178ed"],["sourcecred","git","COMMIT","c8d413c01f9aa1c9d272f96283367268ff49103f"],["sourcecred","git","COMMIT","ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de"],["sourcecred","git","COMMIT","cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b"],["sourcecred","git","COMMIT","cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932"],["sourcecred","git","COMMIT","ccde11b4e85afd9685dc9f58165148861adbe59e"],["sourcecred","git","COMMIT","cda86c72f131bd0ba804c57d20be41d8f017cf3d"],["sourcecred","git","COMMIT","cee0c69332f9f5481d0ae7f1dcf1a8f92f346877"],["sourcecred","git","COMMIT","cf359f56a9e7d9e380a729fe64f0fd9e06853c21"],["sourcecred","git","COMMIT","cf41636379acd5fb9e27af62727fdf64a111d959"],["sourcecred","git","COMMIT","d01e1a1762cde70b0fb49e82ec5432de6d691fb3"],["sourcecred","git","COMMIT","d0cc40b28ca9129e733107d99730dfbcd9449273"],["sourcecred","git","COMMIT","d13028772ab946a65da8787a255248337864a5ba"],["sourcecred","git","COMMIT","d1a721f8eed2805dd0c85d8d9fef06032f04c056"],["sourcecred","git","COMMIT","d210d6f387860b4736193624125ec5e1b8f5c88a"],["sourcecred","git","COMMIT","d219bd2f62a0ec8ac06b82daf83499442e3cb173"],["sourcecred","git","COMMIT","d265f3f3a462805b6c27dc7507b15be038730a06"],["sourcecred","git","COMMIT","d383b8fd2e6815eb8a5099785a7ef5c4393e531e"],["sourcecred","git","COMMIT","d44bc4f2e2256f0ebe1af485b047d9567583ed85"],["sourcecred","git","COMMIT","d4555554d347b2385ac96a530f5628491c2c724c"],["sourcecred","git","COMMIT","d45cdeaaabc568712db4fd59c157084fc4819e19"],["sourcecred","git","COMMIT","d49ea3b27586437f262b74132224b280597e67bd"],["sourcecred","git","COMMIT","d56ad45d57b3ca44c6702f66dbcf349dd39a9116"],["sourcecred","git","COMMIT","d593b126af5ccde32fe610fbc399f9233c4fcdcf"],["sourcecred","git","COMMIT","d601ad079de95e29fe5bd99dd225621e193b09a8"],["sourcecred","git","COMMIT","d63265d1ec1ac6d5e5d661fc137bef3bc4752020"],["sourcecred","git","COMMIT","d6bcaf0ed530067e11be1321280fc83f3a289be2"],["sourcecred","git","COMMIT","d7e5763c37582067d930e53718273eef67997db7"],["sourcecred","git","COMMIT","d8034c1a997a6f3762eb64abefd3983ca5c17b27"],["sourcecred","git","COMMIT","d8288bb356551f8609c84a09886c19fb4fd673b4"],["sourcecred","git","COMMIT","d83736f0f5cc5c3fc415146a5ad80145b3a565a7"],["sourcecred","git","COMMIT","d8f4083966d599198ff8f988f55ced0e2b91ba98"],["sourcecred","git","COMMIT","d9900e922c90ce1d244761f1e2ad2fc4fb65f298"],["sourcecred","git","COMMIT","d9b40e071c2f216b8fb4cebce788ec1bf892ac7c"],["sourcecred","git","COMMIT","da69104f37bc78c1c71a34b9fafe537f875ca7dc"],["sourcecred","git","COMMIT","da9fa8ec523e360ace96eba7bc72bedadc69c8ac"],["sourcecred","git","COMMIT","db97114fd0dbcd580c0a88991f4b6991d0bef4e5"],["sourcecred","git","COMMIT","dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7"],["sourcecred","git","COMMIT","dc008266ba36121c746ddb6b60121b6e084d3065"],["sourcecred","git","COMMIT","dcba3eb54f781973155ef382ed674685adb9491f"],["sourcecred","git","COMMIT","dccb0bae8344da0fa4bc886fd642bd819e5ab204"],["sourcecred","git","COMMIT","dd687457b7a8178a907116c7880a1bb498bb4131"],["sourcecred","git","COMMIT","ddad2121732e1f0646c5ab6d3d8fc51c431f94b8"],["sourcecred","git","COMMIT","de56e092581eb21affd70f681de349d461487d47"],["sourcecred","git","COMMIT","def7f01015008f1aefda848d93661555c086231a"],["sourcecred","git","COMMIT","defb8c56dbc8ed6a58674a7c569010ddc17fea0b"],["sourcecred","git","COMMIT","df39053f37bf93823cd4364b819ca1289e4481b1"],["sourcecred","git","COMMIT","df4aca3876a771513b7e5d9a0c28517746508961"],["sourcecred","git","COMMIT","df9f7423f0e18a57835324b459fe243d3f3e55ab"],["sourcecred","git","COMMIT","e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4"],["sourcecred","git","COMMIT","e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f"],["sourcecred","git","COMMIT","e11bcaa214504bd338f41f0684c387377e91d223"],["sourcecred","git","COMMIT","e27f889ed7e899c482d528e5bafb0a950047db35"],["sourcecred","git","COMMIT","e2dddf8e3303043dae6bf8efc44777965d5fde9a"],["sourcecred","git","COMMIT","e3707010bd6cff203cbe2450f48d2ee7bbc5d155"],["sourcecred","git","COMMIT","e41eb256be1cff6f8173bf1b4ab1e08d82680377"],["sourcecred","git","COMMIT","e4db1e5c01390590a53e47424b6fc6389fbed459"],["sourcecred","git","COMMIT","e5810c7e956182f58bacafd24c51f8be7e6af31f"],["sourcecred","git","COMMIT","e5c721ba787d25a591d470c5ba11d9bd41e1797f"],["sourcecred","git","COMMIT","e63ec70c3b75de539e86faf77c9e44f83753cb1f"],["sourcecred","git","COMMIT","e7d262bceecfcab743754d6d3a41fea1d74be955"],["sourcecred","git","COMMIT","e86fcfd2e1ddf643bc06ef0a08d439899b509c8a"],["sourcecred","git","COMMIT","e8c036745f6c3d82f34e46e6f40ce520f53be1ef"],["sourcecred","git","COMMIT","e8d2566e023a7cefb04c5157b0f85568fcb9a3c5"],["sourcecred","git","COMMIT","e97f15b28e12292f7df8de6515a27b63f989acfb"],["sourcecred","git","COMMIT","e9a68209df1f07b4f9f28319e98dcade12ebde80"],["sourcecred","git","COMMIT","ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2"],["sourcecred","git","COMMIT","ebfca230987726fb6d0c74cdba1e7346b5d08345"],["sourcecred","git","COMMIT","ec5436b68ec36cea41f923ae2d95841b7dbe678a"],["sourcecred","git","COMMIT","eca1c8e4fb9897f86e7192f1741d00509707a42d"],["sourcecred","git","COMMIT","ecc49af4d29ddb86bece5cf38e3295d03d80efc8"],["sourcecred","git","COMMIT","ed75cb58e840a9712a7fe5678e0234538101824c"],["sourcecred","git","COMMIT","ed85892fe323a252ac0d44ca5ce619fe73cc8a5d"],["sourcecred","git","COMMIT","ee30ad273845bf58d551566ffe5c4e87e98c07c2"],["sourcecred","git","COMMIT","ee805c230d58b420f39bedd6d7dc5c10c8f14856"],["sourcecred","git","COMMIT","ee80ee18c4c10447c5e3d180c7cb87d177cf6bab"],["sourcecred","git","COMMIT","ee958e4ea4a9d7db08a45e558912449245e1f619"],["sourcecred","git","COMMIT","ef1a4e1d3bf70f9daccebdf3028ea8f476c26899"],["sourcecred","git","COMMIT","efe2a210242adcd52a288d57f373b09187b88c17"],["sourcecred","git","COMMIT","f024b3aa2227eccef235a3b4d5a76e7f04cc78fc"],["sourcecred","git","COMMIT","f13bf3f7a6dfeebd2725261a11357612547e0783"],["sourcecred","git","COMMIT","f1650581495bd5ba951e6aca3adc65aa4271e7ec"],["sourcecred","git","COMMIT","f1b1a348514a8d88750c2774a379a00b85ea0810"],["sourcecred","git","COMMIT","f1ec698041e4fdef5931f7928a751a8a45433b9f"],["sourcecred","git","COMMIT","f3484bc0a5f204b3b6cd3159a0e3c274c2056154"],["sourcecred","git","COMMIT","f370b16891f4dc805ea30ac6b5a3042c8224bb45"],["sourcecred","git","COMMIT","f3d076f67797f6c3491e046a5dcdce0372890de5"],["sourcecred","git","COMMIT","f4379c34b30691a61e67438d4da4192f7cb18710"],["sourcecred","git","COMMIT","f4597eaa6b0681ebfb7e32991fc295f52427d199"],["sourcecred","git","COMMIT","f4b57f657a24f0feb175f404718f49ffc506edc0"],["sourcecred","git","COMMIT","f5b6b5b9b8ab493342591799369bab4473ad4bd5"],["sourcecred","git","COMMIT","f6a88b69728fa2cbc9304a9d3a6193afa9aca17c"],["sourcecred","git","COMMIT","f74897580057b86bf1ec803694b2494dc5099ba4"],["sourcecred","git","COMMIT","f78660ce09132d6127ab960a0fdb9f19f2b76893"],["sourcecred","git","COMMIT","f79294b14e900ca927b3e9e5cf51972814cd2c50"],["sourcecred","git","COMMIT","f7ecdc6617ce77574676654a84f58313ad9f84a8"],["sourcecred","git","COMMIT","f819ec520e754c4adb46d13d0126fa48f03b0dac"],["sourcecred","git","COMMIT","f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0"],["sourcecred","git","COMMIT","f96bc3f66106ed4341d674b5a37a1fce8035c922"],["sourcecred","git","COMMIT","f9f862051f1b8310f274b4e8e8c20604a75bda59"],["sourcecred","git","COMMIT","fb4fcae94286c8bcdda97e172bc867ab4e08b76c"],["sourcecred","git","COMMIT","fcacf68e748f6ee1883db51392267fc8537db08b"],["sourcecred","git","COMMIT","fce33399d0696995385d8895995cb0fdaad56615"],["sourcecred","git","COMMIT","fd8dac99c58c603001fa56c8d2dd2553db8fa6c0"],["sourcecred","git","COMMIT","fdaff82509a99dc7adb3d1289b2ad02a339fe19e"],["sourcecred","git","COMMIT","fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2"],["sourcecred","git","COMMIT","fe33dab74a05f43d1e24044dc4413ff0e72aad50"],["sourcecred","git","COMMIT","fe865a679a723590923af6394366b58fb01c8f50"],["sourcecred","git","COMMIT","ff708c3b7352a9b659df8120351e6f1eab566a2a"],["sourcecred","git","COMMIT","ffec223be5fffa16d0ce2effb0aeed1b959a2532"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],["sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],["sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],["sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],["sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],["sourcecred","github","ISSUE","aracred","AraCred","12"],["sourcecred","github","ISSUE","aracred","AraCred","14"],["sourcecred","github","ISSUE","aracred","AraCred","15"],["sourcecred","github","ISSUE","aracred","AraCred","16"],["sourcecred","github","ISSUE","aracred","AraCred","17"],["sourcecred","github","ISSUE","aracred","AraCred","18"],["sourcecred","github","ISSUE","aracred","AraCred","19"],["sourcecred","github","ISSUE","aracred","AraCred","2"],["sourcecred","github","ISSUE","aracred","AraCred","22"],["sourcecred","github","ISSUE","aracred","AraCred","23"],["sourcecred","github","ISSUE","aracred","AraCred","24"],["sourcecred","github","ISSUE","aracred","AraCred","25"],["sourcecred","github","ISSUE","aracred","AraCred","26"],["sourcecred","github","ISSUE","aracred","AraCred","3"],["sourcecred","github","ISSUE","aracred","AraCred","4"],["sourcecred","github","ISSUE","aracred","AraCred","5"],["sourcecred","github","ISSUE","aracred","AraCred","6"],["sourcecred","github","ISSUE","aracred","AraCred","8"],["sourcecred","github","ISSUE","aracred","AraCred","9"],["sourcecred","github","ISSUE","aracred","TheSource","3"],["sourcecred","github","ISSUE","aracred","aracred-cli","1"],["sourcecred","github","ISSUE","aracred","bot","1"],["sourcecred","github","ISSUE","aracred","bot","2"],["sourcecred","github","ISSUE","aracred","bot","3"],["sourcecred","github","ISSUE","aracred","bot","5"],["sourcecred","github","ISSUE","aracred","bot","6"],["sourcecred","github","ISSUE","aracred","bot","7"],["sourcecred","github","ISSUE","aracred","comms","1"],["sourcecred","github","ISSUE","aracred","leaderboard","1"],["sourcecred","github","ISSUE","aracred","leaderboard","2"],["sourcecred","github","ISSUE","aracred","onboarding","1"],["sourcecred","github","ISSUE","aracred","onboarding","2"],["sourcecred","github","ISSUE","aracred","onboarding","3"],["sourcecred","github","ISSUE","aracred","onboarding","4"],["sourcecred","github","ISSUE","aracred","onboarding","5"],["sourcecred","github","ISSUE","aracred","onboarding","6"],["sourcecred","github","ISSUE","aracred","website","10"],["sourcecred","github","ISSUE","aracred","website","11"],["sourcecred","github","ISSUE","aracred","website","2"],["sourcecred","github","ISSUE","aracred","website","7"],["sourcecred","github","PULL","aracred","AraCred","1"],["sourcecred","github","PULL","aracred","AraCred","10"],["sourcecred","github","PULL","aracred","AraCred","11"],["sourcecred","github","PULL","aracred","AraCred","13"],["sourcecred","github","PULL","aracred","AraCred","20"],["sourcecred","github","PULL","aracred","AraCred","21"],["sourcecred","github","PULL","aracred","AraCred","27"],["sourcecred","github","PULL","aracred","AraCred","7"],["sourcecred","github","PULL","aracred","TheSource","1"],["sourcecred","github","PULL","aracred","TheSource","2"],["sourcecred","github","PULL","aracred","bot","4"],["sourcecred","github","PULL","aracred","bot","8"],["sourcecred","github","PULL","aracred","bot","9"],["sourcecred","github","PULL","aracred","website","1"],["sourcecred","github","PULL","aracred","website","12"],["sourcecred","github","PULL","aracred","website","13"],["sourcecred","github","PULL","aracred","website","14"],["sourcecred","github","PULL","aracred","website","15"],["sourcecred","github","PULL","aracred","website","16"],["sourcecred","github","PULL","aracred","website","3"],["sourcecred","github","PULL","aracred","website","4"],["sourcecred","github","PULL","aracred","website","5"],["sourcecred","github","PULL","aracred","website","6"],["sourcecred","github","PULL","aracred","website","8"],["sourcecred","github","PULL","aracred","website","9"],["sourcecred","github","REPO","aracred","AraCred"],["sourcecred","github","REPO","aracred","TheSource"],["sourcecred","github","REPO","aracred","aracred-cli"],["sourcecred","github","REPO","aracred","bot"],["sourcecred","github","REPO","aracred","comms"],["sourcecred","github","REPO","aracred","governance"],["sourcecred","github","REPO","aracred","leaderboard"],["sourcecred","github","REPO","aracred","onboarding"],["sourcecred","github","REPO","aracred","website"],["sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],["sourcecred","github","REVIEW","aracred","bot","8","395001410"],["sourcecred","github","REVIEW","aracred","bot","8","395035075"],["sourcecred","github","REVIEW","aracred","website","15","393444362"],["sourcecred","github","USERLIKE","USER","AlexMasmej"],["sourcecred","github","USERLIKE","USER","Beanow"],["sourcecred","github","USERLIKE","USER","Evalir"],["sourcecred","github","USERLIKE","USER","c0mput3rxz"],["sourcecred","github","USERLIKE","USER","vntrp"],["sourcecred","identity","0xGabi"],["sourcecred","identity","Aaron"],["sourcecred","identity","burrrata"],["sourcecred","identity","crisorg"],["sourcecred","identity","cslarson"],["sourcecred","identity","dandelion"],["sourcecred","identity","evalir"],["sourcecred","identity","fabriziovigevani"],["sourcecred","identity","fioreb"],["sourcecred","identity","hammadj"],["sourcecred","identity","li"],["sourcecred","identity","lkngtn"],["sourcecred","identity","mzargham"],["sourcecred","identity","onbjerg"],["sourcecred","identity","rperez"],["sourcecred","identity","sembrestels"],["sourcecred","identity","willjgriff"]]}],"weightsJSON":[{"type":"sourcecred/weights","version":"0.2.0"},{"edgeWeights":{"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000":{"backwards":1,"forwards":0.25},"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000":{"backwards":1,"forwards":1},"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000":{"backwards":0.25,"forwards":1},"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000":{"backwards":0,"forwards":2},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000":{"backwards":0,"forwards":4},"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000":{"backwards":0,"forwards":1}},"nodeWeights":{"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000":0,"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000":0,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629411717704712192\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629412800346849302\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000635151982298136587\u0000":3,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000❤️\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696454968831508630\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696455224532926464\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699021694240686190\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699326575627206778\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000571023281382227978\u0000696730540039995493\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000657069807505637397\u0000698965418370400296\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000250086586450968576\u0000698969730580742174\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000321092785921064961\u0000698973708316049488\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000571023281382227978\u0000698921390845198426\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000118260545211072517\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000250086586450968576\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000321092785921064961\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000440281764204642314\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000683892894767251489\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696427343220047872\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696441890048049232\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000699123164340551691\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000700087985634541678\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000321092785921064961\u0000699560532046250034\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000699275497984622760\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000700064920104075394\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420197644632116\u0000👍\u0000537858848912834561\u0000699284090607763506\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000698942081858666527\u0000👍\u0000250086586450968576\u0000699822779670724650\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000👍\u0000657069807505637397\u0000700040376085381152\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000321092785921064961\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000657069807505637397\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000🔥\u0000363774203960360961\u0000700039441799970969\u0000":1,"N\u0000sourcecred\u0000discourse\u0000like\u0000":4,"N\u0000sourcecred\u0000discourse\u0000post\u0000":0,"N\u0000sourcecred\u0000discourse\u0000topic\u0000":0,"N\u0000sourcecred\u0000discourse\u0000user\u0000":0,"N\u0000sourcecred\u0000github":2,"N\u0000sourcecred\u0000github\u0000COMMENT\u0000":0.5,"N\u0000sourcecred\u0000github\u0000COMMIT\u0000":1,"N\u0000sourcecred\u0000github\u0000ISSUE\u0000":1,"N\u0000sourcecred\u0000github\u0000PULL\u0000":16,"N\u0000sourcecred\u0000github\u0000REPO\u0000":4,"N\u0000sourcecred\u0000github\u0000REVIEW\u0000":4,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000":0,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000":0}}]}]}] \ No newline at end of file diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/pluginDeclarations.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/pluginDeclarations.json new file mode 100644 index 0000000..5a45ac0 --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/pluginDeclarations.json @@ -0,0 +1 @@ +[{"type":"sourcecred/pluginDeclarations","version":"0.1.0"},[{"edgePrefix":"E\u0000sourcecred\u0000github\u0000","edgeTypes":[{"backwardName":"is authored by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub account to a post that they authored.\n\nExamples of posts include issues, pull requests, and comments.\n","forwardName":"authors","prefix":"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000"},{"backwardName":"has child","defaultWeight":{"backwards":0.25,"forwards":1},"description":"Connects a GitHub entity to its child entities.\n\nFor example, a Repository has Issues and Pull Requests as children, and a\nPull Request has comments and reviews as children.\n","forwardName":"has parent","prefix":"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000"},{"backwardName":"is merged by","defaultWeight":{"backwards":1,"forwards":0.5},"description":"Connects a GitHub pull request to the Git commit that it merges.\n","forwardName":"merges","prefix":"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000"},{"backwardName":"is referenced by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a GitHub post to an entity that it references.\n\nFor example, if you write a GitHub issue comment that says \"thanks\n@username for pull #1337\", it will create references edges to both the user\n@username, and to pull #1337 in the same repository.\n","forwardName":"references","prefix":"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000"},{"backwardName":"got 👍 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 👍 reaction.\n","forwardName":"reacted 👍 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000"},{"backwardName":"got ❤️ from","defaultWeight":{"backwards":0,"forwards":2},"description":"Connects users to posts to which they gave a ❤️ reaction.\n","forwardName":"reacted ❤️ to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000"},{"backwardName":"got 🎉 from","defaultWeight":{"backwards":0,"forwards":4},"description":"Connects users to posts to which they gave a 🎉 reaction.\n","forwardName":"reacted 🎉 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000"},{"backwardName":"got 🚀 from","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects users to posts to which they gave a 🚀 reaction.\n","forwardName":"reacted 🚀 to","prefix":"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000"},{"backwardName":"merged on GitHub as","defaultWeight":{"backwards":1,"forwards":1},"description":"Connects a commit on GitHub to the corresponding raw Git commit.\n","forwardName":"corresponds to Git commit","prefix":"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000"}],"name":"GitHub","nodePrefix":"N\u0000sourcecred\u0000github\u0000","nodeTypes":[{"defaultWeight":4,"description":"NodeType for a GitHub repository","name":"Repository","pluralName":"Repositories","prefix":"N\u0000sourcecred\u0000github\u0000REPO\u0000"},{"defaultWeight":2,"description":"NodeType for a GitHub issue","name":"Issue","pluralName":"Issues","prefix":"N\u0000sourcecred\u0000github\u0000ISSUE\u0000"},{"defaultWeight":4,"description":"NodeType for a GitHub pull request","name":"Pull request","pluralName":"Pull requests","prefix":"N\u0000sourcecred\u0000github\u0000PULL\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub code review","name":"Pull request review","pluralName":"Pull request reviews","prefix":"N\u0000sourcecred\u0000github\u0000REVIEW\u0000"},{"defaultWeight":1,"description":"NodeType for a GitHub comment","name":"Comment","pluralName":"Comments","prefix":"N\u0000sourcecred\u0000github\u0000COMMENT\u0000"},{"defaultWeight":1,"description":"Represents a particular Git commit on GitHub, i.e. scoped to a particular repository","name":"Commit","pluralName":"Commits","prefix":"N\u0000sourcecred\u0000github\u0000COMMIT\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"},{"defaultWeight":0,"description":"NodeType for a GitHub bot account","name":"Bot","pluralName":"Bots","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000"}],"userTypes":[{"defaultWeight":0,"description":"NodeType for a GitHub user","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000discord\u0000","edgeTypes":[{"backwardName":"message is authored by","defaultWeight":{"backwards":1,"forwards":0.25},"description":"Connects an author to a message they've created.","forwardName":"authors message","prefix":"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000"},{"backwardName":"reaction added by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a member to a reaction that they added.","forwardName":"adds reaction","prefix":"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000"},{"backwardName":"is reacted to by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a reaction to a message that it reacts to.","forwardName":"reacts to","prefix":"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000"},{"backwardName":"is mentioned by","defaultWeight":{"backwards":0.0625,"forwards":1},"description":"Connects a message to the member being mentioned.","forwardName":"mentions","prefix":"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000"}],"name":"Discord","nodePrefix":"N\u0000sourcecred\u0000discord\u0000","nodeTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"},{"defaultWeight":0,"description":"A Discord message, posted in a particular channel","name":"Message","pluralName":"Messages","prefix":"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000"},{"defaultWeight":1,"description":"A reaction by some user, directed at some message","name":"Reaction","pluralName":"Reactions","prefix":"N\u0000sourcecred\u0000discord\u0000REACTION\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A member of the Discord server","name":"Member","pluralName":"Members","prefix":"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000"}]},{"edgePrefix":"E\u0000sourcecred\u0000identity\u0000","edgeTypes":[],"name":"Identity","nodePrefix":"N\u0000sourcecred\u0000identity\u0000","nodeTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A combined user identity as specified to SourceCred","name":"Identity","pluralName":"Identities","prefix":"N\u0000sourcecred\u0000identity\u0000"}]}]] \ No newline at end of file diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/project.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/project.json new file mode 100644 index 0000000..34312b7 --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/project.json @@ -0,0 +1 @@ +[{"type":"sourcecred/project","version":"0.4.0"},{"discord":{"guildId":"695344751490236486","reactionWeights":{"❤️":1,"👍":1,"💯":1,"🔥":1,"🙏":1}},"id":"@AraCred","identities":[{"aliases":["github/burrrata","discord/657069807505637397"],"username":"burrrata"},{"aliases":["github/pythonpete32","discord/571023281382227978"],"username":"Aaron"},{"aliases":["github/hammadj","discord/118260545211072517"],"username":"hammadj"},{"aliases":["github/decentralion","discord/420341518948237331"],"username":"dandelion"},{"aliases":["github/mzargham","discord/250086586450968576"],"username":"mzargham"},{"aliases":["github/lkngtn","discord/363774203960360961"],"username":"lkngtn"},{"aliases":["github/cslarson"],"username":"cslarson"},{"aliases":["github/0xgabi"],"username":"0xGabi"},{"aliases":["github/sembrestels"],"username":"sembrestels"},{"aliases":["github/fabriziovigevani"],"username":"fabriziovigevani"},{"aliases":["github/fioreb"],"username":"fioreb"},{"aliases":["github/onbjerg"],"username":"onbjerg"},{"aliases":["github/rperez89"],"username":"rperez"},{"aliases":["github/willjgriff"],"username":"willjgriff"},{"aliases":["github/luisivan"],"username":"li"},{"aliases":["github/evalir","discord/321092785921064961"],"username":"evalir"},{"aliases":["github/crisog","discord/474405294307278880"],"username":"crisorg"}],"repoIds":[{"name":"AraCred","owner":"aracred"},{"name":"website","owner":"aracred"},{"name":"bot","owner":"aracred"},{"name":"onboarding","owner":"aracred"},{"name":"TheSource","owner":"aracred"},{"name":"governance","owner":"aracred"},{"name":"comms","owner":"aracred"},{"name":"leaderboard","owner":"aracred"},{"name":"aracred-cli","owner":"aracred"}]}] \ No newline at end of file diff --git a/docs/api/v1/data/projects/QEFyYUNyZWQ/weightedGraph.json b/docs/api/v1/data/projects/QEFyYUNyZWQ/weightedGraph.json new file mode 100644 index 0000000..81f0186 --- /dev/null +++ b/docs/api/v1/data/projects/QEFyYUNyZWQ/weightedGraph.json @@ -0,0 +1 @@ +[{"type":"sourcecred/weightedGraph","version":"0.1.0"},{"graphJSON":[{"type":"sourcecred/graph","version":"0.8.0"},{"edges":[{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696454968831508630"],"dstIndex":176,"srcIndex":1409,"timestampMs":1586118204077},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","👍","695344752031432766","696455224532926464"],"dstIndex":177,"srcIndex":1409,"timestampMs":1586118265041},{"address":["sourcecred","discord","ADDS_REACTION","user","118260545211072517","🔥","696400331260821586","698659683526901810"],"dstIndex":188,"srcIndex":1409,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699021694240686190"],"dstIndex":178,"srcIndex":1412,"timestampMs":1586730159102},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","695344752031432766","699025335148216410"],"dstIndex":179,"srcIndex":1412,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","👍","698942081858666527","699822779670724650"],"dstIndex":205,"srcIndex":1412,"timestampMs":1586921152752},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","695344752031432766","698969730580742174"],"dstIndex":185,"srcIndex":1412,"timestampMs":1586717770000},{"address":["sourcecred","discord","ADDS_REACTION","user","250086586450968576","🔥","696400331260821586","698659683526901810"],"dstIndex":189,"srcIndex":1412,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","698659683526901810"],"dstIndex":190,"srcIndex":4,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","291388682710024192","🔥","696400331260821586","699287660589613148"],"dstIndex":191,"srcIndex":4,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","💯","700023168995295233","700040917926543422"],"dstIndex":207,"srcIndex":1406,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","695344752031432766","698973708316049488"],"dstIndex":186,"srcIndex":1406,"timestampMs":1586718718366},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696400331260821586","699287660589613148"],"dstIndex":192,"srcIndex":1406,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","321092785921064961","🔥","696420039141752863","699560532046250034"],"dstIndex":201,"srcIndex":1406,"timestampMs":1586858628046},{"address":["sourcecred","discord","ADDS_REACTION","user","363774203960360961","🔥","700023168995295233","700039441799970969"],"dstIndex":209,"srcIndex":1411,"timestampMs":1586972809029},{"address":["sourcecred","discord","ADDS_REACTION","user","440281764204642314","🔥","696400331260821586","699287660589613148"],"dstIndex":193,"srcIndex":7,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","537858848912834561","👍","696420197644632116","699284090607763506"],"dstIndex":204,"srcIndex":10,"timestampMs":1586792719271},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","❤️","695344752031432766","695669843034243134"],"dstIndex":175,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","👍","695344752031432766","695669843034243134"],"dstIndex":180,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","💯","695344752031432766","696730540039995493"],"dstIndex":183,"srcIndex":1401,"timestampMs":1586183905373},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","695344752031432766","698921390845198426"],"dstIndex":187,"srcIndex":1401,"timestampMs":1586706244909},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","698659683526901810"],"dstIndex":194,"srcIndex":1401,"timestampMs":1586643849022},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696400331260821586","699287660589613148"],"dstIndex":195,"srcIndex":1401,"timestampMs":1586793570421},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","699275497984622760"],"dstIndex":202,"srcIndex":1401,"timestampMs":1586790670630},{"address":["sourcecred","discord","ADDS_REACTION","user","571023281382227978","🔥","696420039141752863","700064920104075394"],"dstIndex":203,"srcIndex":1401,"timestampMs":1586978883530},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699025335148216410"],"dstIndex":181,"srcIndex":1402,"timestampMs":1586731027162},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","695344752031432766","699326575627206778"],"dstIndex":182,"srcIndex":1402,"timestampMs":1586802848489},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696427343220047872"],"dstIndex":197,"srcIndex":1402,"timestampMs":1586111617618},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","696441890048049232"],"dstIndex":198,"srcIndex":1402,"timestampMs":1586115085852},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","699123164340551691"],"dstIndex":199,"srcIndex":1402,"timestampMs":1586754351459},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","696420039141752863","700087985634541678"],"dstIndex":200,"srcIndex":1402,"timestampMs":1586984382781},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","👍","700023168995295233","700040376085381152"],"dstIndex":206,"srcIndex":1402,"timestampMs":1586973031780},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","695344752031432766","698965418370400296"],"dstIndex":184,"srcIndex":1402,"timestampMs":1586716741889},{"address":["sourcecred","discord","ADDS_REACTION","user","657069807505637397","💯","700023168995295233","700040917926543422"],"dstIndex":208,"srcIndex":1402,"timestampMs":1586973160965},{"address":["sourcecred","discord","ADDS_REACTION","user","683892894767251489","🔥","696400331260821586","698659683526901810"],"dstIndex":196,"srcIndex":13,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700038868707180644"],"dstIndex":123,"srcIndex":0,"timestampMs":1586972672393},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":0,"timestampMs":1586972809029},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044206176993470"],"dstIndex":128,"srcIndex":0,"timestampMs":1586973944945},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044421760286721"],"dstIndex":129,"srcIndex":0,"timestampMs":1586973996344},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044496049799228"],"dstIndex":130,"srcIndex":0,"timestampMs":1586974014056},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044548411490335"],"dstIndex":131,"srcIndex":0,"timestampMs":1586974026540},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044635619328131"],"dstIndex":132,"srcIndex":0,"timestampMs":1586974047332},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700044689285316738"],"dstIndex":133,"srcIndex":0,"timestampMs":1586974060127},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049028251123832"],"dstIndex":134,"srcIndex":0,"timestampMs":1586975094617},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049257490808933"],"dstIndex":135,"srcIndex":0,"timestampMs":1586975149272},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700049378643017889"],"dstIndex":136,"srcIndex":0,"timestampMs":1586975178157},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700056792524128306"],"dstIndex":139,"srcIndex":0,"timestampMs":1586976945764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059334679330946"],"dstIndex":140,"srcIndex":0,"timestampMs":1586977551861},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059353306234910"],"dstIndex":141,"srcIndex":0,"timestampMs":1586977556302},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059384751063091"],"dstIndex":142,"srcIndex":0,"timestampMs":1586977563799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059438526103572"],"dstIndex":144,"srcIndex":0,"timestampMs":1586977576620},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700059538023514154"],"dstIndex":145,"srcIndex":0,"timestampMs":1586977600342},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700061097583050871"],"dstIndex":146,"srcIndex":0,"timestampMs":1586977972170},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062189503119381"],"dstIndex":148,"srcIndex":0,"timestampMs":1586978232504},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700062400774275204"],"dstIndex":149,"srcIndex":0,"timestampMs":1586978282875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700063628711166054"],"dstIndex":150,"srcIndex":0,"timestampMs":1586978575638},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700064632144003103"],"dstIndex":152,"srcIndex":0,"timestampMs":1586978814875},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700118599003668510"],"dstIndex":153,"srcIndex":0,"timestampMs":1586991681577},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335319349985310"],"dstIndex":154,"srcIndex":0,"timestampMs":1587043351734},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700335919315550299"],"dstIndex":155,"srcIndex":0,"timestampMs":1587043494777},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700365992571699350"],"dstIndex":156,"srcIndex":0,"timestampMs":1587050664800},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700366555233517630"],"dstIndex":157,"srcIndex":0,"timestampMs":1587050798949},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700367514638483537"],"dstIndex":158,"srcIndex":0,"timestampMs":1587051027689},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700369922630615040"],"dstIndex":159,"srcIndex":0,"timestampMs":1587051601799},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370207419662458"],"dstIndex":160,"srcIndex":0,"timestampMs":1587051669698},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700370372230643763"],"dstIndex":161,"srcIndex":0,"timestampMs":1587051708992},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371209241624656"],"dstIndex":163,"srcIndex":0,"timestampMs":1587051908551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700371558480216124"],"dstIndex":164,"srcIndex":0,"timestampMs":1587051991816},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397237930295386"],"dstIndex":165,"srcIndex":0,"timestampMs":1587058114274},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397482362011769"],"dstIndex":167,"srcIndex":0,"timestampMs":1587058172551},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397866581229620"],"dstIndex":168,"srcIndex":0,"timestampMs":1587058264156},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700397927478067221"],"dstIndex":169,"srcIndex":0,"timestampMs":1587058278675},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398207733334077"],"dstIndex":171,"srcIndex":0,"timestampMs":1587058345493},{"address":["sourcecred","discord","AUTHORS","MESSAGE","bot","699326460120530944","700023168995295233","700398301727555604"],"dstIndex":173,"srcIndex":0,"timestampMs":1587058367903},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","695344752031432766","698673271729553469"],"dstIndex":24,"srcIndex":1409,"timestampMs":1586647088702},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698672127418695751"],"dstIndex":110,"srcIndex":1409,"timestampMs":1586646815877},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","118260545211072517","696420197644632116","698673539011837994"],"dstIndex":111,"srcIndex":1409,"timestampMs":1586647152427},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699383579402174494"],"dstIndex":65,"srcIndex":2,"timestampMs":1586816439248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","199630270285086720","695344752031432766","699636647557464194"],"dstIndex":66,"srcIndex":2,"timestampMs":1586876775398},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","208321561982271489","695344752031432766","698710365046833192"],"dstIndex":27,"srcIndex":3,"timestampMs":1586655932438},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698919569078878289"],"dstIndex":30,"srcIndex":1412,"timestampMs":1586705810566},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921167011971168"],"dstIndex":31,"srcIndex":1412,"timestampMs":1586706191543},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":1412,"timestampMs":1586706244909},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699006982681657354"],"dstIndex":46,"srcIndex":1412,"timestampMs":1586726651593},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","695344752031432766","699007297099268116"],"dstIndex":47,"srcIndex":1412,"timestampMs":1586726726556},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","250086586450968576","698942081858666527","699821888431587439"],"dstIndex":119,"srcIndex":1412,"timestampMs":1586920940264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","695344752031432766","698946297012420619"],"dstIndex":36,"srcIndex":4,"timestampMs":1586712183002},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","291388682710024192","696420197644632116","698956579168321617"],"dstIndex":113,"srcIndex":4,"timestampMs":1586714634459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":1406,"timestampMs":1586790670630},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":1406,"timestampMs":1586978883530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700073516900417556"],"dstIndex":101,"srcIndex":1406,"timestampMs":1586980933166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700083246087667833"],"dstIndex":103,"srcIndex":1406,"timestampMs":1586983252785},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":1406,"timestampMs":1586984382781},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","696420039141752863","700468593451597902"],"dstIndex":108,"srcIndex":1406,"timestampMs":1587075126756},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700033440564641854"],"dstIndex":121,"srcIndex":1406,"timestampMs":1586971378223},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700051768008114186"],"dstIndex":137,"srcIndex":1406,"timestampMs":1586975747826},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700059438136033361"],"dstIndex":143,"srcIndex":1406,"timestampMs":1586977576527},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700371208880914563"],"dstIndex":162,"srcIndex":1406,"timestampMs":1587051908465},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700397997707755530"],"dstIndex":170,"srcIndex":1406,"timestampMs":1587058295419},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","321092785921064961","700023168995295233","700399163313094746"],"dstIndex":174,"srcIndex":1406,"timestampMs":1587058573321},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","695344752031432766","699304903796981771"],"dstIndex":57,"srcIndex":1411,"timestampMs":1586797681522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":1411,"timestampMs":1586973031780},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":1411,"timestampMs":1586973160965},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","363774203960360961","700023168995295233","700055780807802900"],"dstIndex":138,"srcIndex":1411,"timestampMs":1586976704552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965088530595990"],"dstIndex":37,"srcIndex":1405,"timestampMs":1586716663249},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":1405,"timestampMs":1586716741889},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":1405,"timestampMs":1586717770000},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699020835096231937"],"dstIndex":49,"srcIndex":1405,"timestampMs":1586729954266},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":1405,"timestampMs":1586730159102},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":1405,"timestampMs":1586731027162},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","695344752031432766","699137595724267520"],"dstIndex":55,"srcIndex":1405,"timestampMs":1586757792169},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","420341518948237331","696420039141752863","699407535194767410"],"dstIndex":92,"srcIndex":1405,"timestampMs":1586822150754},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","440281764204642314","695344917068906598","697318813192028200"],"dstIndex":71,"srcIndex":7,"timestampMs":1586324160622},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699306499930980452"],"dstIndex":58,"srcIndex":8,"timestampMs":1586798062070},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699325373472702534"],"dstIndex":60,"srcIndex":8,"timestampMs":1586802561873},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":8,"timestampMs":1586802848489},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","464169801036726292","695344752031432766","699358233437143163"],"dstIndex":64,"srcIndex":8,"timestampMs":1586810396299},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","505789102222737420","695344752031432766","698932174396850236"],"dstIndex":33,"srcIndex":9,"timestampMs":1586708815908},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","537858848912834561","696420039141752863","696789204767866911"],"dstIndex":80,"srcIndex":10,"timestampMs":1586197892134},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":1401,"timestampMs":1585931015500},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","696708274682069062"],"dstIndex":19,"srcIndex":1401,"timestampMs":1586178596898},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","698799127244308550"],"dstIndex":28,"srcIndex":1401,"timestampMs":1586677094995},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344752031432766","699124769349566484"],"dstIndex":54,"srcIndex":1401,"timestampMs":1586754734123},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697081143551328256"],"dstIndex":70,"srcIndex":1401,"timestampMs":1586267495764},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","695344917068906598","697375832364023889"],"dstIndex":72,"srcIndex":1401,"timestampMs":1586337755052},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":1401,"timestampMs":1586111617618},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":1401,"timestampMs":1586115085852},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699122711745527878"],"dstIndex":82,"srcIndex":1401,"timestampMs":1586754243552},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":1401,"timestampMs":1586754351459},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","699939694221328435"],"dstIndex":97,"srcIndex":1401,"timestampMs":1586949027353},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700345588725841990"],"dstIndex":106,"srcIndex":1401,"timestampMs":1587045800144},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","571023281382227978","696420039141752863","700354840445976616"],"dstIndex":107,"srcIndex":1401,"timestampMs":1587048005926},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696451005914546256"],"dstIndex":15,"srcIndex":1402,"timestampMs":1586117259244},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":1402,"timestampMs":1586118204077},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":1402,"timestampMs":1586118265041},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":1402,"timestampMs":1586183905373},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696740396331696198"],"dstIndex":21,"srcIndex":1402,"timestampMs":1586186255296},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","696769305131614260"],"dstIndex":22,"srcIndex":1402,"timestampMs":1586193147691},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698691171811328080"],"dstIndex":25,"srcIndex":1402,"timestampMs":1586651356414},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698710294427467857"],"dstIndex":26,"srcIndex":1402,"timestampMs":1586655915601},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698897288373993508"],"dstIndex":29,"srcIndex":1402,"timestampMs":1586700498432},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698935929942966332"],"dstIndex":34,"srcIndex":1402,"timestampMs":1586709711300},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698941350531301477"],"dstIndex":35,"srcIndex":1402,"timestampMs":1586711003669},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968459890917436"],"dstIndex":39,"srcIndex":1402,"timestampMs":1586717467044},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698968989878976612"],"dstIndex":40,"srcIndex":1402,"timestampMs":1586717593403},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698969370533298296"],"dstIndex":41,"srcIndex":1402,"timestampMs":1586717684158},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698970943955140738"],"dstIndex":43,"srcIndex":1402,"timestampMs":1586718059291},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":1402,"timestampMs":1586718718366},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","698982179069362196"],"dstIndex":45,"srcIndex":1402,"timestampMs":1586720737951},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699016223303794728"],"dstIndex":48,"srcIndex":1402,"timestampMs":1586728854729},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699022762215211088"],"dstIndex":51,"srcIndex":1402,"timestampMs":1586730413727},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699024432244588644"],"dstIndex":52,"srcIndex":1402,"timestampMs":1586730811893},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699302777167413379"],"dstIndex":56,"srcIndex":1402,"timestampMs":1586797174494},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699318638519255111"],"dstIndex":59,"srcIndex":1402,"timestampMs":1586800956135},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699325915578236949"],"dstIndex":61,"srcIndex":1402,"timestampMs":1586802691121},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699342838756016128"],"dstIndex":63,"srcIndex":1402,"timestampMs":1586806725921},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","699696022477340735"],"dstIndex":67,"srcIndex":1402,"timestampMs":1586890931482},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344752031432766","700038397376331798"],"dstIndex":68,"srcIndex":1402,"timestampMs":1586972560019},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","695344917068906598","697073300131807274"],"dstIndex":69,"srcIndex":1402,"timestampMs":1586265625747},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":1402,"timestampMs":1586643849022},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":1402,"timestampMs":1586793570421},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696440757908799568"],"dstIndex":76,"srcIndex":1402,"timestampMs":1586114815929},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696452154268975225"],"dstIndex":78,"srcIndex":1402,"timestampMs":1586117533033},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","696730851802742794"],"dstIndex":79,"srcIndex":1402,"timestampMs":1586183979703},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699020484167073792"],"dstIndex":81,"srcIndex":1402,"timestampMs":1586729870598},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699276546795372595"],"dstIndex":87,"srcIndex":1402,"timestampMs":1586790920686},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699278809974833224"],"dstIndex":89,"srcIndex":1402,"timestampMs":1586791460270},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699404949448163368"],"dstIndex":90,"srcIndex":1402,"timestampMs":1586821534264},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699406916300046346"],"dstIndex":91,"srcIndex":1402,"timestampMs":1586822003198},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699408033343733841"],"dstIndex":93,"srcIndex":1402,"timestampMs":1586822269522},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","699410487020093501"],"dstIndex":94,"srcIndex":1402,"timestampMs":1586822854524},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700016555521736837"],"dstIndex":98,"srcIndex":1402,"timestampMs":1586967352515},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700064770367160361"],"dstIndex":99,"srcIndex":1402,"timestampMs":1586978847830},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700078148615798814"],"dstIndex":102,"srcIndex":1402,"timestampMs":1586982037453},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420039141752863","700085865933832252"],"dstIndex":104,"srcIndex":1402,"timestampMs":1586983877405},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698667046661128244"],"dstIndex":109,"srcIndex":1402,"timestampMs":1586645604530},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","698683402920001637"],"dstIndex":112,"srcIndex":1402,"timestampMs":1586649504166},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699017594287685672"],"dstIndex":114,"srcIndex":1402,"timestampMs":1586729181597},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699283043940302898"],"dstIndex":115,"srcIndex":1402,"timestampMs":1586792469726},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":1402,"timestampMs":1586792719271},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699303864872075295"],"dstIndex":117,"srcIndex":1402,"timestampMs":1586797433823},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","696420197644632116","699352914476400712"],"dstIndex":118,"srcIndex":1402,"timestampMs":1586809128160},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":1402,"timestampMs":1586921152752},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700036022368731256"],"dstIndex":122,"srcIndex":1402,"timestampMs":1586971993773},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700040992916766780"],"dstIndex":127,"srcIndex":1402,"timestampMs":1586973178844},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700062058405953678"],"dstIndex":147,"srcIndex":1402,"timestampMs":1586978201248},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","657069807505637397","700023168995295233","700064631778967634"],"dstIndex":151,"srcIndex":1402,"timestampMs":1586978814788},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699274952301609111"],"dstIndex":84,"srcIndex":12,"timestampMs":1586790540529},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699275129204637708"],"dstIndex":85,"srcIndex":12,"timestampMs":1586790582706},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699277478530646016"],"dstIndex":88,"srcIndex":12,"timestampMs":1586791142829},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699558251074682931"],"dstIndex":95,"srcIndex":12,"timestampMs":1586858084220},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":12,"timestampMs":1586858628046},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700397481799974962"],"dstIndex":166,"srcIndex":12,"timestampMs":1587058172417},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","665203331639148553","700023168995295233","700398301412982965"],"dstIndex":172,"srcIndex":12,"timestampMs":1587058367828},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696609260196593664"],"dstIndex":18,"srcIndex":13,"timestampMs":1586154990005},{"address":["sourcecred","discord","AUTHORS","MESSAGE","user","683892894767251489","695344752031432766","696853096441184326"],"dstIndex":23,"srcIndex":13,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","118260545211072517","698673271729553469","user","657069807505637397"],"dstIndex":1402,"srcIndex":24,"timestampMs":1586647088702},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","571023281382227978"],"dstIndex":1401,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699383579402174494","user","657069807505637397"],"dstIndex":1402,"srcIndex":65,"timestampMs":1586816439248},{"address":["sourcecred","discord","MENTIONS","695344752031432766","199630270285086720","699636647557464194","user","665203331639148553"],"dstIndex":12,"srcIndex":66,"timestampMs":1586876775398},{"address":["sourcecred","discord","MENTIONS","695344752031432766","208321561982271489","698710365046833192","user","657069807505637397"],"dstIndex":1402,"srcIndex":27,"timestampMs":1586655932438},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698919569078878289","user","657069807505637397"],"dstIndex":1402,"srcIndex":30,"timestampMs":1586705810566},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","118260545211072517"],"dstIndex":1409,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","698921167011971168","user","420341518948237331"],"dstIndex":1405,"srcIndex":31,"timestampMs":1586706191543},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","250086586450968576"],"dstIndex":1412,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699006982681657354","user","657069807505637397"],"dstIndex":1402,"srcIndex":46,"timestampMs":1586726651593},{"address":["sourcecred","discord","MENTIONS","695344752031432766","250086586450968576","699007297099268116","user","657069807505637397"],"dstIndex":1402,"srcIndex":47,"timestampMs":1586726726556},{"address":["sourcecred","discord","MENTIONS","695344752031432766","291388682710024192","698946297012420619","user","250086586450968576"],"dstIndex":1412,"srcIndex":36,"timestampMs":1586712183002},{"address":["sourcecred","discord","MENTIONS","695344752031432766","363774203960360961","699304903796981771","user","464169801036726292"],"dstIndex":8,"srcIndex":57,"timestampMs":1586797681522},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698965088530595990","user","657069807505637397"],"dstIndex":1402,"srcIndex":37,"timestampMs":1586716663249},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","698969730580742174","user","250086586450968576"],"dstIndex":1412,"srcIndex":42,"timestampMs":1586717770000},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","250086586450968576"],"dstIndex":1412,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699020835096231937","user","657069807505637397"],"dstIndex":1402,"srcIndex":49,"timestampMs":1586729954266},{"address":["sourcecred","discord","MENTIONS","695344752031432766","420341518948237331","699137595724267520","user","571023281382227978"],"dstIndex":1401,"srcIndex":55,"timestampMs":1586757792169},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699306499930980452","user","363774203960360961"],"dstIndex":1411,"srcIndex":58,"timestampMs":1586798062070},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699325373472702534","user","363774203960360961"],"dstIndex":1411,"srcIndex":60,"timestampMs":1586802561873},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","363774203960360961"],"dstIndex":1411,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","464169801036726292","699358233437143163","user","464169801036726292"],"dstIndex":8,"srcIndex":64,"timestampMs":1586810396299},{"address":["sourcecred","discord","MENTIONS","695344752031432766","505789102222737420","698932174396850236","user","571023281382227978"],"dstIndex":1401,"srcIndex":33,"timestampMs":1586708815908},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","696708274682069062","user","683892894767251489"],"dstIndex":13,"srcIndex":19,"timestampMs":1586178596898},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","698799127244308550","user","505789102222737420"],"dstIndex":9,"srcIndex":28,"timestampMs":1586677094995},{"address":["sourcecred","discord","MENTIONS","695344752031432766","571023281382227978","699124769349566484","user","420341518948237331"],"dstIndex":1405,"srcIndex":54,"timestampMs":1586754734123},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696451005914546256","user","118260545211072517"],"dstIndex":1409,"srcIndex":15,"timestampMs":1586117259244},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696730540039995493","user","571023281382227978"],"dstIndex":1401,"srcIndex":20,"timestampMs":1586183905373},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696740396331696198","user","665203331639148553"],"dstIndex":12,"srcIndex":21,"timestampMs":1586186255296},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","696769305131614260","user","371754999304290304"],"dstIndex":6,"srcIndex":22,"timestampMs":1586193147691},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698691171811328080","user","250086586450968576"],"dstIndex":1412,"srcIndex":25,"timestampMs":1586651356414},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698710294427467857","user","208321561982271489"],"dstIndex":3,"srcIndex":26,"timestampMs":1586655915601},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","250086586450968576"],"dstIndex":1412,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698897288373993508","user","571023281382227978"],"dstIndex":1401,"srcIndex":29,"timestampMs":1586700498432},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","333143183355543552"],"dstIndex":5,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698935929942966332","user","505789102222737420"],"dstIndex":9,"srcIndex":34,"timestampMs":1586709711300},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698941350531301477","user","250086586450968576"],"dstIndex":1412,"srcIndex":35,"timestampMs":1586711003669},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968459890917436","user","420341518948237331"],"dstIndex":1405,"srcIndex":39,"timestampMs":1586717467044},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","118260545211072517"],"dstIndex":1409,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","420341518948237331"],"dstIndex":1405,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698968989878976612","user","657069807505637397"],"dstIndex":1402,"srcIndex":40,"timestampMs":1586717593403},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698969370533298296","user","420341518948237331"],"dstIndex":1405,"srcIndex":41,"timestampMs":1586717684158},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698970943955140738","user","321092785921064961"],"dstIndex":1406,"srcIndex":43,"timestampMs":1586718059291},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","698982179069362196","user","420341518948237331"],"dstIndex":1405,"srcIndex":45,"timestampMs":1586720737951},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","250086586450968576"],"dstIndex":1412,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699016223303794728","user","657069807505637397"],"dstIndex":1402,"srcIndex":48,"timestampMs":1586728854729},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699022762215211088","user","420341518948237331"],"dstIndex":1405,"srcIndex":51,"timestampMs":1586730413727},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699024432244588644","user","420341518948237331"],"dstIndex":1405,"srcIndex":52,"timestampMs":1586730811893},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699302777167413379","user","464169801036726292"],"dstIndex":8,"srcIndex":56,"timestampMs":1586797174494},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699318638519255111","user","464169801036726292"],"dstIndex":8,"srcIndex":59,"timestampMs":1586800956135},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699325915578236949","user","464169801036726292"],"dstIndex":8,"srcIndex":61,"timestampMs":1586802691121},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699342838756016128","user","199630270285086720"],"dstIndex":2,"srcIndex":63,"timestampMs":1586806725921},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","143776454050709505"],"dstIndex":1,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","699696022477340735","user","633708951447535616"],"dstIndex":11,"srcIndex":67,"timestampMs":1586890931482},{"address":["sourcecred","discord","MENTIONS","695344752031432766","657069807505637397","700038397376331798","bot","699326460120530944"],"dstIndex":0,"srcIndex":68,"timestampMs":1586972560019},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696609260196593664","user","657069807505637397"],"dstIndex":1402,"srcIndex":18,"timestampMs":1586154990005},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","571023281382227978"],"dstIndex":1401,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344752031432766","683892894767251489","696853096441184326","user","657069807505637397"],"dstIndex":1402,"srcIndex":23,"timestampMs":1586213125096},{"address":["sourcecred","discord","MENTIONS","695344917068906598","440281764204642314","697318813192028200","user","571023281382227978"],"dstIndex":1401,"srcIndex":71,"timestampMs":1586324160622},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697081143551328256","user","440281764204642314"],"dstIndex":7,"srcIndex":70,"timestampMs":1586267495764},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","440281764204642314"],"dstIndex":7,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","571023281382227978","697375832364023889","user","571023281382227978"],"dstIndex":1401,"srcIndex":72,"timestampMs":1586337755052},{"address":["sourcecred","discord","MENTIONS","695344917068906598","657069807505637397","697073300131807274","user","571023281382227978"],"dstIndex":1401,"srcIndex":69,"timestampMs":1586265625747},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700073516900417556","user","657069807505637397"],"dstIndex":1402,"srcIndex":101,"timestampMs":1586980933166},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700083246087667833","user","571023281382227978"],"dstIndex":1401,"srcIndex":103,"timestampMs":1586983252785},{"address":["sourcecred","discord","MENTIONS","696420039141752863","321092785921064961","700468593451597902","user","474405294307278880"],"dstIndex":1403,"srcIndex":108,"timestampMs":1587075126756},{"address":["sourcecred","discord","MENTIONS","696420039141752863","420341518948237331","699407535194767410","user","118260545211072517"],"dstIndex":1409,"srcIndex":92,"timestampMs":1586822150754},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","537858848912834561"],"dstIndex":10,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","571023281382227978"],"dstIndex":1401,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","537858848912834561","696789204767866911","user","657069807505637397"],"dstIndex":1402,"srcIndex":80,"timestampMs":1586197892134},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699122711745527878","user","657069807505637397"],"dstIndex":1402,"srcIndex":82,"timestampMs":1586754243552},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","571023281382227978"],"dstIndex":1401,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","699939694221328435","user","665203331639148553"],"dstIndex":12,"srcIndex":97,"timestampMs":1586949027353},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700345588725841990","user","321092785921064961"],"dstIndex":1406,"srcIndex":106,"timestampMs":1587045800144},{"address":["sourcecred","discord","MENTIONS","696420039141752863","571023281382227978","700354840445976616","user","321092785921064961"],"dstIndex":1406,"srcIndex":107,"timestampMs":1587048005926},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696440757908799568","user","571023281382227978"],"dstIndex":1401,"srcIndex":76,"timestampMs":1586114815929},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696452154268975225","user","571023281382227978"],"dstIndex":1401,"srcIndex":78,"timestampMs":1586117533033},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","696730851802742794","user","537858848912834561"],"dstIndex":10,"srcIndex":79,"timestampMs":1586183979703},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699020484167073792","user","571023281382227978"],"dstIndex":1401,"srcIndex":81,"timestampMs":1586729870598},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699276546795372595","user","321092785921064961"],"dstIndex":1406,"srcIndex":87,"timestampMs":1586790920686},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699278809974833224","user","118260545211072517"],"dstIndex":1409,"srcIndex":89,"timestampMs":1586791460270},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","321092785921064961"],"dstIndex":1406,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699404949448163368","user","571023281382227978"],"dstIndex":1401,"srcIndex":90,"timestampMs":1586821534264},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699406916300046346","user","420341518948237331"],"dstIndex":1405,"srcIndex":91,"timestampMs":1586822003198},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699408033343733841","user","420341518948237331"],"dstIndex":1405,"srcIndex":93,"timestampMs":1586822269522},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","699410487020093501","user","440281764204642314"],"dstIndex":7,"srcIndex":94,"timestampMs":1586822854524},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700016555521736837","user","321092785921064961"],"dstIndex":1406,"srcIndex":98,"timestampMs":1586967352515},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700064770367160361","user","321092785921064961"],"dstIndex":1406,"srcIndex":99,"timestampMs":1586978847830},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","321092785921064961"],"dstIndex":1406,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700078148615798814","user","657069807505637397"],"dstIndex":1402,"srcIndex":102,"timestampMs":1586982037453},{"address":["sourcecred","discord","MENTIONS","696420039141752863","657069807505637397","700085865933832252","user","321092785921064961"],"dstIndex":1406,"srcIndex":104,"timestampMs":1586983877405},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699274952301609111","user","321092785921064961"],"dstIndex":1406,"srcIndex":84,"timestampMs":1586790540529},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699275129204637708","user","657069807505637397"],"dstIndex":1402,"srcIndex":85,"timestampMs":1586790582706},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699277478530646016","user","321092785921064961"],"dstIndex":1406,"srcIndex":88,"timestampMs":1586791142829},{"address":["sourcecred","discord","MENTIONS","696420039141752863","665203331639148553","699558251074682931","user","571023281382227978"],"dstIndex":1401,"srcIndex":95,"timestampMs":1586858084220},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698672127418695751","user","657069807505637397"],"dstIndex":1402,"srcIndex":110,"timestampMs":1586646815877},{"address":["sourcecred","discord","MENTIONS","696420197644632116","118260545211072517","698673539011837994","user","657069807505637397"],"dstIndex":1402,"srcIndex":111,"timestampMs":1586647152427},{"address":["sourcecred","discord","MENTIONS","696420197644632116","291388682710024192","698956579168321617","user","657069807505637397"],"dstIndex":1402,"srcIndex":113,"timestampMs":1586714634459},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698667046661128244","user","118260545211072517"],"dstIndex":1409,"srcIndex":109,"timestampMs":1586645604530},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","698683402920001637","user","683892894767251489"],"dstIndex":13,"srcIndex":112,"timestampMs":1586649504166},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699017594287685672","user","683892894767251489"],"dstIndex":13,"srcIndex":114,"timestampMs":1586729181597},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699283043940302898","user","537858848912834561"],"dstIndex":10,"srcIndex":115,"timestampMs":1586792469726},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699284090607763506","user","537858848912834561"],"dstIndex":10,"srcIndex":116,"timestampMs":1586792719271},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699303864872075295","user","420341518948237331"],"dstIndex":1405,"srcIndex":117,"timestampMs":1586797433823},{"address":["sourcecred","discord","MENTIONS","696420197644632116","657069807505637397","699352914476400712","user","537858848912834561"],"dstIndex":10,"srcIndex":118,"timestampMs":1586809128160},{"address":["sourcecred","discord","MENTIONS","698942081858666527","250086586450968576","699821888431587439","user","657069807505637397"],"dstIndex":1402,"srcIndex":119,"timestampMs":1586920940264},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700033440564641854","user","657069807505637397"],"dstIndex":1402,"srcIndex":121,"timestampMs":1586971378223},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700051768008114186","user","363774203960360961"],"dstIndex":1411,"srcIndex":137,"timestampMs":1586975747826},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700059438136033361","user","657069807505637397"],"dstIndex":1402,"srcIndex":143,"timestampMs":1586977576527},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700371208880914563","bot","699326460120530944"],"dstIndex":0,"srcIndex":162,"timestampMs":1587051908465},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700397997707755530","user","474405294307278880"],"dstIndex":1403,"srcIndex":170,"timestampMs":1587058295419},{"address":["sourcecred","discord","MENTIONS","700023168995295233","321092785921064961","700399163313094746","user","665203331639148553"],"dstIndex":12,"srcIndex":174,"timestampMs":1587058573321},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","321092785921064961"],"dstIndex":1406,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","363774203960360961","700055780807802900","user","363774203960360961"],"dstIndex":1411,"srcIndex":138,"timestampMs":1586976704552},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700036022368731256","user","321092785921064961"],"dstIndex":1406,"srcIndex":122,"timestampMs":1586971993773},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700040992916766780","user","321092785921064961"],"dstIndex":1406,"srcIndex":127,"timestampMs":1586973178844},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700062058405953678","user","321092785921064961"],"dstIndex":1406,"srcIndex":147,"timestampMs":1586978201248},{"address":["sourcecred","discord","MENTIONS","700023168995295233","657069807505637397","700064631778967634","user","321092785921064961"],"dstIndex":1406,"srcIndex":151,"timestampMs":1586978814788},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700397481799974962","user","321092785921064961"],"dstIndex":1406,"srcIndex":166,"timestampMs":1587058172417},{"address":["sourcecred","discord","MENTIONS","700023168995295233","665203331639148553","700398301412982965","user","321092785921064961"],"dstIndex":1406,"srcIndex":172,"timestampMs":1587058367828},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700038868707180644","user","321092785921064961"],"dstIndex":1406,"srcIndex":123,"timestampMs":1586972672393},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700039441799970969","user","321092785921064961"],"dstIndex":1406,"srcIndex":124,"timestampMs":1586972809029},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044206176993470","user","657069807505637397"],"dstIndex":1402,"srcIndex":128,"timestampMs":1586973944945},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044421760286721","user","657069807505637397"],"dstIndex":1402,"srcIndex":129,"timestampMs":1586973996344},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044496049799228","user","657069807505637397"],"dstIndex":1402,"srcIndex":130,"timestampMs":1586974014056},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044548411490335","user","657069807505637397"],"dstIndex":1402,"srcIndex":131,"timestampMs":1586974026540},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044635619328131","user","657069807505637397"],"dstIndex":1402,"srcIndex":132,"timestampMs":1586974047332},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700044689285316738","user","657069807505637397"],"dstIndex":1402,"srcIndex":133,"timestampMs":1586974060127},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049028251123832","user","363774203960360961"],"dstIndex":1411,"srcIndex":134,"timestampMs":1586975094617},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049257490808933","user","363774203960360961"],"dstIndex":1411,"srcIndex":135,"timestampMs":1586975149272},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700049378643017889","user","363774203960360961"],"dstIndex":1411,"srcIndex":136,"timestampMs":1586975178157},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700056792524128306","user","321092785921064961"],"dstIndex":1406,"srcIndex":139,"timestampMs":1586976945764},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059334679330946","user","657069807505637397"],"dstIndex":1402,"srcIndex":140,"timestampMs":1586977551861},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059353306234910","user","657069807505637397"],"dstIndex":1402,"srcIndex":141,"timestampMs":1586977556302},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059384751063091","user","657069807505637397"],"dstIndex":1402,"srcIndex":142,"timestampMs":1586977563799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059438526103572","user","321092785921064961"],"dstIndex":1406,"srcIndex":144,"timestampMs":1586977576620},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700059538023514154","user","657069807505637397"],"dstIndex":1402,"srcIndex":145,"timestampMs":1586977600342},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700061097583050871","user","321092785921064961"],"dstIndex":1406,"srcIndex":146,"timestampMs":1586977972170},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062189503119381","user","321092785921064961"],"dstIndex":1406,"srcIndex":148,"timestampMs":1586978232504},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700062400774275204","user","363774203960360961"],"dstIndex":1411,"srcIndex":149,"timestampMs":1586978282875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700063628711166054","user","321092785921064961"],"dstIndex":1406,"srcIndex":150,"timestampMs":1586978575638},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700064632144003103","user","657069807505637397"],"dstIndex":1402,"srcIndex":152,"timestampMs":1586978814875},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700118599003668510","user","321092785921064961"],"dstIndex":1406,"srcIndex":153,"timestampMs":1586991681577},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335319349985310","user","321092785921064961"],"dstIndex":1406,"srcIndex":154,"timestampMs":1587043351734},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700335919315550299","user","321092785921064961"],"dstIndex":1406,"srcIndex":155,"timestampMs":1587043494777},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700365992571699350","user","665203331639148553"],"dstIndex":12,"srcIndex":156,"timestampMs":1587050664800},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700366555233517630","user","665203331639148553"],"dstIndex":12,"srcIndex":157,"timestampMs":1587050798949},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700367514638483537","user","665203331639148553"],"dstIndex":12,"srcIndex":158,"timestampMs":1587051027689},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700369922630615040","user","321092785921064961"],"dstIndex":1406,"srcIndex":159,"timestampMs":1587051601799},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370207419662458","user","321092785921064961"],"dstIndex":1406,"srcIndex":160,"timestampMs":1587051669698},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700370372230643763","user","321092785921064961"],"dstIndex":1406,"srcIndex":161,"timestampMs":1587051708992},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371209241624656","user","321092785921064961"],"dstIndex":1406,"srcIndex":163,"timestampMs":1587051908551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700371558480216124","user","321092785921064961"],"dstIndex":1406,"srcIndex":164,"timestampMs":1587051991816},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397237930295386","user","665203331639148553"],"dstIndex":12,"srcIndex":165,"timestampMs":1587058114274},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397482362011769","user","665203331639148553"],"dstIndex":12,"srcIndex":167,"timestampMs":1587058172551},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397866581229620","user","474405294307278880"],"dstIndex":1403,"srcIndex":168,"timestampMs":1587058264156},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700397927478067221","user","474405294307278880"],"dstIndex":1403,"srcIndex":169,"timestampMs":1587058278675},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398207733334077","user","665203331639148553"],"dstIndex":12,"srcIndex":171,"timestampMs":1587058345493},{"address":["sourcecred","discord","MENTIONS","700023168995295233","699326460120530944","700398301727555604","user","665203331639148553"],"dstIndex":12,"srcIndex":173,"timestampMs":1587058367903},{"address":["sourcecred","discord","REACTS_TO","❤️","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":175,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696454968831508630"],"dstIndex":16,"srcIndex":176,"timestampMs":1586118204077},{"address":["sourcecred","discord","REACTS_TO","👍","118260545211072517","695344752031432766","696455224532926464"],"dstIndex":17,"srcIndex":177,"timestampMs":1586118265041},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699021694240686190"],"dstIndex":50,"srcIndex":178,"timestampMs":1586730159102},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":179,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","250086586450968576","698942081858666527","699822779670724650"],"dstIndex":120,"srcIndex":205,"timestampMs":1586921152752},{"address":["sourcecred","discord","REACTS_TO","👍","537858848912834561","696420197644632116","699284090607763506"],"dstIndex":116,"srcIndex":204,"timestampMs":1586792719271},{"address":["sourcecred","discord","REACTS_TO","👍","571023281382227978","695344752031432766","695669843034243134"],"dstIndex":14,"srcIndex":180,"timestampMs":1585931015500},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699025335148216410"],"dstIndex":53,"srcIndex":181,"timestampMs":1586731027162},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","695344752031432766","699326575627206778"],"dstIndex":62,"srcIndex":182,"timestampMs":1586802848489},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696427343220047872"],"dstIndex":75,"srcIndex":197,"timestampMs":1586111617618},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","696441890048049232"],"dstIndex":77,"srcIndex":198,"timestampMs":1586115085852},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","699123164340551691"],"dstIndex":83,"srcIndex":199,"timestampMs":1586754351459},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","696420039141752863","700087985634541678"],"dstIndex":105,"srcIndex":200,"timestampMs":1586984382781},{"address":["sourcecred","discord","REACTS_TO","👍","657069807505637397","700023168995295233","700040376085381152"],"dstIndex":125,"srcIndex":206,"timestampMs":1586973031780},{"address":["sourcecred","discord","REACTS_TO","💯","321092785921064961","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":207,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","💯","571023281382227978","695344752031432766","696730540039995493"],"dstIndex":20,"srcIndex":183,"timestampMs":1586183905373},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","695344752031432766","698965418370400296"],"dstIndex":38,"srcIndex":184,"timestampMs":1586716741889},{"address":["sourcecred","discord","REACTS_TO","💯","657069807505637397","700023168995295233","700040917926543422"],"dstIndex":126,"srcIndex":208,"timestampMs":1586973160965},{"address":["sourcecred","discord","REACTS_TO","🔥","118260545211072517","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":188,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","695344752031432766","698969730580742174"],"dstIndex":42,"srcIndex":185,"timestampMs":1586717770000},{"address":["sourcecred","discord","REACTS_TO","🔥","250086586450968576","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":189,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":190,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","291388682710024192","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":191,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","695344752031432766","698973708316049488"],"dstIndex":44,"srcIndex":186,"timestampMs":1586718718366},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":192,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","321092785921064961","696420039141752863","699560532046250034"],"dstIndex":96,"srcIndex":201,"timestampMs":1586858628046},{"address":["sourcecred","discord","REACTS_TO","🔥","363774203960360961","700023168995295233","700039441799970969"],"dstIndex":124,"srcIndex":209,"timestampMs":1586972809029},{"address":["sourcecred","discord","REACTS_TO","🔥","440281764204642314","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":193,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","695344752031432766","698921390845198426"],"dstIndex":32,"srcIndex":187,"timestampMs":1586706244909},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":194,"timestampMs":1586643849022},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696400331260821586","699287660589613148"],"dstIndex":74,"srcIndex":195,"timestampMs":1586793570421},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","699275497984622760"],"dstIndex":86,"srcIndex":202,"timestampMs":1586790670630},{"address":["sourcecred","discord","REACTS_TO","🔥","571023281382227978","696420039141752863","700064920104075394"],"dstIndex":100,"srcIndex":203,"timestampMs":1586978883530},{"address":["sourcecred","discord","REACTS_TO","🔥","683892894767251489","696400331260821586","698659683526901810"],"dstIndex":73,"srcIndex":196,"timestampMs":1586643849022},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","AlexMasmej","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":983,"srcIndex":1395,"timestampMs":1582941505000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":873,"srcIndex":1396,"timestampMs":1582978132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":906,"srcIndex":1396,"timestampMs":1581914566000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":1396,"timestampMs":1581914856000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":908,"srcIndex":1396,"timestampMs":1581911765000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":938,"srcIndex":1396,"timestampMs":1581914897000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":967,"srcIndex":1396,"timestampMs":1581898623000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":975,"srcIndex":1396,"timestampMs":1581903076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":1396,"timestampMs":1581902687000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":997,"srcIndex":1396,"timestampMs":1581900781000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":1396,"timestampMs":1581914667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":1396,"timestampMs":1581903056000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Beanow","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":1050,"srcIndex":1396,"timestampMs":1581898638000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":786,"srcIndex":1397,"timestampMs":1586921892000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":787,"srcIndex":1397,"timestampMs":1586930578000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":788,"srcIndex":1397,"timestampMs":1586920791000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":789,"srcIndex":1397,"timestampMs":1586921871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":790,"srcIndex":1397,"timestampMs":1586920549000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":791,"srcIndex":1397,"timestampMs":1586839193000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":792,"srcIndex":1397,"timestampMs":1586916947000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":793,"srcIndex":1397,"timestampMs":1586919065000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":794,"srcIndex":1397,"timestampMs":1586971104000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":795,"srcIndex":1397,"timestampMs":1586957209000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":796,"srcIndex":1397,"timestampMs":1586915756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":797,"srcIndex":1397,"timestampMs":1586916992000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":798,"srcIndex":1397,"timestampMs":1586932748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":799,"srcIndex":1397,"timestampMs":1586934527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":802,"srcIndex":1397,"timestampMs":1586805309000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":803,"srcIndex":1397,"timestampMs":1586918718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":804,"srcIndex":1397,"timestampMs":1586831849000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":805,"srcIndex":1397,"timestampMs":1586977731000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":806,"srcIndex":1397,"timestampMs":1586921823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":807,"srcIndex":1397,"timestampMs":1586960050000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":808,"srcIndex":1397,"timestampMs":1586933937000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":809,"srcIndex":1397,"timestampMs":1586832132000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":810,"srcIndex":1397,"timestampMs":1586958454000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":1099,"srcIndex":1397,"timestampMs":1586972808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":1107,"srcIndex":1397,"timestampMs":1587058277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":1108,"srcIndex":1397,"timestampMs":1587049226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":1123,"srcIndex":1397,"timestampMs":1586978574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":1157,"srcIndex":1397,"timestampMs":1586802604000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":1158,"srcIndex":1397,"timestampMs":1586972788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":1182,"srcIndex":1397,"timestampMs":1587058263000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":1188,"srcIndex":1397,"timestampMs":1587050798000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":1189,"srcIndex":1397,"timestampMs":1587051668000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":1193,"srcIndex":1397,"timestampMs":1586978547000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":1194,"srcIndex":1397,"timestampMs":1587051026000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":1198,"srcIndex":1397,"timestampMs":1586975177000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":1221,"srcIndex":1397,"timestampMs":1587051708000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":1240,"srcIndex":1397,"timestampMs":1586820040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":1267,"srcIndex":1397,"timestampMs":1587049279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1397,"timestampMs":1586934042000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1340,"srcIndex":1397,"timestampMs":1586934224000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1397,"timestampMs":1586990170000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1342,"srcIndex":1397,"timestampMs":1586990449000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1343,"srcIndex":1397,"timestampMs":1586990584000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1397,"timestampMs":1586802611000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":1397,"timestampMs":1586970997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1371,"srcIndex":1397,"timestampMs":1586717760000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1392,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1393,"srcIndex":1397,"timestampMs":1587075078000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1394,"srcIndex":1397,"timestampMs":1586924060000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":758,"srcIndex":1397,"timestampMs":1586990245000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":760,"srcIndex":1397,"timestampMs":1586797413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":762,"srcIndex":1397,"timestampMs":1586801948000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":764,"srcIndex":1397,"timestampMs":1586802422000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1397,"timestampMs":1587071400000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1397,"timestampMs":1587071419000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","Evalir","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1397,"timestampMs":1587071453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":781,"srcIndex":1402,"timestampMs":1586666528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":782,"srcIndex":1402,"timestampMs":1586706188000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":783,"srcIndex":1402,"timestampMs":1586709195000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":784,"srcIndex":1402,"timestampMs":1586710102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":785,"srcIndex":1402,"timestampMs":1586709961000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":811,"srcIndex":1402,"timestampMs":1586730565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":812,"srcIndex":1402,"timestampMs":1586643786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":813,"srcIndex":1402,"timestampMs":1586664558000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":814,"srcIndex":1402,"timestampMs":1586566020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":815,"srcIndex":1402,"timestampMs":1586710826000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":816,"srcIndex":1402,"timestampMs":1586727748000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":817,"srcIndex":1402,"timestampMs":1586570955000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":818,"srcIndex":1402,"timestampMs":1586662685000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":819,"srcIndex":1402,"timestampMs":1586127122000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":820,"srcIndex":1402,"timestampMs":1586658983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":821,"srcIndex":1402,"timestampMs":1586566694000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":822,"srcIndex":1402,"timestampMs":1586656936000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":823,"srcIndex":1402,"timestampMs":1586797014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":824,"srcIndex":1402,"timestampMs":1586727823000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":825,"srcIndex":1402,"timestampMs":1586103464000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":826,"srcIndex":1402,"timestampMs":1586633871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":827,"srcIndex":1402,"timestampMs":1586647160000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":828,"srcIndex":1402,"timestampMs":1586660251000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":829,"srcIndex":1402,"timestampMs":1586649927000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":831,"srcIndex":1402,"timestampMs":1586571027000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":832,"srcIndex":1402,"timestampMs":1586644808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":833,"srcIndex":1402,"timestampMs":1586650718000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":834,"srcIndex":1402,"timestampMs":1586103441000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":835,"srcIndex":1402,"timestampMs":1586568293000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":836,"srcIndex":1402,"timestampMs":1586646704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":837,"srcIndex":1402,"timestampMs":1586663015000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":838,"srcIndex":1402,"timestampMs":1586639136000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":839,"srcIndex":1402,"timestampMs":1586663769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":840,"srcIndex":1402,"timestampMs":1586652307000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":841,"srcIndex":1402,"timestampMs":1586570353000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":842,"srcIndex":1402,"timestampMs":1586638395000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":843,"srcIndex":1402,"timestampMs":1586657067000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":844,"srcIndex":1402,"timestampMs":1586649206000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":845,"srcIndex":1402,"timestampMs":1586729040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":846,"srcIndex":1402,"timestampMs":1586567498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":848,"srcIndex":1402,"timestampMs":1586568912000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":849,"srcIndex":1402,"timestampMs":1586640470000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":850,"srcIndex":1402,"timestampMs":1586111771000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":851,"srcIndex":1402,"timestampMs":1586569076000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":852,"srcIndex":1402,"timestampMs":1586648621000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":853,"srcIndex":1402,"timestampMs":1586111689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":854,"srcIndex":1402,"timestampMs":1586651543000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":855,"srcIndex":1402,"timestampMs":1586661631000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":856,"srcIndex":1402,"timestampMs":1586739277000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":857,"srcIndex":1402,"timestampMs":1586644660000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":858,"srcIndex":1402,"timestampMs":1586792089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":859,"srcIndex":1402,"timestampMs":1586645107000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":860,"srcIndex":1402,"timestampMs":1586656870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":861,"srcIndex":1402,"timestampMs":1586790290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":862,"srcIndex":1402,"timestampMs":1586571301000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":863,"srcIndex":1402,"timestampMs":1586565903000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":864,"srcIndex":1402,"timestampMs":1586633977000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":865,"srcIndex":1402,"timestampMs":1586645253000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":866,"srcIndex":1402,"timestampMs":1586567811000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":867,"srcIndex":1402,"timestampMs":1586664528000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":868,"srcIndex":1402,"timestampMs":1586645187000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":870,"srcIndex":1402,"timestampMs":1586654110000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":871,"srcIndex":1402,"timestampMs":1586570850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":898,"srcIndex":1402,"timestampMs":1586106320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":909,"srcIndex":1402,"timestampMs":1586106153000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":933,"srcIndex":1402,"timestampMs":1586112503000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":944,"srcIndex":1402,"timestampMs":1586109721000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":964,"srcIndex":1402,"timestampMs":1586106389000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":1007,"srcIndex":1402,"timestampMs":1586105574000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":1014,"srcIndex":1402,"timestampMs":1586106281000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":1057,"srcIndex":1402,"timestampMs":1583592448000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":1111,"srcIndex":1402,"timestampMs":1586710226000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":1113,"srcIndex":1402,"timestampMs":1586718047000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":1120,"srcIndex":1402,"timestampMs":1586796945000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":1146,"srcIndex":1402,"timestampMs":1586822144000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":1149,"srcIndex":1402,"timestampMs":1586712379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":1153,"srcIndex":1402,"timestampMs":1586810697000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":1167,"srcIndex":1402,"timestampMs":1587042850000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":1197,"srcIndex":1402,"timestampMs":1586717770000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":1209,"srcIndex":1402,"timestampMs":1586704728000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":1213,"srcIndex":1402,"timestampMs":1586810650000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":1228,"srcIndex":1402,"timestampMs":1586710445000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":1238,"srcIndex":1402,"timestampMs":1586711922000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":1239,"srcIndex":1402,"timestampMs":1586712103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":1247,"srcIndex":1402,"timestampMs":1586704788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":1282,"srcIndex":1402,"timestampMs":1586109667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":1284,"srcIndex":1402,"timestampMs":1583868918000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":1286,"srcIndex":1402,"timestampMs":1586115483000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":1288,"srcIndex":1402,"timestampMs":1586115750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":1295,"srcIndex":1402,"timestampMs":1586115035000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":1297,"srcIndex":1402,"timestampMs":1586116855000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":1303,"srcIndex":1402,"timestampMs":1586115569000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":1306,"srcIndex":1402,"timestampMs":1586115692000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":1307,"srcIndex":1402,"timestampMs":1586115737000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":1309,"srcIndex":1402,"timestampMs":1586115523000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":1311,"srcIndex":1402,"timestampMs":1584925959000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":1314,"srcIndex":1402,"timestampMs":1586115159000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1317,"srcIndex":1402,"timestampMs":1586638125000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1402,"timestampMs":1586704018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1319,"srcIndex":1402,"timestampMs":1586705495000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1402,"timestampMs":1586705553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1321,"srcIndex":1402,"timestampMs":1586705865000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1322,"srcIndex":1402,"timestampMs":1586712839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1325,"srcIndex":1402,"timestampMs":1586819336000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":1402,"timestampMs":1586821830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1327,"srcIndex":1402,"timestampMs":1586823283000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1329,"srcIndex":1402,"timestampMs":1586921943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1336,"srcIndex":1402,"timestampMs":1586104764000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1402,"timestampMs":1586116752000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1402,"timestampMs":1586917207000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1344,"srcIndex":1402,"timestampMs":1586709265000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1345,"srcIndex":1402,"timestampMs":1586706267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1346,"srcIndex":1402,"timestampMs":1586706318000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1347,"srcIndex":1402,"timestampMs":1586666816000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1348,"srcIndex":1402,"timestampMs":1586666998000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1349,"srcIndex":1402,"timestampMs":1586705051000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1402,"timestampMs":1586709014000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1353,"srcIndex":1402,"timestampMs":1586705290000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1354,"srcIndex":1402,"timestampMs":1586712148000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1355,"srcIndex":1402,"timestampMs":1586571331000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1356,"srcIndex":1402,"timestampMs":1586662991000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":1402,"timestampMs":1586566012000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":1402,"timestampMs":1586727817000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":1402,"timestampMs":1586797004000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":1402,"timestampMs":1586633970000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":1402,"timestampMs":1586645179000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":1402,"timestampMs":1586654103000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":1402,"timestampMs":1586656931000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":1402,"timestampMs":1586663009000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":1402,"timestampMs":1586664552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":746,"srcIndex":1402,"timestampMs":1586735225000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":747,"srcIndex":1402,"timestampMs":1586793675000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":748,"srcIndex":1402,"timestampMs":1586821838000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":751,"srcIndex":1402,"timestampMs":1586808032000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":752,"srcIndex":1402,"timestampMs":1586819514000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":753,"srcIndex":1402,"timestampMs":1586820570000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":754,"srcIndex":1402,"timestampMs":1586840296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":756,"srcIndex":1402,"timestampMs":1586922019000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":757,"srcIndex":1402,"timestampMs":1586802750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":759,"srcIndex":1402,"timestampMs":1586666872000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1402,"timestampMs":1586801390000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1402,"timestampMs":1586802204000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":766,"srcIndex":1402,"timestampMs":1586704028000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":767,"srcIndex":1402,"timestampMs":1586709561000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":771,"srcIndex":1402,"timestampMs":1586786432000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":772,"srcIndex":1402,"timestampMs":1586786582000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1402,"timestampMs":1586790870000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","burrrata","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1402,"timestampMs":1586810690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","c0mput3rxz","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":972,"srcIndex":1398,"timestampMs":1583542889000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":801,"srcIndex":1403,"timestampMs":1587075097000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1403,"timestampMs":1587070982000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1369,"srcIndex":1403,"timestampMs":1587079858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1403,"timestampMs":1586914696000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","crisog","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":777,"srcIndex":1403,"timestampMs":1587079943000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":877,"srcIndex":1409,"timestampMs":1583619788000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":879,"srcIndex":1409,"timestampMs":1585275196000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":887,"srcIndex":1409,"timestampMs":1583545099000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":919,"srcIndex":1409,"timestampMs":1583124213000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":931,"srcIndex":1409,"timestampMs":1582959287000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":937,"srcIndex":1409,"timestampMs":1583096048000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":959,"srcIndex":1409,"timestampMs":1585275681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":976,"srcIndex":1409,"timestampMs":1583014162000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":999,"srcIndex":1409,"timestampMs":1583124366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":1409,"timestampMs":1582959276000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":1013,"srcIndex":1409,"timestampMs":1583124346000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":1018,"srcIndex":1409,"timestampMs":1585361688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1409,"timestampMs":1582941407000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":1038,"srcIndex":1409,"timestampMs":1582941413000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":1053,"srcIndex":1409,"timestampMs":1583124164000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":1056,"srcIndex":1409,"timestampMs":1582941750000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","hammadj","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":1061,"srcIndex":1409,"timestampMs":1585365677000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":800,"srcIndex":1410,"timestampMs":1587052319000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":830,"srcIndex":1410,"timestampMs":1586855777000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":847,"srcIndex":1410,"timestampMs":1586855462000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":869,"srcIndex":1410,"timestampMs":1586874980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1410,"timestampMs":1586858542000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1351,"srcIndex":1410,"timestampMs":1586772477000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1352,"srcIndex":1410,"timestampMs":1586772739000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":749,"srcIndex":1410,"timestampMs":1586773257000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":755,"srcIndex":1410,"timestampMs":1586858608000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":765,"srcIndex":1410,"timestampMs":1586962450000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":768,"srcIndex":1410,"timestampMs":1586858205000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1410,"timestampMs":1586773337000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1410,"timestampMs":1586773655000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":773,"srcIndex":1410,"timestampMs":1586790511000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":775,"srcIndex":1410,"timestampMs":1586959270000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":930,"srcIndex":1412,"timestampMs":1583107086000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":950,"srcIndex":1412,"timestampMs":1583122040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":969,"srcIndex":1412,"timestampMs":1583106975000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":1094,"srcIndex":1412,"timestampMs":1586994934000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":1211,"srcIndex":1412,"timestampMs":1586810374000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1412,"timestampMs":1586810530000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","mzargham","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1412,"timestampMs":1586995113000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":874,"srcIndex":1401,"timestampMs":1586104482000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":896,"srcIndex":1401,"timestampMs":1586104041000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":921,"srcIndex":1401,"timestampMs":1586105522000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":941,"srcIndex":1401,"timestampMs":1586104299000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":996,"srcIndex":1401,"timestampMs":1586103659000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":1022,"srcIndex":1401,"timestampMs":1586104090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":1048,"srcIndex":1401,"timestampMs":1586103656000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":1072,"srcIndex":1401,"timestampMs":1586425053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":1073,"srcIndex":1401,"timestampMs":1586114858000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":1074,"srcIndex":1401,"timestampMs":1586658939000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":1075,"srcIndex":1401,"timestampMs":1586425366000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":1076,"srcIndex":1401,"timestampMs":1586377189000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":1077,"srcIndex":1401,"timestampMs":1586109857000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":1079,"srcIndex":1401,"timestampMs":1586439223000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":1082,"srcIndex":1401,"timestampMs":1586430244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":1083,"srcIndex":1401,"timestampMs":1586430128000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":1085,"srcIndex":1401,"timestampMs":1586638157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1401,"timestampMs":1586535321000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":1089,"srcIndex":1401,"timestampMs":1586436690000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":1090,"srcIndex":1401,"timestampMs":1586760993000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":1093,"srcIndex":1401,"timestampMs":1586425839000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":1095,"srcIndex":1401,"timestampMs":1586475320000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":1098,"srcIndex":1401,"timestampMs":1586636313000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":1100,"srcIndex":1401,"timestampMs":1586436960000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":1101,"srcIndex":1401,"timestampMs":1586645851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":1102,"srcIndex":1401,"timestampMs":1586114997000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":1103,"srcIndex":1401,"timestampMs":1586436983000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":1104,"srcIndex":1401,"timestampMs":1586439726000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":1109,"srcIndex":1401,"timestampMs":1586430447000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":1110,"srcIndex":1401,"timestampMs":1586438375000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":1112,"srcIndex":1401,"timestampMs":1586110667000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":1114,"srcIndex":1401,"timestampMs":1586439440000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":1115,"srcIndex":1401,"timestampMs":1586658493000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":1118,"srcIndex":1401,"timestampMs":1586641745000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":1122,"srcIndex":1401,"timestampMs":1586446367000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":1125,"srcIndex":1401,"timestampMs":1586107822000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":1128,"srcIndex":1401,"timestampMs":1586111848000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":1129,"srcIndex":1401,"timestampMs":1586450203000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":1131,"srcIndex":1401,"timestampMs":1586208161000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":1135,"srcIndex":1401,"timestampMs":1586608102000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":1139,"srcIndex":1401,"timestampMs":1586438648000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":1143,"srcIndex":1401,"timestampMs":1586447296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":1144,"srcIndex":1401,"timestampMs":1586262990000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":1145,"srcIndex":1401,"timestampMs":1586108344000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":1151,"srcIndex":1401,"timestampMs":1586629712000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":1155,"srcIndex":1401,"timestampMs":1586630579000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":1156,"srcIndex":1401,"timestampMs":1586640176000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":1159,"srcIndex":1401,"timestampMs":1586264143000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":1160,"srcIndex":1401,"timestampMs":1586443674000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":1165,"srcIndex":1401,"timestampMs":1586629689000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":1166,"srcIndex":1401,"timestampMs":1586642724000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":1168,"srcIndex":1401,"timestampMs":1586461703000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":1169,"srcIndex":1401,"timestampMs":1586264058000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":1171,"srcIndex":1401,"timestampMs":1586208446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":1172,"srcIndex":1401,"timestampMs":1586264565000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":1173,"srcIndex":1401,"timestampMs":1586264365000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":1175,"srcIndex":1401,"timestampMs":1586633972000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":1176,"srcIndex":1401,"timestampMs":1586630527000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":1177,"srcIndex":1401,"timestampMs":1586632841000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":1178,"srcIndex":1401,"timestampMs":1586446829000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":1179,"srcIndex":1401,"timestampMs":1586437704000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":1181,"srcIndex":1401,"timestampMs":1586643749000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":1184,"srcIndex":1401,"timestampMs":1586556200000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":1185,"srcIndex":1401,"timestampMs":1586426157000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":1186,"srcIndex":1401,"timestampMs":1586504576000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":1190,"srcIndex":1401,"timestampMs":1586632115000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":1191,"srcIndex":1401,"timestampMs":1586115022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":1192,"srcIndex":1401,"timestampMs":1586395769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":1195,"srcIndex":1401,"timestampMs":1586428289000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":1196,"srcIndex":1401,"timestampMs":1586635956000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":1199,"srcIndex":1401,"timestampMs":1586566089000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":1200,"srcIndex":1401,"timestampMs":1586637453000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":1201,"srcIndex":1401,"timestampMs":1586209230000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":1203,"srcIndex":1401,"timestampMs":1586619306000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":1204,"srcIndex":1401,"timestampMs":1586635980000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":1207,"srcIndex":1401,"timestampMs":1586440952000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":1210,"srcIndex":1401,"timestampMs":1586425156000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":1214,"srcIndex":1401,"timestampMs":1586633830000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":1215,"srcIndex":1401,"timestampMs":1586631279000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":1219,"srcIndex":1401,"timestampMs":1586439053000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":1220,"srcIndex":1401,"timestampMs":1586645068000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":1222,"srcIndex":1401,"timestampMs":1586461592000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":1223,"srcIndex":1401,"timestampMs":1586426867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":1224,"srcIndex":1401,"timestampMs":1586659020000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":1225,"srcIndex":1401,"timestampMs":1586462092000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":1226,"srcIndex":1401,"timestampMs":1586445094000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":1227,"srcIndex":1401,"timestampMs":1586659508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":1229,"srcIndex":1401,"timestampMs":1586461896000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":1230,"srcIndex":1401,"timestampMs":1586640763000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":1234,"srcIndex":1401,"timestampMs":1586442756000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":1235,"srcIndex":1401,"timestampMs":1586656761000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":1236,"srcIndex":1401,"timestampMs":1586639218000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":1237,"srcIndex":1401,"timestampMs":1586431949000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":1241,"srcIndex":1401,"timestampMs":1586425693000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":1242,"srcIndex":1401,"timestampMs":1586646488000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":1243,"srcIndex":1401,"timestampMs":1586657456000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":1244,"srcIndex":1401,"timestampMs":1586109264000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":1245,"srcIndex":1401,"timestampMs":1586395938000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":1246,"srcIndex":1401,"timestampMs":1586443142000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":1248,"srcIndex":1401,"timestampMs":1586612834000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":1249,"srcIndex":1401,"timestampMs":1586443040000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":1251,"srcIndex":1401,"timestampMs":1586439553000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":1252,"srcIndex":1401,"timestampMs":1586449851000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":1254,"srcIndex":1401,"timestampMs":1586440769000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":1255,"srcIndex":1401,"timestampMs":1586638167000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":1256,"srcIndex":1401,"timestampMs":1586442958000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":1257,"srcIndex":1401,"timestampMs":1586443278000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":1259,"srcIndex":1401,"timestampMs":1586108556000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":1260,"srcIndex":1401,"timestampMs":1586632045000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":1261,"srcIndex":1401,"timestampMs":1586644275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":1262,"srcIndex":1401,"timestampMs":1586439910000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":1263,"srcIndex":1401,"timestampMs":1586635090000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":1265,"srcIndex":1401,"timestampMs":1586761063000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":1269,"srcIndex":1401,"timestampMs":1586425884000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":1271,"srcIndex":1401,"timestampMs":1586208275000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":1272,"srcIndex":1401,"timestampMs":1586641071000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":1273,"srcIndex":1401,"timestampMs":1586446525000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":1275,"srcIndex":1401,"timestampMs":1586607022000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":1276,"srcIndex":1401,"timestampMs":1586457498000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":1277,"srcIndex":1401,"timestampMs":1586656082000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":1279,"srcIndex":1401,"timestampMs":1586639647000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":1280,"srcIndex":1401,"timestampMs":1586396173000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":1283,"srcIndex":1401,"timestampMs":1585184379000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":1285,"srcIndex":1401,"timestampMs":1583846036000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":1287,"srcIndex":1401,"timestampMs":1585184096000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":1290,"srcIndex":1401,"timestampMs":1586119837000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":1291,"srcIndex":1401,"timestampMs":1586119867000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":1292,"srcIndex":1401,"timestampMs":1583841786000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":1293,"srcIndex":1401,"timestampMs":1583855508000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":1294,"srcIndex":1401,"timestampMs":1584736018000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":1296,"srcIndex":1401,"timestampMs":1584727355000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":1299,"srcIndex":1401,"timestampMs":1585132575000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":1300,"srcIndex":1401,"timestampMs":1585128878000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":1302,"srcIndex":1401,"timestampMs":1585126267000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":1304,"srcIndex":1401,"timestampMs":1585126105000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":1305,"srcIndex":1401,"timestampMs":1584722599000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":1308,"srcIndex":1401,"timestampMs":1585142847000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":1310,"srcIndex":1401,"timestampMs":1583707484000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":1312,"srcIndex":1401,"timestampMs":1584468261000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":1313,"srcIndex":1401,"timestampMs":1585184645000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":1315,"srcIndex":1401,"timestampMs":1585134244000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":1316,"srcIndex":1401,"timestampMs":1584727333000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1323,"srcIndex":1401,"timestampMs":1586768126000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1324,"srcIndex":1401,"timestampMs":1586269776000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1330,"srcIndex":1401,"timestampMs":1586390052000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1331,"srcIndex":1401,"timestampMs":1586390446000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1332,"srcIndex":1401,"timestampMs":1586390871000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1333,"srcIndex":1401,"timestampMs":1586396494000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1334,"srcIndex":1401,"timestampMs":1586435403000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1335,"srcIndex":1401,"timestampMs":1586440155000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1401,"timestampMs":1586264552000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1358,"srcIndex":1401,"timestampMs":1586446688000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1401,"timestampMs":1586449916000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1360,"srcIndex":1401,"timestampMs":1586658580000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1401,"timestampMs":1586425681000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":1401,"timestampMs":1586103666000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1401,"timestampMs":1586104083000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1391,"srcIndex":1401,"timestampMs":1586658808000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","pythonpete32","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1401,"timestampMs":1586787682000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":1289,"srcIndex":1415,"timestampMs":1584727008000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":1298,"srcIndex":1415,"timestampMs":1584733391000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","sembrestels","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":1301,"srcIndex":1415,"timestampMs":1584729372000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","vntrp","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1375,"srcIndex":1399,"timestampMs":1586987888000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],"dstIndex":215,"srcIndex":781,"timestampMs":1586666528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],"dstIndex":262,"srcIndex":782,"timestampMs":1586706188000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],"dstIndex":263,"srcIndex":783,"timestampMs":1586709195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],"dstIndex":483,"srcIndex":784,"timestampMs":1586710102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],"dstIndex":577,"srcIndex":785,"timestampMs":1586709961000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],"dstIndex":254,"srcIndex":786,"timestampMs":1586921892000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],"dstIndex":268,"srcIndex":787,"timestampMs":1586930578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],"dstIndex":283,"srcIndex":788,"timestampMs":1586920791000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],"dstIndex":293,"srcIndex":789,"timestampMs":1586921871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],"dstIndex":296,"srcIndex":790,"timestampMs":1586920549000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],"dstIndex":298,"srcIndex":791,"timestampMs":1586839193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],"dstIndex":330,"srcIndex":792,"timestampMs":1586916947000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],"dstIndex":356,"srcIndex":793,"timestampMs":1586919065000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],"dstIndex":393,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],"dstIndex":420,"srcIndex":795,"timestampMs":1586957209000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],"dstIndex":424,"srcIndex":796,"timestampMs":1586915756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],"dstIndex":560,"srcIndex":797,"timestampMs":1586916992000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],"dstIndex":563,"srcIndex":798,"timestampMs":1586932748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],"dstIndex":588,"srcIndex":799,"timestampMs":1586934527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],"dstIndex":594,"srcIndex":800,"timestampMs":1587052319000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],"dstIndex":573,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],"dstIndex":656,"srcIndex":802,"timestampMs":1586805309000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],"dstIndex":660,"srcIndex":803,"timestampMs":1586918718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],"dstIndex":667,"srcIndex":804,"timestampMs":1586831849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],"dstIndex":678,"srcIndex":805,"timestampMs":1586977731000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],"dstIndex":679,"srcIndex":806,"timestampMs":1586921823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],"dstIndex":691,"srcIndex":807,"timestampMs":1586960050000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],"dstIndex":690,"srcIndex":808,"timestampMs":1586933937000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],"dstIndex":733,"srcIndex":809,"timestampMs":1586832132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],"dstIndex":719,"srcIndex":810,"timestampMs":1586958454000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],"dstIndex":224,"srcIndex":811,"timestampMs":1586730565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],"dstIndex":218,"srcIndex":812,"timestampMs":1586643786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],"dstIndex":233,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],"dstIndex":251,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],"dstIndex":253,"srcIndex":815,"timestampMs":1586710826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],"dstIndex":260,"srcIndex":816,"timestampMs":1586727748000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],"dstIndex":241,"srcIndex":817,"timestampMs":1586570955000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],"dstIndex":285,"srcIndex":818,"timestampMs":1586662685000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],"dstIndex":291,"srcIndex":819,"timestampMs":1586127122000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],"dstIndex":295,"srcIndex":820,"timestampMs":1586658983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],"dstIndex":299,"srcIndex":821,"timestampMs":1586566694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],"dstIndex":302,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],"dstIndex":303,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],"dstIndex":325,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],"dstIndex":331,"srcIndex":825,"timestampMs":1586103464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],"dstIndex":310,"srcIndex":826,"timestampMs":1586633871000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],"dstIndex":368,"srcIndex":827,"timestampMs":1586647160000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],"dstIndex":373,"srcIndex":828,"timestampMs":1586660251000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],"dstIndex":382,"srcIndex":829,"timestampMs":1586649927000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],"dstIndex":394,"srcIndex":830,"timestampMs":1586855777000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],"dstIndex":402,"srcIndex":831,"timestampMs":1586571027000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],"dstIndex":412,"srcIndex":832,"timestampMs":1586644808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],"dstIndex":413,"srcIndex":833,"timestampMs":1586650718000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],"dstIndex":429,"srcIndex":834,"timestampMs":1586103441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],"dstIndex":431,"srcIndex":835,"timestampMs":1586568293000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],"dstIndex":433,"srcIndex":836,"timestampMs":1586646704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],"dstIndex":436,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],"dstIndex":458,"srcIndex":838,"timestampMs":1586639136000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],"dstIndex":474,"srcIndex":839,"timestampMs":1586663769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],"dstIndex":476,"srcIndex":840,"timestampMs":1586652307000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],"dstIndex":479,"srcIndex":841,"timestampMs":1586570353000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],"dstIndex":511,"srcIndex":842,"timestampMs":1586638395000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],"dstIndex":519,"srcIndex":843,"timestampMs":1586657067000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],"dstIndex":523,"srcIndex":844,"timestampMs":1586649206000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],"dstIndex":545,"srcIndex":845,"timestampMs":1586729040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],"dstIndex":548,"srcIndex":846,"timestampMs":1586567498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],"dstIndex":554,"srcIndex":847,"timestampMs":1586855462000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],"dstIndex":532,"srcIndex":848,"timestampMs":1586568912000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],"dstIndex":533,"srcIndex":849,"timestampMs":1586640470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],"dstIndex":538,"srcIndex":850,"timestampMs":1586111771000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],"dstIndex":556,"srcIndex":851,"timestampMs":1586569076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],"dstIndex":559,"srcIndex":852,"timestampMs":1586648621000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],"dstIndex":601,"srcIndex":853,"timestampMs":1586111689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],"dstIndex":606,"srcIndex":854,"timestampMs":1586651543000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],"dstIndex":627,"srcIndex":855,"timestampMs":1586661631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],"dstIndex":628,"srcIndex":856,"timestampMs":1586739277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],"dstIndex":620,"srcIndex":857,"timestampMs":1586644660000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],"dstIndex":623,"srcIndex":858,"timestampMs":1586792089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],"dstIndex":642,"srcIndex":859,"timestampMs":1586645107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],"dstIndex":657,"srcIndex":860,"timestampMs":1586656870000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],"dstIndex":668,"srcIndex":861,"timestampMs":1586790290000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],"dstIndex":649,"srcIndex":862,"timestampMs":1586571301000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],"dstIndex":672,"srcIndex":863,"timestampMs":1586565903000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],"dstIndex":677,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],"dstIndex":683,"srcIndex":865,"timestampMs":1586645253000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],"dstIndex":700,"srcIndex":866,"timestampMs":1586567811000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],"dstIndex":701,"srcIndex":867,"timestampMs":1586664528000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],"dstIndex":689,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],"dstIndex":711,"srcIndex":869,"timestampMs":1586874980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],"dstIndex":735,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],"dstIndex":737,"srcIndex":871,"timestampMs":1586570850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],"dstIndex":228,"srcIndex":872,"timestampMs":1584166244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],"dstIndex":212,"srcIndex":873,"timestampMs":1582978132000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],"dstIndex":213,"srcIndex":874,"timestampMs":1586104482000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],"dstIndex":214,"srcIndex":875,"timestampMs":1583453629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],"dstIndex":235,"srcIndex":876,"timestampMs":1585678434000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],"dstIndex":249,"srcIndex":877,"timestampMs":1583619788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],"dstIndex":250,"srcIndex":878,"timestampMs":1585354520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],"dstIndex":258,"srcIndex":879,"timestampMs":1585275196000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],"dstIndex":240,"srcIndex":880,"timestampMs":1585246440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],"dstIndex":242,"srcIndex":881,"timestampMs":1583367223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],"dstIndex":243,"srcIndex":882,"timestampMs":1585807902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],"dstIndex":244,"srcIndex":883,"timestampMs":1584727971000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],"dstIndex":247,"srcIndex":884,"timestampMs":1585268012000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],"dstIndex":248,"srcIndex":885,"timestampMs":1584490521000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],"dstIndex":265,"srcIndex":886,"timestampMs":1584425424000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],"dstIndex":266,"srcIndex":887,"timestampMs":1583545099000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],"dstIndex":267,"srcIndex":888,"timestampMs":1584404096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],"dstIndex":269,"srcIndex":889,"timestampMs":1584987191000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],"dstIndex":273,"srcIndex":890,"timestampMs":1585872826000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],"dstIndex":274,"srcIndex":891,"timestampMs":1584231333000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],"dstIndex":284,"srcIndex":892,"timestampMs":1584079976000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],"dstIndex":287,"srcIndex":893,"timestampMs":1584555406000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],"dstIndex":288,"srcIndex":894,"timestampMs":1585159980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":275,"srcIndex":895,"timestampMs":1582941733000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],"dstIndex":277,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":280,"srcIndex":897,"timestampMs":1581915151000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],"dstIndex":281,"srcIndex":898,"timestampMs":1586106320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],"dstIndex":290,"srcIndex":899,"timestampMs":1585365876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],"dstIndex":301,"srcIndex":900,"timestampMs":1585276073000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],"dstIndex":304,"srcIndex":901,"timestampMs":1585397520000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],"dstIndex":305,"srcIndex":902,"timestampMs":1584274368000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],"dstIndex":319,"srcIndex":903,"timestampMs":1584382440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],"dstIndex":320,"srcIndex":904,"timestampMs":1585894360000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],"dstIndex":321,"srcIndex":905,"timestampMs":1585095460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],"dstIndex":322,"srcIndex":906,"timestampMs":1581914566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":324,"srcIndex":907,"timestampMs":1581914856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],"dstIndex":326,"srcIndex":908,"timestampMs":1581911765000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],"dstIndex":327,"srcIndex":909,"timestampMs":1586106153000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],"dstIndex":328,"srcIndex":910,"timestampMs":1583604631000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],"dstIndex":329,"srcIndex":911,"timestampMs":1583712856000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],"dstIndex":332,"srcIndex":912,"timestampMs":1585505534000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],"dstIndex":333,"srcIndex":913,"timestampMs":1584058539000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],"dstIndex":306,"srcIndex":914,"timestampMs":1583172648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],"dstIndex":307,"srcIndex":915,"timestampMs":1584857389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],"dstIndex":308,"srcIndex":916,"timestampMs":1583928647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],"dstIndex":312,"srcIndex":917,"timestampMs":1582959644000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],"dstIndex":314,"srcIndex":918,"timestampMs":1584965374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],"dstIndex":337,"srcIndex":919,"timestampMs":1583124213000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],"dstIndex":338,"srcIndex":920,"timestampMs":1584511968000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],"dstIndex":339,"srcIndex":921,"timestampMs":1586105522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],"dstIndex":340,"srcIndex":922,"timestampMs":1583280857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],"dstIndex":341,"srcIndex":923,"timestampMs":1584101474000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],"dstIndex":347,"srcIndex":924,"timestampMs":1583086481000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],"dstIndex":349,"srcIndex":925,"timestampMs":1583259010000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],"dstIndex":360,"srcIndex":926,"timestampMs":1585548726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],"dstIndex":359,"srcIndex":927,"timestampMs":1585700008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],"dstIndex":365,"srcIndex":928,"timestampMs":1585484037000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],"dstIndex":367,"srcIndex":929,"timestampMs":1585311128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],"dstIndex":351,"srcIndex":930,"timestampMs":1583107086000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],"dstIndex":352,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],"dstIndex":353,"srcIndex":932,"timestampMs":1585440813000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],"dstIndex":354,"srcIndex":933,"timestampMs":1586112503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],"dstIndex":355,"srcIndex":934,"timestampMs":1583129436000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],"dstIndex":370,"srcIndex":935,"timestampMs":1585224759000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],"dstIndex":372,"srcIndex":936,"timestampMs":1585980739000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],"dstIndex":374,"srcIndex":937,"timestampMs":1583096048000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],"dstIndex":377,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],"dstIndex":388,"srcIndex":939,"timestampMs":1584209897000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],"dstIndex":389,"srcIndex":940,"timestampMs":1585937519000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],"dstIndex":391,"srcIndex":941,"timestampMs":1586104299000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],"dstIndex":392,"srcIndex":942,"timestampMs":1585613634000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],"dstIndex":379,"srcIndex":943,"timestampMs":1585656841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],"dstIndex":380,"srcIndex":944,"timestampMs":1586109721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],"dstIndex":381,"srcIndex":945,"timestampMs":1585591899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],"dstIndex":396,"srcIndex":946,"timestampMs":1585116577000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],"dstIndex":397,"srcIndex":947,"timestampMs":1583820607000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],"dstIndex":398,"srcIndex":948,"timestampMs":1584619902000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],"dstIndex":399,"srcIndex":949,"timestampMs":1584943893000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],"dstIndex":416,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],"dstIndex":417,"srcIndex":951,"timestampMs":1584187884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],"dstIndex":418,"srcIndex":952,"timestampMs":1584123231000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],"dstIndex":422,"srcIndex":953,"timestampMs":1585008772000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],"dstIndex":425,"srcIndex":954,"timestampMs":1584339043000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],"dstIndex":415,"srcIndex":955,"timestampMs":1583669536000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],"dstIndex":426,"srcIndex":956,"timestampMs":1584252719000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],"dstIndex":427,"srcIndex":957,"timestampMs":1584360709000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],"dstIndex":432,"srcIndex":958,"timestampMs":1585915944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],"dstIndex":442,"srcIndex":959,"timestampMs":1585275681000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],"dstIndex":448,"srcIndex":960,"timestampMs":1585462336000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],"dstIndex":450,"srcIndex":961,"timestampMs":1583755944000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],"dstIndex":439,"srcIndex":962,"timestampMs":1584663156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],"dstIndex":455,"srcIndex":963,"timestampMs":1584598257000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],"dstIndex":456,"srcIndex":964,"timestampMs":1586106389000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],"dstIndex":459,"srcIndex":965,"timestampMs":1585332629000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],"dstIndex":461,"srcIndex":966,"timestampMs":1583799279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],"dstIndex":462,"srcIndex":967,"timestampMs":1581898623000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],"dstIndex":466,"srcIndex":968,"timestampMs":1583496697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],"dstIndex":472,"srcIndex":969,"timestampMs":1583106975000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],"dstIndex":473,"srcIndex":970,"timestampMs":1585829522000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],"dstIndex":475,"srcIndex":971,"timestampMs":1584706303000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],"dstIndex":477,"srcIndex":972,"timestampMs":1583542889000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],"dstIndex":480,"srcIndex":973,"timestampMs":1585375849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],"dstIndex":481,"srcIndex":974,"timestampMs":1583431778000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],"dstIndex":467,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],"dstIndex":468,"srcIndex":976,"timestampMs":1583014162000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],"dstIndex":469,"srcIndex":977,"timestampMs":1583540024000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],"dstIndex":470,"srcIndex":978,"timestampMs":1586023930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],"dstIndex":471,"srcIndex":979,"timestampMs":1585570245000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],"dstIndex":490,"srcIndex":980,"timestampMs":1583410286000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],"dstIndex":491,"srcIndex":981,"timestampMs":1585073567000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":493,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],"dstIndex":495,"srcIndex":983,"timestampMs":1582941505000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],"dstIndex":506,"srcIndex":984,"timestampMs":1583014460000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],"dstIndex":507,"srcIndex":985,"timestampMs":1585289369000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],"dstIndex":508,"srcIndex":986,"timestampMs":1584814190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],"dstIndex":512,"srcIndex":987,"timestampMs":1586002264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],"dstIndex":514,"srcIndex":988,"timestampMs":1584015081000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],"dstIndex":504,"srcIndex":989,"timestampMs":1584901288000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],"dstIndex":515,"srcIndex":990,"timestampMs":1585851193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],"dstIndex":516,"srcIndex":991,"timestampMs":1585051794000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],"dstIndex":517,"srcIndex":992,"timestampMs":1583864016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],"dstIndex":520,"srcIndex":993,"timestampMs":1583561475000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],"dstIndex":521,"srcIndex":994,"timestampMs":1584922566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],"dstIndex":522,"srcIndex":995,"timestampMs":1584836115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],"dstIndex":541,"srcIndex":996,"timestampMs":1586103659000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],"dstIndex":543,"srcIndex":997,"timestampMs":1581900781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],"dstIndex":546,"srcIndex":998,"timestampMs":1584749757000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],"dstIndex":549,"srcIndex":999,"timestampMs":1583124366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":552,"srcIndex":1000,"timestampMs":1582959276000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],"dstIndex":555,"srcIndex":1001,"timestampMs":1583691175000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],"dstIndex":530,"srcIndex":1002,"timestampMs":1583064673000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],"dstIndex":534,"srcIndex":1003,"timestampMs":1584684556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],"dstIndex":535,"srcIndex":1004,"timestampMs":1583842226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],"dstIndex":537,"srcIndex":1005,"timestampMs":1585743137000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],"dstIndex":561,"srcIndex":1006,"timestampMs":1583107978000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],"dstIndex":564,"srcIndex":1007,"timestampMs":1586105574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],"dstIndex":576,"srcIndex":1008,"timestampMs":1583096222000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],"dstIndex":581,"srcIndex":1009,"timestampMs":1585030166000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],"dstIndex":582,"srcIndex":1010,"timestampMs":1585764755000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],"dstIndex":584,"srcIndex":1011,"timestampMs":1583993566000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],"dstIndex":585,"srcIndex":1012,"timestampMs":1583972111000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],"dstIndex":586,"srcIndex":1013,"timestampMs":1583124346000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],"dstIndex":587,"srcIndex":1014,"timestampMs":1586106281000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],"dstIndex":590,"srcIndex":1015,"timestampMs":1583619966000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],"dstIndex":591,"srcIndex":1016,"timestampMs":1583302409000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],"dstIndex":593,"srcIndex":1017,"timestampMs":1581903422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],"dstIndex":595,"srcIndex":1018,"timestampMs":1585361688000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],"dstIndex":596,"srcIndex":1019,"timestampMs":1583778483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],"dstIndex":565,"srcIndex":1020,"timestampMs":1583583119000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],"dstIndex":567,"srcIndex":1021,"timestampMs":1583043139000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],"dstIndex":571,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],"dstIndex":574,"srcIndex":1023,"timestampMs":1583237458000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],"dstIndex":597,"srcIndex":1024,"timestampMs":1583194441000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],"dstIndex":598,"srcIndex":1025,"timestampMs":1583215867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":603,"srcIndex":1026,"timestampMs":1581914667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],"dstIndex":602,"srcIndex":1027,"timestampMs":1585527211000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":607,"srcIndex":1028,"timestampMs":1581903056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],"dstIndex":608,"srcIndex":1029,"timestampMs":1583734323000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],"dstIndex":612,"srcIndex":1030,"timestampMs":1586105832000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],"dstIndex":624,"srcIndex":1031,"timestampMs":1583950431000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],"dstIndex":626,"srcIndex":1032,"timestampMs":1583345470000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],"dstIndex":629,"srcIndex":1033,"timestampMs":1586045554000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],"dstIndex":631,"srcIndex":1034,"timestampMs":1584771018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],"dstIndex":632,"srcIndex":1035,"timestampMs":1585959190000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],"dstIndex":634,"srcIndex":1036,"timestampMs":1584144938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":636,"srcIndex":1037,"timestampMs":1582941407000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],"dstIndex":613,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],"dstIndex":622,"srcIndex":1039,"timestampMs":1583125241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],"dstIndex":640,"srcIndex":1040,"timestampMs":1585786422000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],"dstIndex":644,"srcIndex":1041,"timestampMs":1583647930000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],"dstIndex":645,"srcIndex":1042,"timestampMs":1583388676000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],"dstIndex":655,"srcIndex":1043,"timestampMs":1585202969000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],"dstIndex":659,"srcIndex":1044,"timestampMs":1583021626000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],"dstIndex":663,"srcIndex":1045,"timestampMs":1583885686000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],"dstIndex":664,"srcIndex":1046,"timestampMs":1584317721000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],"dstIndex":669,"srcIndex":1047,"timestampMs":1584792698000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],"dstIndex":647,"srcIndex":1048,"timestampMs":1586103656000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],"dstIndex":650,"srcIndex":1049,"timestampMs":1584447107000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],"dstIndex":680,"srcIndex":1050,"timestampMs":1581898638000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],"dstIndex":682,"srcIndex":1051,"timestampMs":1585181592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],"dstIndex":684,"srcIndex":1052,"timestampMs":1586088576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],"dstIndex":694,"srcIndex":1053,"timestampMs":1583124164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],"dstIndex":695,"srcIndex":1054,"timestampMs":1585635193000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],"dstIndex":685,"srcIndex":1055,"timestampMs":1583545284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],"dstIndex":686,"srcIndex":1056,"timestampMs":1582941750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],"dstIndex":702,"srcIndex":1057,"timestampMs":1583592448000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],"dstIndex":703,"srcIndex":1058,"timestampMs":1583626507000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],"dstIndex":704,"srcIndex":1059,"timestampMs":1585721531000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],"dstIndex":705,"srcIndex":1060,"timestampMs":1583151030000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],"dstIndex":709,"srcIndex":1061,"timestampMs":1585365677000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],"dstIndex":713,"srcIndex":1062,"timestampMs":1583518372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],"dstIndex":727,"srcIndex":1063,"timestampMs":1585419164000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],"dstIndex":729,"srcIndex":1064,"timestampMs":1584036899000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],"dstIndex":730,"srcIndex":1065,"timestampMs":1583323781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],"dstIndex":731,"srcIndex":1066,"timestampMs":1583907011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],"dstIndex":732,"srcIndex":1067,"timestampMs":1585361881000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],"dstIndex":734,"srcIndex":1068,"timestampMs":1583475056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],"dstIndex":718,"srcIndex":1069,"timestampMs":1584295996000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],"dstIndex":722,"srcIndex":1070,"timestampMs":1585138236000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],"dstIndex":742,"srcIndex":1071,"timestampMs":1584641608000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],"dstIndex":223,"srcIndex":1072,"timestampMs":1586425053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],"dstIndex":225,"srcIndex":1073,"timestampMs":1586114858000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],"dstIndex":226,"srcIndex":1074,"timestampMs":1586658939000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],"dstIndex":229,"srcIndex":1075,"timestampMs":1586425366000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],"dstIndex":210,"srcIndex":1076,"timestampMs":1586377189000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],"dstIndex":211,"srcIndex":1077,"timestampMs":1586109857000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],"dstIndex":216,"srcIndex":1078,"timestampMs":1586283283000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],"dstIndex":219,"srcIndex":1079,"timestampMs":1586439223000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],"dstIndex":220,"srcIndex":1080,"timestampMs":1586434473000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],"dstIndex":221,"srcIndex":1081,"timestampMs":1586757849000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],"dstIndex":222,"srcIndex":1082,"timestampMs":1586430244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],"dstIndex":230,"srcIndex":1083,"timestampMs":1586430128000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],"dstIndex":231,"srcIndex":1084,"timestampMs":1586822727000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],"dstIndex":234,"srcIndex":1085,"timestampMs":1586638157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],"dstIndex":237,"srcIndex":1086,"timestampMs":1586462221000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],"dstIndex":252,"srcIndex":1087,"timestampMs":1586369661000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":255,"srcIndex":1088,"timestampMs":1586535321000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],"dstIndex":257,"srcIndex":1089,"timestampMs":1586436690000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],"dstIndex":259,"srcIndex":1090,"timestampMs":1586760993000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],"dstIndex":261,"srcIndex":1091,"timestampMs":1586607165000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],"dstIndex":239,"srcIndex":1092,"timestampMs":1586887494000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],"dstIndex":245,"srcIndex":1093,"timestampMs":1586425839000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],"dstIndex":271,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],"dstIndex":272,"srcIndex":1095,"timestampMs":1586475320000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],"dstIndex":286,"srcIndex":1096,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],"dstIndex":289,"srcIndex":1097,"timestampMs":1586635242000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],"dstIndex":276,"srcIndex":1098,"timestampMs":1586636313000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],"dstIndex":278,"srcIndex":1099,"timestampMs":1586972808000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],"dstIndex":279,"srcIndex":1100,"timestampMs":1586436960000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],"dstIndex":282,"srcIndex":1101,"timestampMs":1586645851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],"dstIndex":292,"srcIndex":1102,"timestampMs":1586114997000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],"dstIndex":294,"srcIndex":1103,"timestampMs":1586436983000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],"dstIndex":297,"srcIndex":1104,"timestampMs":1586439726000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],"dstIndex":300,"srcIndex":1105,"timestampMs":1586844255000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],"dstIndex":323,"srcIndex":1106,"timestampMs":1586718195000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],"dstIndex":334,"srcIndex":1107,"timestampMs":1587058277000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],"dstIndex":309,"srcIndex":1108,"timestampMs":1587049226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],"dstIndex":311,"srcIndex":1109,"timestampMs":1586430447000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],"dstIndex":313,"srcIndex":1110,"timestampMs":1586438375000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],"dstIndex":315,"srcIndex":1111,"timestampMs":1586710226000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],"dstIndex":316,"srcIndex":1112,"timestampMs":1586110667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],"dstIndex":318,"srcIndex":1113,"timestampMs":1586718047000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],"dstIndex":335,"srcIndex":1114,"timestampMs":1586439440000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],"dstIndex":336,"srcIndex":1115,"timestampMs":1586658493000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],"dstIndex":342,"srcIndex":1116,"timestampMs":1586211419000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],"dstIndex":343,"srcIndex":1117,"timestampMs":1586952325000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],"dstIndex":344,"srcIndex":1118,"timestampMs":1586641745000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],"dstIndex":346,"srcIndex":1119,"timestampMs":1586704923000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],"dstIndex":357,"srcIndex":1120,"timestampMs":1586796945000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],"dstIndex":358,"srcIndex":1121,"timestampMs":1586348063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],"dstIndex":361,"srcIndex":1122,"timestampMs":1586446367000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],"dstIndex":362,"srcIndex":1123,"timestampMs":1586978574000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],"dstIndex":363,"srcIndex":1124,"timestampMs":1586535464000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],"dstIndex":366,"srcIndex":1125,"timestampMs":1586107822000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],"dstIndex":350,"srcIndex":1126,"timestampMs":1586498582000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],"dstIndex":369,"srcIndex":1127,"timestampMs":1586712241000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],"dstIndex":371,"srcIndex":1128,"timestampMs":1586111848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],"dstIndex":375,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],"dstIndex":376,"srcIndex":1130,"timestampMs":1586649806000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],"dstIndex":386,"srcIndex":1131,"timestampMs":1586208161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],"dstIndex":387,"srcIndex":1132,"timestampMs":1586779463000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],"dstIndex":390,"srcIndex":1133,"timestampMs":1586477016000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],"dstIndex":378,"srcIndex":1134,"timestampMs":1586995532000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],"dstIndex":383,"srcIndex":1135,"timestampMs":1586608102000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],"dstIndex":384,"srcIndex":1136,"timestampMs":1586628192000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],"dstIndex":385,"srcIndex":1137,"timestampMs":1586736284000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],"dstIndex":395,"srcIndex":1138,"timestampMs":1586712506000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],"dstIndex":400,"srcIndex":1139,"timestampMs":1586438648000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],"dstIndex":401,"srcIndex":1140,"timestampMs":1586556340000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],"dstIndex":404,"srcIndex":1141,"timestampMs":1586412877000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],"dstIndex":406,"srcIndex":1142,"timestampMs":1586520161000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],"dstIndex":419,"srcIndex":1143,"timestampMs":1586447296000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],"dstIndex":421,"srcIndex":1144,"timestampMs":1586262990000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],"dstIndex":423,"srcIndex":1145,"timestampMs":1586108344000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],"dstIndex":407,"srcIndex":1146,"timestampMs":1586822144000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],"dstIndex":408,"srcIndex":1147,"timestampMs":1586426011000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],"dstIndex":409,"srcIndex":1148,"timestampMs":1586619438000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],"dstIndex":410,"srcIndex":1149,"timestampMs":1586712379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],"dstIndex":414,"srcIndex":1150,"timestampMs":1586631415000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],"dstIndex":428,"srcIndex":1151,"timestampMs":1586629712000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],"dstIndex":434,"srcIndex":1152,"timestampMs":1586263834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],"dstIndex":435,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],"dstIndex":437,"srcIndex":1154,"timestampMs":1586541781000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],"dstIndex":443,"srcIndex":1155,"timestampMs":1586630579000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],"dstIndex":444,"srcIndex":1156,"timestampMs":1586640176000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],"dstIndex":445,"srcIndex":1157,"timestampMs":1586802604000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],"dstIndex":446,"srcIndex":1158,"timestampMs":1586972788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],"dstIndex":447,"srcIndex":1159,"timestampMs":1586264143000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],"dstIndex":449,"srcIndex":1160,"timestampMs":1586443674000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],"dstIndex":438,"srcIndex":1161,"timestampMs":1586671402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],"dstIndex":440,"srcIndex":1162,"timestampMs":1586265411000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],"dstIndex":441,"srcIndex":1163,"timestampMs":1586909106000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],"dstIndex":452,"srcIndex":1164,"timestampMs":1586456075000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],"dstIndex":453,"srcIndex":1165,"timestampMs":1586629689000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],"dstIndex":454,"srcIndex":1166,"timestampMs":1586642724000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],"dstIndex":457,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],"dstIndex":460,"srcIndex":1168,"timestampMs":1586461703000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],"dstIndex":463,"srcIndex":1169,"timestampMs":1586264058000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],"dstIndex":464,"srcIndex":1170,"timestampMs":1586973850000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],"dstIndex":465,"srcIndex":1171,"timestampMs":1586208446000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],"dstIndex":478,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],"dstIndex":482,"srcIndex":1173,"timestampMs":1586264365000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],"dstIndex":484,"srcIndex":1174,"timestampMs":1586634125000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],"dstIndex":486,"srcIndex":1175,"timestampMs":1586633972000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],"dstIndex":487,"srcIndex":1176,"timestampMs":1586630527000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],"dstIndex":488,"srcIndex":1177,"timestampMs":1586632841000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],"dstIndex":489,"srcIndex":1178,"timestampMs":1586446829000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],"dstIndex":492,"srcIndex":1179,"timestampMs":1586437704000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],"dstIndex":494,"srcIndex":1180,"timestampMs":1586630734000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],"dstIndex":496,"srcIndex":1181,"timestampMs":1586643749000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],"dstIndex":497,"srcIndex":1182,"timestampMs":1587058263000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],"dstIndex":498,"srcIndex":1183,"timestampMs":1586613015000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],"dstIndex":499,"srcIndex":1184,"timestampMs":1586556200000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],"dstIndex":509,"srcIndex":1185,"timestampMs":1586426157000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],"dstIndex":510,"srcIndex":1186,"timestampMs":1586504576000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],"dstIndex":513,"srcIndex":1187,"timestampMs":1586637613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],"dstIndex":500,"srcIndex":1188,"timestampMs":1587050798000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],"dstIndex":501,"srcIndex":1189,"timestampMs":1587051668000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],"dstIndex":502,"srcIndex":1190,"timestampMs":1586632115000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],"dstIndex":505,"srcIndex":1191,"timestampMs":1586115022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],"dstIndex":524,"srcIndex":1192,"timestampMs":1586395769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],"dstIndex":542,"srcIndex":1193,"timestampMs":1586978547000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],"dstIndex":544,"srcIndex":1194,"timestampMs":1587051026000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],"dstIndex":547,"srcIndex":1195,"timestampMs":1586428289000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],"dstIndex":550,"srcIndex":1196,"timestampMs":1586635956000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],"dstIndex":553,"srcIndex":1197,"timestampMs":1586717770000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],"dstIndex":525,"srcIndex":1198,"timestampMs":1586975177000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],"dstIndex":526,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],"dstIndex":527,"srcIndex":1200,"timestampMs":1586637453000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],"dstIndex":528,"srcIndex":1201,"timestampMs":1586209230000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],"dstIndex":536,"srcIndex":1202,"timestampMs":1586606578000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],"dstIndex":540,"srcIndex":1203,"timestampMs":1586619306000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],"dstIndex":557,"srcIndex":1204,"timestampMs":1586635980000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],"dstIndex":558,"srcIndex":1205,"timestampMs":1586475455000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],"dstIndex":562,"srcIndex":1206,"timestampMs":1586801019000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],"dstIndex":578,"srcIndex":1207,"timestampMs":1586440952000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],"dstIndex":579,"srcIndex":1208,"timestampMs":1586566249000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],"dstIndex":583,"srcIndex":1209,"timestampMs":1586704728000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],"dstIndex":592,"srcIndex":1210,"timestampMs":1586425156000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],"dstIndex":568,"srcIndex":1211,"timestampMs":1586810374000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],"dstIndex":569,"srcIndex":1212,"timestampMs":1586692988000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],"dstIndex":570,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],"dstIndex":572,"srcIndex":1214,"timestampMs":1586633830000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],"dstIndex":575,"srcIndex":1215,"timestampMs":1586631279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],"dstIndex":599,"srcIndex":1216,"timestampMs":1586304876000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],"dstIndex":600,"srcIndex":1217,"timestampMs":1586659664000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],"dstIndex":605,"srcIndex":1218,"timestampMs":1586326476000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],"dstIndex":609,"srcIndex":1219,"timestampMs":1586439053000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],"dstIndex":610,"srcIndex":1220,"timestampMs":1586645068000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],"dstIndex":611,"srcIndex":1221,"timestampMs":1587051708000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],"dstIndex":625,"srcIndex":1222,"timestampMs":1586461592000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],"dstIndex":630,"srcIndex":1223,"timestampMs":1586426867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],"dstIndex":633,"srcIndex":1224,"timestampMs":1586659020000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],"dstIndex":635,"srcIndex":1225,"timestampMs":1586462092000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],"dstIndex":637,"srcIndex":1226,"timestampMs":1586445094000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],"dstIndex":614,"srcIndex":1227,"timestampMs":1586659508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],"dstIndex":615,"srcIndex":1228,"timestampMs":1586710445000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],"dstIndex":616,"srcIndex":1229,"timestampMs":1586461896000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],"dstIndex":617,"srcIndex":1230,"timestampMs":1586640763000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],"dstIndex":618,"srcIndex":1231,"timestampMs":1586865848000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],"dstIndex":619,"srcIndex":1232,"timestampMs":1587038694000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],"dstIndex":621,"srcIndex":1233,"timestampMs":1587060270000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],"dstIndex":638,"srcIndex":1234,"timestampMs":1586442756000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],"dstIndex":639,"srcIndex":1235,"timestampMs":1586656761000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],"dstIndex":641,"srcIndex":1236,"timestampMs":1586639218000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],"dstIndex":643,"srcIndex":1237,"timestampMs":1586431949000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],"dstIndex":654,"srcIndex":1238,"timestampMs":1586711922000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],"dstIndex":658,"srcIndex":1239,"timestampMs":1586712103000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],"dstIndex":661,"srcIndex":1240,"timestampMs":1586820040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],"dstIndex":662,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],"dstIndex":665,"srcIndex":1242,"timestampMs":1586646488000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],"dstIndex":666,"srcIndex":1243,"timestampMs":1586657456000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],"dstIndex":646,"srcIndex":1244,"timestampMs":1586109264000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],"dstIndex":648,"srcIndex":1245,"timestampMs":1586395938000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],"dstIndex":651,"srcIndex":1246,"timestampMs":1586443142000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],"dstIndex":653,"srcIndex":1247,"timestampMs":1586704788000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],"dstIndex":670,"srcIndex":1248,"timestampMs":1586612834000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],"dstIndex":671,"srcIndex":1249,"timestampMs":1586443040000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],"dstIndex":673,"srcIndex":1250,"timestampMs":1586584977000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],"dstIndex":674,"srcIndex":1251,"timestampMs":1586439553000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],"dstIndex":681,"srcIndex":1252,"timestampMs":1586449851000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],"dstIndex":692,"srcIndex":1253,"timestampMs":1586646613000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],"dstIndex":693,"srcIndex":1254,"timestampMs":1586440769000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],"dstIndex":696,"srcIndex":1255,"timestampMs":1586638167000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],"dstIndex":697,"srcIndex":1256,"timestampMs":1586442958000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],"dstIndex":698,"srcIndex":1257,"timestampMs":1586443278000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],"dstIndex":699,"srcIndex":1258,"timestampMs":1587017056000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],"dstIndex":687,"srcIndex":1259,"timestampMs":1586108556000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],"dstIndex":688,"srcIndex":1260,"timestampMs":1586632045000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],"dstIndex":706,"srcIndex":1261,"timestampMs":1586644275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],"dstIndex":707,"srcIndex":1262,"timestampMs":1586439910000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],"dstIndex":708,"srcIndex":1263,"timestampMs":1586635090000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],"dstIndex":710,"srcIndex":1264,"timestampMs":1586563402000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],"dstIndex":712,"srcIndex":1265,"timestampMs":1586761063000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],"dstIndex":714,"srcIndex":1266,"timestampMs":1586714645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],"dstIndex":723,"srcIndex":1267,"timestampMs":1587049279000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],"dstIndex":724,"srcIndex":1268,"timestampMs":1586630029000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],"dstIndex":725,"srcIndex":1269,"timestampMs":1586425884000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],"dstIndex":726,"srcIndex":1270,"timestampMs":1586930710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],"dstIndex":728,"srcIndex":1271,"timestampMs":1586208275000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],"dstIndex":715,"srcIndex":1272,"timestampMs":1586641071000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],"dstIndex":716,"srcIndex":1273,"timestampMs":1586446525000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],"dstIndex":717,"srcIndex":1274,"timestampMs":1586391268000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],"dstIndex":720,"srcIndex":1275,"timestampMs":1586607022000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],"dstIndex":721,"srcIndex":1276,"timestampMs":1586457498000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],"dstIndex":736,"srcIndex":1277,"timestampMs":1586656082000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],"dstIndex":738,"srcIndex":1278,"timestampMs":1586504710000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],"dstIndex":740,"srcIndex":1279,"timestampMs":1586639647000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],"dstIndex":743,"srcIndex":1280,"timestampMs":1586396173000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],"dstIndex":744,"srcIndex":1281,"timestampMs":1586450503000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],"dstIndex":745,"srcIndex":1282,"timestampMs":1586109667000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],"dstIndex":227,"srcIndex":1283,"timestampMs":1585184379000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],"dstIndex":217,"srcIndex":1284,"timestampMs":1583868918000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],"dstIndex":232,"srcIndex":1285,"timestampMs":1583846036000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],"dstIndex":236,"srcIndex":1286,"timestampMs":1586115483000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],"dstIndex":256,"srcIndex":1287,"timestampMs":1585184096000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],"dstIndex":238,"srcIndex":1288,"timestampMs":1586115750000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],"dstIndex":246,"srcIndex":1289,"timestampMs":1584727008000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],"dstIndex":264,"srcIndex":1290,"timestampMs":1586119837000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],"dstIndex":270,"srcIndex":1291,"timestampMs":1586119867000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],"dstIndex":317,"srcIndex":1292,"timestampMs":1583841786000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],"dstIndex":345,"srcIndex":1293,"timestampMs":1583855508000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],"dstIndex":348,"srcIndex":1294,"timestampMs":1584736018000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],"dstIndex":364,"srcIndex":1295,"timestampMs":1586115035000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],"dstIndex":403,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],"dstIndex":405,"srcIndex":1297,"timestampMs":1586116855000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],"dstIndex":411,"srcIndex":1298,"timestampMs":1584733391000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],"dstIndex":430,"srcIndex":1299,"timestampMs":1585132575000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],"dstIndex":451,"srcIndex":1300,"timestampMs":1585128878000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],"dstIndex":485,"srcIndex":1301,"timestampMs":1584729372000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],"dstIndex":503,"srcIndex":1302,"timestampMs":1585126267000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],"dstIndex":518,"srcIndex":1303,"timestampMs":1586115569000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],"dstIndex":551,"srcIndex":1304,"timestampMs":1585126105000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],"dstIndex":529,"srcIndex":1305,"timestampMs":1584722599000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],"dstIndex":531,"srcIndex":1306,"timestampMs":1586115692000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],"dstIndex":539,"srcIndex":1307,"timestampMs":1586115737000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],"dstIndex":580,"srcIndex":1308,"timestampMs":1585142847000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],"dstIndex":589,"srcIndex":1309,"timestampMs":1586115523000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],"dstIndex":566,"srcIndex":1310,"timestampMs":1583707484000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],"dstIndex":604,"srcIndex":1311,"timestampMs":1584925959000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],"dstIndex":652,"srcIndex":1312,"timestampMs":1584468261000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],"dstIndex":676,"srcIndex":1313,"timestampMs":1585184645000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],"dstIndex":675,"srcIndex":1314,"timestampMs":1586115159000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],"dstIndex":739,"srcIndex":1315,"timestampMs":1585134244000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],"dstIndex":741,"srcIndex":1316,"timestampMs":1584727333000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","12"],"dstIndex":1382,"srcIndex":1317,"timestampMs":1586638125000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1382,"srcIndex":1318,"timestampMs":1586704018000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","15"],"dstIndex":1382,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1382,"srcIndex":1320,"timestampMs":1586705553000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","17"],"dstIndex":1382,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","18"],"dstIndex":1382,"srcIndex":1322,"timestampMs":1586712839000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","19"],"dstIndex":1382,"srcIndex":1323,"timestampMs":1586768126000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","2"],"dstIndex":1382,"srcIndex":1324,"timestampMs":1586269776000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","22"],"dstIndex":1382,"srcIndex":1325,"timestampMs":1586819336000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1382,"srcIndex":1326,"timestampMs":1586821830000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","24"],"dstIndex":1382,"srcIndex":1327,"timestampMs":1586823283000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1382,"srcIndex":1328,"timestampMs":1586858542000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","26"],"dstIndex":1382,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","3"],"dstIndex":1382,"srcIndex":1330,"timestampMs":1586390052000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","4"],"dstIndex":1382,"srcIndex":1331,"timestampMs":1586390446000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","5"],"dstIndex":1382,"srcIndex":1332,"timestampMs":1586390871000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","6"],"dstIndex":1382,"srcIndex":1333,"timestampMs":1586396494000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","8"],"dstIndex":1382,"srcIndex":1334,"timestampMs":1586435403000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","AraCred","9"],"dstIndex":1382,"srcIndex":1335,"timestampMs":1586440155000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","TheSource","3"],"dstIndex":1383,"srcIndex":1336,"timestampMs":1586104764000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1384,"srcIndex":1337,"timestampMs":1586116752000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1385,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1385,"srcIndex":1339,"timestampMs":1586934042000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","3"],"dstIndex":1385,"srcIndex":1340,"timestampMs":1586934224000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1385,"srcIndex":1341,"timestampMs":1586990170000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","6"],"dstIndex":1385,"srcIndex":1342,"timestampMs":1586990449000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","bot","7"],"dstIndex":1385,"srcIndex":1343,"timestampMs":1586990584000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","comms","1"],"dstIndex":1386,"srcIndex":1344,"timestampMs":1586709265000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","1"],"dstIndex":1388,"srcIndex":1345,"timestampMs":1586706267000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","leaderboard","2"],"dstIndex":1388,"srcIndex":1346,"timestampMs":1586706318000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","1"],"dstIndex":1389,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","2"],"dstIndex":1389,"srcIndex":1348,"timestampMs":1586666998000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","3"],"dstIndex":1389,"srcIndex":1349,"timestampMs":1586705051000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1389,"srcIndex":1350,"timestampMs":1586709014000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","5"],"dstIndex":1389,"srcIndex":1351,"timestampMs":1586772477000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","onboarding","6"],"dstIndex":1389,"srcIndex":1352,"timestampMs":1586772739000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","10"],"dstIndex":1390,"srcIndex":1353,"timestampMs":1586705290000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","11"],"dstIndex":1390,"srcIndex":1354,"timestampMs":1586712148000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","2"],"dstIndex":1390,"srcIndex":1355,"timestampMs":1586571331000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","aracred","website","7"],"dstIndex":1390,"srcIndex":1356,"timestampMs":1586662991000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1382,"srcIndex":1357,"timestampMs":1586264552000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1382,"srcIndex":1358,"timestampMs":1586446688000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1382,"srcIndex":1359,"timestampMs":1586449916000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1382,"srcIndex":1360,"timestampMs":1586658580000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1382,"srcIndex":1361,"timestampMs":1586802611000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1382,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1382,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1382,"srcIndex":1364,"timestampMs":1586425681000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1383,"srcIndex":1365,"timestampMs":1586103666000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1383,"srcIndex":1366,"timestampMs":1586104083000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1385,"srcIndex":1367,"timestampMs":1586970997000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1385,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","bot","9"],"dstIndex":1385,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1390,"srcIndex":1370,"timestampMs":1586566012000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","12"],"dstIndex":1390,"srcIndex":1371,"timestampMs":1586717760000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1390,"srcIndex":1372,"timestampMs":1586727817000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1390,"srcIndex":1373,"timestampMs":1586797004000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1390,"srcIndex":1374,"timestampMs":1586914696000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","16"],"dstIndex":1390,"srcIndex":1375,"timestampMs":1586987888000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1390,"srcIndex":1376,"timestampMs":1586633970000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1390,"srcIndex":1377,"timestampMs":1586645179000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1390,"srcIndex":1378,"timestampMs":1586654103000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1390,"srcIndex":1379,"timestampMs":1586656931000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1390,"srcIndex":1380,"timestampMs":1586663009000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1390,"srcIndex":1381,"timestampMs":1586664552000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],"dstIndex":1360,"srcIndex":1391,"timestampMs":1586658808000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395001410"],"dstIndex":1368,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","bot","8","395035075"],"dstIndex":1368,"srcIndex":1393,"timestampMs":1587075078000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","aracred","website","15","393444362"],"dstIndex":1374,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],"dstIndex":1318,"srcIndex":746,"timestampMs":1586735225000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],"dstIndex":1318,"srcIndex":747,"timestampMs":1586793675000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],"dstIndex":1320,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],"dstIndex":1322,"srcIndex":749,"timestampMs":1586773257000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":1322,"srcIndex":750,"timestampMs":1586787682000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],"dstIndex":1322,"srcIndex":751,"timestampMs":1586808032000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],"dstIndex":1325,"srcIndex":752,"timestampMs":1586819514000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],"dstIndex":1325,"srcIndex":753,"timestampMs":1586820570000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],"dstIndex":1325,"srcIndex":754,"timestampMs":1586840296000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],"dstIndex":1328,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],"dstIndex":1329,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],"dstIndex":1336,"srcIndex":757,"timestampMs":1586802750000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],"dstIndex":1340,"srcIndex":758,"timestampMs":1586990245000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],"dstIndex":1347,"srcIndex":759,"timestampMs":1586666872000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],"dstIndex":1347,"srcIndex":760,"timestampMs":1586797413000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":1347,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],"dstIndex":1347,"srcIndex":762,"timestampMs":1586801948000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":1347,"srcIndex":763,"timestampMs":1586802204000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],"dstIndex":1347,"srcIndex":764,"timestampMs":1586802422000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],"dstIndex":1347,"srcIndex":765,"timestampMs":1586962450000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],"dstIndex":1348,"srcIndex":766,"timestampMs":1586704028000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],"dstIndex":1349,"srcIndex":767,"timestampMs":1586709561000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],"dstIndex":1350,"srcIndex":768,"timestampMs":1586858205000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":1352,"srcIndex":769,"timestampMs":1586773337000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":1352,"srcIndex":770,"timestampMs":1586773655000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],"dstIndex":1352,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],"dstIndex":1352,"srcIndex":772,"timestampMs":1586786582000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],"dstIndex":1352,"srcIndex":773,"timestampMs":1586790511000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":1352,"srcIndex":774,"timestampMs":1586790870000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],"dstIndex":1352,"srcIndex":775,"timestampMs":1586959270000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":1361,"srcIndex":776,"timestampMs":1586810690000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],"dstIndex":1369,"srcIndex":777,"timestampMs":1587079943000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":1392,"srcIndex":778,"timestampMs":1587071400000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":1392,"srcIndex":779,"timestampMs":1587071419000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":1392,"srcIndex":780,"timestampMs":1587071453000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1172,"srcIndex":1357,"timestampMs":1586264565000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","10"],"dstIndex":1178,"srcIndex":1358,"timestampMs":1586446829000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1129,"srcIndex":1359,"timestampMs":1586450203000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","13"],"dstIndex":1074,"srcIndex":1360,"timestampMs":1586658939000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1153,"srcIndex":1361,"timestampMs":1586810697000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1213,"srcIndex":1362,"timestampMs":1586810650000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1167,"srcIndex":1363,"timestampMs":1587042850000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1241,"srcIndex":1364,"timestampMs":1586425693000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":896,"srcIndex":1365,"timestampMs":1586104041000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1022,"srcIndex":1366,"timestampMs":1586104090000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":794,"srcIndex":1367,"timestampMs":1586971104000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":801,"srcIndex":1368,"timestampMs":1587075097000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":814,"srcIndex":1370,"timestampMs":1586566020000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":824,"srcIndex":1372,"timestampMs":1586727823000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":823,"srcIndex":1373,"timestampMs":1586797014000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":864,"srcIndex":1376,"timestampMs":1586633977000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":868,"srcIndex":1377,"timestampMs":1586645187000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":870,"srcIndex":1378,"timestampMs":1586654110000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":822,"srcIndex":1379,"timestampMs":1586656936000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":837,"srcIndex":1380,"timestampMs":1586663015000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":813,"srcIndex":1381,"timestampMs":1586664558000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871593000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","bot","1"],"dstIndex":1338,"srcIndex":1397,"timestampMs":1586918494000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","PULL","aracred","website","15"],"dstIndex":1374,"srcIndex":1397,"timestampMs":1586924028000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],"dstIndex":769,"srcIndex":1397,"timestampMs":1586785423000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],"dstIndex":770,"srcIndex":1397,"timestampMs":1586785422000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],"dstIndex":776,"srcIndex":1397,"timestampMs":1586810718000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":1402,"timestampMs":1587076887000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790714000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810640000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","6","sourcecred","github","ISSUE","aracred","AraCred","25"],"dstIndex":1328,"srcIndex":1397,"timestampMs":1586871595000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],"dstIndex":763,"srcIndex":1397,"timestampMs":1586802382000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],"dstIndex":750,"srcIndex":1410,"timestampMs":1586790717000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","luisivan","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],"dstIndex":774,"srcIndex":1410,"timestampMs":1586791025000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","Evalir","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],"dstIndex":761,"srcIndex":1397,"timestampMs":1586801822000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","burrrata","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1402,"timestampMs":1586810630000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],"dstIndex":778,"srcIndex":1403,"timestampMs":1587071912000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],"dstIndex":779,"srcIndex":1403,"timestampMs":1587071947000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","crisog","9","sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],"dstIndex":780,"srcIndex":1403,"timestampMs":1587072066000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU=","6","sourcecred","github","PULL","aracred","bot","4"],"dstIndex":1367,"srcIndex":794,"timestampMs":1586971104000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI=","6","sourcecred","github","PULL","aracred","bot","8"],"dstIndex":1368,"srcIndex":801,"timestampMs":1587075097000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM=","6","sourcecred","github","PULL","aracred","website","9"],"dstIndex":1381,"srcIndex":813,"timestampMs":1586664558000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI=","6","sourcecred","github","PULL","aracred","website","1"],"dstIndex":1370,"srcIndex":814,"timestampMs":1586566020000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE=","6","sourcecred","github","PULL","aracred","website","6"],"dstIndex":1379,"srcIndex":822,"timestampMs":1586656936000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ=","6","sourcecred","github","PULL","aracred","website","14"],"dstIndex":1373,"srcIndex":823,"timestampMs":1586797014000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc=","6","sourcecred","github","PULL","aracred","website","13"],"dstIndex":1372,"srcIndex":824,"timestampMs":1586727823000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg=","6","sourcecred","github","PULL","aracred","website","8"],"dstIndex":1380,"srcIndex":837,"timestampMs":1586663015000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE=","6","sourcecred","github","PULL","aracred","website","3"],"dstIndex":1376,"srcIndex":864,"timestampMs":1586633977000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE=","6","sourcecred","github","PULL","aracred","website","4"],"dstIndex":1377,"srcIndex":868,"timestampMs":1586645187000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk=","6","sourcecred","github","PULL","aracred","website","5"],"dstIndex":1378,"srcIndex":870,"timestampMs":1586654110000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":896,"timestampMs":1586104041000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],"dstIndex":895,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],"dstIndex":1000,"srcIndex":931,"timestampMs":1582959287000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],"dstIndex":907,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],"dstIndex":1026,"srcIndex":938,"timestampMs":1581914897000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA=","5","sourcecred","github","USERLIKE","USER","hammadj"],"dstIndex":1409,"srcIndex":950,"timestampMs":1583122040000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],"dstIndex":982,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],"dstIndex":1028,"srcIndex":975,"timestampMs":1581903076000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I=","6","sourcecred","github","PULL","aracred","TheSource","1"],"dstIndex":1365,"srcIndex":982,"timestampMs":1581902687000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM=","6","sourcecred","github","PULL","aracred","TheSource","2"],"dstIndex":1366,"srcIndex":1022,"timestampMs":1586104090000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],"dstIndex":897,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],"dstIndex":1037,"srcIndex":1038,"timestampMs":1582941413000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA=","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1094,"timestampMs":1586994934000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM=","6","sourcecred","github","PULL","aracred","AraCred","11"],"dstIndex":1359,"srcIndex":1129,"timestampMs":1586450203000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc=","6","sourcecred","github","PULL","aracred","AraCred","20"],"dstIndex":1361,"srcIndex":1153,"timestampMs":1586810697000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI=","6","sourcecred","github","PULL","aracred","AraCred","27"],"dstIndex":1363,"srcIndex":1167,"timestampMs":1587042850000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ=","6","sourcecred","github","PULL","aracred","AraCred","1"],"dstIndex":1357,"srcIndex":1172,"timestampMs":1586264565000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ=","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],"dstIndex":1088,"srcIndex":1199,"timestampMs":1586566089000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY=","6","sourcecred","github","PULL","aracred","AraCred","21"],"dstIndex":1362,"srcIndex":1213,"timestampMs":1586810650000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI=","6","sourcecred","github","PULL","aracred","AraCred","7"],"dstIndex":1364,"srcIndex":1241,"timestampMs":1586425693000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc=","6","sourcecred","github","ISSUE","aracred","aracred-cli","1"],"dstIndex":1337,"srcIndex":1296,"timestampMs":1584727355000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","15","6","sourcecred","github","ISSUE","aracred","AraCred","14"],"dstIndex":1318,"srcIndex":1319,"timestampMs":1586705495000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","17","6","sourcecred","github","ISSUE","aracred","AraCred","16"],"dstIndex":1320,"srcIndex":1321,"timestampMs":1586705865000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","AraCred","26","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":1329,"timestampMs":1586921943000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","bot","1","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":1338,"timestampMs":1586917207000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","aracred","onboarding","1","6","sourcecred","github","ISSUE","aracred","onboarding","4"],"dstIndex":1350,"srcIndex":1347,"timestampMs":1586666816000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","21","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1362,"timestampMs":1586810530000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","AraCred","27","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":1363,"timestampMs":1586995113000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","8","6","sourcecred","github","ISSUE","aracred","bot","5"],"dstIndex":1341,"srcIndex":1368,"timestampMs":1587070982000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","aracred","bot","9","6","sourcecred","github","ISSUE","aracred","bot","2"],"dstIndex":1339,"srcIndex":1369,"timestampMs":1587079858000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","bot","8","395001410","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1392,"timestampMs":1587071400000},{"address":["sourcecred","github","REFERENCES","7","sourcecred","github","REVIEW","aracred","website","15","393444362","5","sourcecred","github","USERLIKE","USER","crisog"],"dstIndex":1403,"srcIndex":1394,"timestampMs":1586924060000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":748,"timestampMs":1586821838000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","burrrata"],"dstIndex":1402,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004","5","sourcecred","github","USERLIKE","USER","pythonpete32"],"dstIndex":1401,"srcIndex":755,"timestampMs":1586858608000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792","6","sourcecred","github","ISSUE","aracred","AraCred","23"],"dstIndex":1326,"srcIndex":756,"timestampMs":1586922019000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":761,"timestampMs":1586801390000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606","5","sourcecred","github","USERLIKE","USER","luisivan"],"dstIndex":1410,"srcIndex":771,"timestampMs":1586786432000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159","5","sourcecred","github","USERLIKE","USER","Evalir"],"dstIndex":1397,"srcIndex":776,"timestampMs":1586810690000}],"nodes":[{"description":"Aracred#5392","index":0,"timestampMs":null},{"description":"Beanow#5887","index":1,"timestampMs":null},{"description":"Mckmuze#3360","index":2,"timestampMs":null},{"description":"penguin#5853","index":3,"timestampMs":null},{"description":"James | Enigma#0357","index":4,"timestampMs":null},{"description":"TheEylon#9795","index":5,"timestampMs":null},{"description":"Jack G#7167","index":6,"timestampMs":null},{"description":"Santiago#0325","index":7,"timestampMs":null},{"description":"JackALaing#7001","index":8,"timestampMs":null},{"description":"Saimano#0272","index":9,"timestampMs":null},{"description":"Joey C#7995","index":10,"timestampMs":null},{"description":"LBS#6541","index":11,"timestampMs":null},{"description":"Luis from Aragon 🦅#8126","index":12,"timestampMs":null},{"description":"YoungKidWarrior#5865","index":13,"timestampMs":null},{"description":"#🎪-general message [\"testing...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":14,"timestampMs":1585931015500},{"description":"#🎪-general message [\"<@!118260545211072517> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696451005914546256)","index":15,"timestampMs":1586117259244},{"description":"#🎪-general message [\"aracred.xyz...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":16,"timestampMs":1586118204077},{"description":"#🎪-general message [\"aracred.dev...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":17,"timestampMs":1586118265041},{"description":"#🎪-general message [\"<@!657069807505637397> how do ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696609260196593664)","index":18,"timestampMs":1586154990005},{"description":"#🎪-general message [\"<@683892894767251489> here we ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696708274682069062)","index":19,"timestampMs":1586178596898},{"description":"#🎪-general message [\"> This is an open-source proje...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":20,"timestampMs":1586183905373},{"description":"#🎪-general message [\"<@!665203331639148553> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696740396331696198)","index":21,"timestampMs":1586186255296},{"description":"#🎪-general message [\"<@!371754999304290304> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696769305131614260)","index":22,"timestampMs":1586193147691},{"description":"#🎪-general message [\"<@!571023281382227978> <@!6570...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/696853096441184326)","index":23,"timestampMs":1586213125096},{"description":"#🎪-general message [\"<@657069807505637397> was sad ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698673271729553469)","index":24,"timestampMs":1586647088702},{"description":"#🎪-general message [\"The SourceCred => ERC-20/DAO i...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698691171811328080)","index":25,"timestampMs":1586651356414},{"description":"#🎪-general message [\"<@!208321561982271489> What up...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710294427467857)","index":26,"timestampMs":1586655915601},{"description":"#🎪-general message [\"hey hey <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698710365046833192)","index":27,"timestampMs":1586655932438},{"description":"#🎪-general message [\"Hey <@505789102222737420> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698799127244308550)","index":28,"timestampMs":1586677094995},{"description":"#🎪-general message [\"> I would also frame this a bi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698897288373993508)","index":29,"timestampMs":1586700498432},{"description":"#🎪-general message [\"It makes sense to me. There ha...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698919569078878289)","index":30,"timestampMs":1586705810566},{"description":"#🎪-general message [\"This works toward the concept ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921167011971168)","index":31,"timestampMs":1586706191543},{"description":"#🎪-general message [\"At the end of the day “composi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":32,"timestampMs":1586706244909},{"description":"#🎪-general message [\"Hey <@571023281382227978> 👋...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698932174396850236)","index":33,"timestampMs":1586708815908},{"description":"#🎪-general message [\"<@!333143183355543552> <@!5057...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698935929942966332)","index":34,"timestampMs":1586709711300},{"description":"#🎪-general message [\"<@!250086586450968576> I'd lik...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698941350531301477)","index":35,"timestampMs":1586711003669},{"description":"#🎪-general message [\"> At the end of the day “compo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698946297012420619)","index":36,"timestampMs":1586712183002},{"description":"#🎪-general message [\"<@!657069807505637397> could w...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965088530595990)","index":37,"timestampMs":1586716663249},{"description":"#🎪-general message [\"> I agree! in fact, i would ar...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":38,"timestampMs":1586716741889},{"description":"#🎪-general message [\"> one term that i think we nee...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968459890917436)","index":39,"timestampMs":1586717467044},{"description":"#🎪-general message [\"> <@!657069807505637397> could...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698968989878976612)","index":40,"timestampMs":1586717593403},{"description":"#🎪-general message [\"> like, in sourcecred I can re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969370533298296)","index":41,"timestampMs":1586717684158},{"description":"#🎪-general message [\"> if/when SourceCred community...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":42,"timestampMs":1586717770000},{"description":"#🎪-general message [\"<@!321092785921064961> welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698970943955140738)","index":43,"timestampMs":1586718059291},{"description":"#🎪-general message [\"Beyond that, if you want to le...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":44,"timestampMs":1586718718366},{"description":"#🎪-general message [\"> and I was thinking something...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/698982179069362196)","index":45,"timestampMs":1586720737951},{"description":"#🎪-general message [\"> <@!250086586450968576> I'd l...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699006982681657354)","index":46,"timestampMs":1586726651593},{"description":"#🎪-general message [\"> Could maybe just create a re...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699007297099268116)","index":47,"timestampMs":1586726726556},{"description":"#🎪-general message [\"> <@!657069807505637397> \n> \n>...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699016223303794728)","index":48,"timestampMs":1586728854729},{"description":"#🎪-general message [\"( <@!250086586450968576> <@!65...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699020835096231937)","index":49,"timestampMs":1586729954266},{"description":"#🎪-general message [\"social structures emerge which...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":50,"timestampMs":1586730159102},{"description":"#🎪-general message [\"> it's wayyyyy overly reductio...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699022762215211088)","index":51,"timestampMs":1586730413727},{"description":"#🎪-general message [\"> but we need to re-orient it ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699024432244588644)","index":52,"timestampMs":1586730811893},{"description":"#🎪-general message [\"let me try writing this in roa...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":53,"timestampMs":1586731027162},{"description":"#🎪-general message [\"> I'm gonna hang out in the vo...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699124769349566484)","index":54,"timestampMs":1586754734123},{"description":"#🎪-general message [\"What kinda questions <@5710232...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699137595724267520)","index":55,"timestampMs":1586757792169},{"description":"#🎪-general message [\"<@!464169801036726292> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699302777167413379)","index":56,"timestampMs":1586797174494},{"description":"#🎪-general message [\"<@!464169801036726292> I ran ...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699304903796981771)","index":57,"timestampMs":1586797681522},{"description":"#🎪-general message [\"<@!363774203960360961> you mea...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699306499930980452)","index":58,"timestampMs":1586798062070},{"description":"#🎪-general message [\"> Hey! I’ve been setting up So...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699318638519255111)","index":59,"timestampMs":1586800956135},{"description":"#🎪-general message [\"> Nope it generates it for all...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325373472702534)","index":60,"timestampMs":1586802561873},{"description":"#🎪-general message [\"This was the guide: https://gi...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699325915578236949)","index":61,"timestampMs":1586802691121},{"description":"#🎪-general message [\"I saw that guide yesterday and...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":62,"timestampMs":1586802848489},{"description":"#🎪-general message [\"<@!199630270285086720> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699342838756016128)","index":63,"timestampMs":1586806725921},{"description":"#🎪-general message [\"> I've adopted his fix and jus...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699358233437143163)","index":64,"timestampMs":1586810396299},{"description":"#🎪-general message [\"<@657069807505637397> was just...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699383579402174494)","index":65,"timestampMs":1586816439248},{"description":"#🎪-general message [\"<@665203331639148553> hey Luis...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699636647557464194)","index":66,"timestampMs":1586876775398},{"description":"#🎪-general message [\"<@!143776454050709505> <@!6337...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/699696022477340735)","index":67,"timestampMs":1586890931482},{"description":"#🎪-general message [\"<@!699326460120530944> Welcome...\"](https://discordapp.com/channels/695344751490236486/695344752031432766/700038397376331798)","index":68,"timestampMs":1586972560019},{"description":"#🥇-leaderboard message [\"<@!571023281382227978> did you...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697073300131807274)","index":69,"timestampMs":1586265625747},{"description":"#🥇-leaderboard message [\"Hey <@440281764204642314> we a...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697081143551328256)","index":70,"timestampMs":1586267495764},{"description":"#🥇-leaderboard message [\"HI <@!571023281382227978> I'm ...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697318813192028200)","index":71,"timestampMs":1586324160622},{"description":"#🥇-leaderboard message [\"> HI <@!571023281382227978> I'...\"](https://discordapp.com/channels/695344751490236486/695344917068906598/697375832364023889)","index":72,"timestampMs":1586337755052},{"description":"#📢-announcements message [\"We have basic overview docs!\nh...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":73,"timestampMs":1586643849022},{"description":"#📢-announcements message [\"We now have a very manual but ...\"](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":74,"timestampMs":1586793570421},{"description":"#⚔-dev message [\"no im trying another tac...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":75,"timestampMs":1586111617618},{"description":"#⚔-dev message [\"Cool. <@!571023281382227978> u...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696440757908799568)","index":76,"timestampMs":1586114815929},{"description":"#⚔-dev message [\"just trying one more thing...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":77,"timestampMs":1586115085852},{"description":"#⚔-dev message [\"<@!571023281382227978> does th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696452154268975225)","index":78,"timestampMs":1586117533033},{"description":"#⚔-dev message [\"<@!537858848912834561> had som...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696730851802742794)","index":79,"timestampMs":1586183979703},{"description":"#⚔-dev message [\"> <@!537858848912834561> had s...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/696789204767866911)","index":80,"timestampMs":1586197892134},{"description":"#⚔-dev message [\"<@!571023281382227978> Do we h...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699020484167073792)","index":81,"timestampMs":1586729870598},{"description":"#⚔-dev message [\"sorry <@657069807505637397> co...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699122711745527878)","index":82,"timestampMs":1586754243552},{"description":"#⚔-dev message [\"wss://mainnet.infura.io/v3/<IN...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":83,"timestampMs":1586754351459},{"description":"#⚔-dev message [\"<@!321092785921064961> how is ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699274952301609111)","index":84,"timestampMs":1586790540529},{"description":"#⚔-dev message [\"btw <@!657069807505637397> jus...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275129204637708)","index":85,"timestampMs":1586790582706},{"description":"#⚔-dev message [\"Working out a few details! Try...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":86,"timestampMs":1586790670630},{"description":"#⚔-dev message [\"> Working out a few details! T...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699276546795372595)","index":87,"timestampMs":1586790920686},{"description":"#⚔-dev message [\"> Yes. Something like !signup ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699277478530646016)","index":88,"timestampMs":1586791142829},{"description":"#⚔-dev message [\"> Interesting, had not seen th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699278809974833224)","index":89,"timestampMs":1586791460270},{"description":"#⚔-dev message [\"<@!571023281382227978> <@!3210...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699404949448163368)","index":90,"timestampMs":1586821534264},{"description":"#⚔-dev message [\"AFAIK modifying the format of ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699406916300046346)","index":91,"timestampMs":1586822003198},{"description":"#⚔-dev message [\"but as <@!118260545211072517> ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699407535194767410)","index":92,"timestampMs":1586822150754},{"description":"#⚔-dev message [\"> i don't recommend blacklisti...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699408033343733841)","index":93,"timestampMs":1586822269522},{"description":"#⚔-dev message [\"<@!440281764204642314> ran the...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699410487020093501)","index":94,"timestampMs":1586822854524},{"description":"#⚔-dev message [\"hey <@!571023281382227978>! ho...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699558251074682931)","index":95,"timestampMs":1586858084220},{"description":"#⚔-dev message [\"also just tried to list out th...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":96,"timestampMs":1586858628046},{"description":"#⚔-dev message [\"1\n> hey <@!571023281382227978>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/699939694221328435)","index":97,"timestampMs":1586949027353},{"description":"#⚔-dev message [\"<@!321092785921064961> do you ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700016555521736837)","index":98,"timestampMs":1586967352515},{"description":"#⚔-dev message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064770367160361)","index":99,"timestampMs":1586978847830},{"description":"#⚔-dev message [\"The core aracred instance!...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":100,"timestampMs":1586978883530},{"description":"#⚔-dev message [\"I didn't quite get this <@!657...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700073516900417556)","index":101,"timestampMs":1586980933166},{"description":"#⚔-dev message [\"> I didn't quite get this <@!6...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700078148615798814)","index":102,"timestampMs":1586982037453},{"description":"#⚔-dev message [\"<@!571023281382227978> regardi...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700083246087667833)","index":103,"timestampMs":1586983252785},{"description":"#⚔-dev message [\"> Hmm, could I see the credbot...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700085865933832252)","index":104,"timestampMs":1586983877405},{"description":"#⚔-dev message [\"Yup, looking at how the token ...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":105,"timestampMs":1586984382781},{"description":"#⚔-dev message [\"hey <@!321092785921064961>...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700345588725841990)","index":106,"timestampMs":1587045800144},{"description":"#⚔-dev message [\"<@!321092785921064961> To join...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700354840445976616)","index":107,"timestampMs":1587048005926},{"description":"#⚔-dev message [\"Community contributions 💯: ht...\"](https://discordapp.com/channels/695344751490236486/696420039141752863/700468593451597902)","index":108,"timestampMs":1587075126756},{"description":"#🆘-support message [\"That's a great question and on...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698667046661128244)","index":109,"timestampMs":1586645604530},{"description":"#🆘-support message [\"> Yeah but aren't those in `pr...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698672127418695751)","index":110,"timestampMs":1586646815877},{"description":"#🆘-support message [\"> Ah, so you can configure wei...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698673539011837994)","index":111,"timestampMs":1586647152427},{"description":"#🆘-support message [\"> If I set up a DAO today, can...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698683402920001637)","index":112,"timestampMs":1586649504166},{"description":"#🆘-support message [\"<@657069807505637397> Thanks f...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/698956579168321617)","index":113,"timestampMs":1586714634459},{"description":"#🆘-support message [\"> <@!683892894767251489> We'll...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699017594287685672)","index":114,"timestampMs":1586729181597},{"description":"#🆘-support message [\"<@!537858848912834561> AraCred...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699283043940302898)","index":115,"timestampMs":1586792469726},{"description":"#🆘-support message [\"> sure, can do later on? On ou...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":116,"timestampMs":1586792719271},{"description":"#🆘-support message [\"<@!420341518948237331> What's ...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699303864872075295)","index":117,"timestampMs":1586797433823},{"description":"#🆘-support message [\"<@!537858848912834561> To conf...\"](https://discordapp.com/channels/695344751490236486/696420197644632116/699352914476400712)","index":118,"timestampMs":1586809128160},{"description":"#💸-cryptoeconomics message [\"<@!657069807505637397> agenda ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699821888431587439)","index":119,"timestampMs":1586920940264},{"description":"#💸-cryptoeconomics message [\"Cool! Was thinking to get the ...\"](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":120,"timestampMs":1586921152752},{"description":"#bot-testing message [\"cc <@!657069807505637397>...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700033440564641854)","index":121,"timestampMs":1586971378223},{"description":"#bot-testing message [\"<@!321092785921064961> gave yo...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700036022368731256)","index":122,"timestampMs":1586971993773},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700038868707180644)","index":123,"timestampMs":1586972672393},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":124,"timestampMs":1586972809029},{"description":"#bot-testing message [\"Also I think for discord, mayb...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":125,"timestampMs":1586973031780},{"description":"#bot-testing message [\"Yup getting the id would be th...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":126,"timestampMs":1586973160965},{"description":"#bot-testing message [\"> Yep we can; if we do so thou...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700040992916766780)","index":127,"timestampMs":1586973178844},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044206176993470)","index":128,"timestampMs":1586973944945},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044421760286721)","index":129,"timestampMs":1586973996344},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044496049799228)","index":130,"timestampMs":1586974014056},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044548411490335)","index":131,"timestampMs":1586974026540},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044635619328131)","index":132,"timestampMs":1586974047332},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700044689285316738)","index":133,"timestampMs":1586974060127},{"description":"#bot-testing message [\"<@363774203960360961>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049028251123832)","index":134,"timestampMs":1586975094617},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049257490808933)","index":135,"timestampMs":1586975149272},{"description":"#bot-testing message [\"<@363774203960360961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700049378643017889)","index":136,"timestampMs":1586975178157},{"description":"#bot-testing message [\"Haha, that won't work for too ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700051768008114186)","index":137,"timestampMs":1586975747826},{"description":"#bot-testing message [\"> Haha, that won't work for to...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700055780807802900)","index":138,"timestampMs":1586976704552},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700056792524128306)","index":139,"timestampMs":1586976945764},{"description":"#bot-testing message [\"<@657069807505637397>, Command...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059334679330946)","index":140,"timestampMs":1586977551861},{"description":"#bot-testing message [\"<@657069807505637397>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059353306234910)","index":141,"timestampMs":1586977556302},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059384751063091)","index":142,"timestampMs":1586977563799},{"description":"#bot-testing message [\"<@!657069807505637397> , don't...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438136033361)","index":143,"timestampMs":1586977576527},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059438526103572)","index":144,"timestampMs":1586977576620},{"description":"#bot-testing message [\"<@657069807505637397>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700059538023514154)","index":145,"timestampMs":1586977600342},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700061097583050871)","index":146,"timestampMs":1586977972170},{"description":"#bot-testing message [\"> Yup; however, we're gonna ma...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062058405953678)","index":147,"timestampMs":1586978201248},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062189503119381)","index":148,"timestampMs":1586978232504},{"description":"#bot-testing message [\"<@363774203960360961>, You hav...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700062400774275204)","index":149,"timestampMs":1586978282875},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700063628711166054)","index":150,"timestampMs":1586978575638},{"description":"#bot-testing message [\"<@!321092785921064961> is the ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064631778967634)","index":151,"timestampMs":1586978814788},{"description":"#bot-testing message [\"<@657069807505637397>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700064632144003103)","index":152,"timestampMs":1586978814875},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700118599003668510)","index":153,"timestampMs":1586991681577},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335319349985310)","index":154,"timestampMs":1587043351734},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700335919315550299)","index":155,"timestampMs":1587043494777},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700365992571699350)","index":156,"timestampMs":1587050664800},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700366555233517630)","index":157,"timestampMs":1587050798949},{"description":"#bot-testing message [\"<@665203331639148553>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700367514638483537)","index":158,"timestampMs":1587051027689},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700369922630615040)","index":159,"timestampMs":1587051601799},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370207419662458)","index":160,"timestampMs":1587051669698},{"description":"#bot-testing message [\"<@321092785921064961>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700370372230643763)","index":161,"timestampMs":1587051708992},{"description":"#bot-testing message [\"<@!699326460120530944> you da ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371208880914563)","index":162,"timestampMs":1587051908465},{"description":"#bot-testing message [\"<@321092785921064961>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371209241624656)","index":163,"timestampMs":1587051908551},{"description":"#bot-testing message [\"<@321092785921064961>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700371558480216124)","index":164,"timestampMs":1587051991816},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397237930295386)","index":165,"timestampMs":1587058114274},{"description":"#bot-testing message [\"<@!321092785921064961> can you...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397481799974962)","index":166,"timestampMs":1587058172417},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397482362011769)","index":167,"timestampMs":1587058172551},{"description":"#bot-testing message [\"<@474405294307278880>, Update ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397866581229620)","index":168,"timestampMs":1587058264156},{"description":"#bot-testing message [\"<@474405294307278880>, Updated...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397927478067221)","index":169,"timestampMs":1587058278675},{"description":"#bot-testing message [\"👀 nice one <@!474405294307278...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700397997707755530)","index":170,"timestampMs":1587058295419},{"description":"#bot-testing message [\"<@665203331639148553>, \nAvaila...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398207733334077)","index":171,"timestampMs":1587058345493},{"description":"#bot-testing message [\"<@!321092785921064961> I just ...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301412982965)","index":172,"timestampMs":1587058367828},{"description":"#bot-testing message [\"<@665203331639148553>, Could n...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700398301727555604)","index":173,"timestampMs":1587058367903},{"description":"#bot-testing message [\"Btw <@!665203331639148553> idk...\"](https://discordapp.com/channels/695344751490236486/700023168995295233/700399163313094746)","index":174,"timestampMs":1587058573321},{"description":"Reacted `❤️` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":175,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [696454968831508630](https://discordapp.com/channels/695344751490236486/695344752031432766/696454968831508630)","index":176,"timestampMs":1586118204077},{"description":"Reacted `👍` to message [696455224532926464](https://discordapp.com/channels/695344751490236486/695344752031432766/696455224532926464)","index":177,"timestampMs":1586118265041},{"description":"Reacted `👍` to message [699021694240686190](https://discordapp.com/channels/695344751490236486/695344752031432766/699021694240686190)","index":178,"timestampMs":1586730159102},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":179,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [695669843034243134](https://discordapp.com/channels/695344751490236486/695344752031432766/695669843034243134)","index":180,"timestampMs":1585931015500},{"description":"Reacted `👍` to message [699025335148216410](https://discordapp.com/channels/695344751490236486/695344752031432766/699025335148216410)","index":181,"timestampMs":1586731027162},{"description":"Reacted `👍` to message [699326575627206778](https://discordapp.com/channels/695344751490236486/695344752031432766/699326575627206778)","index":182,"timestampMs":1586802848489},{"description":"Reacted `💯` to message [696730540039995493](https://discordapp.com/channels/695344751490236486/695344752031432766/696730540039995493)","index":183,"timestampMs":1586183905373},{"description":"Reacted `💯` to message [698965418370400296](https://discordapp.com/channels/695344751490236486/695344752031432766/698965418370400296)","index":184,"timestampMs":1586716741889},{"description":"Reacted `🔥` to message [698969730580742174](https://discordapp.com/channels/695344751490236486/695344752031432766/698969730580742174)","index":185,"timestampMs":1586717770000},{"description":"Reacted `🔥` to message [698973708316049488](https://discordapp.com/channels/695344751490236486/695344752031432766/698973708316049488)","index":186,"timestampMs":1586718718366},{"description":"Reacted `🔥` to message [698921390845198426](https://discordapp.com/channels/695344751490236486/695344752031432766/698921390845198426)","index":187,"timestampMs":1586706244909},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":188,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":189,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":190,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":191,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":192,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":193,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":194,"timestampMs":1586643849022},{"description":"Reacted `🔥` to message [699287660589613148](https://discordapp.com/channels/695344751490236486/696400331260821586/699287660589613148)","index":195,"timestampMs":1586793570421},{"description":"Reacted `🔥` to message [698659683526901810](https://discordapp.com/channels/695344751490236486/696400331260821586/698659683526901810)","index":196,"timestampMs":1586643849022},{"description":"Reacted `👍` to message [696427343220047872](https://discordapp.com/channels/695344751490236486/696420039141752863/696427343220047872)","index":197,"timestampMs":1586111617618},{"description":"Reacted `👍` to message [696441890048049232](https://discordapp.com/channels/695344751490236486/696420039141752863/696441890048049232)","index":198,"timestampMs":1586115085852},{"description":"Reacted `👍` to message [699123164340551691](https://discordapp.com/channels/695344751490236486/696420039141752863/699123164340551691)","index":199,"timestampMs":1586754351459},{"description":"Reacted `👍` to message [700087985634541678](https://discordapp.com/channels/695344751490236486/696420039141752863/700087985634541678)","index":200,"timestampMs":1586984382781},{"description":"Reacted `🔥` to message [699560532046250034](https://discordapp.com/channels/695344751490236486/696420039141752863/699560532046250034)","index":201,"timestampMs":1586858628046},{"description":"Reacted `🔥` to message [699275497984622760](https://discordapp.com/channels/695344751490236486/696420039141752863/699275497984622760)","index":202,"timestampMs":1586790670630},{"description":"Reacted `🔥` to message [700064920104075394](https://discordapp.com/channels/695344751490236486/696420039141752863/700064920104075394)","index":203,"timestampMs":1586978883530},{"description":"Reacted `👍` to message [699284090607763506](https://discordapp.com/channels/695344751490236486/696420197644632116/699284090607763506)","index":204,"timestampMs":1586792719271},{"description":"Reacted `👍` to message [699822779670724650](https://discordapp.com/channels/695344751490236486/698942081858666527/699822779670724650)","index":205,"timestampMs":1586921152752},{"description":"Reacted `👍` to message [700040376085381152](https://discordapp.com/channels/695344751490236486/700023168995295233/700040376085381152)","index":206,"timestampMs":1586973031780},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":207,"timestampMs":1586973160965},{"description":"Reacted `💯` to message [700040917926543422](https://discordapp.com/channels/695344751490236486/700023168995295233/700040917926543422)","index":208,"timestampMs":1586973160965},{"description":"Reacted `🔥` to message [700039441799970969](https://discordapp.com/channels/695344751490236486/700023168995295233/700039441799970969)","index":209,"timestampMs":1586972809029},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612693703) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":746,"timestampMs":1586735225000},{"description":"[comment](https://github.com/aracred/AraCred/issues/14#issuecomment-612962510) on [#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":747,"timestampMs":1586793675000},{"description":"[comment](https://github.com/aracred/AraCred/issues/16#issuecomment-613151713) on [#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":748,"timestampMs":1586821838000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612842722) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":749,"timestampMs":1586773257000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-612918834) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":750,"timestampMs":1586787682000},{"description":"[comment](https://github.com/aracred/AraCred/issues/18#issuecomment-613069946) on [#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":751,"timestampMs":1586808032000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613141085) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":752,"timestampMs":1586819514000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613146304) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":753,"timestampMs":1586820570000},{"description":"[comment](https://github.com/aracred/AraCred/issues/22#issuecomment-613226248) on [#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":754,"timestampMs":1586840296000},{"description":"[comment](https://github.com/aracred/AraCred/issues/25#issuecomment-613347004) on [#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":755,"timestampMs":1586858608000},{"description":"[comment](https://github.com/aracred/AraCred/issues/26#issuecomment-613797792) on [#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":756,"timestampMs":1586922019000},{"description":"[comment](https://github.com/aracred/TheSource/issues/3#issuecomment-613030762) on [#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":757,"timestampMs":1586802750000},{"description":"[comment](https://github.com/aracred/bot/issues/3#issuecomment-614314292) on [#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":758,"timestampMs":1586990245000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612563994) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":759,"timestampMs":1586666872000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-612990333) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":760,"timestampMs":1586797413000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613020677) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":761,"timestampMs":1586801390000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613024850) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":762,"timestampMs":1586801948000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613026757) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":763,"timestampMs":1586802204000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-613028322) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":764,"timestampMs":1586802422000},{"description":"[comment](https://github.com/aracred/onboarding/issues/1#issuecomment-614088358) on [#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":765,"timestampMs":1586962450000},{"description":"[comment](https://github.com/aracred/onboarding/issues/2#issuecomment-612630503) on [#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":766,"timestampMs":1586704028000},{"description":"[comment](https://github.com/aracred/onboarding/issues/3#issuecomment-612642927) on [#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":767,"timestampMs":1586709561000},{"description":"[comment](https://github.com/aracred/onboarding/issues/4#issuecomment-613343876) on [#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":768,"timestampMs":1586858205000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612843090) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":769,"timestampMs":1586773337000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612844672) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":770,"timestampMs":1586773655000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612910606) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":771,"timestampMs":1586786432000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612911587) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":772,"timestampMs":1586786582000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612939366) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":773,"timestampMs":1586790511000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-612942113) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":774,"timestampMs":1586790870000},{"description":"[comment](https://github.com/aracred/onboarding/issues/6#issuecomment-614058561) on [#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":775,"timestampMs":1586959270000},{"description":"[comment](https://github.com/aracred/AraCred/pull/20#issuecomment-613089159) on [#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":776,"timestampMs":1586810690000},{"description":"[comment](https://github.com/aracred/bot/pull/9#issuecomment-614948916) on [#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":777,"timestampMs":1587079943000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850216) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":778,"timestampMs":1587071400000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850385) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":779,"timestampMs":1587071419000},{"description":"[comment](https://github.com/aracred/bot/pull/8#discussion_r409850667) on [review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":780,"timestampMs":1587071453000},{"description":"[02e3a39](https://github.com/aracred/onboarding/commit/02e3a39d76183975fa9a0671de0c7922274b6abc): Initial commit","index":781,"timestampMs":1586666528000},{"description":"[1a16f1e](https://github.com/aracred/leaderboard/commit/1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8): Initial commit","index":782,"timestampMs":1586706188000},{"description":"[1a21759](https://github.com/aracred/comms/commit/1a21759b0bf3dbf3f524a23bf10c8e4a114def8c): Initial commit","index":783,"timestampMs":1586709195000},{"description":"[89f7cc8](https://github.com/aracred/governance/commit/89f7cc8cbfd2fe93bcdb22e979f918a288bd8668): Update README.md","index":784,"timestampMs":1586710102000},{"description":"[b48eec0](https://github.com/aracred/governance/commit/b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9): Initial commit","index":785,"timestampMs":1586709961000},{"description":"[169704b](https://github.com/aracred/bot/commit/169704b1d09d4498ff0eaf2276bc40e79fffdf7e): Add bot guard for infinite loops","index":786,"timestampMs":1586921892000},{"description":"[1d8ee2b](https://github.com/aracred/bot/commit/1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5): Add testing for parsers & several bot enhancements","index":787,"timestampMs":1586930578000},{"description":"[23d2d9d](https://github.com/aracred/bot/commit/23d2d9d76214f6b6309676e2d369fe22f495943c): Rename procfile to Procfile","index":788,"timestampMs":1586920791000},{"description":"[2ac1a7e](https://github.com/aracred/bot/commit/2ac1a7e110486f19483abeff54c243335640c923): Update package.json","index":789,"timestampMs":1586921871000},{"description":"[2b91470](https://github.com/aracred/bot/commit/2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484): Update procfile","index":790,"timestampMs":1586920549000},{"description":"[2c407f3](https://github.com/aracred/bot/commit/2c407f36d0c5b27d2c474b335cabb81cfe2edeca): v0.0.2 : add address command","index":791,"timestampMs":1586839193000},{"description":"[396e5f7](https://github.com/aracred/bot/commit/396e5f791be1c3cf258b08afc6111cea8a409634): Add hooks for linting, testing","index":792,"timestampMs":1586916947000},{"description":"[436819f](https://github.com/aracred/bot/commit/436819fc13564c1c553d1d70390daff05a9052e9): Setup jest config","index":793,"timestampMs":1586919065000},{"description":"[59aa572](https://github.com/aracred/bot/commit/59aa572835669dee12a533857e417b17ba7b45e5): Devops: Add monitoring logs to commands (#4)","index":794,"timestampMs":1586971104000},{"description":"[6738048](https://github.com/aracred/bot/commit/67380485711017726e26a1687668d3d85b0e5d41): Improve help command","index":795,"timestampMs":1586957209000},{"description":"[680e650](https://github.com/aracred/bot/commit/680e6502d527be2ddbd2bd73be5ddce9c5914e9b): Add utilities for development","index":796,"timestampMs":1586915756000},{"description":"[ad563e1](https://github.com/aracred/bot/commit/ad563e12ffae5d7b53764f2709b2da47a17aa18c): Remove git add from lint-staged","index":797,"timestampMs":1586916992000},{"description":"[af62937](https://github.com/aracred/bot/commit/af6293708734a500d9aeb65ece80c20d28d973d3): Create ci.yml","index":798,"timestampMs":1586932748000},{"description":"[b72e98f](https://github.com/aracred/bot/commit/b72e98f338ce136d49bbc775464fbe071df8c431): Update README.md","index":799,"timestampMs":1586934527000},{"description":"[b8c4dd2](https://github.com/aracred/bot/commit/b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc): Made copies more user friendly","index":800,"timestampMs":1587052319000},{"description":"[b3e0e30](https://github.com/aracred/bot/commit/b3e0e30623418aaf8af913aed3c78c36e5e7c742): Validation: validate ethereum address (#8)","index":801,"timestampMs":1587075097000},{"description":"[d45cdea](https://github.com/aracred/bot/commit/d45cdeaaabc568712db4fd59c157084fc4819e19): Initial commit","index":802,"timestampMs":1586805309000},{"description":"[d601ad0](https://github.com/aracred/bot/commit/d601ad079de95e29fe5bd99dd225621e193b09a8): Add other utilties, procfile for heroku deployment","index":803,"timestampMs":1586918718000},{"description":"[d8f4083](https://github.com/aracred/bot/commit/d8f4083966d599198ff8f988f55ced0e2b91ba98): v0.0.1","index":804,"timestampMs":1586831849000},{"description":"[ddad212](https://github.com/aracred/bot/commit/ddad2121732e1f0646c5ab6d3d8fc51c431f94b8): Update help.js","index":805,"timestampMs":1586977731000},{"description":"[de56e09](https://github.com/aracred/bot/commit/de56e092581eb21affd70f681de349d461487d47): Update Procfile","index":806,"timestampMs":1586921823000},{"description":"[e41eb25](https://github.com/aracred/bot/commit/e41eb256be1cff6f8173bf1b4ab1e08d82680377): Merge branch 'master' of https://github.com/aracred/bot","index":807,"timestampMs":1586960050000},{"description":"[e370701](https://github.com/aracred/bot/commit/e3707010bd6cff203cbe2450f48d2ee7bbc5d155): Create README.md","index":808,"timestampMs":1586933937000},{"description":"[f8cc3c0](https://github.com/aracred/bot/commit/f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0): Add .env.sample","index":809,"timestampMs":1586832132000},{"description":"[f1ec698](https://github.com/aracred/bot/commit/f1ec698041e4fdef5931f7928a751a8a45433b9f): Improve whitelisting","index":810,"timestampMs":1586958454000},{"description":"[05c78a8](https://github.com/aracred/website/commit/05c78a85d3b82074eb0e966c43eaf29f53e39426): updated secrets guide","index":811,"timestampMs":1586730565000},{"description":"[031a68e](https://github.com/aracred/website/commit/031a68eb5a45b70c806197b47783b1b4ae4332f0): design goals overview","index":812,"timestampMs":1586643786000},{"description":"[0c44b7c](https://github.com/aracred/website/commit/0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33): Merge pull request #9 from aracred/docs2","index":813,"timestampMs":1586664558000},{"description":"[15e6db6](https://github.com/aracred/website/commit/15e6db685e730aa55697d6fc8f60e9006732d2db): Merge pull request #1 from aracred/docusaurus","index":814,"timestampMs":1586566020000},{"description":"[16456a0](https://github.com/aracred/website/commit/16456a0e6dce09102122b50f42b185c330bb7b25): checkpoint","index":815,"timestampMs":1586710826000},{"description":"[18c5aee](https://github.com/aracred/website/commit/18c5aee0a819fd4f7877321af5fd04791f85c6f8): created manual deployment guide draft","index":816,"timestampMs":1586727748000},{"description":"[120b10d](https://github.com/aracred/website/commit/120b10d34d5e804b21984569c113e37036efe669): removed blog from footer","index":817,"timestampMs":1586570955000},{"description":"[26b69c0](https://github.com/aracred/website/commit/26b69c05b19e8c57f2d16f77ab4d86b76247ce1b): updated diagrams and whiteboard sessions","index":818,"timestampMs":1586662685000},{"description":"[2a6a498](https://github.com/aracred/website/commit/2a6a498e1f06f55bc8d72380017b4d4060e27123): Create CNAME","index":819,"timestampMs":1586127122000},{"description":"[2b6ed00](https://github.com/aracred/website/commit/2b6ed00bd26907f91649e266613daba56cbaa0ee): stashing notes","index":820,"timestampMs":1586658983000},{"description":"[2cee732](https://github.com/aracred/website/commit/2cee732bc11b712814855cfb1d9b5b279cef6fb9): Delete CNAME","index":821,"timestampMs":1586566694000},{"description":"[2d9e5bd](https://github.com/aracred/website/commit/2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951): Merge pull request #6 from aracred/docs2","index":822,"timestampMs":1586656936000},{"description":"[2e4d02b](https://github.com/aracred/website/commit/2e4d02b5022b744b43eba4a032fa855b765aa0ad): Merge pull request #14 from aracred/docs2","index":823,"timestampMs":1586797014000},{"description":"[37e3b72](https://github.com/aracred/website/commit/37e3b7251566699d4341b3bdbb81ec8f554f7d87): Merge pull request #13 from aracred/docs2","index":824,"timestampMs":1586727823000},{"description":"[39ac367](https://github.com/aracred/website/commit/39ac367cc0a3e55366f190fe158a8517f97c2778): Update README.md","index":825,"timestampMs":1586103464000},{"description":"[30d221d](https://github.com/aracred/website/commit/30d221dce50b378b1c7305bda09bea3f77887415): didn't actually add users section","index":826,"timestampMs":1586633871000},{"description":"[49af56b](https://github.com/aracred/website/commit/49af56b16491699e672947ed52ce86dcb3f9d9c2): updated docs to include links to baseURL","index":827,"timestampMs":1586647160000},{"description":"[4b792e8](https://github.com/aracred/website/commit/4b792e8ce9c473dd059f633bec6659a18a6d8ff7): checkpoint","index":828,"timestampMs":1586660251000},{"description":"[51c24fd](https://github.com/aracred/website/commit/51c24fd07be9e40f534f48d43f936d829ac7b085): added tabs!","index":829,"timestampMs":1586649927000},{"description":"[5a3bda0](https://github.com/aracred/website/commit/5a3bda08dd0c3b937345c449229b07241d70fb09): Fix hero button in dark mode","index":830,"timestampMs":1586855777000},{"description":"[5e5171d](https://github.com/aracred/website/commit/5e5171d6fb098184d18a44589e6cd4fd72c89c80): getting started button link update","index":831,"timestampMs":1586571027000},{"description":"[61741f2](https://github.com/aracred/website/commit/61741f2ee4388880504f3a299dbd9c11698cc7dd): giving credit where credit is due","index":832,"timestampMs":1586644808000},{"description":"[62452c3](https://github.com/aracred/website/commit/62452c343ffd843e938714bc2e87d5214d7dd315): added a gratitude section","index":833,"timestampMs":1586650718000},{"description":"[6caa3ed](https://github.com/aracred/website/commit/6caa3ed4ed86f8414354719138e0121db2d6a0dc): Initial commit","index":834,"timestampMs":1586103441000},{"description":"[6d3765a](https://github.com/aracred/website/commit/6d3765a6c17e93aaddcd0f3fb8ace45c20bda183): Update README.md","index":835,"timestampMs":1586568293000},{"description":"[6e7bfcd](https://github.com/aracred/website/commit/6e7bfcd7b00408f64472201ac06ea499e02e6fad): updated docs to mdx","index":836,"timestampMs":1586646704000},{"description":"[6f93833](https://github.com/aracred/website/commit/6f93833ab9fbe162b81bb768df2d85c30ad06ab8): Merge pull request #8 from aracred/docs2","index":837,"timestampMs":1586663015000},{"description":"[7cd874a](https://github.com/aracred/website/commit/7cd874acd8a0f9009911452d1c0b363cb13f6669): _","index":838,"timestampMs":1586639136000},{"description":"[85eeea1](https://github.com/aracred/website/commit/85eeea117f1160d5b9da37473b35598a7c76b5f2): added DAO stuff","index":839,"timestampMs":1586663769000},{"description":"[862fd7f](https://github.com/aracred/website/commit/862fd7fa57bf683b777fc8f3789b1df4aea08e9f): updated stuff","index":840,"timestampMs":1586652307000},{"description":"[892f2bf](https://github.com/aracred/website/commit/892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3): added docs placeholders","index":841,"timestampMs":1586570353000},{"description":"[97158bd](https://github.com/aracred/website/commit/97158bddc34b68675ca0d7376d36259a03aef6ac): added AraCred overview","index":842,"timestampMs":1586638395000},{"description":"[9b553ff](https://github.com/aracred/website/commit/9b553ff5e3ec727ed0dd45321971a9911a1f04ad): the code works!","index":843,"timestampMs":1586657067000},{"description":"[9fc6edf](https://github.com/aracred/website/commit/9fc6edf1983584d9e8336ae9cba525ba92e3249b): generalized the token market","index":844,"timestampMs":1586649206000},{"description":"[a631821](https://github.com/aracred/website/commit/a631821f95e1a3b679073cd25647784f863699ec): removed scratchpad","index":845,"timestampMs":1586729040000},{"description":"[a794a7d](https://github.com/aracred/website/commit/a794a7d8a4034af56c031a5a4a85300ad488871e): moved stuff to main directory","index":846,"timestampMs":1586567498000},{"description":"[a86004a](https://github.com/aracred/website/commit/a86004ae7a81b6150ca9decebdd05ab7d4151214): Beautified the website!","index":847,"timestampMs":1586855462000},{"description":"[a180ef1](https://github.com/aracred/website/commit/a180ef16d0fb9e6adbb95731fcdd0e84955805d3): _","index":848,"timestampMs":1586568912000},{"description":"[a2421f5](https://github.com/aracred/website/commit/a2421f56156e52f5b7138ff17678e3c13e13a2f1): basic aragon and sourcecred overviews","index":849,"timestampMs":1586640470000},{"description":"[a380b67](https://github.com/aracred/website/commit/a380b67f78535ff8cd03945a60f98400e084a525): Update README.md","index":850,"timestampMs":1586111771000},{"description":"[aa9b13f](https://github.com/aracred/website/commit/aa9b13f64574bcf35312c9c6e828986ce75aff16): _","index":851,"timestampMs":1586569076000},{"description":"[ace98dc](https://github.com/aracred/website/commit/ace98dcfcfaeffae7c2fc2618af5281d06129330): starting to add market dynamic info","index":852,"timestampMs":1586648621000},{"description":"[bb9844b](https://github.com/aracred/website/commit/bb9844bd3a996039c00d44054f3450fcdc905d22): Update README.md","index":853,"timestampMs":1586111689000},{"description":"[bd29ad9](https://github.com/aracred/website/commit/bd29ad9bca1ac4c5f098c091bce6ea0824776115): added carl to the thanks section","index":854,"timestampMs":1586651543000},{"description":"[c4fa771](https://github.com/aracred/website/commit/c4fa771d6e61d74c5f1e702dd238ebbb4b538be8): added whiteboard session to notes","index":855,"timestampMs":1586661631000},{"description":"[c515036](https://github.com/aracred/website/commit/c515036f8ba1937cda94092e87b0a13545d86829): added note about next action items for deployment docs","index":856,"timestampMs":1586739277000},{"description":"[c2bf0a1](https://github.com/aracred/website/commit/c2bf0a118855a87f962a7bda788c73120c64940b): added a cryptoeconomics 101 blog post","index":857,"timestampMs":1586644660000},{"description":"[c3d5044](https://github.com/aracred/website/commit/c3d50445a0194dac7d52baaaa8aa3dbf2bd77173): added guide on approving token minting","index":858,"timestampMs":1586792089000},{"description":"[cda86c7](https://github.com/aracred/website/commit/cda86c72f131bd0ba804c57d20be41d8f017cf3d): fixed edit link thing","index":859,"timestampMs":1586645107000},{"description":"[d49ea3b](https://github.com/aracred/website/commit/d49ea3b27586437f262b74132224b280597e67bd): before adding live code plugin","index":860,"timestampMs":1586656870000},{"description":"[d9900e9](https://github.com/aracred/website/commit/d9900e922c90ce1d244761f1e2ad2fc4fb65f298): added guide on viewing your cred graph","index":861,"timestampMs":1586790290000},{"description":"[d1a721f](https://github.com/aracred/website/commit/d1a721f8eed2805dd0c85d8d9fef06032f04c056): Update README.md","index":862,"timestampMs":1586571301000},{"description":"[db97114](https://github.com/aracred/website/commit/db97114fd0dbcd580c0a88991f4b6991d0bef4e5): starting to docusaurus","index":863,"timestampMs":1586565903000},{"description":"[dd68745](https://github.com/aracred/website/commit/dd687457b7a8178a907116c7880a1bb498bb4131): Merge pull request #3 from aracred/users-showcase","index":864,"timestampMs":1586633977000},{"description":"[df4aca3](https://github.com/aracred/website/commit/df4aca3876a771513b7e5d9a0c28517746508961): now the edit link is fixed","index":865,"timestampMs":1586645253000},{"description":"[e97f15b](https://github.com/aracred/website/commit/e97f15b28e12292f7df8de6515a27b63f989acfb): updated README deployment instructions","index":866,"timestampMs":1586567811000},{"description":"[e9a6820](https://github.com/aracred/website/commit/e9a68209df1f07b4f9f28319e98dcade12ebde80): updated images","index":867,"timestampMs":1586664528000},{"description":"[e2dddf8](https://github.com/aracred/website/commit/e2dddf8e3303043dae6bf8efc44777965d5fde9a): Merge pull request #4 from aracred/docs2","index":868,"timestampMs":1586645187000},{"description":"[ee80ee1](https://github.com/aracred/website/commit/ee80ee18c4c10447c5e3d180c7cb87d177cf6bab): Better paddings and illustrations","index":869,"timestampMs":1586874980000},{"description":"[f9f8620](https://github.com/aracred/website/commit/f9f862051f1b8310f274b4e8e8c20604a75bda59): Merge pull request #5 from aracred/docs2","index":870,"timestampMs":1586654110000},{"description":"[fcacf68](https://github.com/aracred/website/commit/fcacf68e748f6ee1883db51392267fc8537db08b): updated docs","index":871,"timestampMs":1586570850000},{"description":"[07e0e5f](https://github.com/aracred/TheSource/commit/07e0e5f00e18e00a12892b47bd3f5b87418377d5): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":872,"timestampMs":1584166244000},{"description":"[014093e](https://github.com/aracred/TheSource/commit/014093e17900e748bb8f82656443ec621bd8a658): Fix: trigger on master / cronjob","index":873,"timestampMs":1582978132000},{"description":"[0235016](https://github.com/aracred/TheSource/commit/02350169d0e77e280968a062a1e98a60a0d4c5d8): Update generate-cred.yml","index":874,"timestampMs":1586104482000},{"description":"[0245a40](https://github.com/aracred/TheSource/commit/0245a4002a35c2adccfed1f68a675c30ba871ba5): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":875,"timestampMs":1583453629000},{"description":"[0e46884](https://github.com/aracred/TheSource/commit/0e468843191ad3a24ff5b803b2e388a12e88a289): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":876,"timestampMs":1585678434000},{"description":"[1582ec3](https://github.com/aracred/TheSource/commit/1582ec34530ff6b7055382319336acc3f82de567): Merge pull request #22 from burrrata/patch-1","index":877,"timestampMs":1583619788000},{"description":"[15a8127](https://github.com/aracred/TheSource/commit/15a8127bc5402c7224bc592f890a5bd7f793c6a5): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":878,"timestampMs":1585354520000},{"description":"[1823aa7](https://github.com/aracred/TheSource/commit/1823aa73078796ecf98dd56d9c134ccf2192e686): Add new members and update repo config","index":879,"timestampMs":1585275196000},{"description":"[11fcd09](https://github.com/aracred/TheSource/commit/11fcd09a0cde08af08b5c5c951f54c150cf47ea1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":880,"timestampMs":1585246440000},{"description":"[1222e49](https://github.com/aracred/TheSource/commit/1222e49b4269f15b2c71cfe4b62b1333abeea581): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":881,"timestampMs":1583367223000},{"description":"[12cf0f1](https://github.com/aracred/TheSource/commit/12cf0f16d406f14c2597abc130c4d2bfa9927f32): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":882,"timestampMs":1585807902000},{"description":"[12ddd4e](https://github.com/aracred/TheSource/commit/12ddd4e35607c0184b898c898e26e45c6017642d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":883,"timestampMs":1584727971000},{"description":"[1363441](https://github.com/aracred/TheSource/commit/13634414337e730fbcb403e2657a8007347ddd8d): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":884,"timestampMs":1585268012000},{"description":"[13fc50d](https://github.com/aracred/TheSource/commit/13fc50d22e2353cf2bb38948cae4fb5fb591ce6c): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":885,"timestampMs":1584490521000},{"description":"[1a79294](https://github.com/aracred/TheSource/commit/1a7929462fc35448408f0d854a6c8c898c2db94f): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":886,"timestampMs":1584425424000},{"description":"[1b5127e](https://github.com/aracred/TheSource/commit/1b5127e0416b329fc4dcd1d988d29489bea9016f): Merge pull request #21 from c0mput3rxz/patch-1","index":887,"timestampMs":1583545099000},{"description":"[1cac15e](https://github.com/aracred/TheSource/commit/1cac15ecae5e636fd5d049fc5993ccd113126e41): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":888,"timestampMs":1584404096000},{"description":"[1dc4a2c](https://github.com/aracred/TheSource/commit/1dc4a2c23525043a7b6e32a79837cb6a5a62fd97): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":889,"timestampMs":1584987191000},{"description":"[1eed38c](https://github.com/aracred/TheSource/commit/1eed38c4cebd63ab6fc9537564a5304a870caa0c): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":890,"timestampMs":1585872826000},{"description":"[1f350ea](https://github.com/aracred/TheSource/commit/1f350ead22cb503932ec36b9d21b735eb97eb256): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":891,"timestampMs":1584231333000},{"description":"[25c16bb](https://github.com/aracred/TheSource/commit/25c16bb85801279196018b44ec0db0834fadc4a2): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":892,"timestampMs":1584079976000},{"description":"[27b2bf3](https://github.com/aracred/TheSource/commit/27b2bf3d7da83e04295aa1c2297e50ce8157f435): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":893,"timestampMs":1584555406000},{"description":"[28b0e3f](https://github.com/aracred/TheSource/commit/28b0e3f2d8fd42569eb803d10435aa8c0edf28f4): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":894,"timestampMs":1585159980000},{"description":"[2074791](https://github.com/aracred/TheSource/commit/2074791c680ee3d896c6c819ee0244719a7e510c): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":895,"timestampMs":1582941733000},{"description":"[21196b9](https://github.com/aracred/TheSource/commit/21196b9342e552cc4fc6a9f213ea42768f3590d6): Merge pull request #1 from pythonpete32/patch-2","index":896,"timestampMs":1586104041000},{"description":"[2251687](https://github.com/aracred/TheSource/commit/225168780b86a4b41d38845653c5d8759d1d37ad): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":897,"timestampMs":1581915151000},{"description":"[22f57e7](https://github.com/aracred/TheSource/commit/22f57e7b323b0800c218b270980286c105ff7760): Update README.md","index":898,"timestampMs":1586106320000},{"description":"[2a1204b](https://github.com/aracred/TheSource/commit/2a1204b44f44d6d93cf952e1804aef25ffbdd78f): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":899,"timestampMs":1585365876000},{"description":"[2d44191](https://github.com/aracred/TheSource/commit/2d44191a996951ccbed0009280899614d63174c9): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":900,"timestampMs":1585276073000},{"description":"[2f42a2a](https://github.com/aracred/TheSource/commit/2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":901,"timestampMs":1585397520000},{"description":"[2fad9aa](https://github.com/aracred/TheSource/commit/2fad9aab6897201e6bc353b9746c03d1e728d433): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":902,"timestampMs":1584274368000},{"description":"[3472396](https://github.com/aracred/TheSource/commit/34723961199565937493834071665b871a632d5d): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":903,"timestampMs":1584382440000},{"description":"[35bf082](https://github.com/aracred/TheSource/commit/35bf0829c068aa20de51466ea118f7547707de00): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":904,"timestampMs":1585894360000},{"description":"[364068e](https://github.com/aracred/TheSource/commit/364068ec8db86b378d630f591da3a02de8708798): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":905,"timestampMs":1585095460000},{"description":"[36d7098](https://github.com/aracred/TheSource/commit/36d7098c5f0c400dddec1e654523a2800782b78a): Fix cache path (#8)","index":906,"timestampMs":1581914566000},{"description":"[37b357c](https://github.com/aracred/TheSource/commit/37b357cb88cf608d20589ce6ee51404561bb4b1c): Trigger build","index":907,"timestampMs":1581914856000},{"description":"[380e74d](https://github.com/aracred/TheSource/commit/380e74d47b6bfd2c48d5690093ab03e44b92d991): Run with cache (#4)","index":908,"timestampMs":1581911765000},{"description":"[38f3240](https://github.com/aracred/TheSource/commit/38f3240786ceec5b4c03d7a5ce0faa02512a8cde): cleaned things up","index":909,"timestampMs":1586106153000},{"description":"[391b32b](https://github.com/aracred/TheSource/commit/391b32bfdb5ae37d2ce42d32319fbadde72663f3): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":910,"timestampMs":1583604631000},{"description":"[392e601](https://github.com/aracred/TheSource/commit/392e601d3179506dfe7ec0ad20cd5f679696e66e): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":911,"timestampMs":1583712856000},{"description":"[39b0a90](https://github.com/aracred/TheSource/commit/39b0a902c1c17512a536380503a506fc3ca615bb): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":912,"timestampMs":1585505534000},{"description":"[39c6daa](https://github.com/aracred/TheSource/commit/39c6daaa5fca6305b908cdd28811107eba6bcbe3): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":913,"timestampMs":1584058539000},{"description":"[30014c1](https://github.com/aracred/TheSource/commit/30014c11841c9a605cc94d517ece6b867afd8cef): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":914,"timestampMs":1583172648000},{"description":"[30758d0](https://github.com/aracred/TheSource/commit/30758d04aa4da97fc0aced1fa22cbdee4a82c792): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":915,"timestampMs":1584857389000},{"description":"[309a895](https://github.com/aracred/TheSource/commit/309a89586da5e2d44b48a607c9334aef6f6db3fb): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":916,"timestampMs":1583928647000},{"description":"[311bf26](https://github.com/aracred/TheSource/commit/311bf26aa5268a067b0bfc8708a922d2fd3d0a81): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":917,"timestampMs":1582959644000},{"description":"[317ffa1](https://github.com/aracred/TheSource/commit/317ffa1471a0179007b87f93aac2223666443d45): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":918,"timestampMs":1584965374000},{"description":"[3ab888c](https://github.com/aracred/TheSource/commit/3ab888c62c6fa64080e675c1f5146e156635ee6c): Merge pull request #18 from mzargham/patch-1","index":919,"timestampMs":1583124213000},{"description":"[3b4871c](https://github.com/aracred/TheSource/commit/3b4871c09b67498e31575b8aaa9c09443d142a03): Automated deployment to update cred in /github/workspace/docs 2020-03-18","index":920,"timestampMs":1584511968000},{"description":"[3b5a471](https://github.com/aracred/TheSource/commit/3b5a4715a9790e23a2e35d783d691e8d5ee58f80): Update project.json","index":921,"timestampMs":1586105522000},{"description":"[3b8e4f5](https://github.com/aracred/TheSource/commit/3b8e4f54845388851293b26053f4df65b4dc98d1): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":922,"timestampMs":1583280857000},{"description":"[3bc9934](https://github.com/aracred/TheSource/commit/3bc9934834b8a65291439cbba2daf061448e30fe): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":923,"timestampMs":1584101474000},{"description":"[3e5e144](https://github.com/aracred/TheSource/commit/3e5e14457fa143425d264a4fa941591d19730ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":924,"timestampMs":1583086481000},{"description":"[3f47f07](https://github.com/aracred/TheSource/commit/3f47f07723b97f0311f32b78da99358d2c6affb4): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":925,"timestampMs":1583259010000},{"description":"[44cf0fb](https://github.com/aracred/TheSource/commit/44cf0fbba18bf392a44962faed1e1300ed6fa459): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":926,"timestampMs":1585548726000},{"description":"[44c8444](https://github.com/aracred/TheSource/commit/44c844475c5e2beb5acdefc7e4cd54e90d2d84e2): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":927,"timestampMs":1585700008000},{"description":"[4639ec8](https://github.com/aracred/TheSource/commit/4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":928,"timestampMs":1585484037000},{"description":"[48e5b44](https://github.com/aracred/TheSource/commit/48e5b4467c6107040c107d55bc2fbe07a57ea3a0): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":929,"timestampMs":1585311128000},{"description":"[4003769](https://github.com/aracred/TheSource/commit/4003769a8d62ca41d0d18d2bd72204b1d278d5b9): Add mZ (me) to identities","index":930,"timestampMs":1583107086000},{"description":"[407f5d0](https://github.com/aracred/TheSource/commit/407f5d0adffd9ef41bff0bdbfb06f67213accea9): Merge a802f7c669324c951f6554fcf391f886ba3150f8 into 2074791c680ee3d896c6c819ee0244719a7e510c","index":931,"timestampMs":1582959287000},{"description":"[419d39d](https://github.com/aracred/TheSource/commit/419d39d87eb31965a8f5775075cb80be6a57abd6): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":932,"timestampMs":1585440813000},{"description":"[41e6727](https://github.com/aracred/TheSource/commit/41e67273af614a1014bfb58bf6ca1b1cee1e6a8a): Update project.json","index":933,"timestampMs":1586112503000},{"description":"[432042f](https://github.com/aracred/TheSource/commit/432042f6f965bb113ad50950cfdbb82c44f0dc59): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":934,"timestampMs":1583129436000},{"description":"[4a90734](https://github.com/aracred/TheSource/commit/4a90734832ae4ad328fc062712e2deca88d7dcc4): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":935,"timestampMs":1585224759000},{"description":"[4b4c9ea](https://github.com/aracred/TheSource/commit/4b4c9ea9705465d39f33b39ea39819c9c77aa78b): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":936,"timestampMs":1585980739000},{"description":"[4c0f6c1](https://github.com/aracred/TheSource/commit/4c0f6c1fe42e875f8cd6a4be4fa88be63052d149): Merge pull request #15 from AlexMasmej/patch-1","index":937,"timestampMs":1583096048000},{"description":"[4ecd902](https://github.com/aracred/TheSource/commit/4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33): Merge 37b357cb88cf608d20589ce6ee51404561bb4b1c into bbca4d024098c749b7064b70c24c416061255c75","index":938,"timestampMs":1581914897000},{"description":"[554c964](https://github.com/aracred/TheSource/commit/554c96438fdbee2031b8b5ac16aa2d6db6a7f40f): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":939,"timestampMs":1584209897000},{"description":"[56172b6](https://github.com/aracred/TheSource/commit/56172b6087400fa81c13f39f37b23ec11de3c9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":940,"timestampMs":1585937519000},{"description":"[576bc68](https://github.com/aracred/TheSource/commit/576bc68e63d6232f6c78bdd38e66da8585c04b0c): Update generate-cred.yml","index":941,"timestampMs":1586104299000},{"description":"[578544d](https://github.com/aracred/TheSource/commit/578544d0557614c00780089fa9f8343950f977fc): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":942,"timestampMs":1585613634000},{"description":"[509d8c0](https://github.com/aracred/TheSource/commit/509d8c03b1a67129a3e98073dd24f93723cdfe41): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":943,"timestampMs":1585656841000},{"description":"[50d289e](https://github.com/aracred/TheSource/commit/50d289eff07e8033e20cd60a4670c798dea24b71): Update README.md","index":944,"timestampMs":1586109721000},{"description":"[5130862](https://github.com/aracred/TheSource/commit/51308621ec2843350852fd31f8c0aa08d6d6a809): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":945,"timestampMs":1585591899000},{"description":"[5afb4e0](https://github.com/aracred/TheSource/commit/5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":946,"timestampMs":1585116577000},{"description":"[5b85a74](https://github.com/aracred/TheSource/commit/5b85a7405489f720ed0b9cb5150c2619d45c9e9d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":947,"timestampMs":1583820607000},{"description":"[5c621ee](https://github.com/aracred/TheSource/commit/5c621ee4c644713a2627afbfed745482fe5525ef): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":948,"timestampMs":1584619902000},{"description":"[5c8e695](https://github.com/aracred/TheSource/commit/5c8e695ad340e65e85862dc8202d17e73d95bc3e): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":949,"timestampMs":1584943893000},{"description":"[6414f44](https://github.com/aracred/TheSource/commit/6414f44dff41af4a83f6ce0de71d809bd0482d00): fixed syntax error","index":950,"timestampMs":1583122040000},{"description":"[6552409](https://github.com/aracred/TheSource/commit/65524097ed5de3a815e989bd420e38177fe70bca): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":951,"timestampMs":1584187884000},{"description":"[65d2ca3](https://github.com/aracred/TheSource/commit/65d2ca343c51020478094ba87b5db4af6464741a): Automated deployment to update cred in /github/workspace/docs 2020-03-13","index":952,"timestampMs":1584123231000},{"description":"[67d4622](https://github.com/aracred/TheSource/commit/67d46229489309035b968391e6d14611ebd5c3ff): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":953,"timestampMs":1585008772000},{"description":"[69d1fb7](https://github.com/aracred/TheSource/commit/69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":954,"timestampMs":1584339043000},{"description":"[636ec6a](https://github.com/aracred/TheSource/commit/636ec6a16064c8c33eb4763375d53ac5d8bd1a10): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":955,"timestampMs":1583669536000},{"description":"[6a8bfca](https://github.com/aracred/TheSource/commit/6a8bfca0c936f304cc9a2a3399676be46aea9960): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":956,"timestampMs":1584252719000},{"description":"[6b96998](https://github.com/aracred/TheSource/commit/6b96998e7c2f8ce52dc09ebc9ea524d07debe38e): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":957,"timestampMs":1584360709000},{"description":"[6d51ee8](https://github.com/aracred/TheSource/commit/6d51ee836e10e9d7b38006f5e496655ae18ad368): Automated deployment to update cred in /github/workspace/docs 2020-04-03","index":958,"timestampMs":1585915944000},{"description":"[749f1e4](https://github.com/aracred/TheSource/commit/749f1e4c55deee2c1b640348b5965f5a4afd2886): Merge pull request #24 from MetaFam/update-members","index":959,"timestampMs":1585275681000},{"description":"[7860137](https://github.com/aracred/TheSource/commit/78601376522c329c0940754020ff4654ffe937b8): Automated deployment to update cred in /github/workspace/docs 2020-03-29","index":960,"timestampMs":1585462336000},{"description":"[7931cf2](https://github.com/aracred/TheSource/commit/7931cf20b5146bca68e51d26cdebade9a1d3a662): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":961,"timestampMs":1583755944000},{"description":"[71e0846](https://github.com/aracred/TheSource/commit/71e08464a654b37b05fe5349649a03f457933fa1): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":962,"timestampMs":1584663156000},{"description":"[7b6d616](https://github.com/aracred/TheSource/commit/7b6d61687e57d15a45d195b1edb567451a30db29): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":963,"timestampMs":1584598257000},{"description":"[7b9dca5](https://github.com/aracred/TheSource/commit/7b9dca52443325803e66cf596d274a0b11d252eb): updated gh actions file","index":964,"timestampMs":1586106389000},{"description":"[7d1f6e2](https://github.com/aracred/TheSource/commit/7d1f6e2d13ab467719f287802b16e799deeb5e26): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":965,"timestampMs":1585332629000},{"description":"[7dc4514](https://github.com/aracred/TheSource/commit/7dc4514cd415cc926827fe02cb2891b8d6b80e5d): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":966,"timestampMs":1583799279000},{"description":"[7dd45c9](https://github.com/aracred/TheSource/commit/7dd45c9416c703d549b6e278b7bfbe75053b1ca0): Initial commit","index":967,"timestampMs":1581898623000},{"description":"[7ff7782](https://github.com/aracred/TheSource/commit/7ff7782489b7894149cc5f211d9ddafcf84918e9): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":968,"timestampMs":1583496697000},{"description":"[842296b](https://github.com/aracred/TheSource/commit/842296b74203dbd599856a16880adcc904bd5b01): add thanks emoji","index":969,"timestampMs":1583106975000},{"description":"[85b6e8c](https://github.com/aracred/TheSource/commit/85b6e8cca2d6bc5709449605c8ac645fe74f78d5): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":970,"timestampMs":1585829522000},{"description":"[8619ee2](https://github.com/aracred/TheSource/commit/8619ee2452e7bf109169017acc968bba3e6e129d): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":971,"timestampMs":1584706303000},{"description":"[877be03](https://github.com/aracred/TheSource/commit/877be03e547648fb7a06110788e7dad226a05559): Add myself to list of identities","index":972,"timestampMs":1583542889000},{"description":"[89a15b5](https://github.com/aracred/TheSource/commit/89a15b5772d1dc21737181d7dda26695a0dfecca): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":973,"timestampMs":1585375849000},{"description":"[89b337b](https://github.com/aracred/TheSource/commit/89b337bef296df10a94c3b38ce1e2ef4396886d5): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":974,"timestampMs":1583431778000},{"description":"[8077363](https://github.com/aracred/TheSource/commit/80773639d8e225d1902d6145312108ecaa906a15): Merge bdb4c8a38c86a4598b2da69391fc84939148d738 into 8e04719f8d88512b8e8e19e17e42f7d960f6733b","index":975,"timestampMs":1581903076000},{"description":"[810abfb](https://github.com/aracred/TheSource/commit/810abfb03976accd663d1b7b964bbc19a92ec609): Merge pull request #17 from MetaFam/bean/patch-triggers","index":976,"timestampMs":1583014162000},{"description":"[817cf89](https://github.com/aracred/TheSource/commit/817cf8940cb88ba790c6021ce54bcb018aa0ceb6): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":977,"timestampMs":1583540024000},{"description":"[81a67f4](https://github.com/aracred/TheSource/commit/81a67f48120449294d3ab94cc767755e0bf3784e): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":978,"timestampMs":1586023930000},{"description":"[8275d1b](https://github.com/aracred/TheSource/commit/8275d1b5f3a774264d5833c23d8958342940092f): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":979,"timestampMs":1585570245000},{"description":"[8d960f0](https://github.com/aracred/TheSource/commit/8d960f0415e8ce8a45d7005c4ee399de672144d4): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":980,"timestampMs":1583410286000},{"description":"[8da32bb](https://github.com/aracred/TheSource/commit/8da32bb2436219e3a55631e426a71d3d45d27c36): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":981,"timestampMs":1585073567000},{"description":"[8e04719](https://github.com/aracred/TheSource/commit/8e04719f8d88512b8e8e19e17e42f7d960f6733b): Adds discord-token secret to action (#1)","index":982,"timestampMs":1581902687000},{"description":"[8e50a18](https://github.com/aracred/TheSource/commit/8e50a18b163cc513402b9c6c320672c83c46db84): added Alex Masmej","index":983,"timestampMs":1582941505000},{"description":"[94e51d9](https://github.com/aracred/TheSource/commit/94e51d9a83cd67b4ad82c6529212e72aac84afe7): Automated deployment to update cred in /github/workspace/docs 2020-02-29","index":984,"timestampMs":1583014460000},{"description":"[95d5884](https://github.com/aracred/TheSource/commit/95d5884b12a5a5f1d18552277e37597fb6048297): Automated deployment to update cred in /github/workspace/docs 2020-03-27","index":985,"timestampMs":1585289369000},{"description":"[9620fb8](https://github.com/aracred/TheSource/commit/9620fb8b0386160e364e38d63ad3fede4a182ce3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":986,"timestampMs":1584814190000},{"description":"[978f052](https://github.com/aracred/TheSource/commit/978f052b63aa209ed8107dad71c59a44643e74ba): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":987,"timestampMs":1586002264000},{"description":"[98f76c4](https://github.com/aracred/TheSource/commit/98f76c4fa934a3e08dc4abb8c19697c7ed1da81c): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":988,"timestampMs":1584015081000},{"description":"[936cd22](https://github.com/aracred/TheSource/commit/936cd22fe159bfd7f8bed539783f52c768f20a9f): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":989,"timestampMs":1584901288000},{"description":"[9a5b489](https://github.com/aracred/TheSource/commit/9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":990,"timestampMs":1585851193000},{"description":"[9a86642](https://github.com/aracred/TheSource/commit/9a866424f84b469783dfe559a510ffc93e00d64b): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":991,"timestampMs":1585051794000},{"description":"[9aa0ecd](https://github.com/aracred/TheSource/commit/9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":992,"timestampMs":1583864016000},{"description":"[9d0cacf](https://github.com/aracred/TheSource/commit/9d0cacf29ee5f6668426c0dd9cca12ad7af906aa): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":993,"timestampMs":1583561475000},{"description":"[9d8560f](https://github.com/aracred/TheSource/commit/9d8560f7a170cc2c0937ba7980dbcb466ad3140f): Automated deployment to update cred in /github/workspace/docs 2020-03-23","index":994,"timestampMs":1584922566000},{"description":"[9ee6d1b](https://github.com/aracred/TheSource/commit/9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4): Automated deployment to update cred in /github/workspace/docs 2020-03-22","index":995,"timestampMs":1584836115000},{"description":"[a433d84](https://github.com/aracred/TheSource/commit/a433d846e9ff70c98dba741fbfff7fa1985a67fb): Update generate-cred.yml","index":996,"timestampMs":1586103659000},{"description":"[a501a74](https://github.com/aracred/TheSource/commit/a501a7454bf19ee03003196bfec9560d48c978d2): Start running update action","index":997,"timestampMs":1581900781000},{"description":"[a6853a8](https://github.com/aracred/TheSource/commit/a6853a839b1101b077e3b80c3106da01be2807ea): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":998,"timestampMs":1584749757000},{"description":"[a7c425d](https://github.com/aracred/TheSource/commit/a7c425d5f9edb1106b5934cafe4cbfc221a08e9c): Merge pull request #20 from MetaFam/fix/trailing-comma","index":999,"timestampMs":1583124366000},{"description":"[a802f7c](https://github.com/aracred/TheSource/commit/a802f7c669324c951f6554fcf391f886ba3150f8): Update config with new Discourse server","index":1000,"timestampMs":1582959276000},{"description":"[a999d6b](https://github.com/aracred/TheSource/commit/a999d6bd35df198bab6252404325d7a944983410): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1001,"timestampMs":1583691175000},{"description":"[a0fb9b8](https://github.com/aracred/TheSource/commit/a0fb9b822baab9e0fce8433be3de7d423e1b4dd6): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1002,"timestampMs":1583064673000},{"description":"[a2547eb](https://github.com/aracred/TheSource/commit/a2547eb7d1835e050a897172b563ccb69b769711): Automated deployment to update cred in /github/workspace/docs 2020-03-20","index":1003,"timestampMs":1584684556000},{"description":"[a2fd7e0](https://github.com/aracred/TheSource/commit/a2fd7e076795c62a07501d5fb71c03999cc4b145): Automated deployment to update cred in /github/workspace/docs 2020-03-10","index":1004,"timestampMs":1583842226000},{"description":"[a37a482](https://github.com/aracred/TheSource/commit/a37a48256d99a63fcf0a678ebbb34cca0fd95f23): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1005,"timestampMs":1585743137000},{"description":"[ae656a1](https://github.com/aracred/TheSource/commit/ae656a1a99e9a8cc227c187154123571d9d16872): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1006,"timestampMs":1583107978000},{"description":"[af89e8d](https://github.com/aracred/TheSource/commit/af89e8d6be326c34865a925f1be4c67877064e30): Delete scores.json","index":1007,"timestampMs":1586105574000},{"description":"[b439421](https://github.com/aracred/TheSource/commit/b4394213300ff4d72ebaca7c63cf919df306ead3): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1008,"timestampMs":1583096222000},{"description":"[b5ad5ee](https://github.com/aracred/TheSource/commit/b5ad5eea401b4f415b9da446187b893a7ceee1b5): Automated deployment to update cred in /github/workspace/docs 2020-03-24","index":1009,"timestampMs":1585030166000},{"description":"[b5df3c8](https://github.com/aracred/TheSource/commit/b5df3c8cd85cbe43606f2052f00631dbfcca42d9): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1010,"timestampMs":1585764755000},{"description":"[b6388db](https://github.com/aracred/TheSource/commit/b6388db5eb6a6fed56eba661db2b761ccddfd6fc): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1011,"timestampMs":1583993566000},{"description":"[b670574](https://github.com/aracred/TheSource/commit/b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1012,"timestampMs":1583972111000},{"description":"[b6920f3](https://github.com/aracred/TheSource/commit/b6920f3b6646522b3fc0f93e6343506b485c158b): fix trailing comma in json","index":1013,"timestampMs":1583124346000},{"description":"[b6968e4](https://github.com/aracred/TheSource/commit/b6968e47899cfc22652e1f1dbb3b82ed98cc5232): Create README.md","index":1014,"timestampMs":1586106281000},{"description":"[b8319d3](https://github.com/aracred/TheSource/commit/b8319d3616c7d5e6c2af8087ea63e9fab1a73c02): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1015,"timestampMs":1583619966000},{"description":"[b842ed3](https://github.com/aracred/TheSource/commit/b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1016,"timestampMs":1583302409000},{"description":"[b85c0b5](https://github.com/aracred/TheSource/commit/b85c0b5ab98357c6dc3af69297e6a795851c89f4): Automated deployment to update cred in /github/workspace/docs 2020-02-17","index":1017,"timestampMs":1581903422000},{"description":"[b8c9da4](https://github.com/aracred/TheSource/commit/b8c9da4bcc0d1a50add9423473a6c162cdb99597): Add wiki to projects","index":1018,"timestampMs":1585361688000},{"description":"[b9309e4](https://github.com/aracred/TheSource/commit/b9309e4d44289af8341f43103b7be195df5998b0): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1019,"timestampMs":1583778483000},{"description":"[b038f1c](https://github.com/aracred/TheSource/commit/b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1020,"timestampMs":1583583119000},{"description":"[b1e2418](https://github.com/aracred/TheSource/commit/b1e24185c567c4f9a60959559e6ff1ac7dbb6279): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1021,"timestampMs":1583043139000},{"description":"[b3a4034](https://github.com/aracred/TheSource/commit/b3a4034f04332a6546a7d03ee781f10dbf9e32f3): Merge pull request #2 from pythonpete32/patch-1","index":1022,"timestampMs":1586104090000},{"description":"[b3f667c](https://github.com/aracred/TheSource/commit/b3f667c746d54fd1e7ef41d4e91186ff705cb01a): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1023,"timestampMs":1583237458000},{"description":"[ba08f21](https://github.com/aracred/TheSource/commit/ba08f21f38fef25e65a006e4af00591f623cba88): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1024,"timestampMs":1583194441000},{"description":"[ba693f5](https://github.com/aracred/TheSource/commit/ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8): Automated deployment to update cred in /github/workspace/docs 2020-03-03","index":1025,"timestampMs":1583215867000},{"description":"[bbca4d0](https://github.com/aracred/TheSource/commit/bbca4d024098c749b7064b70c24c416061255c75): Switch to automatic updates","index":1026,"timestampMs":1581914667000},{"description":"[bbc54e4](https://github.com/aracred/TheSource/commit/bbc54e4947190da8c37d767e004339b62fb34aac): Automated deployment to update cred in /github/workspace/docs 2020-03-30","index":1027,"timestampMs":1585527211000},{"description":"[bdb4c8a](https://github.com/aracred/TheSource/commit/bdb4c8a38c86a4598b2da69391fc84939148d738): Automate cred updates","index":1028,"timestampMs":1581903056000},{"description":"[bdd1d95](https://github.com/aracred/TheSource/commit/bdd1d95095fc99186754502c96c1ecbff216fb14): Automated deployment to update cred in /github/workspace/docs 2020-03-09","index":1029,"timestampMs":1583734323000},{"description":"[bfd321a](https://github.com/aracred/TheSource/commit/bfd321a5c384dc7fab99062bcc3491705303a176): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1030,"timestampMs":1586105832000},{"description":"[c461bb4](https://github.com/aracred/TheSource/commit/c461bb40366be6124cc8e09af25741c5e65b1a6a): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1031,"timestampMs":1583950431000},{"description":"[c4ae2b9](https://github.com/aracred/TheSource/commit/c4ae2b95edd223a2b3269f4913c5a237e7557194): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1032,"timestampMs":1583345470000},{"description":"[c519a09](https://github.com/aracred/TheSource/commit/c519a0916f23866c99c0c76bad33dec09c4a1052): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1033,"timestampMs":1586045554000},{"description":"[c5eeac9](https://github.com/aracred/TheSource/commit/c5eeac948569a06622740d0b9340c622ddb469d3): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1034,"timestampMs":1584771018000},{"description":"[c61bc79](https://github.com/aracred/TheSource/commit/c61bc79183374e7e37a8456ff47f662a2bc21baf): Automated deployment to update cred in /github/workspace/docs 2020-04-04","index":1035,"timestampMs":1585959190000},{"description":"[c7acef8](https://github.com/aracred/TheSource/commit/c7acef8a5664d3dd57059e8cc447c4f1dbe269db): Automated deployment to update cred in /github/workspace/docs 2020-03-14","index":1036,"timestampMs":1584144938000},{"description":"[c85e7ad](https://github.com/aracred/TheSource/commit/c85e7ad86fb08653971ed365f4f316d4577178ed): Update identity for Hammad","index":1037,"timestampMs":1582941407000},{"description":"[c00a25e](https://github.com/aracred/TheSource/commit/c00a25ed5500c60da5520e12c68db9dc1e003cd1): Merge c85e7ad86fb08653971ed365f4f316d4577178ed into 225168780b86a4b41d38845653c5d8759d1d37ad","index":1038,"timestampMs":1582941413000},{"description":"[c37818d](https://github.com/aracred/TheSource/commit/c37818dc54db302c1bb2bfe99312084cb6452263): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1039,"timestampMs":1583125241000},{"description":"[cc4e4ff](https://github.com/aracred/TheSource/commit/cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932): Automated deployment to update cred in /github/workspace/docs 2020-04-02","index":1040,"timestampMs":1585786422000},{"description":"[cf359f5](https://github.com/aracred/TheSource/commit/cf359f56a9e7d9e380a729fe64f0fd9e06853c21): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1041,"timestampMs":1583647930000},{"description":"[cf41636](https://github.com/aracred/TheSource/commit/cf41636379acd5fb9e27af62727fdf64a111d959): Automated deployment to update cred in /github/workspace/docs 2020-03-05","index":1042,"timestampMs":1583388676000},{"description":"[d455555](https://github.com/aracred/TheSource/commit/d4555554d347b2385ac96a530f5628491c2c724c): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1043,"timestampMs":1585202969000},{"description":"[d593b12](https://github.com/aracred/TheSource/commit/d593b126af5ccde32fe610fbc399f9233c4fcdcf): Automated deployment to update cred in /github/workspace/docs 2020-03-01","index":1044,"timestampMs":1583021626000},{"description":"[d7e5763](https://github.com/aracred/TheSource/commit/d7e5763c37582067d930e53718273eef67997db7): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1045,"timestampMs":1583885686000},{"description":"[d8034c1](https://github.com/aracred/TheSource/commit/d8034c1a997a6f3762eb64abefd3983ca5c17b27): Automated deployment to update cred in /github/workspace/docs 2020-03-16","index":1046,"timestampMs":1584317721000},{"description":"[d9b40e0](https://github.com/aracred/TheSource/commit/d9b40e071c2f216b8fb4cebce788ec1bf892ac7c): Automated deployment to update cred in /github/workspace/docs 2020-03-21","index":1047,"timestampMs":1584792698000},{"description":"[d0cc40b](https://github.com/aracred/TheSource/commit/d0cc40b28ca9129e733107d99730dfbcd9449273): Update generate-cred.yml","index":1048,"timestampMs":1586103656000},{"description":"[d210d6f](https://github.com/aracred/TheSource/commit/d210d6f387860b4736193624125ec5e1b8f5c88a): Automated deployment to update cred in /github/workspace/docs 2020-03-17","index":1049,"timestampMs":1584447107000},{"description":"[def7f01](https://github.com/aracred/TheSource/commit/def7f01015008f1aefda848d93661555c086231a): Add preview data","index":1050,"timestampMs":1581898638000},{"description":"[df39053](https://github.com/aracred/TheSource/commit/df39053f37bf93823cd4364b819ca1289e4481b1): Automated deployment to update cred in /github/workspace/docs 2020-03-26","index":1051,"timestampMs":1585181592000},{"description":"[df9f742](https://github.com/aracred/TheSource/commit/df9f7423f0e18a57835324b459fe243d3f3e55ab): Automated deployment to update cred in /github/workspace/docs 2020-04-05","index":1052,"timestampMs":1586088576000},{"description":"[e5c721b](https://github.com/aracred/TheSource/commit/e5c721ba787d25a591d470c5ba11d9bd41e1797f): Merge pull request #19 from mzargham/master","index":1053,"timestampMs":1583124164000},{"description":"[e63ec70](https://github.com/aracred/TheSource/commit/e63ec70c3b75de539e86faf77c9e44f83753cb1f): Automated deployment to update cred in /github/workspace/docs 2020-03-31","index":1054,"timestampMs":1585635193000},{"description":"[e00d2fb](https://github.com/aracred/TheSource/commit/e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4): Automated deployment to update cred in /github/workspace/docs 2020-03-07","index":1055,"timestampMs":1583545284000},{"description":"[e0cd354](https://github.com/aracred/TheSource/commit/e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f): Fix extra comma","index":1056,"timestampMs":1582941750000},{"description":"[ea5b35e](https://github.com/aracred/TheSource/commit/ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2): Update project.json","index":1057,"timestampMs":1583592448000},{"description":"[ebfca23](https://github.com/aracred/TheSource/commit/ebfca230987726fb6d0c74cdba1e7346b5d08345): Automated deployment to update cred in /github/workspace/docs 2020-03-08","index":1058,"timestampMs":1583626507000},{"description":"[ec5436b](https://github.com/aracred/TheSource/commit/ec5436b68ec36cea41f923ae2d95841b7dbe678a): Automated deployment to update cred in /github/workspace/docs 2020-04-01","index":1059,"timestampMs":1585721531000},{"description":"[eca1c8e](https://github.com/aracred/TheSource/commit/eca1c8e4fb9897f86e7192f1741d00509707a42d): Automated deployment to update cred in /github/workspace/docs 2020-03-02","index":1060,"timestampMs":1583151030000},{"description":"[ee30ad2](https://github.com/aracred/TheSource/commit/ee30ad273845bf58d551566ffe5c4e87e98c07c2): Trigger update","index":1061,"timestampMs":1585365677000},{"description":"[ef1a4e1](https://github.com/aracred/TheSource/commit/ef1a4e1d3bf70f9daccebdf3028ea8f476c26899): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1062,"timestampMs":1583518372000},{"description":"[f6a88b6](https://github.com/aracred/TheSource/commit/f6a88b69728fa2cbc9304a9d3a6193afa9aca17c): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1063,"timestampMs":1585419164000},{"description":"[f78660c](https://github.com/aracred/TheSource/commit/f78660ce09132d6127ab960a0fdb9f19f2b76893): Automated deployment to update cred in /github/workspace/docs 2020-03-12","index":1064,"timestampMs":1584036899000},{"description":"[f79294b](https://github.com/aracred/TheSource/commit/f79294b14e900ca927b3e9e5cf51972814cd2c50): Automated deployment to update cred in /github/workspace/docs 2020-03-04","index":1065,"timestampMs":1583323781000},{"description":"[f7ecdc6](https://github.com/aracred/TheSource/commit/f7ecdc6617ce77574676654a84f58313ad9f84a8): Automated deployment to update cred in /github/workspace/docs 2020-03-11","index":1066,"timestampMs":1583907011000},{"description":"[f819ec5](https://github.com/aracred/TheSource/commit/f819ec520e754c4adb46d13d0126fa48f03b0dac): Automated deployment to update cred in /github/workspace/docs 2020-03-28","index":1067,"timestampMs":1585361881000},{"description":"[f96bc3f](https://github.com/aracred/TheSource/commit/f96bc3f66106ed4341d674b5a37a1fce8035c922): Automated deployment to update cred in /github/workspace/docs 2020-03-06","index":1068,"timestampMs":1583475056000},{"description":"[f1b1a34](https://github.com/aracred/TheSource/commit/f1b1a348514a8d88750c2774a379a00b85ea0810): Automated deployment to update cred in /github/workspace/docs 2020-03-15","index":1069,"timestampMs":1584295996000},{"description":"[f3d076f](https://github.com/aracred/TheSource/commit/f3d076f67797f6c3491e046a5dcdce0372890de5): Automated deployment to update cred in /github/workspace/docs 2020-03-25","index":1070,"timestampMs":1585138236000},{"description":"[fe33dab](https://github.com/aracred/TheSource/commit/fe33dab74a05f43d1e24044dc4413ff0e72aad50): Automated deployment to update cred in /github/workspace/docs 2020-03-19","index":1071,"timestampMs":1584641608000},{"description":"[0470e9f](https://github.com/aracred/AraCred/commit/0470e9f5c13a7c36b0934ca935365649872ad849): Add jest, documentation","index":1072,"timestampMs":1586425053000},{"description":"[06e6bf0](https://github.com/aracred/AraCred/commit/06e6bf089f69a108cae63a413e3a3d0a6c0d40fa): Create run_cli.yml","index":1073,"timestampMs":1586114858000},{"description":"[0764e2b](https://github.com/aracred/AraCred/commit/0764e2b7701a6cd6076622bce90c3d3030e7d08a): Merge branch 'mainnet-test'","index":1074,"timestampMs":1586658939000},{"description":"[08aa4aa](https://github.com/aracred/AraCred/commit/08aa4aa95a936798295f7d02cfa54c1441ae7aa3): add .gitignore","index":1075,"timestampMs":1586425366000},{"description":"[0097f20](https://github.com/aracred/AraCred/commit/0097f202e6f5d2c003e2ce168d124909f19458d7): Update Address book","index":1076,"timestampMs":1586377189000},{"description":"[00ab698](https://github.com/aracred/AraCred/commit/00ab6982140ebd949db7457512b233b7aa3afa1f): Fix settings","index":1077,"timestampMs":1586109857000},{"description":"[02f4d36](https://github.com/aracred/AraCred/commit/02f4d3623ae4e89fa6232477d97fe32b27aae7c5): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1078,"timestampMs":1586283283000},{"description":"[0326166](https://github.com/aracred/AraCred/commit/0326166091410578eaf7c25d9f6736cd4533f9cd): test setupAragon","index":1079,"timestampMs":1586439223000},{"description":"[03604a7](https://github.com/aracred/AraCred/commit/03604a7d8f9a6f488f7990309e70066a1260483d): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1080,"timestampMs":1586434473000},{"description":"[0388fb0](https://github.com/aracred/AraCred/commit/0388fb0219a7460e6726b34835c670986be5406c): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1081,"timestampMs":1586757849000},{"description":"[03e1112](https://github.com/aracred/AraCred/commit/03e1112bf4099083d81386043099e4876599d53d): setup husky","index":1082,"timestampMs":1586430244000},{"description":"[0a23c18](https://github.com/aracred/AraCred/commit/0a23c189b1d776985b6759cfb65b75a5b0dbe388): setup husky","index":1083,"timestampMs":1586430128000},{"description":"[0b35141](https://github.com/aracred/AraCred/commit/0b351412cfa92c8edabea1449da16a7a2128c81f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1084,"timestampMs":1586822727000},{"description":"[0cc15c5](https://github.com/aracred/AraCred/commit/0cc15c54f0ac08b76b0b20231523123c68e787cc): fix","index":1085,"timestampMs":1586638157000},{"description":"[0e9dbd8](https://github.com/aracred/AraCred/commit/0e9dbd8406b256f6b5e553d6769683a55909ab84): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1086,"timestampMs":1586462221000},{"description":"[16309da](https://github.com/aracred/AraCred/commit/16309da6c786efe9dc1f745c61ad4f2c2ad61d76): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1087,"timestampMs":1586369661000},{"description":"[1798e29](https://github.com/aracred/AraCred/commit/1798e29eb0b6d8dd5e4f14ffcc2f25644e736762): Update README.md","index":1088,"timestampMs":1586535321000},{"description":"[17ec0dc](https://github.com/aracred/AraCred/commit/17ec0dcf84726a4da739f0cbe36cd1908477e4cb): refactor setupAragon","index":1089,"timestampMs":1586436690000},{"description":"[1834ed5](https://github.com/aracred/AraCred/commit/1834ed59b6a58195aef57af492f3122a94aac239): update readme","index":1090,"timestampMs":1586760993000},{"description":"[191e73e](https://github.com/aracred/AraCred/commit/191e73e429ab193e59189f44b363d69613ee0315): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1091,"timestampMs":1586607165000},{"description":"[11a45eb](https://github.com/aracred/AraCred/commit/11a45eb188a756e31f2ece0afcf10afb5e30112f): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1092,"timestampMs":1586887494000},{"description":"[12f5e68](https://github.com/aracred/AraCred/commit/12f5e68f287c17d2e7fbe424b996b269c74c0e8f): Reorg folder structre","index":1093,"timestampMs":1586425839000},{"description":"[1ea710e](https://github.com/aracred/AraCred/commit/1ea710efed95a3abd2613ee16b3aaea6110def50): session 3 photos","index":1094,"timestampMs":1586994934000},{"description":"[1eea54a](https://github.com/aracred/AraCred/commit/1eea54a1361eb6aedba221f65f86205866b97322): Create updateDiscord.yml","index":1095,"timestampMs":1586475320000},{"description":"[275d163](https://github.com/aracred/AraCred/commit/275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1096,"timestampMs":1586211419000},{"description":"[29d9a8e](https://github.com/aracred/AraCred/commit/29d9a8ef0d738d8b1bdae873c892af41858cda0a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1097,"timestampMs":1586635242000},{"description":"[20796df](https://github.com/aracred/AraCred/commit/20796df7555b0c191dd575542000d50d98c034cc): log deleted?","index":1098,"timestampMs":1586636313000},{"description":"[21df431](https://github.com/aracred/AraCred/commit/21df4319db26f8c3ed6eed74b2076026cad5c070): Update project.json","index":1099,"timestampMs":1586972808000},{"description":"[221754a](https://github.com/aracred/AraCred/commit/221754a5dbe3ebdf6a0fc5080de82669f5476b83): refactor setupAragon","index":1100,"timestampMs":1586436960000},{"description":"[234d3b0](https://github.com/aracred/AraCred/commit/234d3b02b5491114f1257e23fcaf2bf880eee376): :((","index":1101,"timestampMs":1586645851000},{"description":"[2aaae9c](https://github.com/aracred/AraCred/commit/2aaae9c777eb4801ef65192afd1c7553ceb74012): Update run_cli.yml","index":1102,"timestampMs":1586114997000},{"description":"[2b67c25](https://github.com/aracred/AraCred/commit/2b67c252af08687a1c02e924757e383977d4d4d7): refactor setupAragon","index":1103,"timestampMs":1586436983000},{"description":"[2bd813f](https://github.com/aracred/AraCred/commit/2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6): Install aracred + aragon action","index":1104,"timestampMs":1586439726000},{"description":"[2d290b2](https://github.com/aracred/AraCred/commit/2d290b2288a14d494f0fc18bfac882ef6c617e6a): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1105,"timestampMs":1586844255000},{"description":"[36ed95d](https://github.com/aracred/AraCred/commit/36ed95ddf8349ba3d557bfbbef066b2559b432a3): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1106,"timestampMs":1586718195000},{"description":"[39dae46](https://github.com/aracred/AraCred/commit/39dae46151fcde41ea0b062ae95fde4109142e5b): Update addressbook.json","index":1107,"timestampMs":1587058277000},{"description":"[30ab2ab](https://github.com/aracred/AraCred/commit/30ab2ab8774f20e9541f08c657e6ec9ab08504f0): Update project.json","index":1108,"timestampMs":1587049226000},{"description":"[30ebf64](https://github.com/aracred/AraCred/commit/30ebf64342f800953d06f2b0ed888ac8d4495f69): remove .json linting","index":1109,"timestampMs":1586430447000},{"description":"[314f037](https://github.com/aracred/AraCred/commit/314f037efaaf34002934fac72ee5b8c34e633117): test setupAragon","index":1110,"timestampMs":1586438375000},{"description":"[325b973](https://github.com/aracred/AraCred/commit/325b973a78cbe14ff3f5e9766faee18e85d5a408): Update project.json","index":1111,"timestampMs":1586710226000},{"description":"[32d6fc7](https://github.com/aracred/AraCred/commit/32d6fc725adb844ed330499482232f2876de58d1): Fix settings","index":1112,"timestampMs":1586110667000},{"description":"[336edf6](https://github.com/aracred/AraCred/commit/336edf6f3e0b661f947432cf39bbd9d26299f29d): Update project.json","index":1113,"timestampMs":1586718047000},{"description":"[3a5b333](https://github.com/aracred/AraCred/commit/3a5b33363a28c7bf7bc62329095b08110996d659): test setupAragon","index":1114,"timestampMs":1586439440000},{"description":"[3a649e8](https://github.com/aracred/AraCred/commit/3a649e81c448757920b8c8bdcf8fc392f84d3580): We Have Liftoff","index":1115,"timestampMs":1586658493000},{"description":"[3c52923](https://github.com/aracred/AraCred/commit/3c52923940969e0594c9693d27e80bf81e49bdfb): Automated deployment to update cred in /github/workspace/docs 2020-04-06","index":1116,"timestampMs":1586211419000},{"description":"[3c716ca](https://github.com/aracred/AraCred/commit/3c716ca39a305e5d8a9b2a5aa466039466d05a38): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1117,"timestampMs":1586952325000},{"description":"[3d84fcf](https://github.com/aracred/AraCred/commit/3d84fcf16de8bdd78f1098650394a66a29709a40): Update run_cli.yml","index":1118,"timestampMs":1586641745000},{"description":"[3e37600](https://github.com/aracred/AraCred/commit/3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1119,"timestampMs":1586704923000},{"description":"[4474d1b](https://github.com/aracred/AraCred/commit/4474d1b88abf39aa94df664898e4832fc05e52cc): Update README.md","index":1120,"timestampMs":1586796945000},{"description":"[4477235](https://github.com/aracred/AraCred/commit/44772353f8d950226d909b12778cbed4df3ed866): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1121,"timestampMs":1586348063000},{"description":"[44ea41a](https://github.com/aracred/AraCred/commit/44ea41a64de0f121ff05a4c07c6bb51e35eb5035): add readme","index":1122,"timestampMs":1586446367000},{"description":"[45d3445](https://github.com/aracred/AraCred/commit/45d3445cd814d4666f19f4b1b480984f1c0381eb): Update addressbook.json","index":1123,"timestampMs":1586978574000},{"description":"[45f25ea](https://github.com/aracred/AraCred/commit/45f25ea4eb646427c06e58b7e4ce2c4cd385c329): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1124,"timestampMs":1586535464000},{"description":"[47d595c](https://github.com/aracred/AraCred/commit/47d595cee7fd82afdb8666263baa96555bec7b30): move to new repo","index":1125,"timestampMs":1586107822000},{"description":"[40036a3](https://github.com/aracred/AraCred/commit/40036a386b07c41b89e594736dadb6134cf182de): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1126,"timestampMs":1586498582000},{"description":"[4a623fb](https://github.com/aracred/AraCred/commit/4a623fbc3735c9a32d10199880214cc79caa4004): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1127,"timestampMs":1586712241000},{"description":"[4acea81](https://github.com/aracred/AraCred/commit/4acea81dd65135e7afd23cd4c5484dae44bcb324): Fix settings","index":1128,"timestampMs":1586111848000},{"description":"[4dc6dc2](https://github.com/aracred/AraCred/commit/4dc6dc24deb0f914eabc017a1e488a4d62f1a893): Merge pull request #11 from aracred/sc-patch","index":1129,"timestampMs":1586450203000},{"description":"[4ec6bdc](https://github.com/aracred/AraCred/commit/4ec6bdc6a120e123052ebf690ddf6f32b9c35722): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1130,"timestampMs":1586649806000},{"description":"[5409041](https://github.com/aracred/AraCred/commit/54090419b371cac747ca19327d54c4cddb375f05): Update devops.yml","index":1131,"timestampMs":1586208161000},{"description":"[554a82b](https://github.com/aracred/AraCred/commit/554a82bc05cb713e92e8b3523b521078daf829f0): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1132,"timestampMs":1586779463000},{"description":"[56e1450](https://github.com/aracred/AraCred/commit/56e1450abd29457d3aefbdaef3e38562727b7628): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1133,"timestampMs":1586477016000},{"description":"[5023eee](https://github.com/aracred/AraCred/commit/5023eee71c9c3f2f16de1b22e9f37fda26c2f023): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1134,"timestampMs":1586995532000},{"description":"[52c6264](https://github.com/aracred/AraCred/commit/52c6264dbafc69c14a2381a41075ca4fbb020653): remove recursive call to grain","index":1135,"timestampMs":1586608102000},{"description":"[53b6f1b](https://github.com/aracred/AraCred/commit/53b6f1b980b797f92d59fc4912b2fe6e999f774a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1136,"timestampMs":1586628192000},{"description":"[53d9b62](https://github.com/aracred/AraCred/commit/53d9b62862d0e8ef597dbffcbd0da8bcd12100cc): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1137,"timestampMs":1586736284000},{"description":"[5ae6db7](https://github.com/aracred/AraCred/commit/5ae6db74ec638222cb60957c3105e15de7f84457): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1138,"timestampMs":1586712506000},{"description":"[5d168f1](https://github.com/aracred/AraCred/commit/5d168f1298b62e831159fc316e394491b8386aa8): test setupAragon","index":1139,"timestampMs":1586438648000},{"description":"[5dd05e3](https://github.com/aracred/AraCred/commit/5dd05e3605e9940f65f2059e8c4286077a6439db): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1140,"timestampMs":1586556340000},{"description":"[5f68901](https://github.com/aracred/AraCred/commit/5f689010f6e0a438513b7e44ef37ae12d59ddf91): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1141,"timestampMs":1586412877000},{"description":"[5fc99f0](https://github.com/aracred/AraCred/commit/5fc99f0926a38140bc41ab5322e28e43f5b50969): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1142,"timestampMs":1586520161000},{"description":"[66f2702](https://github.com/aracred/AraCred/commit/66f27020fa0bd12851a0de1b206abec8c0b5e55d): merge","index":1143,"timestampMs":1586447296000},{"description":"[67b5858](https://github.com/aracred/AraCred/commit/67b58587f295e53b396fed2b68ab34032fd86420): Split yml files","index":1144,"timestampMs":1586262990000},{"description":"[68038d1](https://github.com/aracred/AraCred/commit/68038d157338b257f25c21b69def40c3eed1e43e): added SourceCred actions","index":1145,"timestampMs":1586108344000},{"description":"[603c5f7](https://github.com/aracred/AraCred/commit/603c5f7b7e2afb54619ebe705b969a1acb102bf6): Update project.json","index":1146,"timestampMs":1586822144000},{"description":"[6044da7](https://github.com/aracred/AraCred/commit/6044da77d77cd5f0bf782fd47faf7813cb9a00d7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1147,"timestampMs":1586426011000},{"description":"[604ba87](https://github.com/aracred/AraCred/commit/604ba8761cdddc84bfa66485fe367495e5c8a65a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1148,"timestampMs":1586619438000},{"description":"[60df4a2](https://github.com/aracred/AraCred/commit/60df4a2278ec3dd51317900064eb3061be31c3b7): Update project.json","index":1149,"timestampMs":1586712379000},{"description":"[62d4724](https://github.com/aracred/AraCred/commit/62d47242332f4e1d86f7d7ae460f6dc998344aa2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1150,"timestampMs":1586631415000},{"description":"[6bc1161](https://github.com/aracred/AraCred/commit/6bc1161d99c436a23c35f5477862677701ef72e7): Merge branch 'master' of https://github.com/aracred/AraCred","index":1151,"timestampMs":1586629712000},{"description":"[6f1a396](https://github.com/aracred/AraCred/commit/6f1a3968daa1e3d2bd607f81a599ac5ebf73f717): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1152,"timestampMs":1586263834000},{"description":"[6f4ff7a](https://github.com/aracred/AraCred/commit/6f4ff7a024df84c214317b9c950d77f3ae3c4f57): Merge pull request #20 from aracred/add-evalir-aracred","index":1153,"timestampMs":1586810697000},{"description":"[6fb58d2](https://github.com/aracred/AraCred/commit/6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1154,"timestampMs":1586541781000},{"description":"[753c27e](https://github.com/aracred/AraCred/commit/753c27ee7d264f00c566fe6f56722528f1028704): switch to rinkeby","index":1155,"timestampMs":1586630579000},{"description":"[7544c9c](https://github.com/aracred/AraCred/commit/7544c9c062ca14c025caa6d2d859e346287f5e06): logging","index":1156,"timestampMs":1586640176000},{"description":"[758f9eb](https://github.com/aracred/AraCred/commit/758f9ebb14e2687de4f888bc94f872a610174a9f): Add Evalir to Aracred","index":1157,"timestampMs":1586802604000},{"description":"[75ebd02](https://github.com/aracred/AraCred/commit/75ebd0228f654f094c750b9885c5fe5aceb72486): Update project.json","index":1158,"timestampMs":1586972788000},{"description":"[777514f](https://github.com/aracred/AraCred/commit/777514f100a7dc7df22a9a3f2c57f6516e8efc44): fix run_sc .yml fies","index":1159,"timestampMs":1586264143000},{"description":"[78714ca](https://github.com/aracred/AraCred/commit/78714ca856356791aae2576d01eb1c27fc7e4c3f): fix CLI action, disable SC run on push","index":1160,"timestampMs":1586443674000},{"description":"[713acbd](https://github.com/aracred/AraCred/commit/713acbd4593a7a10b0544aaab7fc4ac05a66f9ae): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1161,"timestampMs":1586671402000},{"description":"[73505c3](https://github.com/aracred/AraCred/commit/73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db): Automated deployment to update cred in /github/workspace/docs 2020-04-07","index":1162,"timestampMs":1586265411000},{"description":"[73dbfea](https://github.com/aracred/AraCred/commit/73dbfea00d269ff953ee50c034f1c6939743a5de): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1163,"timestampMs":1586909106000},{"description":"[7a99196](https://github.com/aracred/AraCred/commit/7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1164,"timestampMs":1586456075000},{"description":"[7ad5a2a](https://github.com/aracred/AraCred/commit/7ad5a2af6206fa2c6d894364d1f7f40b55f08149): switch to rinkeby","index":1165,"timestampMs":1586629689000},{"description":"[7b20ff3](https://github.com/aracred/AraCred/commit/7b20ff37a9650a134c6f55fffd04fbdd5df83b43): Update run_cli.yml","index":1166,"timestampMs":1586642724000},{"description":"[7bdeb69](https://github.com/aracred/AraCred/commit/7bdeb692b04c1a855be5d7dda172d87caafa3f1b): Merge pull request #27 from mzargham/worksession-3-photos","index":1167,"timestampMs":1587042850000},{"description":"[7d4bf5a](https://github.com/aracred/AraCred/commit/7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf): Update run_sc.yml","index":1168,"timestampMs":1586461703000},{"description":"[7e0a5d6](https://github.com/aracred/AraCred/commit/7e0a5d65716af527389ac6bb38d14950d482e415): update .yml fies","index":1169,"timestampMs":1586264058000},{"description":"[7ea5916](https://github.com/aracred/AraCred/commit/7ea5916ad6f9de9841f277901506ab72a39bf157): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1170,"timestampMs":1586973850000},{"description":"[7fadabe](https://github.com/aracred/AraCred/commit/7fadabe4bad18a2e7326b241c874d5efbeb6a691): Update project.json","index":1171,"timestampMs":1586208446000},{"description":"[8849eeb](https://github.com/aracred/AraCred/commit/8849eeb9b3a0677fcc53c34ec1675a0e27cf0074): Merge pull request #1 from aracred/split-config","index":1172,"timestampMs":1586264565000},{"description":"[89ed10e](https://github.com/aracred/AraCred/commit/89ed10ec9153e166a0b7275c73003fc6fd86e76e): fix run_sc.yml fies","index":1173,"timestampMs":1586264365000},{"description":"[8a584e4](https://github.com/aracred/AraCred/commit/8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1174,"timestampMs":1586634125000},{"description":"[8b44ea0](https://github.com/aracred/AraCred/commit/8b44ea06f42e6a25fc0e87bfd38c28786001969a): MAINNET","index":1175,"timestampMs":1586633972000},{"description":"[8c62624](https://github.com/aracred/AraCred/commit/8c62624a48c8a907f8b30e548abdc4e3764fb0df): switch to rinkeby","index":1176,"timestampMs":1586630527000},{"description":"[8c79753](https://github.com/aracred/AraCred/commit/8c797532d4140aa6ce0d5514cc6ca749ec6223e3): fix processGrain","index":1177,"timestampMs":1586632841000},{"description":"[8ce123a](https://github.com/aracred/AraCred/commit/8ce123a903f0035d55349e86f54eb04838bb739f): Merge branch 'tidyRepo'","index":1178,"timestampMs":1586446829000},{"description":"[8dfd165](https://github.com/aracred/AraCred/commit/8dfd165458a81f0c67969620d6ab006b7e24aef0): add github workflows","index":1179,"timestampMs":1586437704000},{"description":"[8e13f39](https://github.com/aracred/AraCred/commit/8e13f39d1372b422a914857f324ee60abd2c795a): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1180,"timestampMs":1586630734000},{"description":"[8e56a3f](https://github.com/aracred/AraCred/commit/8e56a3f94f680b5419df0fbfba1e9c985a495345): :)","index":1181,"timestampMs":1586643749000},{"description":"[8e62a06](https://github.com/aracred/AraCred/commit/8e62a063ca7e54dc299eb6cabbf877a663b94c8f): Update project.json","index":1182,"timestampMs":1587058263000},{"description":"[8e80b8f](https://github.com/aracred/AraCred/commit/8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1183,"timestampMs":1586613015000},{"description":"[8fe6cb1](https://github.com/aracred/AraCred/commit/8fe6cb1f84b56fff85a3bd87661712256a6806ab): Update dao.json","index":1184,"timestampMs":1586556200000},{"description":"[96d3703](https://github.com/aracred/AraCred/commit/96d370369c4d00c35acbdbc499fed536101b6601): package.lock","index":1185,"timestampMs":1586426157000},{"description":"[971440a](https://github.com/aracred/AraCred/commit/971440a0ff594fb02bef0ed3320e9371e17bc2c3): Delete updateDiscord.yml","index":1186,"timestampMs":1586504576000},{"description":"[982a89d](https://github.com/aracred/AraCred/commit/982a89df2b5282578a7593eea49511ae803ee10b): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1187,"timestampMs":1586637613000},{"description":"[90694dc](https://github.com/aracred/AraCred/commit/90694dc47c350631227c33418a773a70137d5877): Update addressbook.json","index":1188,"timestampMs":1587050798000},{"description":"[912ad7c](https://github.com/aracred/AraCred/commit/912ad7ced1c783afb97c7d9a66f7c3f5e2799312): Update project.json","index":1189,"timestampMs":1587051668000},{"description":"[9227670](https://github.com/aracred/AraCred/commit/9227670ae651f3da852b6ec3555aa15713ecce86): Merge branch 'master' of https://github.com/aracred/AraCred","index":1190,"timestampMs":1586632115000},{"description":"[937417e](https://github.com/aracred/AraCred/commit/937417e50fd087e175a28471de2176cb56ec7003): Update run_cli.yml","index":1191,"timestampMs":1586115022000},{"description":"[9fdf441](https://github.com/aracred/AraCred/commit/9fdf4415ba620e87f0c8182df47265aa34f5f8fd): test patch","index":1192,"timestampMs":1586395769000},{"description":"[a462920](https://github.com/aracred/AraCred/commit/a462920043f7ded252ca746cf21c6a3dfe91325b): Update addressbook.json","index":1193,"timestampMs":1586978547000},{"description":"[a52d247](https://github.com/aracred/AraCred/commit/a52d2478c6e23704685c324883891a25f261069f): Update project.json","index":1194,"timestampMs":1587051026000},{"description":"[a6e243f](https://github.com/aracred/AraCred/commit/a6e243fcbfe540b52551bbb50c542ad07ee92e39): setup prettier","index":1195,"timestampMs":1586428289000},{"description":"[a7ea71e](https://github.com/aracred/AraCred/commit/a7ea71e19d10841f56da13b7bd52ec3b0b2a9469): Fix?","index":1196,"timestampMs":1586635956000},{"description":"[a8419d9](https://github.com/aracred/AraCred/commit/a8419d96792a217c1bb9462dfa71c8c738a87a16): Update project.json","index":1197,"timestampMs":1586717770000},{"description":"[a04b179](https://github.com/aracred/AraCred/commit/a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19): Update addressbook.json","index":1198,"timestampMs":1586975177000},{"description":"[a04cff6](https://github.com/aracred/AraCred/commit/a04cff65d72e1b96813ce58a0122a50378ac496d): Revert \"Update README.md\"","index":1199,"timestampMs":1586566089000},{"description":"[a04fe98](https://github.com/aracred/AraCred/commit/a04fe98b80805bd1b2eafab803bc54c45c360418): add ./log","index":1200,"timestampMs":1586637453000},{"description":"[a0931cb](https://github.com/aracred/AraCred/commit/a0931cbed5f9f91298af9d27a02d69468722488b): Update project.json","index":1201,"timestampMs":1586209230000},{"description":"[a356fe3](https://github.com/aracred/AraCred/commit/a356fe37b3ee2256d529a625a42d890962870096): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1202,"timestampMs":1586606578000},{"description":"[a3a0462](https://github.com/aracred/AraCred/commit/a3a0462dc68b9d35f30abd2ce16199a9450383f4): switch to mainnet","index":1203,"timestampMs":1586619306000},{"description":"[ab8fbf7](https://github.com/aracred/AraCred/commit/ab8fbf7d53b4152b4ec97c983405cc703df3a2bd): Merge branch 'master' of https://github.com/aracred/AraCred","index":1204,"timestampMs":1586635980000},{"description":"[ace3d82](https://github.com/aracred/AraCred/commit/ace3d821833c0157e8e3f74c06951fe79cbb49e7): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1205,"timestampMs":1586475455000},{"description":"[af3fc40](https://github.com/aracred/AraCred/commit/af3fc40b0b4f010f4236391bc245bab5c3fc5343): Automated deployment to update cred in /github/workspace/docs 2020-04-13","index":1206,"timestampMs":1586801019000},{"description":"[b4e879f](https://github.com/aracred/AraCred/commit/b4e879fb7c6c79a659dacc784a3e2165411d7531): test transactionSettings.json","index":1207,"timestampMs":1586440952000},{"description":"[b55a7a1](https://github.com/aracred/AraCred/commit/b55a7a196b8f85817e8548bf7b9afba1341131e2): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1208,"timestampMs":1586566249000},{"description":"[b5e53ec](https://github.com/aracred/AraCred/commit/b5e53ece75d30f3d379adb3a07c8cf652434e773): Update project.json","index":1209,"timestampMs":1586704728000},{"description":"[b859060](https://github.com/aracred/AraCred/commit/b85906087b6422297975a655808e1ddf998fdc8c): add .gitignore","index":1210,"timestampMs":1586425156000},{"description":"[b28ca12](https://github.com/aracred/AraCred/commit/b28ca121bfda152ce8bacc325aa7a31f9a3edb1e): Backfill worksession photos","index":1211,"timestampMs":1586810374000},{"description":"[b2ec064](https://github.com/aracred/AraCred/commit/b2ec0646a7533828b003a7cc525ac0ec48c5d9a0): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1212,"timestampMs":1586692988000},{"description":"[b344928](https://github.com/aracred/AraCred/commit/b34492813251b626e0ef02911d7a0fe28aaa2b0f): Merge pull request #21 from mzargham/worksession-photos","index":1213,"timestampMs":1586810650000},{"description":"[b3bfd81](https://github.com/aracred/AraCred/commit/b3bfd8136d25f8aacc2b9267a3700f36f366792e): MAINNET","index":1214,"timestampMs":1586633830000},{"description":"[b3f72b5](https://github.com/aracred/AraCred/commit/b3f72b5f3ed774a1891f2da1a3c1b60af9272d84): Update setupAragon.js","index":1215,"timestampMs":1586631279000},{"description":"[bab488e](https://github.com/aracred/AraCred/commit/bab488e0531a826777829e70c4cf8f620202e881): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1216,"timestampMs":1586304876000},{"description":"[bb4c806](https://github.com/aracred/AraCred/commit/bb4c80608db52c03a33b09edbf8fdbffc666c664): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1217,"timestampMs":1586659664000},{"description":"[bcc0d1e](https://github.com/aracred/AraCred/commit/bcc0d1e18f56c0ee098c7a1316afa5252c5d3392): Automated deployment to update cred in /github/workspace/docs 2020-04-08","index":1218,"timestampMs":1586326476000},{"description":"[be50399](https://github.com/aracred/AraCred/commit/be503991de7a3225cfc2888ab833abfccdb1d309): test setupAragon","index":1219,"timestampMs":1586439053000},{"description":"[be5b93a](https://github.com/aracred/AraCred/commit/be5b93ae59bf65b698f6ed6301d28218c8170e91): :((","index":1220,"timestampMs":1586645068000},{"description":"[bfb1be1](https://github.com/aracred/AraCred/commit/bfb1be19201eedf6f5556b76fb3cba77b694c535): Update addressbook.json","index":1221,"timestampMs":1587051708000},{"description":"[c46d5eb](https://github.com/aracred/AraCred/commit/c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3): Update project.json","index":1222,"timestampMs":1586461592000},{"description":"[c5c9f44](https://github.com/aracred/AraCred/commit/c5c9f44334709db3c28eb81f1ee928a3823ae003): configure eslint","index":1223,"timestampMs":1586426867000},{"description":"[c676d5b](https://github.com/aracred/AraCred/commit/c676d5b790126e2af137ca1c53c8048db443a88a): merge with mainnet branch","index":1224,"timestampMs":1586659020000},{"description":"[c852446](https://github.com/aracred/AraCred/commit/c85244688604991c9ee1ae17a7bf62373a004fd1): Update project.json","index":1225,"timestampMs":1586462092000},{"description":"[c8d413c](https://github.com/aracred/AraCred/commit/c8d413c01f9aa1c9d272f96283367268ff49103f): update DAO settings","index":1226,"timestampMs":1586445094000},{"description":"[c04c305](https://github.com/aracred/AraCred/commit/c04c305dff31a60a5ea91270b07b5b46c4b734c3): mints every 24 hours","index":1227,"timestampMs":1586659508000},{"description":"[c0622fc](https://github.com/aracred/AraCred/commit/c0622fcf93369e37f99e4809cea077710b9677d9): Update project.json","index":1228,"timestampMs":1586710445000},{"description":"[c09ce59](https://github.com/aracred/AraCred/commit/c09ce59f6cb00f62380a8dca641fbd016f0d70a5): Update project.json","index":1229,"timestampMs":1586461896000},{"description":"[c0f3224](https://github.com/aracred/AraCred/commit/c0f32243cff400f34b36897db4e64d3ae2cec253): rinkeby branch","index":1230,"timestampMs":1586640763000},{"description":"[c191e57](https://github.com/aracred/AraCred/commit/c191e57f44662bcb753ec4c08a25545b0d25e284): Automated deployment to update cred in /github/workspace/docs 2020-04-14","index":1231,"timestampMs":1586865848000},{"description":"[c264cfe](https://github.com/aracred/AraCred/commit/c264cfe1bc96c758079bffcd728f497d0d7c0117): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1232,"timestampMs":1587038694000},{"description":"[c34bc9c](https://github.com/aracred/AraCred/commit/c34bc9c573eacc008ca98653ddd2661f823ff9b2): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1233,"timestampMs":1587060270000},{"description":"[ca41c37](https://github.com/aracred/AraCred/commit/ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de): add mint.js","index":1234,"timestampMs":1586442756000},{"description":"[cba7b74](https://github.com/aracred/AraCred/commit/cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b): fingers crossed","index":1235,"timestampMs":1586656761000},{"description":"[ccde11b](https://github.com/aracred/AraCred/commit/ccde11b4e85afd9685dc9f58165148861adbe59e): logging","index":1236,"timestampMs":1586639218000},{"description":"[cee0c69](https://github.com/aracred/AraCred/commit/cee0c69332f9f5481d0ae7f1dcf1a8f92f346877): add setupAragon()","index":1237,"timestampMs":1586431949000},{"description":"[d44bc4f](https://github.com/aracred/AraCred/commit/d44bc4f2e2256f0ebe1af485b047d9567583ed85): Update project.json","index":1238,"timestampMs":1586711922000},{"description":"[d56ad45](https://github.com/aracred/AraCred/commit/d56ad45d57b3ca44c6702f66dbcf349dd39a9116): Update project.json","index":1239,"timestampMs":1586712103000},{"description":"[d63265d](https://github.com/aracred/AraCred/commit/d63265d1ec1ac6d5e5d661fc137bef3bc4752020): Update project.json","index":1240,"timestampMs":1586820040000},{"description":"[d6bcaf0](https://github.com/aracred/AraCred/commit/d6bcaf0ed530067e11be1321280fc83f3a289be2): Merge pull request #7 from aracred/processScores-patch","index":1241,"timestampMs":1586425693000},{"description":"[d8288bb](https://github.com/aracred/AraCred/commit/d8288bb356551f8609c84a09886c19fb4fd673b4): Create .deleteme","index":1242,"timestampMs":1586646488000},{"description":"[d83736f](https://github.com/aracred/AraCred/commit/d83736f0f5cc5c3fc415146a5ad80145b3a565a7): Update dao.json","index":1243,"timestampMs":1586657456000},{"description":"[d01e1a1](https://github.com/aracred/AraCred/commit/d01e1a1762cde70b0fb49e82ec5432de6d691fb3): Fix settings","index":1244,"timestampMs":1586109264000},{"description":"[d130287](https://github.com/aracred/AraCred/commit/d13028772ab946a65da8787a255248337864a5ba): test patch","index":1245,"timestampMs":1586395938000},{"description":"[d219bd2](https://github.com/aracred/AraCred/commit/d219bd2f62a0ec8ac06b82daf83499442e3cb173): edit workflow name","index":1246,"timestampMs":1586443142000},{"description":"[d383b8f](https://github.com/aracred/AraCred/commit/d383b8fd2e6815eb8a5099785a7ef5c4393e531e): Update project.json","index":1247,"timestampMs":1586704788000},{"description":"[da69104](https://github.com/aracred/AraCred/commit/da69104f37bc78c1c71a34b9fafe537f875ca7dc): remove cache","index":1248,"timestampMs":1586612834000},{"description":"[da9fa8e](https://github.com/aracred/AraCred/commit/da9fa8ec523e360ace96eba7bc72bedadc69c8ac): add mint to workflow","index":1249,"timestampMs":1586443040000},{"description":"[dbb4bbb](https://github.com/aracred/AraCred/commit/dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1250,"timestampMs":1586584977000},{"description":"[dc00826](https://github.com/aracred/AraCred/commit/dc008266ba36121c746ddb6b60121b6e084d3065): Finalise setupAragon","index":1251,"timestampMs":1586439553000},{"description":"[defb8c5](https://github.com/aracred/AraCred/commit/defb8c56dbc8ed6a58674a7c569010ddc17fea0b): add sc config files","index":1252,"timestampMs":1586449851000},{"description":"[e4db1e5](https://github.com/aracred/AraCred/commit/e4db1e5c01390590a53e47424b6fc6389fbed459): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1253,"timestampMs":1586646613000},{"description":"[e5810c7](https://github.com/aracred/AraCred/commit/e5810c7e956182f58bacafd24c51f8be7e6af31f): add process grain, add DAO config file","index":1254,"timestampMs":1586440769000},{"description":"[e7d262b](https://github.com/aracred/AraCred/commit/e7d262bceecfcab743754d6d3a41fea1d74be955): Merge branch 'master' of https://github.com/aracred/AraCred","index":1255,"timestampMs":1586638167000},{"description":"[e86fcfd](https://github.com/aracred/AraCred/commit/e86fcfd2e1ddf643bc06ef0a08d439899b509c8a): fix mint.js","index":1256,"timestampMs":1586442958000},{"description":"[e8c0367](https://github.com/aracred/AraCred/commit/e8c036745f6c3d82f34e46e6f40ce520f53be1ef): make SC run","index":1257,"timestampMs":1586443278000},{"description":"[e8d2566](https://github.com/aracred/AraCred/commit/e8d2566e023a7cefb04c5157b0f85568fcb9a3c5): Automated deployment to update cred in /github/workspace/docs 2020-04-16","index":1258,"timestampMs":1587017056000},{"description":"[e11bcaa](https://github.com/aracred/AraCred/commit/e11bcaa214504bd338f41f0684c387377e91d223): added weights.json","index":1259,"timestampMs":1586108556000},{"description":"[e27f889](https://github.com/aracred/AraCred/commit/e27f889ed7e899c482d528e5bafb0a950047db35): fix setup aragon","index":1260,"timestampMs":1586632045000},{"description":"[ecc49af](https://github.com/aracred/AraCred/commit/ecc49af4d29ddb86bece5cf38e3295d03d80efc8): :(","index":1261,"timestampMs":1586644275000},{"description":"[ed75cb5](https://github.com/aracred/AraCred/commit/ed75cb58e840a9712a7fe5678e0234538101824c): Add package-lock.json","index":1262,"timestampMs":1586439910000},{"description":"[ed85892](https://github.com/aracred/AraCred/commit/ed85892fe323a252ac0d44ca5ce619fe73cc8a5d): hardcode","index":1263,"timestampMs":1586635090000},{"description":"[ee805c2](https://github.com/aracred/AraCred/commit/ee805c230d58b420f39bedd6d7dc5c10c8f14856): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1264,"timestampMs":1586563402000},{"description":"[ee958e4](https://github.com/aracred/AraCred/commit/ee958e4ea4a9d7db08a45e558912449245e1f619): update readme","index":1265,"timestampMs":1586761063000},{"description":"[efe2a21](https://github.com/aracred/AraCred/commit/efe2a210242adcd52a288d57f373b09187b88c17): Automated deployment to update cred in /github/workspace/docs 2020-04-12","index":1266,"timestampMs":1586714645000},{"description":"[f4379c3](https://github.com/aracred/AraCred/commit/f4379c34b30691a61e67438d4da4192f7cb18710): Update addressbook.json","index":1267,"timestampMs":1587049279000},{"description":"[f4597ea](https://github.com/aracred/AraCred/commit/f4597eaa6b0681ebfb7e32991fc295f52427d199): Automated deployment to update cred in /github/workspace/docs 2020-04-11","index":1268,"timestampMs":1586630029000},{"description":"[f4b57f6](https://github.com/aracred/AraCred/commit/f4b57f657a24f0feb175f404718f49ffc506edc0): Rmove package.lock","index":1269,"timestampMs":1586425884000},{"description":"[f5b6b5b](https://github.com/aracred/AraCred/commit/f5b6b5b9b8ab493342591799369bab4473ad4bd5): Automated deployment to update cred in /github/workspace/docs 2020-04-15","index":1270,"timestampMs":1586930710000},{"description":"[f748975](https://github.com/aracred/AraCred/commit/f74897580057b86bf1ec803694b2494dc5099ba4): Update project.json","index":1271,"timestampMs":1586208275000},{"description":"[f024b3a](https://github.com/aracred/AraCred/commit/f024b3aa2227eccef235a3b4d5a76e7f04cc78fc): Update run_cli.yml","index":1272,"timestampMs":1586641071000},{"description":"[f13bf3f](https://github.com/aracred/AraCred/commit/f13bf3f7a6dfeebd2725261a11357612547e0783): add badges to readme","index":1273,"timestampMs":1586446525000},{"description":"[f165058](https://github.com/aracred/AraCred/commit/f1650581495bd5ba951e6aca3adc65aa4271e7ec): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1274,"timestampMs":1586391268000},{"description":"[f3484bc](https://github.com/aracred/AraCred/commit/f3484bc0a5f204b3b6cd3159a0e3c274c2056154): new DAO /#/chicklet","index":1275,"timestampMs":1586607022000},{"description":"[f370b16](https://github.com/aracred/AraCred/commit/f370b16891f4dc805ea30ac6b5a3042c8224bb45): remove docs","index":1276,"timestampMs":1586457498000},{"description":"[fb4fcae](https://github.com/aracred/AraCred/commit/fb4fcae94286c8bcdda97e172bc867ab4e08b76c): fingers crossed","index":1277,"timestampMs":1586656082000},{"description":"[fce3339](https://github.com/aracred/AraCred/commit/fce33399d0696995385d8895995cb0fdaad56615): Automated deployment to update cred in /github/workspace/docs 2020-04-10","index":1278,"timestampMs":1586504710000},{"description":"[fdaff82](https://github.com/aracred/AraCred/commit/fdaff82509a99dc7adb3d1289b2ad02a339fe19e): logging","index":1279,"timestampMs":1586639647000},{"description":"[fe865a6](https://github.com/aracred/AraCred/commit/fe865a679a723590923af6394366b58fb01c8f50): test patch","index":1280,"timestampMs":1586396173000},{"description":"[ff708c3](https://github.com/aracred/AraCred/commit/ff708c3b7352a9b659df8120351e6f1eab566a2a): Automated deployment to update cred in /github/workspace/docs 2020-04-09","index":1281,"timestampMs":1586450503000},{"description":"[ffec223](https://github.com/aracred/AraCred/commit/ffec223be5fffa16d0ce2effb0aeed1b959a2532): Update README.md","index":1282,"timestampMs":1586109667000},{"description":"[07d5c9e](https://github.com/aracred/aracred-cli/commit/07d5c9eafed794bfbde34705c0232dfdbb47bd9c): Merge pull request #6 from pythonpete32/source-validation","index":1283,"timestampMs":1585184379000},{"description":"[030e8ec](https://github.com/aracred/aracred-cli/commit/030e8ecc0d83eb09cc3ac614a607eb119aab7fa3): aracli => aracred","index":1284,"timestampMs":1583868918000},{"description":"[0c32d96](https://github.com/aracred/aracred-cli/commit/0c32d96da86885a0d730f8398a23403372117d4b): start processCSV","index":1285,"timestampMs":1583846036000},{"description":"[0e6c465](https://github.com/aracred/aracred-cli/commit/0e6c46576a8feeb07054584458ebdec61fd886f3): Update README.md","index":1286,"timestampMs":1586115483000},{"description":"[17a658c](https://github.com/aracred/aracred-cli/commit/17a658ce22542db61a1bae02316d8c0e082fa52f): add github validation","index":1287,"timestampMs":1585184096000},{"description":"[1041be1](https://github.com/aracred/aracred-cli/commit/1041be12a4aee28587ede5b1a532c6595de78c70): Update README.md","index":1288,"timestampMs":1586115750000},{"description":"[135b198](https://github.com/aracred/aracred-cli/commit/135b198b82d822d1d1a15b3683da0b76487c3e6d): Small fixes","index":1289,"timestampMs":1584727008000},{"description":"[1a32526](https://github.com/aracred/aracred-cli/commit/1a3252694d719fb389bb10c0e24d727e61a3f8a3): tidy","index":1290,"timestampMs":1586119837000},{"description":"[1e08344](https://github.com/aracred/aracred-cli/commit/1e08344d06d9089d381e91e2bee0c1adf3fe3b9d): Merge branch 'master' of https://github.com/aracred/aracred-cli","index":1291,"timestampMs":1586119867000},{"description":"[32e087e](https://github.com/aracred/aracred-cli/commit/32e087e76f7e1c5911790ed64508cfb59e448369): initial commit","index":1292,"timestampMs":1583841786000},{"description":"[3ddfb88](https://github.com/aracred/aracred-cli/commit/3ddfb88738e47c20cf9ea58c2efd792aee1b6129): Saves JSON & CSV","index":1293,"timestampMs":1583855508000},{"description":"[3e76da9](https://github.com/aracred/aracred-cli/commit/3e76da91166b4e618c16fcf03a91656654793ed9): Merge pull request #3 from sembrestels/local-labels","index":1294,"timestampMs":1584736018000},{"description":"[46377a9](https://github.com/aracred/aracred-cli/commit/46377a96ccd136b5401df0ed5032a105a385dd49): Update README.md","index":1295,"timestampMs":1586115035000},{"description":"[5e8fc8e](https://github.com/aracred/aracred-cli/commit/5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7): Merge pull request #1 from burrrata/patch-1","index":1296,"timestampMs":1584727355000},{"description":"[5f858e9](https://github.com/aracred/aracred-cli/commit/5f858e9e9b52236fc3a085b38b1c7c5623dc814e): Update README.md","index":1297,"timestampMs":1586116855000},{"description":"[60eb231](https://github.com/aracred/aracred-cli/commit/60eb231938e7ad390175a13b46cf1161e23e915c): Add local labels generation feature","index":1298,"timestampMs":1584733391000},{"description":"[6cf9256](https://github.com/aracred/aracred-cli/commit/6cf92566dda9fff26663c6dfe2e3ae277ae0d908): add github workflow","index":1299,"timestampMs":1585132575000},{"description":"[7a3226b](https://github.com/aracred/aracred-cli/commit/7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f): add github entry in prompt","index":1300,"timestampMs":1585128878000},{"description":"[8b3379b](https://github.com/aracred/aracred-cli/commit/8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf): Improve readme and fix typos","index":1301,"timestampMs":1584729372000},{"description":"[93373cc](https://github.com/aracred/aracred-cli/commit/93373ccc6bf6185127f6b17ad5626cc110fe5e08): Merge pull request #4 from pythonpete32/wallaby","index":1302,"timestampMs":1585126267000},{"description":"[9adcfac](https://github.com/aracred/aracred-cli/commit/9adcfac02e9dc6203f733946b48815c16c4bda6a): Update README.md","index":1303,"timestampMs":1586115569000},{"description":"[a7eb7ab](https://github.com/aracred/aracred-cli/commit/a7eb7abbb97a3acb715b06da2a906cd6646b56bc): add willaby & jest support","index":1304,"timestampMs":1585126105000},{"description":"[a0ebe6c](https://github.com/aracred/aracred-cli/commit/a0ebe6c6c881f02ae127c92abd3795e597009031): update","index":1305,"timestampMs":1584722599000},{"description":"[a11f8d6](https://github.com/aracred/aracred-cli/commit/a11f8d670ef711b410415b8444330781522c3273): Update README.md","index":1306,"timestampMs":1586115692000},{"description":"[a39a9e3](https://github.com/aracred/aracred-cli/commit/a39a9e3d229c78b1d5215a8c6faf435a23b996ab): Update README.md","index":1307,"timestampMs":1586115737000},{"description":"[b5820a4](https://github.com/aracred/aracred-cli/commit/b5820a49d275ad3e2441dc49ba0e9c932e7e01ed): add discorse validation","index":1308,"timestampMs":1585142847000},{"description":"[b8100f7](https://github.com/aracred/aracred-cli/commit/b8100f78f6295a440d2e6a9e95a9099504c53374): Update README.md","index":1309,"timestampMs":1586115523000},{"description":"[b06798e](https://github.com/aracred/aracred-cli/commit/b06798edf2d6f86723961bdd7a387dda3eadcb00): initial commit","index":1310,"timestampMs":1583707484000},{"description":"[bc959b6](https://github.com/aracred/aracred-cli/commit/bc959b6cd0e80d193876a8edb8ff0f18142ba558): Update readme.md","index":1311,"timestampMs":1584925959000},{"description":"[d265f3f](https://github.com/aracred/aracred-cli/commit/d265f3f3a462805b6c27dc7507b15be038730a06): working","index":1312,"timestampMs":1584468261000},{"description":"[dccb0ba](https://github.com/aracred/aracred-cli/commit/dccb0bae8344da0fa4bc886fd642bd819e5ab204): Merge pull request #7 from pythonpete32/source-validation","index":1313,"timestampMs":1585184645000},{"description":"[dcba3eb](https://github.com/aracred/aracred-cli/commit/dcba3eb54f781973155ef382ed674685adb9491f): Update README.md","index":1314,"timestampMs":1586115159000},{"description":"[fd8dac9](https://github.com/aracred/aracred-cli/commit/fd8dac99c58c603001fa56c8d2dd2553db8fa6c0): Merge pull request #5 from pythonpete32/github","index":1315,"timestampMs":1585134244000},{"description":"[fdf6857](https://github.com/aracred/aracred-cli/commit/fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2): Merge pull request #2 from sembrestels/small-fix","index":1316,"timestampMs":1584727333000},{"description":"[#12](https://github.com/aracred/AraCred/issues/12): Setting up a Discord server with SourceCred and GitHub actions","index":1317,"timestampMs":1586638125000},{"description":"[#14](https://github.com/aracred/AraCred/issues/14): AraCred Deployment Docs","index":1318,"timestampMs":1586704018000},{"description":"[#15](https://github.com/aracred/AraCred/issues/15): AraCred Deployment Automation","index":1319,"timestampMs":1586705495000},{"description":"[#16](https://github.com/aracred/AraCred/issues/16): AraCred Dogfooding","index":1320,"timestampMs":1586705553000},{"description":"[#17](https://github.com/aracred/AraCred/issues/17): AraCred Pilot Projects","index":1321,"timestampMs":1586705865000},{"description":"[#18](https://github.com/aracred/AraCred/issues/18): Create bot to run GitHub Actions to submit Cred scores","index":1322,"timestampMs":1586712839000},{"description":"[#19](https://github.com/aracred/AraCred/issues/19): npx create-aracred","index":1323,"timestampMs":1586768126000},{"description":"[#2](https://github.com/aracred/AraCred/issues/2): re write `processScores.js`","index":1324,"timestampMs":1586269776000},{"description":"[#22](https://github.com/aracred/AraCred/issues/22): Recommended DAO Designs","index":1325,"timestampMs":1586819336000},{"description":"[#23](https://github.com/aracred/AraCred/issues/23): AraCred Default Periods","index":1326,"timestampMs":1586821830000},{"description":"[#24](https://github.com/aracred/AraCred/issues/24): CredRank White/Black Lists","index":1327,"timestampMs":1586823283000},{"description":"[#25](https://github.com/aracred/AraCred/issues/25): AraCred MVP","index":1328,"timestampMs":1586858542000},{"description":"[#26](https://github.com/aracred/AraCred/issues/26): Simple Token Calculations","index":1329,"timestampMs":1586921943000},{"description":"[#3](https://github.com/aracred/AraCred/issues/3): Pass private key as GitHub secret","index":1330,"timestampMs":1586390052000},{"description":"[#4](https://github.com/aracred/AraCred/issues/4): Tidy Repo","index":1331,"timestampMs":1586390446000},{"description":"[#5](https://github.com/aracred/AraCred/issues/5): Add config file for DAO","index":1332,"timestampMs":1586390871000},{"description":"[#6](https://github.com/aracred/AraCred/issues/6): Create unit tests for `src/processGrain()`","index":1333,"timestampMs":1586396494000},{"description":"[#8](https://github.com/aracred/AraCred/issues/8): Write `setupAragon.test.js`","index":1334,"timestampMs":1586435403000},{"description":"[#9](https://github.com/aracred/AraCred/issues/9): Configure SC to save to config file","index":1335,"timestampMs":1586440155000},{"description":"[#3](https://github.com/aracred/TheSource/issues/3): GUIDE: Setting up a Discord server with SourceCred and GitHub actions","index":1336,"timestampMs":1586104764000},{"description":"[#1](https://github.com/aracred/aracred-cli/issues/1): AraCred Manual Mode Guide","index":1337,"timestampMs":1586116752000},{"description":"[#1](https://github.com/aracred/bot/issues/1): SourceCredified AraCred 1UPs 🍄","index":1338,"timestampMs":1586917207000},{"description":"[#2](https://github.com/aracred/bot/issues/2): Parser: namespace bot commands","index":1339,"timestampMs":1586934042000},{"description":"[#3](https://github.com/aracred/bot/issues/3): Add whitelisted channels environment variable","index":1340,"timestampMs":1586934224000},{"description":"[#5](https://github.com/aracred/bot/issues/5): Validation: Properly check addresses before submitting them","index":1341,"timestampMs":1586990170000},{"description":"[#6](https://github.com/aracred/bot/issues/6): Onboarding flow: Make bot conversational","index":1342,"timestampMs":1586990449000},{"description":"[#7](https://github.com/aracred/bot/issues/7): Bot initialization: Add initialization and validation flow for startup","index":1343,"timestampMs":1586990584000},{"description":"[#1](https://github.com/aracred/comms/issues/1): AraCred Overview Blog Post","index":1344,"timestampMs":1586709265000},{"description":"[#1](https://github.com/aracred/leaderboard/issues/1): New Leaderboard UI","index":1345,"timestampMs":1586706267000},{"description":"[#2](https://github.com/aracred/leaderboard/issues/2): Leaderboard Bot","index":1346,"timestampMs":1586706318000},{"description":"[#1](https://github.com/aracred/onboarding/issues/1): User Onboarding Page","index":1347,"timestampMs":1586666816000},{"description":"[#2](https://github.com/aracred/onboarding/issues/2): AraCred Deployment","index":1348,"timestampMs":1586666998000},{"description":"[#3](https://github.com/aracred/onboarding/issues/3): User Onboarding Bot","index":1349,"timestampMs":1586705051000},{"description":"[#4](https://github.com/aracred/onboarding/issues/4): User Onboarding Survey","index":1350,"timestampMs":1586709014000},{"description":"[#5](https://github.com/aracred/onboarding/issues/5): Resolve app addresses from DAO name in dao.json","index":1351,"timestampMs":1586772477000},{"description":"[#6](https://github.com/aracred/onboarding/issues/6): Automagically gather users from GitHub, Discord and Discourse","index":1352,"timestampMs":1586772739000},{"description":"[#10](https://github.com/aracred/website/issues/10): Define AraCred Market Mechanics","index":1353,"timestampMs":1586705290000},{"description":"[#11](https://github.com/aracred/website/issues/11): Fix Spelling Errors","index":1354,"timestampMs":1586712148000},{"description":"[#2](https://github.com/aracred/website/issues/2): Docusaurus Deployment Tips","index":1355,"timestampMs":1586571331000},{"description":"[#7](https://github.com/aracred/website/issues/7): AraCred Market Simulation","index":1356,"timestampMs":1586662991000},{"description":"[#1](https://github.com/aracred/AraCred/pull/1): Split config","index":1357,"timestampMs":1586264552000},{"description":"[#10](https://github.com/aracred/AraCred/pull/10): Close a bunch of issues","index":1358,"timestampMs":1586446688000},{"description":"[#11](https://github.com/aracred/AraCred/pull/11): add sc config files","index":1359,"timestampMs":1586449916000},{"description":"[#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1360,"timestampMs":1586658580000},{"description":"[#20](https://github.com/aracred/AraCred/pull/20): Add Evalir to Aracred","index":1361,"timestampMs":1586802611000},{"description":"[#21](https://github.com/aracred/AraCred/pull/21): Backfill worksession photos","index":1362,"timestampMs":1586810530000},{"description":"[#27](https://github.com/aracred/AraCred/pull/27): session 3 photos","index":1363,"timestampMs":1586995113000},{"description":"[#7](https://github.com/aracred/AraCred/pull/7): Process scores patch","index":1364,"timestampMs":1586425681000},{"description":"[#1](https://github.com/aracred/TheSource/pull/1): Update generate-cred.yml","index":1365,"timestampMs":1586103666000},{"description":"[#2](https://github.com/aracred/TheSource/pull/2): Update generate-cred.yml","index":1366,"timestampMs":1586104083000},{"description":"[#4](https://github.com/aracred/bot/pull/4): DevOps: Add monitoring logs to commands","index":1367,"timestampMs":1586970997000},{"description":"[#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1368,"timestampMs":1587070982000},{"description":"[#9](https://github.com/aracred/bot/pull/9): Added command namespace recognition - !ac [command]","index":1369,"timestampMs":1587079858000},{"description":"[#1](https://github.com/aracred/website/pull/1): starting to docusaurus","index":1370,"timestampMs":1586566012000},{"description":"[#12](https://github.com/aracred/website/pull/12): Fix diagram url on \"Token Minting and Supply\" page","index":1371,"timestampMs":1586717760000},{"description":"[#13](https://github.com/aracred/website/pull/13): Docs2","index":1372,"timestampMs":1586727817000},{"description":"[#14](https://github.com/aracred/website/pull/14): Docs2","index":1373,"timestampMs":1586797004000},{"description":"[#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1374,"timestampMs":1586914696000},{"description":"[#16](https://github.com/aracred/website/pull/16): PageRank link","index":1375,"timestampMs":1586987888000},{"description":"[#3](https://github.com/aracred/website/pull/3): didn't actually add users section","index":1376,"timestampMs":1586633970000},{"description":"[#4](https://github.com/aracred/website/pull/4): Docs2","index":1377,"timestampMs":1586645179000},{"description":"[#5](https://github.com/aracred/website/pull/5): Docs2","index":1378,"timestampMs":1586654103000},{"description":"[#6](https://github.com/aracred/website/pull/6): before adding live code plugin","index":1379,"timestampMs":1586656931000},{"description":"[#8](https://github.com/aracred/website/pull/8): Docs2","index":1380,"timestampMs":1586663009000},{"description":"[#9](https://github.com/aracred/website/pull/9): Docs2","index":1381,"timestampMs":1586664552000},{"description":"[aracred/AraCred](https://github.com/aracred/AraCred)","index":1382,"timestampMs":1586107856000},{"description":"[aracred/TheSource](https://github.com/aracred/TheSource)","index":1383,"timestampMs":1586103580000},{"description":"[aracred/aracred-cli](https://github.com/aracred/aracred-cli)","index":1384,"timestampMs":1586112376000},{"description":"[aracred/bot](https://github.com/aracred/bot)","index":1385,"timestampMs":1586801046000},{"description":"[aracred/comms](https://github.com/aracred/comms)","index":1386,"timestampMs":1586709194000},{"description":"[aracred/governance](https://github.com/aracred/governance)","index":1387,"timestampMs":1586709960000},{"description":"[aracred/leaderboard](https://github.com/aracred/leaderboard)","index":1388,"timestampMs":1586706187000},{"description":"[aracred/onboarding](https://github.com/aracred/onboarding)","index":1389,"timestampMs":1586666527000},{"description":"[aracred/website](https://github.com/aracred/website)","index":1390,"timestampMs":1586103440000},{"description":"[review](https://github.com/aracred/AraCred/pull/13#pullrequestreview-391815975) on [#13](https://github.com/aracred/AraCred/pull/13): Mainnet test","index":1391,"timestampMs":1586658808000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395001410) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1392,"timestampMs":1587071400000},{"description":"[review](https://github.com/aracred/bot/pull/8#pullrequestreview-395035075) on [#8](https://github.com/aracred/bot/pull/8): Validation: validate ethereum address","index":1393,"timestampMs":1587075078000},{"description":"[review](https://github.com/aracred/website/pull/15#pullrequestreview-393444362) on [#15](https://github.com/aracred/website/pull/15): Fixed typo","index":1394,"timestampMs":1586924060000},{"description":"[@AlexMasmej](https://github.com/AlexMasmej)","index":1395,"timestampMs":null},{"description":"[@Beanow](https://github.com/Beanow)","index":1396,"timestampMs":null},{"description":"[@Evalir](https://github.com/Evalir)","index":1397,"timestampMs":null},{"description":"[@c0mput3rxz](https://github.com/c0mput3rxz)","index":1398,"timestampMs":null},{"description":"[@vntrp](https://github.com/vntrp)","index":1399,"timestampMs":null},{"description":"@0xGabi","index":1400,"timestampMs":null},{"description":"@Aaron","index":1401,"timestampMs":null},{"description":"@burrrata","index":1402,"timestampMs":null},{"description":"@crisorg","index":1403,"timestampMs":null},{"description":"@cslarson","index":1404,"timestampMs":null},{"description":"@dandelion","index":1405,"timestampMs":null},{"description":"@evalir","index":1406,"timestampMs":null},{"description":"@fabriziovigevani","index":1407,"timestampMs":null},{"description":"@fioreb","index":1408,"timestampMs":null},{"description":"@hammadj","index":1409,"timestampMs":null},{"description":"@li","index":1410,"timestampMs":null},{"description":"@lkngtn","index":1411,"timestampMs":null},{"description":"@mzargham","index":1412,"timestampMs":null},{"description":"@onbjerg","index":1413,"timestampMs":null},{"description":"@rperez","index":1414,"timestampMs":null},{"description":"@sembrestels","index":1415,"timestampMs":null},{"description":"@willjgriff","index":1416,"timestampMs":null}],"sortedNodeAddresses":[["sourcecred","discord","MEMBER","bot","699326460120530944"],["sourcecred","discord","MEMBER","user","143776454050709505"],["sourcecred","discord","MEMBER","user","199630270285086720"],["sourcecred","discord","MEMBER","user","208321561982271489"],["sourcecred","discord","MEMBER","user","291388682710024192"],["sourcecred","discord","MEMBER","user","333143183355543552"],["sourcecred","discord","MEMBER","user","371754999304290304"],["sourcecred","discord","MEMBER","user","440281764204642314"],["sourcecred","discord","MEMBER","user","464169801036726292"],["sourcecred","discord","MEMBER","user","505789102222737420"],["sourcecred","discord","MEMBER","user","537858848912834561"],["sourcecred","discord","MEMBER","user","633708951447535616"],["sourcecred","discord","MEMBER","user","665203331639148553"],["sourcecred","discord","MEMBER","user","683892894767251489"],["sourcecred","discord","MESSAGE","695344752031432766","695669843034243134"],["sourcecred","discord","MESSAGE","695344752031432766","696451005914546256"],["sourcecred","discord","MESSAGE","695344752031432766","696454968831508630"],["sourcecred","discord","MESSAGE","695344752031432766","696455224532926464"],["sourcecred","discord","MESSAGE","695344752031432766","696609260196593664"],["sourcecred","discord","MESSAGE","695344752031432766","696708274682069062"],["sourcecred","discord","MESSAGE","695344752031432766","696730540039995493"],["sourcecred","discord","MESSAGE","695344752031432766","696740396331696198"],["sourcecred","discord","MESSAGE","695344752031432766","696769305131614260"],["sourcecred","discord","MESSAGE","695344752031432766","696853096441184326"],["sourcecred","discord","MESSAGE","695344752031432766","698673271729553469"],["sourcecred","discord","MESSAGE","695344752031432766","698691171811328080"],["sourcecred","discord","MESSAGE","695344752031432766","698710294427467857"],["sourcecred","discord","MESSAGE","695344752031432766","698710365046833192"],["sourcecred","discord","MESSAGE","695344752031432766","698799127244308550"],["sourcecred","discord","MESSAGE","695344752031432766","698897288373993508"],["sourcecred","discord","MESSAGE","695344752031432766","698919569078878289"],["sourcecred","discord","MESSAGE","695344752031432766","698921167011971168"],["sourcecred","discord","MESSAGE","695344752031432766","698921390845198426"],["sourcecred","discord","MESSAGE","695344752031432766","698932174396850236"],["sourcecred","discord","MESSAGE","695344752031432766","698935929942966332"],["sourcecred","discord","MESSAGE","695344752031432766","698941350531301477"],["sourcecred","discord","MESSAGE","695344752031432766","698946297012420619"],["sourcecred","discord","MESSAGE","695344752031432766","698965088530595990"],["sourcecred","discord","MESSAGE","695344752031432766","698965418370400296"],["sourcecred","discord","MESSAGE","695344752031432766","698968459890917436"],["sourcecred","discord","MESSAGE","695344752031432766","698968989878976612"],["sourcecred","discord","MESSAGE","695344752031432766","698969370533298296"],["sourcecred","discord","MESSAGE","695344752031432766","698969730580742174"],["sourcecred","discord","MESSAGE","695344752031432766","698970943955140738"],["sourcecred","discord","MESSAGE","695344752031432766","698973708316049488"],["sourcecred","discord","MESSAGE","695344752031432766","698982179069362196"],["sourcecred","discord","MESSAGE","695344752031432766","699006982681657354"],["sourcecred","discord","MESSAGE","695344752031432766","699007297099268116"],["sourcecred","discord","MESSAGE","695344752031432766","699016223303794728"],["sourcecred","discord","MESSAGE","695344752031432766","699020835096231937"],["sourcecred","discord","MESSAGE","695344752031432766","699021694240686190"],["sourcecred","discord","MESSAGE","695344752031432766","699022762215211088"],["sourcecred","discord","MESSAGE","695344752031432766","699024432244588644"],["sourcecred","discord","MESSAGE","695344752031432766","699025335148216410"],["sourcecred","discord","MESSAGE","695344752031432766","699124769349566484"],["sourcecred","discord","MESSAGE","695344752031432766","699137595724267520"],["sourcecred","discord","MESSAGE","695344752031432766","699302777167413379"],["sourcecred","discord","MESSAGE","695344752031432766","699304903796981771"],["sourcecred","discord","MESSAGE","695344752031432766","699306499930980452"],["sourcecred","discord","MESSAGE","695344752031432766","699318638519255111"],["sourcecred","discord","MESSAGE","695344752031432766","699325373472702534"],["sourcecred","discord","MESSAGE","695344752031432766","699325915578236949"],["sourcecred","discord","MESSAGE","695344752031432766","699326575627206778"],["sourcecred","discord","MESSAGE","695344752031432766","699342838756016128"],["sourcecred","discord","MESSAGE","695344752031432766","699358233437143163"],["sourcecred","discord","MESSAGE","695344752031432766","699383579402174494"],["sourcecred","discord","MESSAGE","695344752031432766","699636647557464194"],["sourcecred","discord","MESSAGE","695344752031432766","699696022477340735"],["sourcecred","discord","MESSAGE","695344752031432766","700038397376331798"],["sourcecred","discord","MESSAGE","695344917068906598","697073300131807274"],["sourcecred","discord","MESSAGE","695344917068906598","697081143551328256"],["sourcecred","discord","MESSAGE","695344917068906598","697318813192028200"],["sourcecred","discord","MESSAGE","695344917068906598","697375832364023889"],["sourcecred","discord","MESSAGE","696400331260821586","698659683526901810"],["sourcecred","discord","MESSAGE","696400331260821586","699287660589613148"],["sourcecred","discord","MESSAGE","696420039141752863","696427343220047872"],["sourcecred","discord","MESSAGE","696420039141752863","696440757908799568"],["sourcecred","discord","MESSAGE","696420039141752863","696441890048049232"],["sourcecred","discord","MESSAGE","696420039141752863","696452154268975225"],["sourcecred","discord","MESSAGE","696420039141752863","696730851802742794"],["sourcecred","discord","MESSAGE","696420039141752863","696789204767866911"],["sourcecred","discord","MESSAGE","696420039141752863","699020484167073792"],["sourcecred","discord","MESSAGE","696420039141752863","699122711745527878"],["sourcecred","discord","MESSAGE","696420039141752863","699123164340551691"],["sourcecred","discord","MESSAGE","696420039141752863","699274952301609111"],["sourcecred","discord","MESSAGE","696420039141752863","699275129204637708"],["sourcecred","discord","MESSAGE","696420039141752863","699275497984622760"],["sourcecred","discord","MESSAGE","696420039141752863","699276546795372595"],["sourcecred","discord","MESSAGE","696420039141752863","699277478530646016"],["sourcecred","discord","MESSAGE","696420039141752863","699278809974833224"],["sourcecred","discord","MESSAGE","696420039141752863","699404949448163368"],["sourcecred","discord","MESSAGE","696420039141752863","699406916300046346"],["sourcecred","discord","MESSAGE","696420039141752863","699407535194767410"],["sourcecred","discord","MESSAGE","696420039141752863","699408033343733841"],["sourcecred","discord","MESSAGE","696420039141752863","699410487020093501"],["sourcecred","discord","MESSAGE","696420039141752863","699558251074682931"],["sourcecred","discord","MESSAGE","696420039141752863","699560532046250034"],["sourcecred","discord","MESSAGE","696420039141752863","699939694221328435"],["sourcecred","discord","MESSAGE","696420039141752863","700016555521736837"],["sourcecred","discord","MESSAGE","696420039141752863","700064770367160361"],["sourcecred","discord","MESSAGE","696420039141752863","700064920104075394"],["sourcecred","discord","MESSAGE","696420039141752863","700073516900417556"],["sourcecred","discord","MESSAGE","696420039141752863","700078148615798814"],["sourcecred","discord","MESSAGE","696420039141752863","700083246087667833"],["sourcecred","discord","MESSAGE","696420039141752863","700085865933832252"],["sourcecred","discord","MESSAGE","696420039141752863","700087985634541678"],["sourcecred","discord","MESSAGE","696420039141752863","700345588725841990"],["sourcecred","discord","MESSAGE","696420039141752863","700354840445976616"],["sourcecred","discord","MESSAGE","696420039141752863","700468593451597902"],["sourcecred","discord","MESSAGE","696420197644632116","698667046661128244"],["sourcecred","discord","MESSAGE","696420197644632116","698672127418695751"],["sourcecred","discord","MESSAGE","696420197644632116","698673539011837994"],["sourcecred","discord","MESSAGE","696420197644632116","698683402920001637"],["sourcecred","discord","MESSAGE","696420197644632116","698956579168321617"],["sourcecred","discord","MESSAGE","696420197644632116","699017594287685672"],["sourcecred","discord","MESSAGE","696420197644632116","699283043940302898"],["sourcecred","discord","MESSAGE","696420197644632116","699284090607763506"],["sourcecred","discord","MESSAGE","696420197644632116","699303864872075295"],["sourcecred","discord","MESSAGE","696420197644632116","699352914476400712"],["sourcecred","discord","MESSAGE","698942081858666527","699821888431587439"],["sourcecred","discord","MESSAGE","698942081858666527","699822779670724650"],["sourcecred","discord","MESSAGE","700023168995295233","700033440564641854"],["sourcecred","discord","MESSAGE","700023168995295233","700036022368731256"],["sourcecred","discord","MESSAGE","700023168995295233","700038868707180644"],["sourcecred","discord","MESSAGE","700023168995295233","700039441799970969"],["sourcecred","discord","MESSAGE","700023168995295233","700040376085381152"],["sourcecred","discord","MESSAGE","700023168995295233","700040917926543422"],["sourcecred","discord","MESSAGE","700023168995295233","700040992916766780"],["sourcecred","discord","MESSAGE","700023168995295233","700044206176993470"],["sourcecred","discord","MESSAGE","700023168995295233","700044421760286721"],["sourcecred","discord","MESSAGE","700023168995295233","700044496049799228"],["sourcecred","discord","MESSAGE","700023168995295233","700044548411490335"],["sourcecred","discord","MESSAGE","700023168995295233","700044635619328131"],["sourcecred","discord","MESSAGE","700023168995295233","700044689285316738"],["sourcecred","discord","MESSAGE","700023168995295233","700049028251123832"],["sourcecred","discord","MESSAGE","700023168995295233","700049257490808933"],["sourcecred","discord","MESSAGE","700023168995295233","700049378643017889"],["sourcecred","discord","MESSAGE","700023168995295233","700051768008114186"],["sourcecred","discord","MESSAGE","700023168995295233","700055780807802900"],["sourcecred","discord","MESSAGE","700023168995295233","700056792524128306"],["sourcecred","discord","MESSAGE","700023168995295233","700059334679330946"],["sourcecred","discord","MESSAGE","700023168995295233","700059353306234910"],["sourcecred","discord","MESSAGE","700023168995295233","700059384751063091"],["sourcecred","discord","MESSAGE","700023168995295233","700059438136033361"],["sourcecred","discord","MESSAGE","700023168995295233","700059438526103572"],["sourcecred","discord","MESSAGE","700023168995295233","700059538023514154"],["sourcecred","discord","MESSAGE","700023168995295233","700061097583050871"],["sourcecred","discord","MESSAGE","700023168995295233","700062058405953678"],["sourcecred","discord","MESSAGE","700023168995295233","700062189503119381"],["sourcecred","discord","MESSAGE","700023168995295233","700062400774275204"],["sourcecred","discord","MESSAGE","700023168995295233","700063628711166054"],["sourcecred","discord","MESSAGE","700023168995295233","700064631778967634"],["sourcecred","discord","MESSAGE","700023168995295233","700064632144003103"],["sourcecred","discord","MESSAGE","700023168995295233","700118599003668510"],["sourcecred","discord","MESSAGE","700023168995295233","700335319349985310"],["sourcecred","discord","MESSAGE","700023168995295233","700335919315550299"],["sourcecred","discord","MESSAGE","700023168995295233","700365992571699350"],["sourcecred","discord","MESSAGE","700023168995295233","700366555233517630"],["sourcecred","discord","MESSAGE","700023168995295233","700367514638483537"],["sourcecred","discord","MESSAGE","700023168995295233","700369922630615040"],["sourcecred","discord","MESSAGE","700023168995295233","700370207419662458"],["sourcecred","discord","MESSAGE","700023168995295233","700370372230643763"],["sourcecred","discord","MESSAGE","700023168995295233","700371208880914563"],["sourcecred","discord","MESSAGE","700023168995295233","700371209241624656"],["sourcecred","discord","MESSAGE","700023168995295233","700371558480216124"],["sourcecred","discord","MESSAGE","700023168995295233","700397237930295386"],["sourcecred","discord","MESSAGE","700023168995295233","700397481799974962"],["sourcecred","discord","MESSAGE","700023168995295233","700397482362011769"],["sourcecred","discord","MESSAGE","700023168995295233","700397866581229620"],["sourcecred","discord","MESSAGE","700023168995295233","700397927478067221"],["sourcecred","discord","MESSAGE","700023168995295233","700397997707755530"],["sourcecred","discord","MESSAGE","700023168995295233","700398207733334077"],["sourcecred","discord","MESSAGE","700023168995295233","700398301412982965"],["sourcecred","discord","MESSAGE","700023168995295233","700398301727555604"],["sourcecred","discord","MESSAGE","700023168995295233","700399163313094746"],["sourcecred","discord","REACTION","695344752031432766","❤️","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696454968831508630"],["sourcecred","discord","REACTION","695344752031432766","👍","118260545211072517","696455224532926464"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699021694240686190"],["sourcecred","discord","REACTION","695344752031432766","👍","250086586450968576","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","571023281382227978","695669843034243134"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699025335148216410"],["sourcecred","discord","REACTION","695344752031432766","👍","657069807505637397","699326575627206778"],["sourcecred","discord","REACTION","695344752031432766","💯","571023281382227978","696730540039995493"],["sourcecred","discord","REACTION","695344752031432766","💯","657069807505637397","698965418370400296"],["sourcecred","discord","REACTION","695344752031432766","🔥","250086586450968576","698969730580742174"],["sourcecred","discord","REACTION","695344752031432766","🔥","321092785921064961","698973708316049488"],["sourcecred","discord","REACTION","695344752031432766","🔥","571023281382227978","698921390845198426"],["sourcecred","discord","REACTION","696400331260821586","🔥","118260545211072517","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","250086586450968576","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","291388682710024192","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","321092785921064961","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","440281764204642314","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","698659683526901810"],["sourcecred","discord","REACTION","696400331260821586","🔥","571023281382227978","699287660589613148"],["sourcecred","discord","REACTION","696400331260821586","🔥","683892894767251489","698659683526901810"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696427343220047872"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","696441890048049232"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","699123164340551691"],["sourcecred","discord","REACTION","696420039141752863","👍","657069807505637397","700087985634541678"],["sourcecred","discord","REACTION","696420039141752863","🔥","321092785921064961","699560532046250034"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","699275497984622760"],["sourcecred","discord","REACTION","696420039141752863","🔥","571023281382227978","700064920104075394"],["sourcecred","discord","REACTION","696420197644632116","👍","537858848912834561","699284090607763506"],["sourcecred","discord","REACTION","698942081858666527","👍","250086586450968576","699822779670724650"],["sourcecred","discord","REACTION","700023168995295233","👍","657069807505637397","700040376085381152"],["sourcecred","discord","REACTION","700023168995295233","💯","321092785921064961","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","💯","657069807505637397","700040917926543422"],["sourcecred","discord","REACTION","700023168995295233","🔥","363774203960360961","700039441799970969"],["sourcecred","git","COMMIT","0097f202e6f5d2c003e2ce168d124909f19458d7"],["sourcecred","git","COMMIT","00ab6982140ebd949db7457512b233b7aa3afa1f"],["sourcecred","git","COMMIT","014093e17900e748bb8f82656443ec621bd8a658"],["sourcecred","git","COMMIT","02350169d0e77e280968a062a1e98a60a0d4c5d8"],["sourcecred","git","COMMIT","0245a4002a35c2adccfed1f68a675c30ba871ba5"],["sourcecred","git","COMMIT","02e3a39d76183975fa9a0671de0c7922274b6abc"],["sourcecred","git","COMMIT","02f4d3623ae4e89fa6232477d97fe32b27aae7c5"],["sourcecred","git","COMMIT","030e8ecc0d83eb09cc3ac614a607eb119aab7fa3"],["sourcecred","git","COMMIT","031a68eb5a45b70c806197b47783b1b4ae4332f0"],["sourcecred","git","COMMIT","0326166091410578eaf7c25d9f6736cd4533f9cd"],["sourcecred","git","COMMIT","03604a7d8f9a6f488f7990309e70066a1260483d"],["sourcecred","git","COMMIT","0388fb0219a7460e6726b34835c670986be5406c"],["sourcecred","git","COMMIT","03e1112bf4099083d81386043099e4876599d53d"],["sourcecred","git","COMMIT","0470e9f5c13a7c36b0934ca935365649872ad849"],["sourcecred","git","COMMIT","05c78a85d3b82074eb0e966c43eaf29f53e39426"],["sourcecred","git","COMMIT","06e6bf089f69a108cae63a413e3a3d0a6c0d40fa"],["sourcecred","git","COMMIT","0764e2b7701a6cd6076622bce90c3d3030e7d08a"],["sourcecred","git","COMMIT","07d5c9eafed794bfbde34705c0232dfdbb47bd9c"],["sourcecred","git","COMMIT","07e0e5f00e18e00a12892b47bd3f5b87418377d5"],["sourcecred","git","COMMIT","08aa4aa95a936798295f7d02cfa54c1441ae7aa3"],["sourcecred","git","COMMIT","0a23c189b1d776985b6759cfb65b75a5b0dbe388"],["sourcecred","git","COMMIT","0b351412cfa92c8edabea1449da16a7a2128c81f"],["sourcecred","git","COMMIT","0c32d96da86885a0d730f8398a23403372117d4b"],["sourcecred","git","COMMIT","0c44b7c5b7ac2243b2fa984a6abc9c91762a8a33"],["sourcecred","git","COMMIT","0cc15c54f0ac08b76b0b20231523123c68e787cc"],["sourcecred","git","COMMIT","0e468843191ad3a24ff5b803b2e388a12e88a289"],["sourcecred","git","COMMIT","0e6c46576a8feeb07054584458ebdec61fd886f3"],["sourcecred","git","COMMIT","0e9dbd8406b256f6b5e553d6769683a55909ab84"],["sourcecred","git","COMMIT","1041be12a4aee28587ede5b1a532c6595de78c70"],["sourcecred","git","COMMIT","11a45eb188a756e31f2ece0afcf10afb5e30112f"],["sourcecred","git","COMMIT","11fcd09a0cde08af08b5c5c951f54c150cf47ea1"],["sourcecred","git","COMMIT","120b10d34d5e804b21984569c113e37036efe669"],["sourcecred","git","COMMIT","1222e49b4269f15b2c71cfe4b62b1333abeea581"],["sourcecred","git","COMMIT","12cf0f16d406f14c2597abc130c4d2bfa9927f32"],["sourcecred","git","COMMIT","12ddd4e35607c0184b898c898e26e45c6017642d"],["sourcecred","git","COMMIT","12f5e68f287c17d2e7fbe424b996b269c74c0e8f"],["sourcecred","git","COMMIT","135b198b82d822d1d1a15b3683da0b76487c3e6d"],["sourcecred","git","COMMIT","13634414337e730fbcb403e2657a8007347ddd8d"],["sourcecred","git","COMMIT","13fc50d22e2353cf2bb38948cae4fb5fb591ce6c"],["sourcecred","git","COMMIT","1582ec34530ff6b7055382319336acc3f82de567"],["sourcecred","git","COMMIT","15a8127bc5402c7224bc592f890a5bd7f793c6a5"],["sourcecred","git","COMMIT","15e6db685e730aa55697d6fc8f60e9006732d2db"],["sourcecred","git","COMMIT","16309da6c786efe9dc1f745c61ad4f2c2ad61d76"],["sourcecred","git","COMMIT","16456a0e6dce09102122b50f42b185c330bb7b25"],["sourcecred","git","COMMIT","169704b1d09d4498ff0eaf2276bc40e79fffdf7e"],["sourcecred","git","COMMIT","1798e29eb0b6d8dd5e4f14ffcc2f25644e736762"],["sourcecred","git","COMMIT","17a658ce22542db61a1bae02316d8c0e082fa52f"],["sourcecred","git","COMMIT","17ec0dcf84726a4da739f0cbe36cd1908477e4cb"],["sourcecred","git","COMMIT","1823aa73078796ecf98dd56d9c134ccf2192e686"],["sourcecred","git","COMMIT","1834ed59b6a58195aef57af492f3122a94aac239"],["sourcecred","git","COMMIT","18c5aee0a819fd4f7877321af5fd04791f85c6f8"],["sourcecred","git","COMMIT","191e73e429ab193e59189f44b363d69613ee0315"],["sourcecred","git","COMMIT","1a16f1ec50e59e3baf9462677fa2c4f03ee2f9c8"],["sourcecred","git","COMMIT","1a21759b0bf3dbf3f524a23bf10c8e4a114def8c"],["sourcecred","git","COMMIT","1a3252694d719fb389bb10c0e24d727e61a3f8a3"],["sourcecred","git","COMMIT","1a7929462fc35448408f0d854a6c8c898c2db94f"],["sourcecred","git","COMMIT","1b5127e0416b329fc4dcd1d988d29489bea9016f"],["sourcecred","git","COMMIT","1cac15ecae5e636fd5d049fc5993ccd113126e41"],["sourcecred","git","COMMIT","1d8ee2b3aa6e25bcf60ec6e52bf5328c0866cdc5"],["sourcecred","git","COMMIT","1dc4a2c23525043a7b6e32a79837cb6a5a62fd97"],["sourcecred","git","COMMIT","1e08344d06d9089d381e91e2bee0c1adf3fe3b9d"],["sourcecred","git","COMMIT","1ea710efed95a3abd2613ee16b3aaea6110def50"],["sourcecred","git","COMMIT","1eea54a1361eb6aedba221f65f86205866b97322"],["sourcecred","git","COMMIT","1eed38c4cebd63ab6fc9537564a5304a870caa0c"],["sourcecred","git","COMMIT","1f350ead22cb503932ec36b9d21b735eb97eb256"],["sourcecred","git","COMMIT","2074791c680ee3d896c6c819ee0244719a7e510c"],["sourcecred","git","COMMIT","20796df7555b0c191dd575542000d50d98c034cc"],["sourcecred","git","COMMIT","21196b9342e552cc4fc6a9f213ea42768f3590d6"],["sourcecred","git","COMMIT","21df4319db26f8c3ed6eed74b2076026cad5c070"],["sourcecred","git","COMMIT","221754a5dbe3ebdf6a0fc5080de82669f5476b83"],["sourcecred","git","COMMIT","225168780b86a4b41d38845653c5d8759d1d37ad"],["sourcecred","git","COMMIT","22f57e7b323b0800c218b270980286c105ff7760"],["sourcecred","git","COMMIT","234d3b02b5491114f1257e23fcaf2bf880eee376"],["sourcecred","git","COMMIT","23d2d9d76214f6b6309676e2d369fe22f495943c"],["sourcecred","git","COMMIT","25c16bb85801279196018b44ec0db0834fadc4a2"],["sourcecred","git","COMMIT","26b69c05b19e8c57f2d16f77ab4d86b76247ce1b"],["sourcecred","git","COMMIT","275d163efdd812cdcd6ae2f5a8aff1bab3bed0e7"],["sourcecred","git","COMMIT","27b2bf3d7da83e04295aa1c2297e50ce8157f435"],["sourcecred","git","COMMIT","28b0e3f2d8fd42569eb803d10435aa8c0edf28f4"],["sourcecred","git","COMMIT","29d9a8ef0d738d8b1bdae873c892af41858cda0a"],["sourcecred","git","COMMIT","2a1204b44f44d6d93cf952e1804aef25ffbdd78f"],["sourcecred","git","COMMIT","2a6a498e1f06f55bc8d72380017b4d4060e27123"],["sourcecred","git","COMMIT","2aaae9c777eb4801ef65192afd1c7553ceb74012"],["sourcecred","git","COMMIT","2ac1a7e110486f19483abeff54c243335640c923"],["sourcecred","git","COMMIT","2b67c252af08687a1c02e924757e383977d4d4d7"],["sourcecred","git","COMMIT","2b6ed00bd26907f91649e266613daba56cbaa0ee"],["sourcecred","git","COMMIT","2b91470d79d6e707d2e8cb3a794ebe8c4d7b3484"],["sourcecred","git","COMMIT","2bd813f09f98fa3b26934f6ff7faaab6ea73f1e6"],["sourcecred","git","COMMIT","2c407f36d0c5b27d2c474b335cabb81cfe2edeca"],["sourcecred","git","COMMIT","2cee732bc11b712814855cfb1d9b5b279cef6fb9"],["sourcecred","git","COMMIT","2d290b2288a14d494f0fc18bfac882ef6c617e6a"],["sourcecred","git","COMMIT","2d44191a996951ccbed0009280899614d63174c9"],["sourcecred","git","COMMIT","2d9e5bd17dbe78235bca6bfd44b6a910d3c4a951"],["sourcecred","git","COMMIT","2e4d02b5022b744b43eba4a032fa855b765aa0ad"],["sourcecred","git","COMMIT","2f42a2a3916fe6ede97f1fac9adc1897fcbaa2be"],["sourcecred","git","COMMIT","2fad9aab6897201e6bc353b9746c03d1e728d433"],["sourcecred","git","COMMIT","30014c11841c9a605cc94d517ece6b867afd8cef"],["sourcecred","git","COMMIT","30758d04aa4da97fc0aced1fa22cbdee4a82c792"],["sourcecred","git","COMMIT","309a89586da5e2d44b48a607c9334aef6f6db3fb"],["sourcecred","git","COMMIT","30ab2ab8774f20e9541f08c657e6ec9ab08504f0"],["sourcecred","git","COMMIT","30d221dce50b378b1c7305bda09bea3f77887415"],["sourcecred","git","COMMIT","30ebf64342f800953d06f2b0ed888ac8d4495f69"],["sourcecred","git","COMMIT","311bf26aa5268a067b0bfc8708a922d2fd3d0a81"],["sourcecred","git","COMMIT","314f037efaaf34002934fac72ee5b8c34e633117"],["sourcecred","git","COMMIT","317ffa1471a0179007b87f93aac2223666443d45"],["sourcecred","git","COMMIT","325b973a78cbe14ff3f5e9766faee18e85d5a408"],["sourcecred","git","COMMIT","32d6fc725adb844ed330499482232f2876de58d1"],["sourcecred","git","COMMIT","32e087e76f7e1c5911790ed64508cfb59e448369"],["sourcecred","git","COMMIT","336edf6f3e0b661f947432cf39bbd9d26299f29d"],["sourcecred","git","COMMIT","34723961199565937493834071665b871a632d5d"],["sourcecred","git","COMMIT","35bf0829c068aa20de51466ea118f7547707de00"],["sourcecred","git","COMMIT","364068ec8db86b378d630f591da3a02de8708798"],["sourcecred","git","COMMIT","36d7098c5f0c400dddec1e654523a2800782b78a"],["sourcecred","git","COMMIT","36ed95ddf8349ba3d557bfbbef066b2559b432a3"],["sourcecred","git","COMMIT","37b357cb88cf608d20589ce6ee51404561bb4b1c"],["sourcecred","git","COMMIT","37e3b7251566699d4341b3bdbb81ec8f554f7d87"],["sourcecred","git","COMMIT","380e74d47b6bfd2c48d5690093ab03e44b92d991"],["sourcecred","git","COMMIT","38f3240786ceec5b4c03d7a5ce0faa02512a8cde"],["sourcecred","git","COMMIT","391b32bfdb5ae37d2ce42d32319fbadde72663f3"],["sourcecred","git","COMMIT","392e601d3179506dfe7ec0ad20cd5f679696e66e"],["sourcecred","git","COMMIT","396e5f791be1c3cf258b08afc6111cea8a409634"],["sourcecred","git","COMMIT","39ac367cc0a3e55366f190fe158a8517f97c2778"],["sourcecred","git","COMMIT","39b0a902c1c17512a536380503a506fc3ca615bb"],["sourcecred","git","COMMIT","39c6daaa5fca6305b908cdd28811107eba6bcbe3"],["sourcecred","git","COMMIT","39dae46151fcde41ea0b062ae95fde4109142e5b"],["sourcecred","git","COMMIT","3a5b33363a28c7bf7bc62329095b08110996d659"],["sourcecred","git","COMMIT","3a649e81c448757920b8c8bdcf8fc392f84d3580"],["sourcecred","git","COMMIT","3ab888c62c6fa64080e675c1f5146e156635ee6c"],["sourcecred","git","COMMIT","3b4871c09b67498e31575b8aaa9c09443d142a03"],["sourcecred","git","COMMIT","3b5a4715a9790e23a2e35d783d691e8d5ee58f80"],["sourcecred","git","COMMIT","3b8e4f54845388851293b26053f4df65b4dc98d1"],["sourcecred","git","COMMIT","3bc9934834b8a65291439cbba2daf061448e30fe"],["sourcecred","git","COMMIT","3c52923940969e0594c9693d27e80bf81e49bdfb"],["sourcecred","git","COMMIT","3c716ca39a305e5d8a9b2a5aa466039466d05a38"],["sourcecred","git","COMMIT","3d84fcf16de8bdd78f1098650394a66a29709a40"],["sourcecred","git","COMMIT","3ddfb88738e47c20cf9ea58c2efd792aee1b6129"],["sourcecred","git","COMMIT","3e3760007c9d0a9471f5f0d429ac4c30b1fb54f6"],["sourcecred","git","COMMIT","3e5e14457fa143425d264a4fa941591d19730ce3"],["sourcecred","git","COMMIT","3e76da91166b4e618c16fcf03a91656654793ed9"],["sourcecred","git","COMMIT","3f47f07723b97f0311f32b78da99358d2c6affb4"],["sourcecred","git","COMMIT","40036a386b07c41b89e594736dadb6134cf182de"],["sourcecred","git","COMMIT","4003769a8d62ca41d0d18d2bd72204b1d278d5b9"],["sourcecred","git","COMMIT","407f5d0adffd9ef41bff0bdbfb06f67213accea9"],["sourcecred","git","COMMIT","419d39d87eb31965a8f5775075cb80be6a57abd6"],["sourcecred","git","COMMIT","41e67273af614a1014bfb58bf6ca1b1cee1e6a8a"],["sourcecred","git","COMMIT","432042f6f965bb113ad50950cfdbb82c44f0dc59"],["sourcecred","git","COMMIT","436819fc13564c1c553d1d70390daff05a9052e9"],["sourcecred","git","COMMIT","4474d1b88abf39aa94df664898e4832fc05e52cc"],["sourcecred","git","COMMIT","44772353f8d950226d909b12778cbed4df3ed866"],["sourcecred","git","COMMIT","44c844475c5e2beb5acdefc7e4cd54e90d2d84e2"],["sourcecred","git","COMMIT","44cf0fbba18bf392a44962faed1e1300ed6fa459"],["sourcecred","git","COMMIT","44ea41a64de0f121ff05a4c07c6bb51e35eb5035"],["sourcecred","git","COMMIT","45d3445cd814d4666f19f4b1b480984f1c0381eb"],["sourcecred","git","COMMIT","45f25ea4eb646427c06e58b7e4ce2c4cd385c329"],["sourcecred","git","COMMIT","46377a96ccd136b5401df0ed5032a105a385dd49"],["sourcecred","git","COMMIT","4639ec8dba12e8c7d3b0bf589b8c8a09c522ae47"],["sourcecred","git","COMMIT","47d595cee7fd82afdb8666263baa96555bec7b30"],["sourcecred","git","COMMIT","48e5b4467c6107040c107d55bc2fbe07a57ea3a0"],["sourcecred","git","COMMIT","49af56b16491699e672947ed52ce86dcb3f9d9c2"],["sourcecred","git","COMMIT","4a623fbc3735c9a32d10199880214cc79caa4004"],["sourcecred","git","COMMIT","4a90734832ae4ad328fc062712e2deca88d7dcc4"],["sourcecred","git","COMMIT","4acea81dd65135e7afd23cd4c5484dae44bcb324"],["sourcecred","git","COMMIT","4b4c9ea9705465d39f33b39ea39819c9c77aa78b"],["sourcecred","git","COMMIT","4b792e8ce9c473dd059f633bec6659a18a6d8ff7"],["sourcecred","git","COMMIT","4c0f6c1fe42e875f8cd6a4be4fa88be63052d149"],["sourcecred","git","COMMIT","4dc6dc24deb0f914eabc017a1e488a4d62f1a893"],["sourcecred","git","COMMIT","4ec6bdc6a120e123052ebf690ddf6f32b9c35722"],["sourcecred","git","COMMIT","4ecd9028dbcbb9fbf51a22a30fc7af21bde61d33"],["sourcecred","git","COMMIT","5023eee71c9c3f2f16de1b22e9f37fda26c2f023"],["sourcecred","git","COMMIT","509d8c03b1a67129a3e98073dd24f93723cdfe41"],["sourcecred","git","COMMIT","50d289eff07e8033e20cd60a4670c798dea24b71"],["sourcecred","git","COMMIT","51308621ec2843350852fd31f8c0aa08d6d6a809"],["sourcecred","git","COMMIT","51c24fd07be9e40f534f48d43f936d829ac7b085"],["sourcecred","git","COMMIT","52c6264dbafc69c14a2381a41075ca4fbb020653"],["sourcecred","git","COMMIT","53b6f1b980b797f92d59fc4912b2fe6e999f774a"],["sourcecred","git","COMMIT","53d9b62862d0e8ef597dbffcbd0da8bcd12100cc"],["sourcecred","git","COMMIT","54090419b371cac747ca19327d54c4cddb375f05"],["sourcecred","git","COMMIT","554a82bc05cb713e92e8b3523b521078daf829f0"],["sourcecred","git","COMMIT","554c96438fdbee2031b8b5ac16aa2d6db6a7f40f"],["sourcecred","git","COMMIT","56172b6087400fa81c13f39f37b23ec11de3c9b2"],["sourcecred","git","COMMIT","56e1450abd29457d3aefbdaef3e38562727b7628"],["sourcecred","git","COMMIT","576bc68e63d6232f6c78bdd38e66da8585c04b0c"],["sourcecred","git","COMMIT","578544d0557614c00780089fa9f8343950f977fc"],["sourcecred","git","COMMIT","59aa572835669dee12a533857e417b17ba7b45e5"],["sourcecred","git","COMMIT","5a3bda08dd0c3b937345c449229b07241d70fb09"],["sourcecred","git","COMMIT","5ae6db74ec638222cb60957c3105e15de7f84457"],["sourcecred","git","COMMIT","5afb4e08170c1bd2e9f5fb4dd42c6ef5e2d23878"],["sourcecred","git","COMMIT","5b85a7405489f720ed0b9cb5150c2619d45c9e9d"],["sourcecred","git","COMMIT","5c621ee4c644713a2627afbfed745482fe5525ef"],["sourcecred","git","COMMIT","5c8e695ad340e65e85862dc8202d17e73d95bc3e"],["sourcecred","git","COMMIT","5d168f1298b62e831159fc316e394491b8386aa8"],["sourcecred","git","COMMIT","5dd05e3605e9940f65f2059e8c4286077a6439db"],["sourcecred","git","COMMIT","5e5171d6fb098184d18a44589e6cd4fd72c89c80"],["sourcecred","git","COMMIT","5e8fc8eb37bcd473ee4acb90c32d8e7a8f6a77c7"],["sourcecred","git","COMMIT","5f689010f6e0a438513b7e44ef37ae12d59ddf91"],["sourcecred","git","COMMIT","5f858e9e9b52236fc3a085b38b1c7c5623dc814e"],["sourcecred","git","COMMIT","5fc99f0926a38140bc41ab5322e28e43f5b50969"],["sourcecred","git","COMMIT","603c5f7b7e2afb54619ebe705b969a1acb102bf6"],["sourcecred","git","COMMIT","6044da77d77cd5f0bf782fd47faf7813cb9a00d7"],["sourcecred","git","COMMIT","604ba8761cdddc84bfa66485fe367495e5c8a65a"],["sourcecred","git","COMMIT","60df4a2278ec3dd51317900064eb3061be31c3b7"],["sourcecred","git","COMMIT","60eb231938e7ad390175a13b46cf1161e23e915c"],["sourcecred","git","COMMIT","61741f2ee4388880504f3a299dbd9c11698cc7dd"],["sourcecred","git","COMMIT","62452c343ffd843e938714bc2e87d5214d7dd315"],["sourcecred","git","COMMIT","62d47242332f4e1d86f7d7ae460f6dc998344aa2"],["sourcecred","git","COMMIT","636ec6a16064c8c33eb4763375d53ac5d8bd1a10"],["sourcecred","git","COMMIT","6414f44dff41af4a83f6ce0de71d809bd0482d00"],["sourcecred","git","COMMIT","65524097ed5de3a815e989bd420e38177fe70bca"],["sourcecred","git","COMMIT","65d2ca343c51020478094ba87b5db4af6464741a"],["sourcecred","git","COMMIT","66f27020fa0bd12851a0de1b206abec8c0b5e55d"],["sourcecred","git","COMMIT","67380485711017726e26a1687668d3d85b0e5d41"],["sourcecred","git","COMMIT","67b58587f295e53b396fed2b68ab34032fd86420"],["sourcecred","git","COMMIT","67d46229489309035b968391e6d14611ebd5c3ff"],["sourcecred","git","COMMIT","68038d157338b257f25c21b69def40c3eed1e43e"],["sourcecred","git","COMMIT","680e6502d527be2ddbd2bd73be5ddce9c5914e9b"],["sourcecred","git","COMMIT","69d1fb79b9680f7ec5e8554f2a8c0f81d74d9a9c"],["sourcecred","git","COMMIT","6a8bfca0c936f304cc9a2a3399676be46aea9960"],["sourcecred","git","COMMIT","6b96998e7c2f8ce52dc09ebc9ea524d07debe38e"],["sourcecred","git","COMMIT","6bc1161d99c436a23c35f5477862677701ef72e7"],["sourcecred","git","COMMIT","6caa3ed4ed86f8414354719138e0121db2d6a0dc"],["sourcecred","git","COMMIT","6cf92566dda9fff26663c6dfe2e3ae277ae0d908"],["sourcecred","git","COMMIT","6d3765a6c17e93aaddcd0f3fb8ace45c20bda183"],["sourcecred","git","COMMIT","6d51ee836e10e9d7b38006f5e496655ae18ad368"],["sourcecred","git","COMMIT","6e7bfcd7b00408f64472201ac06ea499e02e6fad"],["sourcecred","git","COMMIT","6f1a3968daa1e3d2bd607f81a599ac5ebf73f717"],["sourcecred","git","COMMIT","6f4ff7a024df84c214317b9c950d77f3ae3c4f57"],["sourcecred","git","COMMIT","6f93833ab9fbe162b81bb768df2d85c30ad06ab8"],["sourcecred","git","COMMIT","6fb58d2bcb10efa1a1836b0bf3357ae6bc33955b"],["sourcecred","git","COMMIT","713acbd4593a7a10b0544aaab7fc4ac05a66f9ae"],["sourcecred","git","COMMIT","71e08464a654b37b05fe5349649a03f457933fa1"],["sourcecred","git","COMMIT","73505c34a1b46a3dfcaca4d9c3aa116fdf51e0db"],["sourcecred","git","COMMIT","73dbfea00d269ff953ee50c034f1c6939743a5de"],["sourcecred","git","COMMIT","749f1e4c55deee2c1b640348b5965f5a4afd2886"],["sourcecred","git","COMMIT","753c27ee7d264f00c566fe6f56722528f1028704"],["sourcecred","git","COMMIT","7544c9c062ca14c025caa6d2d859e346287f5e06"],["sourcecred","git","COMMIT","758f9ebb14e2687de4f888bc94f872a610174a9f"],["sourcecred","git","COMMIT","75ebd0228f654f094c750b9885c5fe5aceb72486"],["sourcecred","git","COMMIT","777514f100a7dc7df22a9a3f2c57f6516e8efc44"],["sourcecred","git","COMMIT","78601376522c329c0940754020ff4654ffe937b8"],["sourcecred","git","COMMIT","78714ca856356791aae2576d01eb1c27fc7e4c3f"],["sourcecred","git","COMMIT","7931cf20b5146bca68e51d26cdebade9a1d3a662"],["sourcecred","git","COMMIT","7a3226b449f5a2bb9e1d0528959c3aca8ce18f8f"],["sourcecred","git","COMMIT","7a991963a5c8fc8dba4ab6a0c1e39421eeec45d6"],["sourcecred","git","COMMIT","7ad5a2af6206fa2c6d894364d1f7f40b55f08149"],["sourcecred","git","COMMIT","7b20ff37a9650a134c6f55fffd04fbdd5df83b43"],["sourcecred","git","COMMIT","7b6d61687e57d15a45d195b1edb567451a30db29"],["sourcecred","git","COMMIT","7b9dca52443325803e66cf596d274a0b11d252eb"],["sourcecred","git","COMMIT","7bdeb692b04c1a855be5d7dda172d87caafa3f1b"],["sourcecred","git","COMMIT","7cd874acd8a0f9009911452d1c0b363cb13f6669"],["sourcecred","git","COMMIT","7d1f6e2d13ab467719f287802b16e799deeb5e26"],["sourcecred","git","COMMIT","7d4bf5aecee8daf8516f468e96e15c6b4d0efbcf"],["sourcecred","git","COMMIT","7dc4514cd415cc926827fe02cb2891b8d6b80e5d"],["sourcecred","git","COMMIT","7dd45c9416c703d549b6e278b7bfbe75053b1ca0"],["sourcecred","git","COMMIT","7e0a5d65716af527389ac6bb38d14950d482e415"],["sourcecred","git","COMMIT","7ea5916ad6f9de9841f277901506ab72a39bf157"],["sourcecred","git","COMMIT","7fadabe4bad18a2e7326b241c874d5efbeb6a691"],["sourcecred","git","COMMIT","7ff7782489b7894149cc5f211d9ddafcf84918e9"],["sourcecred","git","COMMIT","80773639d8e225d1902d6145312108ecaa906a15"],["sourcecred","git","COMMIT","810abfb03976accd663d1b7b964bbc19a92ec609"],["sourcecred","git","COMMIT","817cf8940cb88ba790c6021ce54bcb018aa0ceb6"],["sourcecred","git","COMMIT","81a67f48120449294d3ab94cc767755e0bf3784e"],["sourcecred","git","COMMIT","8275d1b5f3a774264d5833c23d8958342940092f"],["sourcecred","git","COMMIT","842296b74203dbd599856a16880adcc904bd5b01"],["sourcecred","git","COMMIT","85b6e8cca2d6bc5709449605c8ac645fe74f78d5"],["sourcecred","git","COMMIT","85eeea117f1160d5b9da37473b35598a7c76b5f2"],["sourcecred","git","COMMIT","8619ee2452e7bf109169017acc968bba3e6e129d"],["sourcecred","git","COMMIT","862fd7fa57bf683b777fc8f3789b1df4aea08e9f"],["sourcecred","git","COMMIT","877be03e547648fb7a06110788e7dad226a05559"],["sourcecred","git","COMMIT","8849eeb9b3a0677fcc53c34ec1675a0e27cf0074"],["sourcecred","git","COMMIT","892f2bf564a1dbbc4215f2ee677ac9fc2aa763e3"],["sourcecred","git","COMMIT","89a15b5772d1dc21737181d7dda26695a0dfecca"],["sourcecred","git","COMMIT","89b337bef296df10a94c3b38ce1e2ef4396886d5"],["sourcecred","git","COMMIT","89ed10ec9153e166a0b7275c73003fc6fd86e76e"],["sourcecred","git","COMMIT","89f7cc8cbfd2fe93bcdb22e979f918a288bd8668"],["sourcecred","git","COMMIT","8a584e4b4f9c8a1111bf383d3a7a72ca3f8ee5b9"],["sourcecred","git","COMMIT","8b3379b6dedd5d8ad5970d14cdd6c507909d3fcf"],["sourcecred","git","COMMIT","8b44ea06f42e6a25fc0e87bfd38c28786001969a"],["sourcecred","git","COMMIT","8c62624a48c8a907f8b30e548abdc4e3764fb0df"],["sourcecred","git","COMMIT","8c797532d4140aa6ce0d5514cc6ca749ec6223e3"],["sourcecred","git","COMMIT","8ce123a903f0035d55349e86f54eb04838bb739f"],["sourcecred","git","COMMIT","8d960f0415e8ce8a45d7005c4ee399de672144d4"],["sourcecred","git","COMMIT","8da32bb2436219e3a55631e426a71d3d45d27c36"],["sourcecred","git","COMMIT","8dfd165458a81f0c67969620d6ab006b7e24aef0"],["sourcecred","git","COMMIT","8e04719f8d88512b8e8e19e17e42f7d960f6733b"],["sourcecred","git","COMMIT","8e13f39d1372b422a914857f324ee60abd2c795a"],["sourcecred","git","COMMIT","8e50a18b163cc513402b9c6c320672c83c46db84"],["sourcecred","git","COMMIT","8e56a3f94f680b5419df0fbfba1e9c985a495345"],["sourcecred","git","COMMIT","8e62a063ca7e54dc299eb6cabbf877a663b94c8f"],["sourcecred","git","COMMIT","8e80b8ff5bbc8123e57ac728fc9efcd1cd2d038b"],["sourcecred","git","COMMIT","8fe6cb1f84b56fff85a3bd87661712256a6806ab"],["sourcecred","git","COMMIT","90694dc47c350631227c33418a773a70137d5877"],["sourcecred","git","COMMIT","912ad7ced1c783afb97c7d9a66f7c3f5e2799312"],["sourcecred","git","COMMIT","9227670ae651f3da852b6ec3555aa15713ecce86"],["sourcecred","git","COMMIT","93373ccc6bf6185127f6b17ad5626cc110fe5e08"],["sourcecred","git","COMMIT","936cd22fe159bfd7f8bed539783f52c768f20a9f"],["sourcecred","git","COMMIT","937417e50fd087e175a28471de2176cb56ec7003"],["sourcecred","git","COMMIT","94e51d9a83cd67b4ad82c6529212e72aac84afe7"],["sourcecred","git","COMMIT","95d5884b12a5a5f1d18552277e37597fb6048297"],["sourcecred","git","COMMIT","9620fb8b0386160e364e38d63ad3fede4a182ce3"],["sourcecred","git","COMMIT","96d370369c4d00c35acbdbc499fed536101b6601"],["sourcecred","git","COMMIT","971440a0ff594fb02bef0ed3320e9371e17bc2c3"],["sourcecred","git","COMMIT","97158bddc34b68675ca0d7376d36259a03aef6ac"],["sourcecred","git","COMMIT","978f052b63aa209ed8107dad71c59a44643e74ba"],["sourcecred","git","COMMIT","982a89df2b5282578a7593eea49511ae803ee10b"],["sourcecred","git","COMMIT","98f76c4fa934a3e08dc4abb8c19697c7ed1da81c"],["sourcecred","git","COMMIT","9a5b489e1bbcc306ce4c6362aa5aadff60e6a27f"],["sourcecred","git","COMMIT","9a866424f84b469783dfe559a510ffc93e00d64b"],["sourcecred","git","COMMIT","9aa0ecd6f537c0f3d5f6f200c7c5448ddc28c9dd"],["sourcecred","git","COMMIT","9adcfac02e9dc6203f733946b48815c16c4bda6a"],["sourcecred","git","COMMIT","9b553ff5e3ec727ed0dd45321971a9911a1f04ad"],["sourcecred","git","COMMIT","9d0cacf29ee5f6668426c0dd9cca12ad7af906aa"],["sourcecred","git","COMMIT","9d8560f7a170cc2c0937ba7980dbcb466ad3140f"],["sourcecred","git","COMMIT","9ee6d1b3b0d7b06c3abeb7b496e830683c54f6d4"],["sourcecred","git","COMMIT","9fc6edf1983584d9e8336ae9cba525ba92e3249b"],["sourcecred","git","COMMIT","9fdf4415ba620e87f0c8182df47265aa34f5f8fd"],["sourcecred","git","COMMIT","a04b1795da49cbc6e5f795f3b6c6cc424e1b9d19"],["sourcecred","git","COMMIT","a04cff65d72e1b96813ce58a0122a50378ac496d"],["sourcecred","git","COMMIT","a04fe98b80805bd1b2eafab803bc54c45c360418"],["sourcecred","git","COMMIT","a0931cbed5f9f91298af9d27a02d69468722488b"],["sourcecred","git","COMMIT","a0ebe6c6c881f02ae127c92abd3795e597009031"],["sourcecred","git","COMMIT","a0fb9b822baab9e0fce8433be3de7d423e1b4dd6"],["sourcecred","git","COMMIT","a11f8d670ef711b410415b8444330781522c3273"],["sourcecred","git","COMMIT","a180ef16d0fb9e6adbb95731fcdd0e84955805d3"],["sourcecred","git","COMMIT","a2421f56156e52f5b7138ff17678e3c13e13a2f1"],["sourcecred","git","COMMIT","a2547eb7d1835e050a897172b563ccb69b769711"],["sourcecred","git","COMMIT","a2fd7e076795c62a07501d5fb71c03999cc4b145"],["sourcecred","git","COMMIT","a356fe37b3ee2256d529a625a42d890962870096"],["sourcecred","git","COMMIT","a37a48256d99a63fcf0a678ebbb34cca0fd95f23"],["sourcecred","git","COMMIT","a380b67f78535ff8cd03945a60f98400e084a525"],["sourcecred","git","COMMIT","a39a9e3d229c78b1d5215a8c6faf435a23b996ab"],["sourcecred","git","COMMIT","a3a0462dc68b9d35f30abd2ce16199a9450383f4"],["sourcecred","git","COMMIT","a433d846e9ff70c98dba741fbfff7fa1985a67fb"],["sourcecred","git","COMMIT","a462920043f7ded252ca746cf21c6a3dfe91325b"],["sourcecred","git","COMMIT","a501a7454bf19ee03003196bfec9560d48c978d2"],["sourcecred","git","COMMIT","a52d2478c6e23704685c324883891a25f261069f"],["sourcecred","git","COMMIT","a631821f95e1a3b679073cd25647784f863699ec"],["sourcecred","git","COMMIT","a6853a839b1101b077e3b80c3106da01be2807ea"],["sourcecred","git","COMMIT","a6e243fcbfe540b52551bbb50c542ad07ee92e39"],["sourcecred","git","COMMIT","a794a7d8a4034af56c031a5a4a85300ad488871e"],["sourcecred","git","COMMIT","a7c425d5f9edb1106b5934cafe4cbfc221a08e9c"],["sourcecred","git","COMMIT","a7ea71e19d10841f56da13b7bd52ec3b0b2a9469"],["sourcecred","git","COMMIT","a7eb7abbb97a3acb715b06da2a906cd6646b56bc"],["sourcecred","git","COMMIT","a802f7c669324c951f6554fcf391f886ba3150f8"],["sourcecred","git","COMMIT","a8419d96792a217c1bb9462dfa71c8c738a87a16"],["sourcecred","git","COMMIT","a86004ae7a81b6150ca9decebdd05ab7d4151214"],["sourcecred","git","COMMIT","a999d6bd35df198bab6252404325d7a944983410"],["sourcecred","git","COMMIT","aa9b13f64574bcf35312c9c6e828986ce75aff16"],["sourcecred","git","COMMIT","ab8fbf7d53b4152b4ec97c983405cc703df3a2bd"],["sourcecred","git","COMMIT","ace3d821833c0157e8e3f74c06951fe79cbb49e7"],["sourcecred","git","COMMIT","ace98dcfcfaeffae7c2fc2618af5281d06129330"],["sourcecred","git","COMMIT","ad563e12ffae5d7b53764f2709b2da47a17aa18c"],["sourcecred","git","COMMIT","ae656a1a99e9a8cc227c187154123571d9d16872"],["sourcecred","git","COMMIT","af3fc40b0b4f010f4236391bc245bab5c3fc5343"],["sourcecred","git","COMMIT","af6293708734a500d9aeb65ece80c20d28d973d3"],["sourcecred","git","COMMIT","af89e8d6be326c34865a925f1be4c67877064e30"],["sourcecred","git","COMMIT","b038f1ca9f9b6a5a54935c1a730d2e32f8220ce7"],["sourcecred","git","COMMIT","b06798edf2d6f86723961bdd7a387dda3eadcb00"],["sourcecred","git","COMMIT","b1e24185c567c4f9a60959559e6ff1ac7dbb6279"],["sourcecred","git","COMMIT","b28ca121bfda152ce8bacc325aa7a31f9a3edb1e"],["sourcecred","git","COMMIT","b2ec0646a7533828b003a7cc525ac0ec48c5d9a0"],["sourcecred","git","COMMIT","b34492813251b626e0ef02911d7a0fe28aaa2b0f"],["sourcecred","git","COMMIT","b3a4034f04332a6546a7d03ee781f10dbf9e32f3"],["sourcecred","git","COMMIT","b3bfd8136d25f8aacc2b9267a3700f36f366792e"],["sourcecred","git","COMMIT","b3e0e30623418aaf8af913aed3c78c36e5e7c742"],["sourcecred","git","COMMIT","b3f667c746d54fd1e7ef41d4e91186ff705cb01a"],["sourcecred","git","COMMIT","b3f72b5f3ed774a1891f2da1a3c1b60af9272d84"],["sourcecred","git","COMMIT","b4394213300ff4d72ebaca7c63cf919df306ead3"],["sourcecred","git","COMMIT","b48eec0b0acb2c42b9307e89f0c50fcd2b5e3fe9"],["sourcecred","git","COMMIT","b4e879fb7c6c79a659dacc784a3e2165411d7531"],["sourcecred","git","COMMIT","b55a7a196b8f85817e8548bf7b9afba1341131e2"],["sourcecred","git","COMMIT","b5820a49d275ad3e2441dc49ba0e9c932e7e01ed"],["sourcecred","git","COMMIT","b5ad5eea401b4f415b9da446187b893a7ceee1b5"],["sourcecred","git","COMMIT","b5df3c8cd85cbe43606f2052f00631dbfcca42d9"],["sourcecred","git","COMMIT","b5e53ece75d30f3d379adb3a07c8cf652434e773"],["sourcecred","git","COMMIT","b6388db5eb6a6fed56eba661db2b761ccddfd6fc"],["sourcecred","git","COMMIT","b670574bd2bcf1e0a71c36b9447b0d5ffe22b9aa"],["sourcecred","git","COMMIT","b6920f3b6646522b3fc0f93e6343506b485c158b"],["sourcecred","git","COMMIT","b6968e47899cfc22652e1f1dbb3b82ed98cc5232"],["sourcecred","git","COMMIT","b72e98f338ce136d49bbc775464fbe071df8c431"],["sourcecred","git","COMMIT","b8100f78f6295a440d2e6a9e95a9099504c53374"],["sourcecred","git","COMMIT","b8319d3616c7d5e6c2af8087ea63e9fab1a73c02"],["sourcecred","git","COMMIT","b842ed3eaf687513a0d90eafdfb0a9ec6fc5882e"],["sourcecred","git","COMMIT","b85906087b6422297975a655808e1ddf998fdc8c"],["sourcecred","git","COMMIT","b85c0b5ab98357c6dc3af69297e6a795851c89f4"],["sourcecred","git","COMMIT","b8c4dd20fe0e1d3e66edf0ecada1d03544106dbc"],["sourcecred","git","COMMIT","b8c9da4bcc0d1a50add9423473a6c162cdb99597"],["sourcecred","git","COMMIT","b9309e4d44289af8341f43103b7be195df5998b0"],["sourcecred","git","COMMIT","ba08f21f38fef25e65a006e4af00591f623cba88"],["sourcecred","git","COMMIT","ba693f5f116cf19d9a8bf1bf55a4ec8c6c1929b8"],["sourcecred","git","COMMIT","bab488e0531a826777829e70c4cf8f620202e881"],["sourcecred","git","COMMIT","bb4c80608db52c03a33b09edbf8fdbffc666c664"],["sourcecred","git","COMMIT","bb9844bd3a996039c00d44054f3450fcdc905d22"],["sourcecred","git","COMMIT","bbc54e4947190da8c37d767e004339b62fb34aac"],["sourcecred","git","COMMIT","bbca4d024098c749b7064b70c24c416061255c75"],["sourcecred","git","COMMIT","bc959b6cd0e80d193876a8edb8ff0f18142ba558"],["sourcecred","git","COMMIT","bcc0d1e18f56c0ee098c7a1316afa5252c5d3392"],["sourcecred","git","COMMIT","bd29ad9bca1ac4c5f098c091bce6ea0824776115"],["sourcecred","git","COMMIT","bdb4c8a38c86a4598b2da69391fc84939148d738"],["sourcecred","git","COMMIT","bdd1d95095fc99186754502c96c1ecbff216fb14"],["sourcecred","git","COMMIT","be503991de7a3225cfc2888ab833abfccdb1d309"],["sourcecred","git","COMMIT","be5b93ae59bf65b698f6ed6301d28218c8170e91"],["sourcecred","git","COMMIT","bfb1be19201eedf6f5556b76fb3cba77b694c535"],["sourcecred","git","COMMIT","bfd321a5c384dc7fab99062bcc3491705303a176"],["sourcecred","git","COMMIT","c00a25ed5500c60da5520e12c68db9dc1e003cd1"],["sourcecred","git","COMMIT","c04c305dff31a60a5ea91270b07b5b46c4b734c3"],["sourcecred","git","COMMIT","c0622fcf93369e37f99e4809cea077710b9677d9"],["sourcecred","git","COMMIT","c09ce59f6cb00f62380a8dca641fbd016f0d70a5"],["sourcecred","git","COMMIT","c0f32243cff400f34b36897db4e64d3ae2cec253"],["sourcecred","git","COMMIT","c191e57f44662bcb753ec4c08a25545b0d25e284"],["sourcecred","git","COMMIT","c264cfe1bc96c758079bffcd728f497d0d7c0117"],["sourcecred","git","COMMIT","c2bf0a118855a87f962a7bda788c73120c64940b"],["sourcecred","git","COMMIT","c34bc9c573eacc008ca98653ddd2661f823ff9b2"],["sourcecred","git","COMMIT","c37818dc54db302c1bb2bfe99312084cb6452263"],["sourcecred","git","COMMIT","c3d50445a0194dac7d52baaaa8aa3dbf2bd77173"],["sourcecred","git","COMMIT","c461bb40366be6124cc8e09af25741c5e65b1a6a"],["sourcecred","git","COMMIT","c46d5eb8179fd34a5732394f59d40cf6e3b5a4e3"],["sourcecred","git","COMMIT","c4ae2b95edd223a2b3269f4913c5a237e7557194"],["sourcecred","git","COMMIT","c4fa771d6e61d74c5f1e702dd238ebbb4b538be8"],["sourcecred","git","COMMIT","c515036f8ba1937cda94092e87b0a13545d86829"],["sourcecred","git","COMMIT","c519a0916f23866c99c0c76bad33dec09c4a1052"],["sourcecred","git","COMMIT","c5c9f44334709db3c28eb81f1ee928a3823ae003"],["sourcecred","git","COMMIT","c5eeac948569a06622740d0b9340c622ddb469d3"],["sourcecred","git","COMMIT","c61bc79183374e7e37a8456ff47f662a2bc21baf"],["sourcecred","git","COMMIT","c676d5b790126e2af137ca1c53c8048db443a88a"],["sourcecred","git","COMMIT","c7acef8a5664d3dd57059e8cc447c4f1dbe269db"],["sourcecred","git","COMMIT","c85244688604991c9ee1ae17a7bf62373a004fd1"],["sourcecred","git","COMMIT","c85e7ad86fb08653971ed365f4f316d4577178ed"],["sourcecred","git","COMMIT","c8d413c01f9aa1c9d272f96283367268ff49103f"],["sourcecred","git","COMMIT","ca41c379a44e4ccadb2b56c359ff2ece8aa5b5de"],["sourcecred","git","COMMIT","cba7b7417f1aa04b9137d0eb1d2b41cfc1b84f9b"],["sourcecred","git","COMMIT","cc4e4ff94b2fe78d8727963b42bc1c33bfd2e932"],["sourcecred","git","COMMIT","ccde11b4e85afd9685dc9f58165148861adbe59e"],["sourcecred","git","COMMIT","cda86c72f131bd0ba804c57d20be41d8f017cf3d"],["sourcecred","git","COMMIT","cee0c69332f9f5481d0ae7f1dcf1a8f92f346877"],["sourcecred","git","COMMIT","cf359f56a9e7d9e380a729fe64f0fd9e06853c21"],["sourcecred","git","COMMIT","cf41636379acd5fb9e27af62727fdf64a111d959"],["sourcecred","git","COMMIT","d01e1a1762cde70b0fb49e82ec5432de6d691fb3"],["sourcecred","git","COMMIT","d0cc40b28ca9129e733107d99730dfbcd9449273"],["sourcecred","git","COMMIT","d13028772ab946a65da8787a255248337864a5ba"],["sourcecred","git","COMMIT","d1a721f8eed2805dd0c85d8d9fef06032f04c056"],["sourcecred","git","COMMIT","d210d6f387860b4736193624125ec5e1b8f5c88a"],["sourcecred","git","COMMIT","d219bd2f62a0ec8ac06b82daf83499442e3cb173"],["sourcecred","git","COMMIT","d265f3f3a462805b6c27dc7507b15be038730a06"],["sourcecred","git","COMMIT","d383b8fd2e6815eb8a5099785a7ef5c4393e531e"],["sourcecred","git","COMMIT","d44bc4f2e2256f0ebe1af485b047d9567583ed85"],["sourcecred","git","COMMIT","d4555554d347b2385ac96a530f5628491c2c724c"],["sourcecred","git","COMMIT","d45cdeaaabc568712db4fd59c157084fc4819e19"],["sourcecred","git","COMMIT","d49ea3b27586437f262b74132224b280597e67bd"],["sourcecred","git","COMMIT","d56ad45d57b3ca44c6702f66dbcf349dd39a9116"],["sourcecred","git","COMMIT","d593b126af5ccde32fe610fbc399f9233c4fcdcf"],["sourcecred","git","COMMIT","d601ad079de95e29fe5bd99dd225621e193b09a8"],["sourcecred","git","COMMIT","d63265d1ec1ac6d5e5d661fc137bef3bc4752020"],["sourcecred","git","COMMIT","d6bcaf0ed530067e11be1321280fc83f3a289be2"],["sourcecred","git","COMMIT","d7e5763c37582067d930e53718273eef67997db7"],["sourcecred","git","COMMIT","d8034c1a997a6f3762eb64abefd3983ca5c17b27"],["sourcecred","git","COMMIT","d8288bb356551f8609c84a09886c19fb4fd673b4"],["sourcecred","git","COMMIT","d83736f0f5cc5c3fc415146a5ad80145b3a565a7"],["sourcecred","git","COMMIT","d8f4083966d599198ff8f988f55ced0e2b91ba98"],["sourcecred","git","COMMIT","d9900e922c90ce1d244761f1e2ad2fc4fb65f298"],["sourcecred","git","COMMIT","d9b40e071c2f216b8fb4cebce788ec1bf892ac7c"],["sourcecred","git","COMMIT","da69104f37bc78c1c71a34b9fafe537f875ca7dc"],["sourcecred","git","COMMIT","da9fa8ec523e360ace96eba7bc72bedadc69c8ac"],["sourcecred","git","COMMIT","db97114fd0dbcd580c0a88991f4b6991d0bef4e5"],["sourcecred","git","COMMIT","dbb4bbb4a48bf36b3890cb23012337c0bfbfc6c7"],["sourcecred","git","COMMIT","dc008266ba36121c746ddb6b60121b6e084d3065"],["sourcecred","git","COMMIT","dcba3eb54f781973155ef382ed674685adb9491f"],["sourcecred","git","COMMIT","dccb0bae8344da0fa4bc886fd642bd819e5ab204"],["sourcecred","git","COMMIT","dd687457b7a8178a907116c7880a1bb498bb4131"],["sourcecred","git","COMMIT","ddad2121732e1f0646c5ab6d3d8fc51c431f94b8"],["sourcecred","git","COMMIT","de56e092581eb21affd70f681de349d461487d47"],["sourcecred","git","COMMIT","def7f01015008f1aefda848d93661555c086231a"],["sourcecred","git","COMMIT","defb8c56dbc8ed6a58674a7c569010ddc17fea0b"],["sourcecred","git","COMMIT","df39053f37bf93823cd4364b819ca1289e4481b1"],["sourcecred","git","COMMIT","df4aca3876a771513b7e5d9a0c28517746508961"],["sourcecred","git","COMMIT","df9f7423f0e18a57835324b459fe243d3f3e55ab"],["sourcecred","git","COMMIT","e00d2fbc8959a1a8dd6907627c0f13731dd5b7e4"],["sourcecred","git","COMMIT","e0cd35442d7cf4999adc586ee0c24e3fc3bf2e1f"],["sourcecred","git","COMMIT","e11bcaa214504bd338f41f0684c387377e91d223"],["sourcecred","git","COMMIT","e27f889ed7e899c482d528e5bafb0a950047db35"],["sourcecred","git","COMMIT","e2dddf8e3303043dae6bf8efc44777965d5fde9a"],["sourcecred","git","COMMIT","e3707010bd6cff203cbe2450f48d2ee7bbc5d155"],["sourcecred","git","COMMIT","e41eb256be1cff6f8173bf1b4ab1e08d82680377"],["sourcecred","git","COMMIT","e4db1e5c01390590a53e47424b6fc6389fbed459"],["sourcecred","git","COMMIT","e5810c7e956182f58bacafd24c51f8be7e6af31f"],["sourcecred","git","COMMIT","e5c721ba787d25a591d470c5ba11d9bd41e1797f"],["sourcecred","git","COMMIT","e63ec70c3b75de539e86faf77c9e44f83753cb1f"],["sourcecred","git","COMMIT","e7d262bceecfcab743754d6d3a41fea1d74be955"],["sourcecred","git","COMMIT","e86fcfd2e1ddf643bc06ef0a08d439899b509c8a"],["sourcecred","git","COMMIT","e8c036745f6c3d82f34e46e6f40ce520f53be1ef"],["sourcecred","git","COMMIT","e8d2566e023a7cefb04c5157b0f85568fcb9a3c5"],["sourcecred","git","COMMIT","e97f15b28e12292f7df8de6515a27b63f989acfb"],["sourcecred","git","COMMIT","e9a68209df1f07b4f9f28319e98dcade12ebde80"],["sourcecred","git","COMMIT","ea5b35e7658fc8550736aa7ef2e3e4a37c8395a2"],["sourcecred","git","COMMIT","ebfca230987726fb6d0c74cdba1e7346b5d08345"],["sourcecred","git","COMMIT","ec5436b68ec36cea41f923ae2d95841b7dbe678a"],["sourcecred","git","COMMIT","eca1c8e4fb9897f86e7192f1741d00509707a42d"],["sourcecred","git","COMMIT","ecc49af4d29ddb86bece5cf38e3295d03d80efc8"],["sourcecred","git","COMMIT","ed75cb58e840a9712a7fe5678e0234538101824c"],["sourcecred","git","COMMIT","ed85892fe323a252ac0d44ca5ce619fe73cc8a5d"],["sourcecred","git","COMMIT","ee30ad273845bf58d551566ffe5c4e87e98c07c2"],["sourcecred","git","COMMIT","ee805c230d58b420f39bedd6d7dc5c10c8f14856"],["sourcecred","git","COMMIT","ee80ee18c4c10447c5e3d180c7cb87d177cf6bab"],["sourcecred","git","COMMIT","ee958e4ea4a9d7db08a45e558912449245e1f619"],["sourcecred","git","COMMIT","ef1a4e1d3bf70f9daccebdf3028ea8f476c26899"],["sourcecred","git","COMMIT","efe2a210242adcd52a288d57f373b09187b88c17"],["sourcecred","git","COMMIT","f024b3aa2227eccef235a3b4d5a76e7f04cc78fc"],["sourcecred","git","COMMIT","f13bf3f7a6dfeebd2725261a11357612547e0783"],["sourcecred","git","COMMIT","f1650581495bd5ba951e6aca3adc65aa4271e7ec"],["sourcecred","git","COMMIT","f1b1a348514a8d88750c2774a379a00b85ea0810"],["sourcecred","git","COMMIT","f1ec698041e4fdef5931f7928a751a8a45433b9f"],["sourcecred","git","COMMIT","f3484bc0a5f204b3b6cd3159a0e3c274c2056154"],["sourcecred","git","COMMIT","f370b16891f4dc805ea30ac6b5a3042c8224bb45"],["sourcecred","git","COMMIT","f3d076f67797f6c3491e046a5dcdce0372890de5"],["sourcecred","git","COMMIT","f4379c34b30691a61e67438d4da4192f7cb18710"],["sourcecred","git","COMMIT","f4597eaa6b0681ebfb7e32991fc295f52427d199"],["sourcecred","git","COMMIT","f4b57f657a24f0feb175f404718f49ffc506edc0"],["sourcecred","git","COMMIT","f5b6b5b9b8ab493342591799369bab4473ad4bd5"],["sourcecred","git","COMMIT","f6a88b69728fa2cbc9304a9d3a6193afa9aca17c"],["sourcecred","git","COMMIT","f74897580057b86bf1ec803694b2494dc5099ba4"],["sourcecred","git","COMMIT","f78660ce09132d6127ab960a0fdb9f19f2b76893"],["sourcecred","git","COMMIT","f79294b14e900ca927b3e9e5cf51972814cd2c50"],["sourcecred","git","COMMIT","f7ecdc6617ce77574676654a84f58313ad9f84a8"],["sourcecred","git","COMMIT","f819ec520e754c4adb46d13d0126fa48f03b0dac"],["sourcecred","git","COMMIT","f8cc3c0cfe61b256ef079488a26d06b59f6f8ca0"],["sourcecred","git","COMMIT","f96bc3f66106ed4341d674b5a37a1fce8035c922"],["sourcecred","git","COMMIT","f9f862051f1b8310f274b4e8e8c20604a75bda59"],["sourcecred","git","COMMIT","fb4fcae94286c8bcdda97e172bc867ab4e08b76c"],["sourcecred","git","COMMIT","fcacf68e748f6ee1883db51392267fc8537db08b"],["sourcecred","git","COMMIT","fce33399d0696995385d8895995cb0fdaad56615"],["sourcecred","git","COMMIT","fd8dac99c58c603001fa56c8d2dd2553db8fa6c0"],["sourcecred","git","COMMIT","fdaff82509a99dc7adb3d1289b2ad02a339fe19e"],["sourcecred","git","COMMIT","fdf6857a29d796d7cfdea7f7d45a67a9c05d50d2"],["sourcecred","git","COMMIT","fe33dab74a05f43d1e24044dc4413ff0e72aad50"],["sourcecred","git","COMMIT","fe865a679a723590923af6394366b58fb01c8f50"],["sourcecred","git","COMMIT","ff708c3b7352a9b659df8120351e6f1eab566a2a"],["sourcecred","git","COMMIT","ffec223be5fffa16d0ce2effb0aeed1b959a2532"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612693703"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","14","612962510"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","16","613151713"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612842722"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","612918834"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","18","613069946"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613141085"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613146304"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","22","613226248"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","25","613347004"],["sourcecred","github","COMMENT","ISSUE","aracred","AraCred","26","613797792"],["sourcecred","github","COMMENT","ISSUE","aracred","TheSource","3","613030762"],["sourcecred","github","COMMENT","ISSUE","aracred","bot","3","614314292"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612563994"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","612990333"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613020677"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613024850"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613026757"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","613028322"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","1","614088358"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","2","612630503"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","3","612642927"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","4","613343876"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612843090"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612844672"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612910606"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612911587"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612939366"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","612942113"],["sourcecred","github","COMMENT","ISSUE","aracred","onboarding","6","614058561"],["sourcecred","github","COMMENT","PULL","aracred","AraCred","20","613089159"],["sourcecred","github","COMMENT","PULL","aracred","bot","9","614948916"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850216"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850385"],["sourcecred","github","COMMENT","REVIEW","aracred","bot","8","395001410","409850667"],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MDA5ODY1OjAyZTNhMzlkNzYxODM5NzVmYTlhMDY3MWRlMGM3OTIyMjc0YjZhYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTE1NDI5OjFhMTZmMWVjNTBlNTllM2JhZjk0NjI2NzdmYTJjNGYwM2VlMmY5Yzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI0OTEwOjFhMjE3NTliMGJmM2RiZjNmNTI0YTIzYmYxMGM4ZTRhMTE0ZGVmOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1Ojg5ZjdjYzhjYmZkMmZlOTNiY2RiMjJlOTc5ZjkxOGEyODhiZDg2Njg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1MTI3MjE1OmI0OGVlYzBiMGFjYjJjNDJiOTMwN2U4OWYwYzUwZmNkMmI1ZTNmZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjE2OTcwNGIxZDA5ZDQ0OThmZjBlYWYyMjc2YmM0MGU3OWZmZmRmN2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjFkOGVlMmIzYWE2ZTI1YmNmNjBlYzZlNTJiZjUzMjhjMDg2NmNkYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjIzZDJkOWQ3NjIxNGY2YjYzMDk2NzZlMmQzNjlmZTIyZjQ5NTk0M2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJhYzFhN2UxMTA0ODZmMTk0ODNhYmVmZjU0YzI0MzMzNTY0MGM5MjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJiOTE0NzBkNzlkNmU3MDdkMmU4Y2IzYTc5NGViZThjNGQ3YjM0ODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjJjNDA3ZjM2ZDBjNWIyN2QyYzQ3NGIzMzVjYWJiODFjZmUyZWRlY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjM5NmU1Zjc5MWJlMWMzY2YyNThiMDhhZmM2MTExY2VhOGE0MDk2MzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjQzNjgxOWZjMTM1NjRjMWM1NTNkMWQ3MDM5MGRhZmYwNWE5MDUyZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjU5YWE1NzI4MzU2NjlkZWUxMmE1MzM4NTdlNDE3YjE3YmE3YjQ1ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY3MzgwNDg1NzExMDE3NzI2ZTI2YTE2ODc2NjhkM2Q4NWIwZTVkNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OjY4MGU2NTAyZDUyN2JlMmRkYmQyYmQ3M2JlNWRkY2U5YzU5MTRlOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFkNTYzZTEyZmZhZTVkN2I1Mzc2NGYyNzA5YjJkYTQ3YTE3YWExOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmFmNjI5MzcwODczNGE1MDBkOWFlYjY1ZWNlODBjMjBkMjhkOTczZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI3MmU5OGYzMzhjZTEzNmQ0OWJiYzc3NTQ2NGZiZTA3MWRmOGM0MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmI4YzRkZDIwZmUwZTFkM2U2NmVkZjBlY2FkYTFkMDM1NDQxMDZkYmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmIzZTBlMzA2MjM0MThhYWY4YWY5MTNhZWQzYzc4YzM2ZTVlN2M3NDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ0NWNkZWFhYWJjNTY4NzEyZGI0ZmQ1OWMxNTcwODRmYzQ4MTllMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ2MDFhZDA3OWRlOTVlMjlmZTViZDk5ZGQyMjU2MjFlMTkzYjA5YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmQ4ZjQwODM5NjZkNTk5MTk4ZmY4Zjk4OGY1NWNlZDBlMmI5MWJhOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRkYWQyMTIxNzMyZTFmMDY0NmM1YWI2ZDNkOGZjNTFjNDMxZjk0Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmRlNTZlMDkyNTgxZWIyMWFmZmQ3MGY2ODFkZTM0OWQ0NjE0ODdkNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmU0MWViMjU2YmUxY2ZmNmY4MTczYmYxYjRhYjFlMDhkODI2ODAzNzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmUzNzA3MDEwYmQ2Y2ZmMjAzY2JlMjQ1MGY0OGQyZWU3YmJjNWQxNTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmY4Y2MzYzBjZmU2MWIyNTZlZjA3OTQ4OGEyNmQwNmI1OWY2ZjhjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjU1NDA0OTI1OmYxZWM2OTgwNDFlNGZkZWY1OTMxZjc5MjhhNzUxYThhNDU0MzNiOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjA1Yzc4YTg1ZDNiODIwNzRlYjBlOTY2YzQzZWFmMjlmNTNlMzk0MjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjAzMWE2OGViNWE0NWI3MGM4MDYxOTdiNDc3ODNiMWI0YWU0MzMyZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjBjNDRiN2M1YjdhYzIyNDNiMmZhOTg0YTZhYmM5YzkxNzYyYThhMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE1ZTZkYjY4NWU3MzBhYTU1Njk3ZDZmYzhmNjBlOTAwNjczMmQyZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE2NDU2YTBlNmRjZTA5MTAyMTIyYjUwZjQyYjE4NWMzMzBiYjdiMjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjE4YzVhZWUwYTgxOWZkNGY3ODc3MzIxYWY1ZmQwNDc5MWY4NWM2Zjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjEyMGIxMGQzNGQ1ZTgwNGIyMTk4NDU2OWMxMTNlMzcwMzZlZmU2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjI2YjY5YzA1YjE5ZThjNTdmMmQxNmY3N2FiNGQ4NmI3NjI0N2NlMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJhNmE0OThlMWYwNmY1NWJjOGQ3MjM4MDAxN2I0ZDQwNjBlMjcxMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJiNmVkMDBiZDI2OTA3ZjkxNjQ5ZTI2NjYxM2RhYmE1NmNiYWEwZWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJjZWU3MzJiYzExYjcxMjgxNDg1NWNmYjFkOWI1YjI3OWNlZjZmYjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJkOWU1YmQxN2RiZTc4MjM1YmNhNmJmZDQ0YjZhOTEwZDNjNGE5NTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjJlNGQwMmI1MDIyYjc0NGI0M2ViYTRhMDMyZmE4NTViNzY1YWEwYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM3ZTNiNzI1MTU2NjY5OWQ0MzQxYjNiZGJiODFlYzhmNTU0ZjdkODc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjM5YWMzNjdjYzBhM2U1NTM2NmYxOTBmZTE1OGE4NTE3Zjk3YzI3Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjMwZDIyMWRjZTUwYjM3OGIxYzczMDViZGEwOWJlYTNmNzc4ODc0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjQ5YWY1NmIxNjQ5MTY5OWU2NzI5NDdlZDUyY2U4NmRjYjNmOWQ5YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjRiNzkyZThjZTljNDczZGQwNTlmNjMzYmVjNjY1OWExOGE2ZDhmZjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjUxYzI0ZmQwN2JlOWU0MGY1MzRmNDhkNDNmOTM2ZDgyOWFjN2IwODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVhM2JkYTA4ZGQwYzNiOTM3MzQ1YzQ0OTIyOWIwNzI0MWQ3MGZiMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjVlNTE3MWQ2ZmIwOTgxODRkMThhNDQ1ODllNmNkNGZkNzJjODljODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYxNzQxZjJlZTQzODg4ODA1MDRmM2EyOTlkYmQ5YzExNjk4Y2M3ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjYyNDUyYzM0M2ZmZDg0M2U5Mzg3MTRiYzJlODdkNTIxNGQ3ZGQzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZjYWEzZWQ0ZWQ4NmY4NDE0MzU0NzE5MTM4ZTAxMjFkYjJkNmEwZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZkMzc2NWE2YzE3ZTkzYWFkZGNkMGYzZmI4YWNlNDVjMjBiZGExODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZlN2JmY2Q3YjAwNDA4ZjY0NDcyMjAxYWMwNmVhNDk5ZTAyZTZmYWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjZmOTM4MzNhYjlmYmUxNjJiODFiYjc2OGRmMmQ4NWMzMGFkMDZhYjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjdjZDg3NGFjZDhhMGY5MDA5OTExNDUyZDFjMGIzNjNjYjEzZjY2Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg1ZWVlYTExN2YxMTYwZDViOWRhMzc0NzNiMzU1OThhN2M3NmI1ZjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg2MmZkN2ZhNTdiZjY4M2I3NzdmYzhmMzc4OWIxZGY0YWVhMDhlOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjg5MmYyYmY1NjRhMWRiYmM0MjE1ZjJlZTY3N2FjOWZjMmFhNzYzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjk3MTU4YmRkYzM0YjY4Njc1Y2EwZDczNzZkMzYyNTlhMDNhZWY2YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjliNTUzZmY1ZTNlYzcyN2VkMGRkNDUzMjE5NzFhOTkxMWExZjA0YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOjlmYzZlZGYxOTgzNTg0ZDllODMzNmFlOWNiYTUyNWJhOTJlMzI0OWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE2MzE4MjFmOTVlMWEzYjY3OTA3M2NkMjU2NDc3ODRmODYzNjk5ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE3OTRhN2Q4YTQwMzRhZjU2YzAzMWE1YTRhODUzMDBhZDQ4ODg3MWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmE4NjAwNGFlN2E4MWI2MTUwY2E5ZGVjZWJkZDA1YWI3ZDQxNTEyMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmExODBlZjE2ZDBmYjllNmFkYmI5NTczMWZjZGQwZTg0OTU1ODA1ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEyNDIxZjU2MTU2ZTUyZjViNzEzOGZmMTc2NzhlM2MxM2UxM2EyZjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmEzODBiNjdmNzg1MzVmZjhjZDAzOTQ1YTYwZjk4NDAwZTA4NGE1MjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFhOWIxM2Y2NDU3NGJjZjM1MzEyYzljNmU4Mjg5ODZjZTc1YWZmMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmFjZTk4ZGNmY2ZhZWZmYWU3YzJmYzI2MThhZjUyODFkMDYxMjkzMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJiOTg0NGJkM2E5OTYwMzljMDBkNDQwNTRmMzQ1MGZjZGM5MDVkMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmJkMjlhZDliY2ExYWM0YzVmMDk4YzA5MWJjZTZlYTA4MjQ3NzYxMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM0ZmE3NzFkNmU2MWQ3NGM1ZjFlNzAyZGQyMzhlYmJiNGI1MzhiZTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmM1MTUwMzZmOGJhMTkzN2NkYTk0MDkyZTg3YjBhMTM1NDVkODY4Mjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMyYmYwYTExODg1NWE4N2Y5NjJhN2JkYTc4OGM3MzEyMGM2NDk0MGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmMzZDUwNDQ1YTAxOTRkYWM3ZDUyYmFhYWE4YWEzZGJmMmJkNzcxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmNkYTg2YzcyZjEzMWJkMGJhODA0YzU3ZDIwYmU0MWQ4ZjAxN2NmM2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ0OWVhM2IyNzU4NjQzN2YyNjJiNzQxMzIyMjRiMjgwNTk3ZTY3YmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQ5OTAwZTkyMmM5MGNlMWQyNDQ3NjFmMWUyYWQyZmM0ZmI2NWYyOTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmQxYTcyMWY4ZWVkMjgwNWRkMGM4NWQ4ZDlmZWYwNjAzMmYwNGMwNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRiOTcxMTRmZDBkYmNkNTgwYzBhODg5OTFmNGI2OTkxZDBiZWY0ZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRkNjg3NDU3YjdhODE3OGE5MDcxMTZjNzg4MGExYmI0OThiYjQxMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmRmNGFjYTM4NzZhNzcxNTEzYjdlNWQ5YTBjMjg1MTc3NDY1MDg5NjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5N2YxNWIyOGUxMjI5MmY3ZGY4ZGU2NTE1YTI3YjYzZjk4OWFjZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmU5YTY4MjA5ZGYxZjA3YjRmOWYyODMxOWU5OGRjYWRlMTJlYmRlODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmUyZGRkZjhlMzMwMzA0M2RhZTZiZjhlZmM0NDc3Nzk2NWQ1ZmRlOWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmVlODBlZTE4YzRjMTA0NDdjNWUzZDE4MGM3Y2I4N2QxNzdjZjZiYWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmY5Zjg2MjA1MWYxYjgzMTBmMjc0YjRlOGU4YzIwNjA0YTc1YmRhNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc3NTcwOmZjYWNmNjhlNzQ4ZjZlZTE4ODNkYjUxMzkyMjY3ZmM4NTM3ZGIwOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjA3ZTBlNWYwMGUxOGUwMGExMjg5MmI0N2JkM2Y1Yjg3NDE4Mzc3ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAxNDA5M2UxNzkwMGU3NDhiYjhmODI2NTY0NDNlYzYyMWJkOGE2NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyMzUwMTY5ZDBlNzdlMjgwOTY4YTA2MmExZTk4YTYwYTBkNGM1ZDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjAyNDVhNDAwMmEzNWMyYWRjY2ZlZDFmNjhhNjc1YzMwYmE4NzFiYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjBlNDY4ODQzMTkxYWQzYTI0ZmY1YjgwM2IyZTM4OGExMmU4OGEyODk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1ODJlYzM0NTMwZmY2YjcwNTUzODIzMTkzMzZhY2MzZjgyZGU1Njc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE1YTgxMjdiYzU0MDJjNzIyNGJjNTkyZjg5MGE1YmQ3Zjc5M2M2YTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjE4MjNhYTczMDc4Nzk2ZWNmOThkZDU2ZDljMTM0Y2NmMjE5MmU2ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjExZmNkMDlhMGNkZTA4YWYwOGI1YzVjOTUxZjU0YzE1MGNmNDdlYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyMjJlNDliNDI2OWYxNWIyYzcxY2ZlNGI2MmIxMzMzYWJlZWE1ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyY2YwZjE2ZDQwNmYxNGMyNTk3YWJjMTMwYzRkMmJmYTk5MjdmMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEyZGRkNGUzNTYwN2MwMTg0Yjg5OGM4OThlMjZlNDVjNjAxNzY0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzNjM0NDE0MzM3ZTczMGZiY2I0MDNlMjY1N2E4MDA3MzQ3ZGRkOGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjEzZmM1MGQyMmUyMzUzY2YyYmIzODk0OGNhZTRmYjVmYjU5MWNlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFhNzkyOTQ2MmZjMzU0NDg0MDhmMGQ4NTRhNmM4Yzg5OGMyZGI5NGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFiNTEyN2UwNDE2YjMyOWZjNGRjZDFkOTg4ZDI5NDg5YmVhOTAxNmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFjYWMxNWVjYWU1ZTYzNmZkNWQwNDlmYzU5OTNjY2QxMTMxMjZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFkYzRhMmMyMzUyNTA0M2E3YjZlMzJhNzk4MzdjYjZhNWE2MmZkOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFlZWQzOGM0Y2ViZDYzYWI2ZmM5NTM3NTY0YTUzMDRhODcwY2FhMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjFmMzUwZWFkMjJjYjUwMzkzMmVjMzZiOWQyMWI3MzVlYjk3ZWIyNTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI1YzE2YmI4NTgwMTI3OTE5NjAxOGI0NGVjMGRiMDgzNGZhZGM0YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI3YjJiZjNkN2RhODNlMDQyOTVhYTFjMjI5N2U1MGNlODE1N2Y0MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjI4YjBlM2YyZDhmZDQyNTY5ZWI4MDNkMTA0MzVhYThjMGVkZjI4ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIwNzQ3OTFjNjgwZWUzZDg5NmM2YzgxOWVlMDI0NDcxOWE3ZTUxMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIxMTk2YjkzNDJlNTUyY2M0ZmM2YTlmMjEzZWE0Mjc2OGYzNTkwZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyNTE2ODc4MGI4NmE0YjQxZDM4ODQ1NjUzYzVkODc1OWQxZDM3YWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjIyZjU3ZTdiMzIzYjA4MDBjMjE4YjI3MDk4MDI4NmMxMDVmZjc3NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJhMTIwNGI0NGY0NGQ2ZDkzY2Y5NTJlMTgwNGFlZjI1ZmZiZGQ3OGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJkNDQxOTFhOTk2OTUxY2NiZWQwMDA5MjgwODk5NjE0ZDYzMTc0Yzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmNDJhMmEzOTE2ZmU2ZWRlOTdmMWZhYzlhZGMxODk3ZmNiYWEyYmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjJmYWQ5YWFiNjg5NzIwMWU2YmMzNTNiOTc0NmMwM2QxZTcyOGQ0MzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM0NzIzOTYxMTk5NTY1OTM3NDkzODM0MDcxNjY1Yjg3MWE2MzJkNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM1YmYwODI5YzA2OGFhMjBkZTUxNDY2ZWExMThmNzU0NzcwN2RlMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2NDA2OGVjOGRiODZiMzc4ZDYzMGY1OTFkYTNhMDJkZTg3MDg3OTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM2ZDcwOThjNWYwYzQwMGRkZGVjMWU2NTQ1MjNhMjgwMDc4MmI3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM3YjM1N2NiODhjZjYwOGQyMDU4OWNlNmVlNTE0MDQ1NjFiYjRiMWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4MGU3NGQ0N2I2YmZkMmM0OGQ1NjkwMDkzYWIwM2U0NGI5MmQ5OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM4ZjMyNDA3ODZjZWVjNWI0YzAzZDdhNWNlMGZhYTAyNTEyYThjZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MWIzMmJmZGI1YWUzN2QyY2U0MmQzMjMxOWZiYWRkZTcyNjYzZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5MmU2MDFkMzE3OTUwNmRmZTdlYzBhZDIwY2Q1ZjY3OTY5NmU2NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YjBhOTAyYzFjMTc1MTJhNTM2MzgwNTAzYTUwNmZjM2NhNjE1YmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjM5YzZkYWFhNWZjYTYzMDViOTA4Y2RkMjg4MTExMDdlYmE2YmNiZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwMDE0YzExODQxYzlhNjA1Y2M5NGQ1MTdlY2U2Yjg2N2FmZDhjZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwNzU4ZDA0YWE0ZGE5N2ZjMGFjZWQxZmEyMmNiZGVlNGE4MmM3OTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMwOWE4OTU4NmRhNWUyZDQ0YjQ4YTYwN2M5MzM0YWVmNmY2ZGIzZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxMWJmMjZhYTUyNjhhMDY3YjBiZmM4NzA4YTkyMmQyZmQzZDBhODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjMxN2ZmYTE0NzFhMDE3OTAwN2I4N2Y5M2FhYzIyMjM2NjY0NDNkNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNhYjg4OGM2MmM2ZmE2NDA4MGU2NzVjMWY1MTQ2ZTE1NjYzNWVlNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNDg3MWMwOWI2NzQ5OGUzMTU3NWI4YWFhOWMwOTQ0M2QxNDJhMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiNWE0NzE1YTk3OTBlMjNhMmUzNWQ3ODNkNjkxZThkNWVlNThmODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiOGU0ZjU0ODQ1Mzg4ODUxMjkzYjI2MDUzZjRkZjY1YjRkYzk4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNiYzk5MzQ4MzRiOGE2NTI5MTQzOWNiYmEyZGFmMDYxNDQ4ZTMwZmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNlNWUxNDQ1N2ZhMTQzNDI1ZDI2NGE0ZmE5NDE1OTFkMTk3MzBjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjNmNDdmMDc3MjNiOTdmMDMxMWYzMmI3OGRhOTkzNThkMmM2YWZmYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Y2YwZmJiYTE4YmYzOTJhNDQ5NjJmYWVkMWUxMzAwZWQ2ZmE0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ0Yzg0NDQ3NWM1ZTJiZWI1YWNkZWZjN2U0Y2Q1NGU5MGQyZDg0ZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ2MzllYzhkYmExMmU4YzdkM2IwYmY1ODliOGM4YTA5YzUyMmFlNDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQ4ZTViNDQ2N2M2MTA3MDQwYzEwN2Q1NWJjMmZiZTA3YTU3ZWEzYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwMDM3NjlhOGQ2MmNhNDFkMGQxOGQyYmQ3MjIwNGIxZDI3OGQ1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQwN2Y1ZDBhZGZmZDllZjQxYmZmMGJkYmZiMDZmNjcyMTNhY2NlYTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxOWQzOWQ4N2ViMzE5NjVhOGY1Nzc1MDc1Y2I4MGJlNmE1N2FiZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQxZTY3MjczYWY2MTRhMTAxNGJmYjU4YmY2Y2ExYjFjZWUxZTZhOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjQzMjA0MmY2Zjk2NWJiMTEzYWQ1MDk1MGNmZGJiODJjNDRmMGRjNTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRhOTA3MzQ4MzJhZTRhZDMyOGZjMDYyNzEyZTJkZWNhODhkN2RjYzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRiNGM5ZWE5NzA1NDY1ZDM5ZjMzYjM5ZWEzOTgxOWM5Yzc3YWE3OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRjMGY2YzFmZTQyZTg3NWY4Y2Q2YTRiZTRmYTg4YmU2MzA1MmQxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjRlY2Q5MDI4ZGJjYmI5ZmJmNTFhMjJhMzBmYzdhZjIxYmRlNjFkMzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU1NGM5NjQzOGZkYmVlMjAzMWI4YjVhYzE2YWEyZDZkYjZhN2Y0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU2MTcyYjYwODc0MDBmYTgxYzEzZjM5ZjM3YjIzZWMxMWRlM2M5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3NmJjNjhlNjNkNjIzMmY2Yzc4YmRkMzhlNjZkYTg1ODVjMDRiMGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjU3ODU0NGQwNTU3NjE0YzAwNzgwMDg5ZmE5ZjgzNDM5NTBmOTc3ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwOWQ4YzAzYjFhNjcxMjlhM2U5ODA3M2RkMjRmOTM3MjNjZGZlNDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUwZDI4OWVmZjA3ZTgwMzNlMjBjZDYwYTQ2NzBjNzk4ZGVhMjRiNzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjUxMzA4NjIxZWMyODQzMzUwODUyZmQzMWY4YzBhYTA4ZDZkNmE4MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVhZmI0ZTA4MTcwYzFiZDJlOWY1ZmI0ZGQ0MmM2ZWY1ZTJkMjM4Nzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjViODVhNzQwNTQ4OWY3MjBlZDBiOWNiNTE1MGMyNjE5ZDQ1YzllOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjNjIxZWU0YzY0NDcxM2EyNjI3YWZiZmVkNzQ1NDgyZmU1NTI1ZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjVjOGU2OTVhZDM0MGU2NWU4NTg2MmRjODIwMmQxN2U3M2Q5NWJjM2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY0MTRmNDRkZmY0MWFmNGE4M2Y2Y2UwZGU3MWQ4MDliZDA0ODJkMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1NTI0MDk3ZWQ1ZGUzYTgxNWU5ODliZDQyMGUzODE3N2ZlNzBiY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY1ZDJjYTM0M2M1MTAyMDQ3ODA5NGJhODdiNWRiNGFmNjQ2NDc0MWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY3ZDQ2MjI5NDg5MzA5MDM1Yjk2ODM5MWU2ZDE0NjExZWJkNWMzZmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjY5ZDFmYjc5Yjk2ODBmN2VjNWU4NTU0ZjJhOGMwZjgxZDc0ZDlhOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjYzNmVjNmExNjA2NGM4YzMzZWI0NzYzMzc1ZDUzYWM1ZDhiZDFhMTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZhOGJmY2EwYzkzNmYzMDRjYzlhMmEzMzk5Njc2YmU0NmFlYTk5NjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZiOTY5OThlN2MyZjhjZTUyZGMwOWViYzllYTUyNGQwN2RlYmUzOGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjZkNTFlZTgzNmUxMGU5ZDdiMzgwMDZmNWU0OTY2NTVhZTE4YWQzNjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc0OWYxZTRjNTVkZWVlMmMxYjY0MDM0OGI1OTY1ZjVhNGFmZDI4ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc4NjAxMzc2NTIyYzMyOWMwOTQwNzU0MDIwZmY0NjU0ZmZlOTM3Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjc5MzFjZjIwYjUxNDZiY2E2OGU1MWQyNmNkZWJhZGU5YTFkM2E2NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjcxZTA4NDY0YTY1NGIzN2IwNWZlNTM0OTY0OWEwM2Y0NTc5MzNmYTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiNmQ2MTY4N2U1N2QxNWE0NWQxOTViMWVkYjU2NzQ1MWEzMGRiMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdiOWRjYTUyNDQzMzI1ODAzZTY2Y2Y1OTZkMjc0YTBiMTFkMjUyZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkMWY2ZTJkMTNhYjQ2NzcxOWYyODc4MDJiMTZlNzk5ZGVlYjVlMjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkYzQ1MTRjZDQxNWNjOTI2ODI3ZmUwMmNiMjg5MWI4ZDZiODBlNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdkZDQ1Yzk0MTZjNzAzZDU0OWI2ZTI3OGI3YmZiZTc1MDUzYjFjYTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjdmZjc3ODI0ODliNzg5NDE0OWNjNWYyMTFkOWRkYWZjZjg0OTE4ZTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg0MjI5NmI3NDIwM2RiZDU5OTg1NmExNjg4MGFkY2M5MDRiZDViMDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg1YjZlOGNjYTJkNmJjNTcwOTQ0OTYwNWM4YWM2NDVmZTc0Zjc4ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg2MTllZTI0NTJlN2JmMTA5MTY5MDE3YWNjOTY4YmJhM2U2ZTEyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg3N2JlMDNlNTQ3NjQ4ZmI3YTA2MTEwNzg4ZTdkYWQyMjZhMDU1NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YTE1YjU3NzJkMWRjMjE3MzcxODFkN2RkYTI2Njk1YTBkZmVjY2E="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjg5YjMzN2JlZjI5NmRmMTBhOTRjM2IzOGNlMWUyZWY0Mzk2ODg2ZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgwNzczNjM5ZDhlMjI1ZDE5MDJkNjE0NTMxMjEwOGVjYWE5MDZhMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxMGFiZmIwMzk3NmFjY2Q2NjNkMWI3Yjk2NGJiYzE5YTkyZWM2MDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxN2NmODk0MGNiODhiYTc5MGM2MDIxY2U1NGJjYjAxOGFhMGNlYjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgxYTY3ZjQ4MTIwNDQ5Mjk0ZDNhYjk0Y2M3Njc3NTVlMGJmMzc4NGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjgyNzVkMWI1ZjNhNzc0MjY0ZDU4MzNjMjNkODk1ODM0Mjk0MDA5MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkOTYwZjA0MTVlOGNlOGE0NWQ3MDA1YzRlZTM5OWRlNjcyMTQ0ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhkYTMyYmIyNDM2MjE5ZTNhNTU2MzFlNDI2YTcxZDNkNDVkMjdjMzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlMDQ3MTlmOGQ4ODUxMmI4ZThlMTllMTdlNDJmN2Q5NjBmNjczM2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjhlNTBhMThiMTYzY2M1MTM0MDJiOWM2YzMyMDY3MmM4M2M0NmRiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk0ZTUxZDlhODNjZDY3YjRhZDgyYzY1MjkyMTJlNzJhYWM4NGFmZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk1ZDU4ODRiMTJhNWE1ZjFkMTg1NTIyNzdlMzc1OTdmYjYwNDgyOTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk2MjBmYjhiMDM4NjE2MGUzNjRlMzhkNjNhZDNmZWRlNGExODJjZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk3OGYwNTJiNjNhYTIwOWVkODEwN2RhZDcxYzU5YTQ0NjQzZTc0YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjk4Zjc2YzRmYTkzNGEzZTA4ZGM0YWJiOGMxOTY5N2M3ZWQxZGE4MWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjkzNmNkMjJmZTE1OWJmZDdmOGJlZDUzOTc4M2Y1MmM3NjhmMjBhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhNWI0ODllMWJiY2MzMDZjZTRjNjM2MmFhNWFhZGZmNjBlNmEyN2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhODY2NDI0Zjg0YjQ2OTc4M2RmZTU1OWE1MTBmZmM5M2UwMGQ2NGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlhYTBlY2Q2ZjUzN2MwZjNkNWY2ZjIwMGM3YzU0NDhkZGMyOGM5ZGQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkMGNhY2YyOWVlNWY2NjY4NDI2YzBkZDljY2ExMmFkN2FmOTA2YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjlkODU2MGY3YTE3MGNjMmMwOTM3YmE3OTgwZGJjYjQ2NmFkMzE0MGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOjllZTZkMWIzYjBkN2IwNmMzYWJlYjdiNDk2ZTgzMDY4M2M1NGY2ZDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE0MzNkODQ2ZTlmZjcwYzk4ZGJhNzQxZmJmZmY3ZmExOTg1YTY3ZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE1MDFhNzQ1NGJmMTllZTAzMDAzMTk2YmZlYzk1NjBkNDhjOTc4ZDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE2ODUzYTgzOWIxMTAxYjA3N2UzYjgwYzMxMDZkYTAxYmUyODA3ZWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE3YzQyNWQ1ZjllZGIxMTA2YjU5MzRjYWZlNGNiZmMyMjFhMDhlOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE4MDJmN2M2NjkzMjRjOTUxZjY1NTRmY2YzOTFmODg2YmEzMTUwZjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmE5OTlkNmJkMzVkZjE5OGJhYjYyNTI0MDQzMjVkN2E5NDQ5ODM0MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEwZmI5YjgyMmJhYWI5ZTBmY2U4NDMzYmUzZGU3ZDQyM2UxYjRkZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyNTQ3ZWI3ZDE4MzVlMDUwYTg5NzE3MmI1NjNjY2I2OWI3Njk3MTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEyZmQ3ZTA3Njc5NWM2MmEwNzUwMWQ1ZmI3MWMwMzk5OWNjNGIxNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmEzN2E0ODI1NmQ5OWE2M2ZjZjBhNjc4ZWJiYjM0Y2NhMGZkOTVmMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFlNjU2YTFhOTllOWE4Y2MyMjdjMTg3MTU0MTIzNTcxZDlkMTY4NzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmFmODllOGQ2YmUzMjZjMzQ4NjVhOTI1ZjFiZTRjNjc4NzcwNjRlMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI0Mzk0MjEzMzAwZmY0ZDcyZWJhY2E3YzYzY2Y5MTlkZjMwNmVhZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1YWQ1ZWVhNDAxYjRmNDE1YjlkYTQ0NjE4N2I4OTNhN2NlZWUxYjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI1ZGYzYzhjZDg1Y2JlNDM2MDZmMjA1MmYwMDYzMWRiZmNjYTQyZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2Mzg4ZGI1ZWI2YTZmZWQ1NmViYTY2MWRiMmI3NjFjY2RkZmQ2ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2NzA1NzRiZDJiY2YxZTBhNzFjMzZiOTQ0N2IwZDVmZmUyMmI5YWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTIwZjNiNjY0NjUyMmIzZmMwZjkzZTYzNDM1MDZiNDg1YzE1OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI2OTY4ZTQ3ODk5Y2ZjMjI2NTJlMWYxZGJiM2I4MmVkOThjYzUyMzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4MzE5ZDM2MTZjN2Q1ZTZjMmFmODA4N2VhNjNlOWZhYjFhNzNjMDI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NDJlZDNlYWY2ODc1MTNhMGQ5MGVhZmRmYjBhOWVjNmZjNTg4MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4NWMwYjVhYjk4MzU3YzZkYzNhZjY5Mjk3ZTZhNzk1ODUxYzg5ZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI4YzlkYTRiY2MwZDFhNTBhZGQ5NDIzNDczYTZjMTYyY2RiOTk1OTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmI5MzA5ZTRkNDQyODlhZjgzNDFmNDMxMDNiN2JlMTk1ZGY1OTk4YjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIwMzhmMWNhOWY5YjZhNWE1NDkzNWMxYTczMGQyZTMyZjgyMjBjZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIxZTI0MTg1YzU2N2M0ZjlhNjA5NTk1NTllNmZmMWFjN2RiYjYyNzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzYTQwMzRmMDQzMzJhNjU0NmE3ZDAzZWU3ODFmMTBkYmY5ZTMyZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmIzZjY2N2M3NDZkNTRmZDFlN2VmNDFkNGU5MTE4NmZmNzA1Y2IwMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhMDhmMjFmMzhmZWYyNWU2NWEwMDZlNGFmMDA1OTFmNjIzY2JhODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJhNjkzZjVmMTE2Y2YxOWQ5YThiZjFiZjU1YTRlYzhjNmMxOTI5Yjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiY2E0ZDAyNDA5OGM3NDliNzA2NGI3MGMyNGM0MTYwNjEyNTVjNzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJiYzU0ZTQ5NDcxOTBkYThjMzdkNzY3ZTAwNDMzOWI2MmZiMzRhYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkYjRjOGEzOGM4NmE0NTk4YjJkYTY5MzkxZmM4NDkzOTE0OGQ3Mzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJkZDFkOTUwOTVmYzk5MTg2NzU0NTAyYzk2YzFlY2JmZjIxNmZiMTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmJmZDMyMWE1YzM4NGRjN2ZhYjk5MDYyYmNjMzQ5MTcwNTMwM2ExNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0NjFiYjQwMzY2YmU2MTI0Y2M4ZTA5YWYyNTc0MWM1ZTY1YjFhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM0YWUyYjk1ZWRkMjIzYTJiMzI2OWY0OTEzYzVhMjM3ZTc1NTcxOTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1MTlhMDkxNmYyMzg2NmM5OWMwYzc2YmFkMzNkZWMwOWM0YTEwNTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM1ZWVhYzk0ODU2OWEwNjYyMjc0MGQwYjkzNDBjNjIyZGRiNDY5ZDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM2MWJjNzkxODMzNzRlN2UzN2E4NDU2ZmY0N2Y2NjJhMmJjMjFiYWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM3YWNlZjhhNTY2NGQzZGQ1NzA1OWU4Y2M0NDdjNGYxZGJlMjY5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmM4NWU3YWQ4NmZiMDg2NTM5NzFlZDM2NWY0ZjMxNmQ0NTc3MTc4ZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMwMGEyNWVkNTUwMGM2MGRhNTUyMGUxMmM2OGRiOWRjMWUwMDNjZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmMzNzgxOGRjNTRkYjMwMmMxYmIyYmZlOTkzMTIwODRjYjY0NTIyNjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNjNGU0ZmY5NGIyZmU3OGQ4NzI3OTYzYjQyYmMxYzMzYmZkMmU5MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmMzU5ZjU2YTllN2Q5ZTM4MGE3MjlmZTY0ZjBmZDllMDY4NTNjMjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmNmNDE2MzYzNzlhY2Q1ZmI5ZTI3YWY2MjcyN2ZkZjY0YTExMWQ5NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ0NTU1NTU0ZDM0N2IyMzg1YWM5NmE1MzBmNTYyODQ5MWMyYzcyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ1OTNiMTI2YWY1Y2NkZTMyZmU2MTBmYmMzOTlmOTIzM2M0ZmNkY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ3ZTU3NjNjMzc1ODIwNjdkOTMwZTUzNzE4MjczZWVmNjc5OTdkYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ4MDM0YzFhOTk3YTZmMzc2MmViNjRhYmVmZDM5ODNjYTVjMTdiMjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQ5YjQwZTA3MWMyZjIxNmI4ZmI0Y2ViY2U3ODhlYzFiZjg5MmFjN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQwY2M0MGIyOGNhOTEyOWU3MzMxMDdkOTk3MzBkZmJjZDk0NDkyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmQyMTBkNmYzODc4NjBiNDczNjE5MzYyNDEyNWVjNWUxYjhmNWM4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRlZjdmMDEwMTUwMDhmMWFlZmRhODQ4ZDkzNjYxNTU1YzA4NjIzMWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmMzkwNTNmMzdiZjkzODIzY2Q0MzY0YjgxOWNhMTI4OWU0NDgxYjE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmRmOWY3NDIzZjBlMThhNTc4MzUzMjRiNDU5ZmUyNDNkM2YzZTU1YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU1YzcyMWJhNzg3ZDI1YTU5MWQ0NzBjNWJhMTFkOWJkNDFlMTc5N2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmU2M2VjNzBjM2I3NWRlNTM5ZTg2ZmFmNzdjOWU0NGY4Mzc1M2NiMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwMGQyZmJjODk1OWExYThkZDY5MDc2MjdjMGYxMzczMWRkNWI3ZTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmUwY2QzNTQ0MmQ3Y2Y0OTk5YWRjNTg2ZWUwYzI0ZTNmYzNiZjJlMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVhNWIzNWU3NjU4ZmM4NTUwNzM2YWE3ZWYyZTNlNGEzN2M4Mzk1YTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmViZmNhMjMwOTg3NzI2ZmI2ZDBjNzRjZGJhMWU3MzQ2YjVkMDgzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjNTQzNmI2OGVjMzZjZWE0MWY5MjNhZTJkOTU4NDFiN2RiZTY3OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVjYTFjOGU0ZmI5ODk3Zjg2ZTcxOTJmMTc0MWQwMDUwOTcwN2E0MmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVlMzBhZDI3Mzg0NWJmNThkNTUxNTY2ZmZlNWM0ZTg3ZTk4YzA3YzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmVmMWE0ZTFkM2JmNzBmOWRhY2NlYmRmMzAyOGVhOGY0NzZjMjY4OTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY2YTg4YjY5NzI4ZmEyY2JjOTMwNGE5ZDNhNjE5M2FmYTlhY2ExN2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ODY2MGNlMDkxMzJkNjEyN2FiOTYwYTBmZGI5ZjE5ZjJiNzY4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3OTI5NGIxNGU5MDBjYTkyN2IzZTllNWNmNTE5NzI4MTRjZDJjNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY3ZWNkYzY2MTdjZTc3NTc0Njc2NjU0YTg0ZjU4MzEzYWQ5Zjg0YTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY4MTllYzUyMGU3NTRjNGFkYjQ2ZDEzZDAxMjZmYTQ4ZjAzYjBkYWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmY5NmJjM2Y2NjEwNmVkNDM0MWQ2NzRiNWEzN2ExZmNlODAzNWM5MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYxYjFhMzQ4NTE0YThkODg3NTBjMjc3NGEzNzlhMDBiODVlYTA4MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmYzZDA3NmY2Nzc5N2Y2YzM0OTFlMDQ2YTVkY2RjZTAzNzI4OTBkZTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjc4MDMxOmZlMzNkYWI3NGEwNWY0M2QxZTI0MDQ0ZGM0NDEzZmYwZTcyYWFkNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA0NzBlOWY1YzEzYTdjMzZiMDkzNGNhOTM1MzY1NjQ5ODcyYWQ4NDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA2ZTZiZjA4OWY2OWExMDhjYWU2M2E0MTNlM2EzZDBhNmMwZDQwZmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA3NjRlMmI3NzAxYTZjZDYwNzY2MjJiY2U5MGMzZDMwMzBlN2QwOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjA4YWE0YWE5NWE5MzY3OTgyOTVmN2QwMmNmYTU0YzE0NDFhZTdhYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwOTdmMjAyZTZmNWQyYzAwM2UyY2UxNjhkMTI0OTA5ZjE5NDU4ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAwYWI2OTgyMTQwZWJkOTQ5ZGI3NDU3NTEyYjIzM2I3YWEzYWZhMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAyZjRkMzYyM2FlNGU4OWZhNjIzMjQ3N2Q5N2ZlMzJiMjdhYWU3YzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzMjYxNjYwOTE0MTA1NzhlYWY3YzI1ZDlmNjczNmNkNDUzM2Y5Y2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzNjA0YTdkOGY5YTZmNDg4Zjc5OTAzMDllNzAwNjZhMTI2MDQ4M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzODhmYjAyMTlhNzQ2MGU2NzI2YjM0ODM1YzY3MDk4NmJlNTQwNmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjAzZTExMTJiZjQwOTkwODNkODEzODYwNDMwOTllNDg3NjU5OWQ1M2Q="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBhMjNjMTg5YjFkNzc2OTg1YjY3NTljZmI2NWI3NWE1YjBkYmUzODg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBiMzUxNDEyY2ZhOTJjOGVkYWJlYTE0NDlkYTE2YTdhMjEyOGM4MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBjYzE1YzU0ZjBhYzA4Yjc2YjBiMjAyMzE1MjMxMjNjNjhlNzg3Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjBlOWRiZDg0MDZiMjU2ZjZiNWU1NTNkNjc2OTY4M2E1NTkwOWFiODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE2MzA5ZGE2Yzc4NmVmZTlkYzFmNzQ1YzYxYWQ0ZjJjMmFkNjFkNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3OThlMjllYjBiNmQ4ZGQ1ZTRmMTRmZmNjMmYyNTY0NGU3MzY3NjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE3ZWMwZGNmODQ3MjZhNGRhNzM5ZjBjYmUzNmNkMTkwODQ3N2U0Y2I="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE4MzRlZDU5YjZhNTgxOTVhZWY1N2FmNDkyZjMxMjJhOTRhYWMyMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjE5MWU3M2U0MjlhYjE5M2U1OTE4OWY0NGIzNjNkNjk2MTNlZTAzMTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjExYTQ1ZWIxODhhNzU2ZTMxZjJlY2UwYWZjZjEwYWZiNWUzMDExMmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjEyZjVlNjhmMjg3YzE3ZDJlN2ZiZTQyNGI5OTZiMjY5Yzc0YzBlOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlYTcxMGVmZWQ5NWEzYWJkMjYxM2VlMTZiM2FhZWE2MTEwZGVmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjFlZWE1NGExMzYxZWI2YWVkYmEyMjFmNjVmODYyMDU4NjZiOTczMjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI3NWQxNjNlZmRkODEyY2RjZDZhZTJmNWE4YWZmMWJhYjNiZWQwZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjI5ZDlhOGVmMGQ3MzhkOGIxYmRhZTg3M2M4OTJhZjQxODU4Y2RhMGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIwNzk2ZGY3NTU1YjBjMTkxZGQ1NzU1NDIwMDBkNTBkOThjMDM0Y2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIxZGY0MzE5ZGIyNmY4YzNlZDZlZWQ3NGIyMDc2MDI2Y2FkNWMwNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIyMTc1NGE1ZGJlM2ViZGY2YTBmYzUwODBkZTgyNjY5ZjU0NzZiODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjIzNGQzYjAyYjU0OTExMTRmMTI1N2UyM2ZjYWYyYmY4ODBlZWUzNzY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJhYWFlOWM3NzdlYjQ4MDFlZjY1MTkyYWZkMWM3NTUzY2ViNzQwMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiNjdjMjUyYWYwODY4N2ExYzAyZTkyNDc1N2UzODM5NzdkNGQ0ZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJiZDgxM2YwOWY5OGZhM2IyNjkzNGY2ZmY3ZmFhYWI2ZWE3M2YxZTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjJkMjkwYjIyODhhMTRkNDk0ZjBmYzE4YmZhYzg4MmVmNmM2MTdlNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM2ZWQ5NWRkZjgzNDliYTNkNTU3YmZiYmVmMDY2YjI1NTliNDMyYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjM5ZGFlNDYxNTFmY2RlNDFlYTBiMDYyYWU5NWZkZTQxMDkxNDJlNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwYWIyYWI4Nzc0ZjIwZTk1NDFmMDhjNjU3ZTZlYzlhYjA4NTA0ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMwZWJmNjQzNDJmODAwOTUzZDA2ZjJiMGVkODg4YWM4ZDQ0OTVmNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMxNGYwMzdlZmFhZjM0MDAyOTM0ZmFjNzJlZTViOGMzNGU2MzMxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyNWI5NzNhNzhjYmUxNGZmM2Y1ZTk3NjZmYWVlMThlODVkNWE0MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMyZDZmYzcyNWFkYjg0NGVkMzMwNDk5NDgyMjMyZjI4NzZkZTU4ZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjMzNmVkZjZmM2UwYjY2MWY5NDc0MzJjZjM5YmJkOWQyNjI5OWYyOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNWIzMzM2M2EyOGM3YmY3YmM2MjMyOTA5NWIwODExMDk5NmQ2NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNhNjQ5ZTgxYzQ0ODc1NzkyMGI4YzhiZGNmOGZjMzkyZjg0ZDM1ODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNTI5MjM5NDA5NjllMDU5NGM5NjkzZDI3ZTgwYmY4MWU0OWJkZmI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNjNzE2Y2EzOWEzMDVlNWQ4YTliMmE1YWE0NjYwMzk0NjZkMDVhMzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNkODRmY2YxNmRlOGJkZDc4ZjEwOTg2NTAzOTRhNjZhMjk3MDlhNDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjNlMzc2MDAwN2M5ZDBhOTQ3MWY1ZjBkNDI5YWM0YzMwYjFmYjU0ZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzRkMWI4OGFiZjM5YWE5NGRmNjY0ODk4ZTQ4MzJmYzA1ZTUyY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0NzcyMzUzZjhkOTUwMjI2ZDkwOWIxMjc3OGNiZWQ0ZGYzZWQ4NjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ0ZWE0MWE2NGRlMGYxMjFmZjA1YTRjMDdjNmJiNTFlMzVlYjUwMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZDM0NDVjZDgxNGQ0NjY2ZjE5ZjRiMWI0ODA5ODRmMWMwMzgxZWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ1ZjI1ZWE0ZWI2NDY0MjdjMDZlNThiN2U0Y2UyYzRjZDM4NWMzMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQ3ZDU5NWNlZTdmZDgyYWZkYjg2NjYyNjNiYWE5NjU1NWJlYzdiMzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjQwMDM2YTM4NmIwN2M0MWI4OWU1OTQ3MzZkYWRiNjEzNGNmMTgyZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhNjIzZmJjMzczNWM5YTMyZDEwMTk5ODgwMjE0Y2M3OWNhYTQwMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRhY2VhODFkZDY1MTM1ZTdhZmQyM2NkNGM1NDg0ZGFlNDRiY2IzMjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRkYzZkYzI0ZGViMGY5MTRlYWJjMDE3YTFlNDg4YTRkNjJmMWE4OTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjRlYzZiZGM2YTEyMGUxMjMwNTJlYmY2OTBkZGY2ZjMyYjljMzU3MjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU0MDkwNDE5YjM3MWNhYzc0N2NhMTkzMjdkNTRjNGNkZGIzNzVmMDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU1NGE4MmJjMDVjYjcxM2U5MmU4YjM1MjNiNTIxMDc4ZGFmODI5ZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjU2ZTE0NTBhYmQyOTQ1N2QzYWVmYmRhZWYzZTM4NTYyNzI3Yjc2Mjg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUwMjNlZWU3MWM5YzNmMmYxNmRlMWIyMmU5ZjM3ZmRhMjZjMmYwMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUyYzYyNjRkYmFmYzY5YzE0YTIzODFhNDEwNzVjYTRmYmIwMjA2NTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzYjZmMWI5ODBiNzk3ZjkyZDU5ZmM0OTEyYjJmZTZlOTk5Zjc3NGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjUzZDliNjI4NjJkMGU4ZWY1OTdkYmZmY2JkMGRhOGJjZDEyMTAwY2M="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVhZTZkYjc0ZWM2MzgyMjJjYjYwOTU3YzMxMDVlMTVkZTdmODQ0NTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkMTY4ZjEyOThiNjJlODMxMTU5ZmMzMTZlMzk0NDkxYjgzODZhYTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVkZDA1ZTM2MDVlOTk0MGY2NWYyMDU5ZThjNDI4NjA3N2E2NDM5ZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmNjg5MDEwZjZlMGE0Mzg1MTNiN2U0NGVmMzdhZTEyZDU5ZGRmOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjVmYzk5ZjA5MjZhMzgxNDBiYzQxYWI1MzIyZTI4ZTQzZjViNTA5Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY2ZjI3MDIwZmEwYmQxMjg1MWEwZGUxYjIwNmFiZWM4YzBiNWU1NWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY3YjU4NTg3ZjI5NWU1M2IzOTZmZWQyYjY4YWIzNDAzMmZkODY0MjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjY4MDM4ZDE1NzMzOGIyNTdmMjVjMjFiNjlkZWY0MGMzZWVkMWU0M2U="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwM2M1ZjdiN2UyYWZiNTQ2MTllYmU3MDViOTY5YTFhY2IxMDJiZjY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNDRkYTc3ZDc3Y2Q1ZjBiZjc4MmZkNDdmYWY3ODEzY2I5YTAwZDc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwNGJhODc2MWNkZGRjODRiZmE2NjQ4NWZlMzY3NDk1ZTVjOGE2NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYwZGY0YTIyNzhlYzNkZDUxMzE3OTAwMDY0ZWIzMDYxYmUzMWMzYjc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjYyZDQ3MjQyMzMyZjRlMWQ4NmY3ZDdhZTQ2MGY2ZGM5OTgzNDRhYTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZiYzExNjFkOTljNDM2YTIzYzM1ZjU0Nzc4NjI2Nzc3MDFlZjcyZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmMWEzOTY4ZGFhMWUzZDJiZDYwN2Y4MWE1OTlhYzVlYmY3M2Y3MTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmNGZmN2EwMjRkZjg0YzIxNDMxN2I5Yzk1MGQ3N2YzYWUzYzRmNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjZmYjU4ZDJiY2IxMGVmYTFhMTgzNmIwYmYzMzU3YWU2YmMzMzk1NWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1M2MyN2VlN2QyNjRmMDBjNTY2ZmU2ZjU2NzIyNTI4ZjEwMjg3MDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1NDRjOWMwNjJjYTE0YzAyNWNhYTZkMmQ4NTllMzQ2Mjg3ZjVlMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1OGY5ZWJiMTRlMjY4N2RlNGY4ODhiYzk0Zjg3MmE2MTAxNzRhOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc1ZWJkMDIyOGY2NTRmMDk0Yzc1MGI5ODg1YzVmZTVhY2ViNzI0ODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc3NzUxNGYxMDBhN2RjN2RmMjJhOWEzZjJjNTdmNjUxNmU4ZWZjNDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojc4NzE0Y2E4NTYzNTY3OTFhYWUyNTc2ZDAxZWIxYzI3ZmM3ZTRjM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjcxM2FjYmQ0NTkzYTdhMTBiMDU0NGFhYWI3ZmM0YWMwNWE2NmY5YWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczNTA1YzM0YTFiNDZhM2RmY2FjYTRkOWMzYWExMTZmZGY1MWUwZGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjczZGJmZWEwMGQyNjlmZjk1M2VlNTBjMDM0ZjFjNjkzOTc0M2E1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhOTkxOTYzYTVjOGZjOGRiYTRhYjZhMGMxZTM5NDIxZWVlYzQ1ZDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdhZDVhMmFmNjIwNmZhMmM2ZDg5NDM2NGQxZjdmNDBiNTVmMDgxNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiMjBmZjM3YTk2NTBhMTM0YzZmNTVmZmZkMDRmYmRkNWRmODNiNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdiZGViNjkyYjA0YzFhODU1YmU1ZDdkZGExNzJkODdjYWFmYTNmMWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdkNGJmNWFlY2VlOGRhZjg1MTZmNDY4ZTk2ZTE1YzZiNGQwZWZiY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlMGE1ZDY1NzE2YWY1MjczODlhYzZiYjM4ZDE0OTUwZDQ4MmU0MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdlYTU5MTZhZDZmOWRlOTg0MWYyNzc5MDE1MDZhYjcyYTM5YmYxNTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjdmYWRhYmU0YmFkMThhMmU3MzI2YjI0MWM4NzRkNWVmYmViNmE2OTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg4NDllZWI5YjNhMDY3N2ZjYzUzYzM0ZWMxNjc1YTBlMjdjZjAwNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojg5ZWQxMGVjOTE1M2UxNjZhMGI3Mjc1YzczMDAzZmM2ZmQ4NmU3NmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhhNTg0ZTRiNGY5YzhhMTExMWJmMzgzZDNhN2E3MmNhM2Y4ZWU1Yjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhiNDRlYTA2ZjQyZTZhMjVmYzBlODdiZmQzOGMyODc4NjAwMTk2OWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNjI2MjRhNDhjOGE5MDdmOGIzMGU1NDhhYmRjNGUzNzY0ZmIwZGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjNzk3NTMyZDQxNDBhYTZjZTBkNTUxNGNjNmNhNzQ5ZWM2MjIzZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhjZTEyM2E5MDNmMDAzNWQ1NTM0OWU4NmY1NGViMDQ4MzhiYjczOWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhkZmQxNjU0NThhODFmMGM2Nzk2OTYyMGQ2YWIwMDZiN2UyNGFlZjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlMTNmMzlkMTM3MmI0MjJhOTE0ODU3ZjMyNGVlNjBhYmQyYzc5NWE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNTZhM2Y5NGY2ODBiNTQxOWRmMGZiZmJhMWU5Yzk4NWE0OTUzNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlNjJhMDYzY2E3ZTU0ZGMyOTllYjZjYWJiZjg3N2E2NjNiOTRjOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhlODBiOGZmNWJiYzgxMjNlNTdhYzcyOGZjOWVmY2QxY2QyZDAzOGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjhmZTZjYjFmODRiNTZmZmY4NWEzYmQ4NzY2MTcxMjI1NmE2ODA2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk2ZDM3MDM2OWM0ZDAwYzM1YWNiZGJjNDk5ZmVkNTM2MTAxYjY2MDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk3MTQ0MGEwZmY1OTRmYjAyYmVmMGVkMzMyMGU5MzcxZTE3YmMyYzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3Ojk4MmE4OWRmMmI1MjgyNTc4YTc1OTNlZWE0OTUxMWFlODAzZWUxMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkwNjk0ZGM0N2MzNTA2MzEyMjdjMzM0MThhNzczYTcwMTM3ZDU4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkxMmFkN2NlZDFjNzgzYWZiOTdjN2Q5YTY2ZjdjM2Y1ZTI3OTkzMTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkyMjc2NzBhZTY1MWYzZGE4NTJiNmVjMzU1NWFhMTU3MTNlY2NlODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjkzNzQxN2U1MGZkMDg3ZTE3NWEyODQ3MWRlMjE3NmNiNTZlYzcwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OjlmZGY0NDE1YmE2MjBlODdmMGM4MTgyZGY0NzI2NWFhMzRmNWY4ZmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE0NjI5MjAwNDNmN2RlZDI1MmNhNzQ2Y2YyMWM2YTNkZmU5MTMyNWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE1MmQyNDc4YzZlMjM3MDQ2ODVjMzI0ODgzODkxYTI1ZjI2MTA2OWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE2ZTI0M2ZjYmZlNTQwYjUyNTUxYmJiNTBjNTQyYWQwN2VlOTJlMzk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE3ZWE3MWUxOWQxMDg0MWY1NmRhMTNiN2JkNTJlYzNiMGIyYTk0Njk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmE4NDE5ZDk2NzkyYTIxN2MxYmI5NDYyZGZhNzFjOGM3MzhhODdhMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGIxNzk1ZGE0OWNiYzZlNWY3OTVmM2I2YzZjYzQyNGUxYjlkMTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGNmZjY1ZDcyZTFiOTY4MTNjZTU4YTAxMjJhNTAzNzhhYzQ5NmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwNGZlOThiODA4MDViZDFiMmVhZmFiODAzYmM1NGM0NWMzNjA0MTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEwOTMxY2JlZDVmOWY5MTI5OGFmOWQyN2EwMmQ2OTQ2ODcyMjQ4OGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzNTZmZTM3YjNlZTIyNTZkNTI5YTYyNWE0MmQ4OTA5NjI4NzAwOTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmEzYTA0NjJkYzY4YjlkMzVmMzBhYmQyY2UxNjE5OWE5NDUwMzgzZjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFiOGZiZjdkNTNiNDE1MmI0ZWM5N2M5ODM0MDVjYzcwM2RmM2EyYmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFjZTNkODIxODMzYzAxNTdlOGUzZjc0YzA2OTUxZmU3OWNiYjQ5ZTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmFmM2ZjNDBiMGI0ZjAxMGY0MjM2MzkxYmMyNDViYWI1YzNmYzUzNDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI0ZTg3OWZiN2M2Yzc5YTY1OWRhY2M3ODRhM2UyMTY1NDExZDc1MzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1NWE3YTE5NmI4Zjg1ODE3ZTg1NDhiZjdiOWFmYmExMzQxMTMxZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI1ZTUzZWNlNzVkMzBmM2QzNzlhZGIzYTA3YzhjZjY1MjQzNGU3NzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmI4NTkwNjA4N2I2NDIyMjk3OTc1YTY1NTgwOGUxZGRmOTk4ZmRjOGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyOGNhMTIxYmZkYTE1MmNlOGJhY2MzMjVhYTdhMzFmOWEzZWRiMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIyZWMwNjQ2YTc1MzM4MjhiMDAzYTdjYzUyNWFjMGVjNDhjNWQ5YTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzNDQ5MjgxMzI1MWI2MjZlMGVmMDI5MTFkN2EwZmUyOGFhYTJiMGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzYmZkODEzNmQyNWY4YWFjYzJiOTI2N2EzNzAwZjM2ZjM2Njc5MmU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmIzZjcyYjVmM2VkNzc0YTE4OTFmMmRhMWEzYzFiNjBhZjkyNzJkODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJhYjQ4OGUwNTMxYTgyNjc3NzgyOWU3MGM0Y2Y4ZjYyMDIwMmU4ODE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJiNGM4MDYwOGRiNTJjMDNhMzNiMDllZGJmOGZkYmZmYzY2NmM2NjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJjYzBkMWUxOGY1NmMwZWUwOThjN2ExMzE2YWZhNTI1MmM1ZDMzOTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNTAzOTkxZGU3YTMyMjVjZmMyODg4YWI4MzNhYmZjY2RiMWQzMDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJlNWI5M2FlNTliZjY1YjY5OGY2ZWQ2MzAxZDI4MjE4YzgxNzBlOTE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmJmYjFiZTE5MjAxZWVkZjZmNTU1NmI3NmZiM2NiYTc3YjY5NGM1MzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM0NmQ1ZWI4MTc5ZmQzNGE1NzMyMzk0ZjU5ZDQwY2Y2ZTNiNWE0ZTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM1YzlmNDQzMzQ3MDlkYjNjMjhlYjgxZjFlZTkyOGEzODIzYWUwMDM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM2NzZkNWI3OTAxMjZlMmFmMTM3Y2ExYzUzYzgwNDhkYjQ0M2E4OGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4NTI0NDY4ODYwNDk5MWM5ZWUxYWUxN2E3YmY2MjM3M2EwMDRmZDE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmM4ZDQxM2MwMWY5YWExYzlkMjcyZjk2MjgzMzY3MjY4ZmY0OTEwM2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNGMzMDVkZmYzMWE2MGE1ZWE5MTI3MGIwN2I1YjQ2YzRiNzM0YzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwNjIyZmNmOTMzNjllMzdmOTllNDgwOWNlYTA3NzcxMGI5Njc3ZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwOWNlNTlmNmNiMDBmNjIzODBhOGRjYTY0MWZiZDAxNmYwZDcwYTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMwZjMyMjQzY2ZmNDAwZjM0YjM2ODk3ZGI0ZTY0ZDNhZTJjZWMyNTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMxOTFlNTdmNDQ2NjJiY2I3NTNlYzRjMDhhMjU1NDViMGQyNWUyODQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMyNjRjZmUxYmM5NmM3NTgwNzliZmZjZDcyOGY0OTdkMGQ3YzAxMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmMzNGJjOWM1NzNlYWNjMDA4Y2E5ODY1M2RkZDI2NjFmODIzZmY5YjI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNhNDFjMzc5YTQ0ZTRjY2FkYjJiNTZjMzU5ZmYyZWNlOGFhNWI1ZGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNiYTdiNzQxN2YxYWEwNGI5MTM3ZDBlYjFkMmI0MWNmYzFiODRmOWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNjZGUxMWI0ZTg1YWZkOTY4NWRjOWY1ODE2NTE0ODg2MWFkYmU1OWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmNlZTBjNjkzMzJmOWY1NDgxZDBhZTdmMWRjZjFhOGY5MmYzNDY4Nzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ0NGJjNGYyZTIyNTZmMGViZTFhZjQ4NWIwNDdkOTU2NzU4M2VkODU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ1NmFkNDVkNTdiM2NhNDRjNjcwMmY2NmRiY2YzNDlkZDM5YTkxMTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2MzI2NWQxZWMxYWM2ZDVlNWQ2NjFmYzEzN2JlZjNiYzQ3NTIwMjA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ2YmNhZjBlZDUzMDA2N2UxMWJlMTMyMTI4MGZjODNmM2EyODliZTI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4Mjg4YmIzNTY1NTFmODYwOWM4NGEwOTg4NmMxOWZiNGZkNjczYjQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQ4MzczNmYwZjVjYzVjM2ZjNDE1MTQ2YTVhZDgwMTQ1YjNhNTY1YTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQwMWUxYTE3NjJjZGU3MGIwZmI0OWU4MmVjNTQzMmRlNmQ2OTFmYjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQxMzAyODc3MmFiOTQ2YTY1ZGE4Nzg3YTI1NTI0ODMzNzg2NGE1YmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQyMTliZDJmNjJhMGVjOGFjMDZiODJkYWY4MzQ5OTQ0MmUzY2IxNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmQzODNiOGZkMmU2ODE1ZWI4YTUwOTk3ODVhN2VmNWM0MzkzZTUzMWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhNjkxMDRmMzdiYzc4YzFjNzFhMzRiOWZhZmU1MzdmODc1Y2E3ZGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRhOWZhOGVjNTIzZTM2MGFjZTk2ZWJhN2JjNzJiZWRhZGM2OWM4YWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRiYjRiYmI0YTQ4YmYzNmIzODkwY2IyMzAxMjMzN2MwYmZiZmM2Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRjMDA4MjY2YmEzNjEyMWM3NDZkZGI2YjYwMTIxYjZlMDg0ZDMwNjU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmRlZmI4YzU2ZGJjOGVkNmE1ODY3NGE3YzU2OTAxMGRkYzE3ZmVhMGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU0ZGIxZTVjMDEzOTA1OTBhNTNlNDc0MjRiNmZjNjM4OWZiZWQ0NTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU1ODEwYzdlOTU2MTgyZjU4YmFjYWZkMjRjNTFmOGJlN2U2YWYzMWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU3ZDI2MmJjZWVjZmNhYjc0Mzc1NGQ2ZDNhNDFmZWExZDc0YmU5NTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4NmZjZmQyZTFkZGY2NDNiYzA2ZWYwYTA4ZDQzOTg5OWI1MDljOGE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4YzAzNjc0NWY2YzNkODJmMzRlNDZlNmY0MGNlNTIwZjUzYmUxZWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmU4ZDI1NjZlMDIzYTdjZWZiMDRjNTE1N2IwZjg1NTY4ZmNiOWEzYzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUxMWJjYWEyMTQ1MDRiZDMzOGY0MWYwNjg0YzM4NzM3N2U5MWQyMjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmUyN2Y4ODllZDdlODk5YzQ4MmQ1MjhlNWJhZmIwYTk1MDA0N2RiMzU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVjYzQ5YWY0ZDI5ZGRiODZiZWNlNWNmMzhlMzI5NWQwM2Q4MGVmYzg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkNzVjYjU4ZTg0MGE5NzEyYTdmZTU2NzhlMDIzNDUzODEwMTgyNGM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVkODU4OTJmZTMyM2EyNTJhYzBkNDRjYTVjZTYxOWZlNzNjYzhhNWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlODA1YzIzMGQ1OGI0MjBmMzliZWRkNmQ3ZGM1YzEwYzhmMTQ4NTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVlOTU4ZTRlYTRhOWQ3ZGIwOGE0NWU1NTg5MTI0NDkyNDVlMWY2MTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmVmZTJhMjEwMjQyYWRjZDUyYTI4OGQ1N2YzNzNiMDkxODdiODhjMTc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0Mzc5YzM0YjMwNjkxYTYxZTY3NDM4ZDRkYTQxOTJmN2NiMTg3MTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0NTk3ZWFhNmIwNjgxZWJmYjdlMzI5OTFmYzI5NWY1MjQyN2QxOTk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY0YjU3ZjY1N2EyNGYwZmViMTc1ZjQwNDcxOGY0OWZmYzUwNmVkYzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY1YjZiNWI5YjhhYjQ5MzM0MjU5MTc5OTM2OWJhYjQ0NzNhZDRiZDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmY3NDg5NzU4MDA1N2I4NmJmMWVjODAzNjk0YjI0OTRkYzUwOTliYTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYwMjRiM2FhMjIyN2VjY2VmMjM1YTNiNGQ1YTc2ZTdmMDRjYzc4ZmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxM2JmM2Y3YTZkZmVlYmQyNzI1MjYxYTExMzU3NjEyNTQ3ZTA3ODM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYxNjUwNTgxNDk1YmQ1YmE5NTFlNmFjYTNhZGM2NWFhNDI3MWU3ZWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNDg0YmMwYTVmMjA0YjNiNmNkMzE1OWEwZTNjMjc0YzIwNTYxNTQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmYzNzBiMTY4OTFmNGRjODA1ZWEzMGFjNmI1YTMwNDJjODIyNGJiNDU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZiNGZjYWU5NDI4NmM4YmNkZGE5N2UxNzJiYzg2N2FiNGUwOGI3NmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZjZTMzMzk5ZDA2OTY5OTUzODVkODg5NTk5NWNiMGZkYWFkNTY2MTU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZkYWZmODI1MDlhOTlkYzdhZGIzZDEyODliMmFkMDJhMzM5ZmUxOWU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZlODY1YTY3OWE3MjM1OTA5MjNhZjYzOTQzNjZiNThmYjAxYzhmNTA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmNzA4YzNiNzM1MmE5YjY1OWRmODEyMDM1MWU2ZjFlYWI1NjZhMmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMjkyNzQ3OmZmZWMyMjNiZTVmZmZhMTZkMGNlMmVmZmIwYWVlZDFiOTU5YTI1MzI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjA3ZDVjOWVhZmVkNzk0YmZiZGUzNDcwNWMwMjMyZGZkYmI0N2JkOWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjAzMGU4ZWNjMGQ4M2ViMDljYzNhYzYxNGE2MDdlYjExOWFhYjdmYTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBjMzJkOTZkYTg2ODg1YTBkNzMwZjgzOThhMjM0MDMzNzIxMTdkNGI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjBlNmM0NjU3NmE4ZmVlYjA3MDU0NTg0NDU4ZWJkZWM2MWZkODg2ZjM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjE3YTY1OGNlMjI1NDJkYjYxYTFiYWUwMjMxNmQ4YzBlMDgyZmE1MmY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEwNDFiZTEyYTRhZWUyODU4N2VkZTViMWE1MzJjNjU5NWRlNzhjNzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjEzNWIxOThiODJkODIyZDFkMWExNWIzNjgzZGEwYjc2NDg3YzNlNmQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFhMzI1MjY5NGQ3MTlmYjM4OWJiMTBjMGUyNGQ3MjdlNjFhM2Y4YTM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjFlMDgzNDRkMDZkOTA4OWQzODFlOTFlMmJlZTBjMWFkZjNmZTNiOWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjMyZTA4N2U3NmY3ZTFjNTkxMTc5MGVkNjQ1MDhjZmI1OWU0NDgzNjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNkZGZiODg3MzhlNDdjMjBjZjllYTU4YzJlZmQ3OTJhZWUxYjYxMjk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjNlNzZkYTkxMTY2YjRlNjE4YzE2ZmNmMDNhOTE2NTY2NTQ3OTNlZDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjQ2Mzc3YTk2Y2NkMTM2YjU0MDFkZjBlZDUwMzJhMTA1YTM4NWRkNDk="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVlOGZjOGViMzdiY2Q0NzNlZTRhY2I5MGMzMmQ4ZTdhOGY2YTc3Yzc="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjVmODU4ZTllOWI1MjIzNmZjM2EwODViMzhiMWM3YzU2MjNkYzgxNGU="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjYwZWIyMzE5MzhlN2FkMzkwMTc1YTEzYjQ2Y2YxMTYxZTIzZTkxNWM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjZjZjkyNTY2ZGRhOWZmZjI2NjYzYzZkZmUyZTNhZTI3N2FlMGQ5MDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjdhMzIyNmI0NDlmNWEyYmI5ZTFkMDUyODk1OWMzYWNhOGNlMThmOGY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjhiMzM3OWI2ZGVkZDVkOGFkNTk3MGQxNGNkZDZjNTA3OTA5ZDNmY2Y="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjkzMzczY2NjNmJmNjE4NTEyN2Y2YjE3YWQ1NjI2Y2MxMTBmZTVlMDg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OjlhZGNmYWMwMmU5ZGM2MjAzZjczMzk0NmI0ODgxNWMxNmM0YmRhNmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmE3ZWI3YWJiYjk3YTNhY2I3MTViMDZkYTJhOTA2Y2Q2NjQ2YjU2YmM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEwZWJlNmM2Yzg4MWYwMmFlMTI3YzkyYWJkMzc5NWU1OTcwMDkwMzE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmExMWY4ZDY3MGVmNzExYjQxMDQxNWI4NDQ0MzMwNzgxNTIyYzMyNzM="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmEzOWE5ZTNkMjI5Yzc4YjFkNTIxNWE4YzZmYWY0MzVhMjNiOTk2YWI="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI1ODIwYTQ5ZDI3NWFkM2UyNDQxZGM0OWJhMGU5YzkzMmU3ZTAxZWQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmI4MTAwZjc4ZjYyOTVhNDQwZDJlNmE5ZTk1YTkwOTk1MDRjNTMzNzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmIwNjc5OGVkZjJkNmY4NjcyMzk2MWJkZDdhMzg3ZGRhM2VhZGNiMDA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmJjOTU5YjZjZDBlODBkMTkzODc2YThlZGI4ZmYwZjE4MTQyYmE1NTg="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmQyNjVmM2YzYTQ2MjgwNWI2YzI3ZGM3NTA3YjE1YmUwMzg3MzBhMDY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjY2IwYmFlODM0NGRhMGZhNGJjODg2ZmQ2NDJiZDgxOWU1YWIyMDQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmRjYmEzZWI1NGY3ODE5NzMxNTVlZjM4MmVkNjc0Njg1YWRiOTQ5MWY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkOGRhYzk5YzU4YzYwMzAwMWZhNTZjOGQyZGQyNTUzZGI4ZmE2YzA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MjUzMzA3NDk3OmZkZjY4NTdhMjlkNzk2ZDdjZmRlYTdmN2Q0NWE2N2E5YzA1ZDUwZDI="],["sourcecred","github","ISSUE","aracred","AraCred","12"],["sourcecred","github","ISSUE","aracred","AraCred","14"],["sourcecred","github","ISSUE","aracred","AraCred","15"],["sourcecred","github","ISSUE","aracred","AraCred","16"],["sourcecred","github","ISSUE","aracred","AraCred","17"],["sourcecred","github","ISSUE","aracred","AraCred","18"],["sourcecred","github","ISSUE","aracred","AraCred","19"],["sourcecred","github","ISSUE","aracred","AraCred","2"],["sourcecred","github","ISSUE","aracred","AraCred","22"],["sourcecred","github","ISSUE","aracred","AraCred","23"],["sourcecred","github","ISSUE","aracred","AraCred","24"],["sourcecred","github","ISSUE","aracred","AraCred","25"],["sourcecred","github","ISSUE","aracred","AraCred","26"],["sourcecred","github","ISSUE","aracred","AraCred","3"],["sourcecred","github","ISSUE","aracred","AraCred","4"],["sourcecred","github","ISSUE","aracred","AraCred","5"],["sourcecred","github","ISSUE","aracred","AraCred","6"],["sourcecred","github","ISSUE","aracred","AraCred","8"],["sourcecred","github","ISSUE","aracred","AraCred","9"],["sourcecred","github","ISSUE","aracred","TheSource","3"],["sourcecred","github","ISSUE","aracred","aracred-cli","1"],["sourcecred","github","ISSUE","aracred","bot","1"],["sourcecred","github","ISSUE","aracred","bot","2"],["sourcecred","github","ISSUE","aracred","bot","3"],["sourcecred","github","ISSUE","aracred","bot","5"],["sourcecred","github","ISSUE","aracred","bot","6"],["sourcecred","github","ISSUE","aracred","bot","7"],["sourcecred","github","ISSUE","aracred","comms","1"],["sourcecred","github","ISSUE","aracred","leaderboard","1"],["sourcecred","github","ISSUE","aracred","leaderboard","2"],["sourcecred","github","ISSUE","aracred","onboarding","1"],["sourcecred","github","ISSUE","aracred","onboarding","2"],["sourcecred","github","ISSUE","aracred","onboarding","3"],["sourcecred","github","ISSUE","aracred","onboarding","4"],["sourcecred","github","ISSUE","aracred","onboarding","5"],["sourcecred","github","ISSUE","aracred","onboarding","6"],["sourcecred","github","ISSUE","aracred","website","10"],["sourcecred","github","ISSUE","aracred","website","11"],["sourcecred","github","ISSUE","aracred","website","2"],["sourcecred","github","ISSUE","aracred","website","7"],["sourcecred","github","PULL","aracred","AraCred","1"],["sourcecred","github","PULL","aracred","AraCred","10"],["sourcecred","github","PULL","aracred","AraCred","11"],["sourcecred","github","PULL","aracred","AraCred","13"],["sourcecred","github","PULL","aracred","AraCred","20"],["sourcecred","github","PULL","aracred","AraCred","21"],["sourcecred","github","PULL","aracred","AraCred","27"],["sourcecred","github","PULL","aracred","AraCred","7"],["sourcecred","github","PULL","aracred","TheSource","1"],["sourcecred","github","PULL","aracred","TheSource","2"],["sourcecred","github","PULL","aracred","bot","4"],["sourcecred","github","PULL","aracred","bot","8"],["sourcecred","github","PULL","aracred","bot","9"],["sourcecred","github","PULL","aracred","website","1"],["sourcecred","github","PULL","aracred","website","12"],["sourcecred","github","PULL","aracred","website","13"],["sourcecred","github","PULL","aracred","website","14"],["sourcecred","github","PULL","aracred","website","15"],["sourcecred","github","PULL","aracred","website","16"],["sourcecred","github","PULL","aracred","website","3"],["sourcecred","github","PULL","aracred","website","4"],["sourcecred","github","PULL","aracred","website","5"],["sourcecred","github","PULL","aracred","website","6"],["sourcecred","github","PULL","aracred","website","8"],["sourcecred","github","PULL","aracred","website","9"],["sourcecred","github","REPO","aracred","AraCred"],["sourcecred","github","REPO","aracred","TheSource"],["sourcecred","github","REPO","aracred","aracred-cli"],["sourcecred","github","REPO","aracred","bot"],["sourcecred","github","REPO","aracred","comms"],["sourcecred","github","REPO","aracred","governance"],["sourcecred","github","REPO","aracred","leaderboard"],["sourcecred","github","REPO","aracred","onboarding"],["sourcecred","github","REPO","aracred","website"],["sourcecred","github","REVIEW","aracred","AraCred","13","391815975"],["sourcecred","github","REVIEW","aracred","bot","8","395001410"],["sourcecred","github","REVIEW","aracred","bot","8","395035075"],["sourcecred","github","REVIEW","aracred","website","15","393444362"],["sourcecred","github","USERLIKE","USER","AlexMasmej"],["sourcecred","github","USERLIKE","USER","Beanow"],["sourcecred","github","USERLIKE","USER","Evalir"],["sourcecred","github","USERLIKE","USER","c0mput3rxz"],["sourcecred","github","USERLIKE","USER","vntrp"],["sourcecred","identity","0xGabi"],["sourcecred","identity","Aaron"],["sourcecred","identity","burrrata"],["sourcecred","identity","crisorg"],["sourcecred","identity","cslarson"],["sourcecred","identity","dandelion"],["sourcecred","identity","evalir"],["sourcecred","identity","fabriziovigevani"],["sourcecred","identity","fioreb"],["sourcecred","identity","hammadj"],["sourcecred","identity","li"],["sourcecred","identity","lkngtn"],["sourcecred","identity","mzargham"],["sourcecred","identity","onbjerg"],["sourcecred","identity","rperez"],["sourcecred","identity","sembrestels"],["sourcecred","identity","willjgriff"]]}],"weightsJSON":[{"type":"sourcecred/weights","version":"0.2.0"},{"edgeWeights":{"E\u0000sourcecred\u0000discord\u0000ADDS_REACTION\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000AUTHORS\u0000MESSAGE\u0000":{"backwards":1,"forwards":0.25},"E\u0000sourcecred\u0000discord\u0000MENTIONS\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000discord\u0000REACTS_TO\u0000":{"backwards":0.0625,"forwards":1},"E\u0000sourcecred\u0000github\u0000AUTHORS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000CORRESPONDS_TO_COMMIT_TYPE\u0000":{"backwards":1,"forwards":1},"E\u0000sourcecred\u0000github\u0000HAS_PARENT\u0000":{"backwards":0.25,"forwards":1},"E\u0000sourcecred\u0000github\u0000MERGED_AS\u0000":{"backwards":1,"forwards":0.5},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HEART\u0000":{"backwards":0,"forwards":2},"E\u0000sourcecred\u0000github\u0000REACTS\u0000HOORAY\u0000":{"backwards":0,"forwards":4},"E\u0000sourcecred\u0000github\u0000REACTS\u0000ROCKET\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REACTS\u0000THUMBS_UP\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000github\u0000REFERENCES\u0000":{"backwards":0,"forwards":1}},"nodeWeights":{"N\u0000sourcecred\u0000discord\u0000MEMBER\u0000":0,"N\u0000sourcecred\u0000discord\u0000MESSAGE\u0000":0,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629411717704712192\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000629412800346849302\u0000":4,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000635151982298136587\u0000":3,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000❤️\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696454968831508630\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000118260545211072517\u0000696455224532926464\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699021694240686190\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000250086586450968576\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000571023281382227978\u0000695669843034243134\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699025335148216410\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000👍\u0000657069807505637397\u0000699326575627206778\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000571023281382227978\u0000696730540039995493\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000💯\u0000657069807505637397\u0000698965418370400296\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000250086586450968576\u0000698969730580742174\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000321092785921064961\u0000698973708316049488\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000695344752031432766\u0000🔥\u0000571023281382227978\u0000698921390845198426\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000118260545211072517\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000250086586450968576\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000291388682710024192\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000321092785921064961\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000440281764204642314\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000571023281382227978\u0000699287660589613148\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696400331260821586\u0000🔥\u0000683892894767251489\u0000698659683526901810\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696427343220047872\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000696441890048049232\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000699123164340551691\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000👍\u0000657069807505637397\u0000700087985634541678\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000321092785921064961\u0000699560532046250034\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000699275497984622760\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420039141752863\u0000🔥\u0000571023281382227978\u0000700064920104075394\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000696420197644632116\u0000👍\u0000537858848912834561\u0000699284090607763506\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000698942081858666527\u0000👍\u0000250086586450968576\u0000699822779670724650\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000👍\u0000657069807505637397\u0000700040376085381152\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000321092785921064961\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000💯\u0000657069807505637397\u0000700040917926543422\u0000":1,"N\u0000sourcecred\u0000discord\u0000REACTION\u0000700023168995295233\u0000🔥\u0000363774203960360961\u0000700039441799970969\u0000":1,"N\u0000sourcecred\u0000discourse\u0000like\u0000":4,"N\u0000sourcecred\u0000discourse\u0000post\u0000":0,"N\u0000sourcecred\u0000discourse\u0000topic\u0000":0,"N\u0000sourcecred\u0000discourse\u0000user\u0000":0,"N\u0000sourcecred\u0000github":2,"N\u0000sourcecred\u0000github\u0000COMMENT\u0000":0.5,"N\u0000sourcecred\u0000github\u0000COMMIT\u0000":1,"N\u0000sourcecred\u0000github\u0000ISSUE\u0000":1,"N\u0000sourcecred\u0000github\u0000PULL\u0000":16,"N\u0000sourcecred\u0000github\u0000REPO\u0000":4,"N\u0000sourcecred\u0000github\u0000REVIEW\u0000":4,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000":0,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000":0}}]}] \ No newline at end of file diff --git a/docs/asset-manifest.json b/docs/asset-manifest.json new file mode 100644 index 0000000..f0485e3 --- /dev/null +++ b/docs/asset-manifest.json @@ -0,0 +1,14 @@ +{ + "main.js": "static/js/main.e0361f59.js", + "main.js.map": "static/js/main.e0361f59.js.map", + "ssr.js": "static/js/ssr.da9aa522.js", + "ssr.js.map": "static/js/ssr.da9aa522.js.map", + "discord-invite/index.html": "discord-invite/index.html", + "favicon.png": "favicon.png", + "index.html": "index.html", + "prototype/@AraCred/index.html": "prototype/@AraCred/index.html", + "prototype/index.html": "prototype/index.html", + "test/FileUploader/index.html": "test/FileUploader/index.html", + "test/TimelineCredView/index.html": "test/TimelineCredView/index.html", + "timeline/@AraCred/index.html": "timeline/@AraCred/index.html" +} \ No newline at end of file diff --git a/docs/discord-invite/index.html b/docs/discord-invite/index.html new file mode 100644 index 0000000..eb50f80 --- /dev/null +++ b/docs/discord-invite/index.html @@ -0,0 +1,22 @@ + + +
+ + + + + + +Redirecting to: https://discord.gg/tsBTgc9
The open-source movement is amazing. It’s inspiring that some of our best technology is developed in the open and available to everyone.
Despite all the value provided by open-source projects, many are chronically underfunded. For example, NumPy received no funding at all until 2017, and a world where OpenSSL was funded might have been a world without Heartbleed.
These projects also impose a heavy burden on maintainers. Popular projects have hundreds or thousands of open issues, with many new ones being created every day, and only a few overworked volunteers trying to triage and respond to them. Burnout is inevitable.
SourceCred is our attempt to help.
SourceCred aims to empower open-source developers and communities by creating a project-specific reputation metric called cred.
A project’s contributors earn cred for helping out. For example, a project might reward:
SourceCred will build social capital within communities, recognize their hardworking contributors, and encourage more people to help maintain and develop open-source projects.
We’re designing SourceCred around the following four principles:
Cred is computed by first creating a contribution graph, which contains every contribution to the project and the relations among them. For example, GitHub issues, Git commits, and individual files and functions can be included in the graph. Then, SourceCred runs a modified version of PageRank on that graph to produce a cred attribution. The attribution is highly configurable; project maintainers can add new heuristics and adjust weights.
This approach satisfies our four principles. It’s transparent: you can always see how a node’s weight dervies from its neighbors. It’s extensible: plugins can embed new types of nodes and edges into the graph. It’s community-controlled: the weights, heuristics, and algorithms are all configured by the project. Finally, it’s decentralized: every project can run its own instance.
Naturally, there will be attempts to game the system. We’ll provide tools that make it obvious when people are gaming their cred, and empower maintainers to moderate and correct the attribution when needed. In case of deeply contentious disagreements, cred can be forked alongside the project.
SourceCred is under active development. We have a prototype that ingests data from Git and GitHub, computes cred, and allows the user to explore and experiment on the results. We have a long way to go to realize SourceCred’s full vision, but the prototype can already surface some interesting insights!
In the near term, we want to help with issue triage and prioritization. Open-source projects are drowning in issues; many people file them, but few are motivated to triage them. We want to recognize the people who show up to do that work, and reward them by giving them more influence over issue prioritization.
In the longer term, we will continue to add signal to cred attribution. For example, we plan to parse the AST of a project’s code so that we can attribute cred at the level of individual functions, and create a “spotlight” mechanic that will let contributors flow more cred to their peers’ important contributions. As SourceCred improves, we have plans for how to use it to help open-source projects become financially sustainable.
SourceCred is an open-source project, and is committed to being decentralized. We don’t think communities should have to give their data to us, or entrust us with control over their cred. The lead developers are grateful to be supported by Protocol Labs.
If you think this vision is exciting, we’d love for you to get involved! You can join our Discord and check out our GitHub—many of our issues are marked contributions welcome. If you want to try running SourceCred on open-source projects you care about, check out our README.
Select a project:
=p&&h<=f}return s?sl({},t,{radius:i,angle:yl(h,t)}):null};function gl(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t 22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:n},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r=n(382),o=n(121);e.exports=function(e){return r(o(e))}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var r=n(10),o=n(121),i=n(35),a=n(124),u="["+a+"]",c=RegExp("^"+u+u+"*"),s=RegExp(u+u+"*$"),l=function(e,t,n){var o={},u=i((function(){return!!a[e]()||"
"!="
"[e]()})),c=o[e]=u?t(f):a[e];n&&(o[n]=c),r(r.P+r.F*u,"String",o)},f=l.trim=function(e,t){return e=String(o(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(s,"")),e};e.exports=l},function(e,t){e.exports="\t\n\v\f\r \u2028\u2029\ufeff"},function(e,t){e.exports=function(e,t){return e===t||e!=e&&t!=t}},function(e,t,n){var r=n(41)(n(24),"Map");e.exports=r},function(e,t,n){var r=n(423),o=n(430),i=n(432),a=n(433),u=n(434);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t -1}},function(e,t){e.exports=function(e,t,n,r){for(var o=e.length,i=n+(r?1:-1);r?i--:++i 0?i=i.charAt(0)+"."+i.slice(1)+S(r):a>1&&(i=i.charAt(0)+"."+i.slice(1)),i=i+(o<0?"e":"e+")+o):o<0?(i="0."+S(-o-1)+i,n&&(r=n-a)>0&&(i+=S(r))):o>=a?(i+=S(o+1-a),n&&(r=n-o-1)>0&&(i=i+"."+S(r))):((r=o+1)0&&(o+1===a&&(i+="."),i+=S(r))),e.s<0?"-"+i:i}function M(e,t){if(e.length>t)return e.length=t,!0}function N(e){if(!e||"object"!=typeof e)throw Error(s+"Object expected");var t,n,r,o=["precision",1,a,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(t=0;t u)return;if(!l||!f.pedantic&&t.charAt(h+1)===a)return;p=t.length+1,s="";for(;++h =s&&(!l||l===r)?(m+=h,!!n||e(m)({type:"thematicBreak"})):void 0;h+=l}};var r="\n",o="\t",i=" ",a="*",u="_",c="-",s=3},function(e,t,n){"use strict";var r=n(48),o=n(111),i=n(82),a=n(158),u=n(317),c=n(113);e.exports=function(e,t,n){var o,a,u,y,g,v,b,w,x,S,j,T,P,A,C,M,N,I,D,R,L,F,z,U,B=this.options.commonmark,W=this.options.pedantic,H=this.blockTokenizers,G=this.interruptList,q=0,V=t.length,Y=null,$=0;for(;q0&&i(l)?n>1?e(l,n-1,i,a,u):r(u,l):a||(u[u.length]=l)}return u}},function(e,t,n){var r=n(93),o=n(51);e.exports=function(e,t){var n=-1,i=o(e)?Array(e.length):[];return r(e,(function(e,r,o){i[++n]=t(e,r,o)})),i}},function(e,t,n){var r=n(52);e.exports=function(e,t,n){for(var o=-1,i=e.length;++o(u=(a=Math.ceil(p/m))>u?a+1:u+1)&&(i=u,r.length=1),r.reverse();i--;)r.push(0);r.reverse()}for((u=s.length)-(i=l.length)<0&&(i=u,r=l,l=s,s=r),n=0;i;)n=(s[--i]=s[i]+l[i]+n)/y|0,s[i]%=y;for(n&&(s.unshift(n),++o),u=s.length;0==s[--u];)s.pop();return t.d=s,t.e=o,c?P(t,p):t}function w(e,t,n){if(e!==~~e||e=0;i--)if(n[i]===t||n[i].listener===t){a=n[i].listener,o=i;break}if(o<0)return this;0===o?n.shift():function(e,t){for(;t+1